blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
3
616
content_id
stringlengths
40
40
detected_licenses
sequencelengths
0
112
license_type
stringclasses
2 values
repo_name
stringlengths
5
115
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
777 values
visit_date
timestamp[us]date
2015-08-06 10:31:46
2023-09-06 10:44:38
revision_date
timestamp[us]date
1970-01-01 02:38:32
2037-05-03 13:00:00
committer_date
timestamp[us]date
1970-01-01 02:38:32
2023-09-06 01:08:06
github_id
int64
4.92k
681M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
22 values
gha_event_created_at
timestamp[us]date
2012-06-04 01:52:49
2023-09-14 21:59:50
gha_created_at
timestamp[us]date
2008-05-22 07:58:19
2023-08-21 12:35:19
gha_language
stringclasses
149 values
src_encoding
stringclasses
26 values
language
stringclasses
1 value
is_vendor
bool
2 classes
is_generated
bool
2 classes
length_bytes
int64
3
10.2M
extension
stringclasses
188 values
content
stringlengths
3
10.2M
authors
sequencelengths
1
1
author_id
stringlengths
1
132
4847c5d9a787afa041be616a2ff144e31b07d5b1
6adc166c33bdada82f7509301e25d1c451852d24
/statistic/tasks.py
8ea07645a18eb5b98ff7821ccaf1d29af08433f4
[]
no_license
liushiwen555/unified_management_platform_backend
ab0a92f38be7f68bc1d3c4570560ea89bf8fcb07
ae1ade20044b59de1e29288fcd61ba0b71d92be3
refs/heads/master
2023-06-25T22:45:24.669052
2021-07-27T01:08:24
2021-07-27T01:08:24
389,808,950
0
1
null
null
null
null
UTF-8
Python
false
false
30,587
py
import subprocess import time from datetime import datetime, timedelta from typing import Dict, List import psutil from django.conf import settings from django.contrib.postgres.fields.jsonb import KeyTransform from django.db.models import Count from elasticsearch_dsl import A from auditor.bolean_auditor import AuditorProtocol from auditor.bolean_auditor.process_protocol import \ AttackIPRank as AttackIPRankProcess from auditor.bolean_auditor.process_protocol import ProtocolIPRank as IPRank from auditor.bolean_auditor.process_protocol import TodayExternalIP, PortRank, \ IPSource from auditor.models import AuditSysAlert, AuditSecAlert, AttackIPStatistic from base_app.models import Device from firewall.models import FirewallSysEvent, FirewallSecEvent from log.models import DeviceAllAlert, UnifiedForumLog, SecurityEvent from log.security_event import NetworkEvent, LogAbnormalEvent, SecurityEventLog, \ AlertEvent, HighAlertEvent from statistic.models import MainView, AssetsCenter, MonitorCenter, LogCenter, \ LogStatistic, LogStatisticDay, LogDstIPTopFive, LogCategoryDistribution, \ LogPortDistribution, SystemRunning, IPDistribution, ExternalIPTopFive, \ ProtocolPortRank, ProtocolIPRank, AlertWeekTrend, AttackIPRank from statistic.serializers import MainViewSerializer, LogCenterSerializer, \ SystemRunningStatusSerializer, AlertWeekTrendSerializer, \ LogStatisticTotalSerializer, LogStatisticDaySerializer, \ LogStatisticHourSerializer, \ LogDeviceTopFiveSerializer, LogDstIPTopFiveSerializer, \ CategoryDistributionSerializer, PortDistributionSerializer from unified_log.elastic.elastic_client import client from unified_log.elastic.elastic_model import BaseDocument from unified_log.models import LogStatistic as DeviceLog from utils.constants import CATEGORY_DICT from utils.constants import NETWORK_STATUS from utils.helper import get_today, get_last_day, safe_divide from utils.runnable import TaskRun, TaskRunWebsocket class MainViewTask(TaskRunWebsocket): """ 获取运营态势主视图的内容 60分钟周期 左上:【全部告警】累计的安全事件与安全威胁总量。 左下:【待处理告警】未处理的安全事件与安全威胁总量。 右上:【全部日志】累计获取的日志总量(含本地日志和采集日志)。 右下:【外网IP】环境中当天(0点时起)出现的非管理资产的IP个数(去重)。 """ room_group_name = 'main' @classmethod def alert_count(cls) -> int: return DeviceAllAlert.objects.count() + SecurityEvent.objects.count() @classmethod def un_resolved(cls) -> int: """ 安全事件+安全威胁 需要判断安全事件和安全威胁数是否需要产生安全事件 :return: """ # 未解决安全事件数 security_count = SecurityEvent.objects.filter( status_resolved=DeviceAllAlert.STATUS_UNRESOLVED).count() # 未解决安全威胁数 alert_count = DeviceAllAlert.objects.filter( status_resolved=DeviceAllAlert.STATUS_UNRESOLVED).count() # 未解决高级安全威胁数 high_alert_count = DeviceAllAlert.objects.filter( status_resolved=DeviceAllAlert.STATUS_UNRESOLVED, level=DeviceAllAlert.LEVEL_HIGH ).count() security_event = SecurityEventLog(security_count) security_event.generate() alert_event = AlertEvent(alert_count) alert_event.generate() high_alert_event = HighAlertEvent(high_alert_count) high_alert_event.generate() return security_count + alert_count @classmethod def log_count(cls): """ Elasticsearch采集日志+本机日志+防火墙日志+审计日志 """ search = BaseDocument.search() es_count = search.count() unified_count = 0 for model in [UnifiedForumLog, FirewallSecEvent, FirewallSysEvent, AuditSysAlert, AuditSecAlert]: unified_count += model.objects.count() return es_count + unified_count @classmethod def run(cls, current: datetime): data = dict( alert_count=cls.alert_count(), un_resolved=cls.un_resolved(), log_count=cls.log_count(), update_time=current, ) main_view = MainView.objects.create(**data) cls.send(current, main_view) return main_view @classmethod def send(cls, current: datetime, main: MainView): ip_source = IPSource(current) attack_data = ip_source.get_attack_data() attack_ip = AttackIPStatistic.objects.first() if attack_ip: main.ip_count = attack_ip.external_ip + attack_data[ 'external_ip'] else: main.ip_count = attack_data['external_ip'] serializer = MainViewSerializer(main) message = { 'message': cls.room_group_name, 'data': { 'main': serializer.data } } cls.websocket_send(message) class AssetsCenterTask(TaskRun): """ 模块:运营态势中心 更新周期:60分钟 描述:记录资产的监控比例和在线比例 备注:页面数据改为实时获取了,这里的定时任务可以删除 """ @classmethod def run(cls, current: datetime): assets_center = cls.get_assets(current) assets_center.save() return assets_center @classmethod def get_assets(cls, current: datetime) -> AssetsCenter: category_count = Device.objects.values('category').annotate( count=Count('id')).order_by('category') category_dict = {i['category']: i['count'] for i in category_count} security = category_dict.get(Device.CATEGORY_Security, 0) server = category_dict.get(Device.CATEGORY_Sever, 0) network = category_dict.get(Device.CATEGORY_Communication, 0) control = category_dict.get(Device.CATEGORY_Control, 0) assets_center = AssetsCenter( all=(security + server + network + control), security=security, server=server, network=network, control=control, update_time=current) return assets_center class MonitorCenterTask(TaskRun): """ 模块:运营态势中心 更新周期:60分钟 描述:记录资产的监控比例和在线比例 备注:页面数据改为实时获取了,这里的定时任务可以删除 """ @classmethod def run(cls, current: datetime): monitor_count = Device.objects.filter(monitor=True).count() all_count = Device.objects.all().count() monitor_percent = safe_divide(monitor_count * 100, all_count) online_percent = safe_divide( Device.objects.filter(status=Device.ONLINE).count() * 100, all_count) return MonitorCenter.objects.create( monitor_count=monitor_count, monitor_percent=monitor_percent, online_percent=online_percent, update_time=current ) class LogCenterTask(TaskRunWebsocket): """ 模块:运营态势中心 更新周期:10分钟 描述:统计每十分钟的采集日志数量 """ room_group_name = 'main' @classmethod def run(cls, current: datetime): last = current - timedelta(minutes=10) search = BaseDocument.search() search = search.filter('range', timestamp={'gte': last, 'lte': current}) collect = search.count() parsed = search.filter('term', status=True).count() log_center = LogCenter.objects.create(collect=collect, parsed=parsed, update_time=current) serializer = LogCenterSerializer( LogCenter.objects.order_by('-update_time')[:10][::-1]) message = { 'message': cls.room_group_name, 'data': { 'log_center': serializer.data, } } cls.websocket_send(message) return log_center class LogStatisticTask(TaskRunWebsocket): """ 模块:日志中心 更新周期:1小时 描述:统计累计的、当天的日志采集量 """ room_group_name = 'log' @classmethod def run(cls, current: datetime): today = get_today(current) last_hour = current - timedelta(hours=1) last = LogStatistic.objects.first() data = dict( local=cls.get_local(current, last), collect=cls.get_collect(current, last), local_current=cls.get_local_current(today, current), collect_current=cls.get_collect_current(today, current), local_hour=cls.get_local_hour(last_hour, current), collect_hour=cls.get_collect_hour(last_hour, current), update_time=current, ) data['total'] = data['local'] + data['collect'] cls.check_abnormal(data['total'], today) log_statistic = LogStatistic.objects.create(**data) cls.websocket_send(log_statistic) return log_statistic @classmethod def websocket_send(cls, log_statistic: LogStatistic): message = { 'message': cls.room_group_name, 'data': { 'total': LogStatisticTotalSerializer(log_statistic).data, 'hour_trend': LogStatisticHourSerializer( LogStatistic.objects.all().order_by('-update_time')[:24][ ::-1]).data } } super().websocket_send(message) @classmethod def get_local(cls, current: datetime, last: LogStatistic): """ 本机系统日志,如果有以前的记录,就通过以前的记录累加 """ unified_count = 0 for model in [UnifiedForumLog, FirewallSecEvent, FirewallSysEvent, AuditSysAlert]: if last: unified_count += model.objects.filter( occurred_time__lt=current, occurred_time__gte=last.update_time).count() else: unified_count += model.objects.filter(occurred_time__lt=current).count() if last: unified_count += last.local return unified_count @classmethod def get_collect(cls, current: datetime, last: LogStatistic): search = BaseDocument.search() if last: es_count = search.filter( 'range', timestamp={'gte': last.update_time, 'lt': current}).count() es_count += last.collect else: es_count = search.count() return es_count @classmethod def get_local_current(cls, today: datetime, current: datetime): """ 本机系统日志, 当日 """ unified_count = 0 for model in [UnifiedForumLog, FirewallSecEvent, FirewallSysEvent, AuditSysAlert]: unified_count += model.objects.filter( occurred_time__gte=today, occurred_time__lt=current).count() return unified_count @classmethod def get_collect_current(cls, today: datetime, current: datetime): """ 采集系统日志, 当日 """ search = BaseDocument.search() search = search.filter('range', timestamp={'gte': today, 'lt': current}) collect = search.count() return collect @classmethod def get_local_hour(cls, last_hour: datetime, current: datetime): """ 本机系统日志, 上个小时 """ unified_count = 0 for model in [UnifiedForumLog, FirewallSecEvent, FirewallSysEvent, AuditSysAlert]: unified_count += model.objects.filter( occurred_time__gte=last_hour, occurred_time__lt=current).count() return unified_count @classmethod def get_collect_hour(cls, last_hour: datetime, current: datetime): search = BaseDocument.search() search = search.filter('range', timestamp={'gte': last_hour, 'lt': current}) collect = search.count() return collect @classmethod def check_abnormal(cls, count: int, last: datetime): event = LogAbnormalEvent(count, last) event.generate() class LogStatisticDayTask(TaskRunWebsocket): room_group_name = 'log' @classmethod def run(cls, current: datetime): last = get_last_day(current) today = get_today(current) data = dict( local_today=cls.get_local_today(last, today), collect_today=cls.get_collect_today(last, today), update_time=last, ) log_statistic_day = LogStatisticDay.objects.create(**data) message = { 'message': cls.room_group_name, 'data': { 'day_trend': LogStatisticDaySerializer( LogStatisticDay.objects.order_by('-update_time')[:15][ ::-1]).data } } cls.websocket_send(message) return log_statistic_day @classmethod def get_local_today(cls, last: datetime, today: datetime): unified_count = 0 for model in [UnifiedForumLog, FirewallSecEvent, FirewallSysEvent, AuditSysAlert, AuditSecAlert]: unified_count += model.objects.filter( occurred_time__gte=last, occurred_time__lte=today).count() return unified_count @classmethod def get_collect_today(cls, last: datetime, today: datetime): search = BaseDocument.search() search = search.filter('range', timestamp={'gte': last, 'lte': today}) collect = search.count() return collect class LogDstIPTopFiveTask(TaskRunWebsocket): """ 模块:日志中心——今日目的IP TOP5 更新周期: 60分钟 描述:当天日志的目的IP TOP5 """ room_group_name = 'log' @classmethod def run(cls, current: datetime): search = BaseDocument.search() today = get_today(current) port = A('terms', field='dst_ip') search = search.filter('range', timestamp={'gte': today, 'lte': current}) search.aggs.bucket('ip-terms', port) body = {'size': 0} body.update(search.to_dict()) result = client.search(BaseDocument.index_pattern(), body) if 'aggregations' not in result: return LogDstIPTopFive.objects.create(ip=[], today=[], update_time=current) buckets = result['aggregations']['ip-terms']['buckets'] buckets = sorted(buckets, key=lambda x: x['doc_count'], reverse=True) ip = [] total = [] for b in buckets[:5]: ip.append(b['key']) total.append(b['doc_count']) data = dict( ip=ip, today=total, update_time=current ) log = LogDstIPTopFive.objects.create(**data) message = { 'message': cls.room_group_name, 'data': { 'dst_ip_top_five': LogDstIPTopFiveSerializer(log).data, } } cls.websocket_send(message) return log class LogCategoryDistributionTask(TaskRunWebsocket): """ 模块:日志中心——今日日志分布 更新周期: 60分钟 描述:今日安全资产、主机资产、网络资产、工控资产的日志数量 """ room_group_name = 'log' @classmethod def run(cls, current: datetime): search = BaseDocument.search() last = get_today(current) category = A('terms', field='dev_category') search = search.filter('range', timestamp={'gte': last, 'lte': current}) search.aggs.bucket('category-terms', category) body = {'size': 0} body.update(search.to_dict()) result = client.search(BaseDocument.index_pattern(), body) if 'aggregations' in result: # [{'key': '安全资产', 'doc_count': 1120}, {'key': '网络资产', 'doc_count': 3}] buckets = result['aggregations']['category-terms']['buckets'] else: buckets = [] data = {'update_time': current} for bucket in buckets: data[CATEGORY_DICT[bucket['key']]] = bucket['doc_count'] log = LogCategoryDistribution.objects.create(**data) message = { 'message': cls.room_group_name, 'data': { 'category_distribution': CategoryDistributionSerializer( log).data } } cls.websocket_send(message) return log class LogPortDistributionTask(TaskRunWebsocket): """ 模块:日志中心——今日端口分布 更新周期: 60分钟 描述:当天日志的端口分布,只统计数量排名前10的端口,剩余的数量放到其他里面 """ room_group_name = 'log' @classmethod def run(cls, current: datetime): search = BaseDocument.search() last = get_today(current) port = A('terms', field='dst_port') search = search.filter('range', timestamp={'gte': last, 'lte': current}) search.aggs.bucket('port-terms', port) body = {'size': 0} body.update(search.to_dict()) result = client.search(BaseDocument.index_pattern(), body) if 'aggregations' in result: buckets = result['aggregations']['port-terms']['buckets'] # 统计排名前10的端口 sorted_buckets = sorted(buckets, key=lambda x: x['doc_count'], reverse=True) other = result['aggregations']['port-terms']['sum_other_doc_count'] else: sorted_buckets = [] other = 0 ports = [] total = [] for b in sorted_buckets[:10]: ports.append(b['key']) total.append(b['doc_count']) ports.append('其他') total.append(other) data = dict( ports=ports, total=total, update_time=current ) log = LogPortDistribution.objects.create(**data) message = { 'message': cls.room_group_name, 'data': { 'port_distribution': PortDistributionSerializer(log).data } } cls.websocket_send(message) return log class DeviceLogCountTask(TaskRunWebsocket): """ 模块:日志中心——今日资产日志TOP5 更新周期: 60分钟 描述:每隔1小时,定时统计所有资产的日志量 """ room_group_name = 'log' @classmethod def run(cls, current: datetime): devices = Device.objects.filter(log_status=True) for device in devices: device_log, _ = DeviceLog.objects.get_or_create(device=device) device_log.today = cls.get_today(device.id, current) device_log.total = cls.get_total(device.id) device_log.update_time = cls.get_update_time(device.id) device_log.save() @classmethod def get_total(cls, dev_id): search = BaseDocument.search() search = search.filter('term', dev_id=dev_id) return search.count() @classmethod def get_today(cls, dev_id, current: datetime): today = get_today(current) search = BaseDocument.search() search = search.filter('term', dev_id=dev_id).filter( 'range', timestamp={'gte': today}) return search.count() @classmethod def get_update_time(cls, dev_id): search = BaseDocument.search() search = search.filter('term', dev_id=dev_id).sort('-timestamp') data = search[:1].execute() if not data: return None else: return data.hits[0]['timestamp'] @classmethod def device_top_five(cls): instances = DeviceLog.objects.all().order_by('-today')[:5] for instance in instances: if instances[0].today != 0: instance.percent = round( instance.today / instances[0].today * 100) else: instance.percent = 0 serializer = LogDeviceTopFiveSerializer(instances) message = { 'message': cls.room_group_name, 'data': { 'collect_top_five': serializer.data } } cls.websocket_send(message) class SystemRunningTask(TaskRunWebsocket): mgmt = settings.MGMT interfaces = [mgmt] + settings.INTERFACES key = 'LAN' room_group_name = 'running' @classmethod def run(cls, current: datetime): data = dict( cpu=round(psutil.cpu_percent()), memory=round(psutil.virtual_memory().percent), disk=round(psutil.disk_usage('/').percent), network=cls.get_network_traffic(current), ) running = SystemRunning.objects.create(**data) cls.websocket_send({'message': cls.room_group_name, 'data': { 'system_status': SystemRunningStatusSerializer( running).data}}) return running @classmethod def get_network_traffic(cls, current) -> List[Dict[str, str]]: result = {'MGMT': {'speed': 0, 'status': NETWORK_STATUS['unplugged']}} last = psutil.net_io_counters(pernic=True) time.sleep(1) now = psutil.net_io_counters(pernic=True) status = cls.get_network_status() for i, name in enumerate(cls.interfaces): speed = round((now[name].bytes_recv - last[name].bytes_recv) / 1024, 2) s = status[name] if cls.mgmt == name: nic_name = 'MGMT' else: nic_name = cls.key + str(i) result[nic_name] = {'speed': speed, 'status': s} if s == NETWORK_STATUS['link beat detected'] and \ not cls.check_interface_normal(i, current): event = NetworkEvent(name=nic_name) event.generate() result_list = [{'name': key, 'speed': val['speed'], 'status': val['status']} for key, val in result.items()] return result_list @classmethod def get_network_status(cls) -> Dict[str, int]: status = {i: NETWORK_STATUS['link beat detected'] for i in cls.interfaces} try: process = subprocess.run(['ifplugstatus'], stdout=subprocess.PIPE) result = process.stdout.decode('utf-8').split('\n') for res in result: if not res: continue name, status_ = res.split(': ') status[name] = NETWORK_STATUS[status_] except FileNotFoundError: pass return status @classmethod def check_interface_normal(cls, pos: int, current: datetime): """ 判断网口是否连接正常,判断依据是5分钟内网速是不是都大于0 :param pos: 网口的位置 :param current: 当前时间 :return: """ speed = SystemRunning.objects.filter( update_time__gt=current - timedelta(minutes=5)).annotate( val=KeyTransform(str(pos), 'network')).annotate( speed=KeyTransform('speed', 'val')) total = 0 for s in speed: total += s.speed or 0 if total < 0.1: return False return True class AssetsIPDistributionTask(TaskRun): """ 每天凌晨统计一次,记录昨天的资产IP使用情况 用于和今日资产IP使用情况比较 """ @classmethod def run(cls, current: datetime) -> IPDistribution: ips = Device.objects.values_list('ip', flat=True) distribution = cls.analyze_ip_distribution(ips) ip_dis, _ = IPDistribution.objects.get_or_create(id=1) ip_dis.ips = distribution ip_dis.update_time = current ip_dis.save() return ip_dis @classmethod def analyze_ip_distribution(cls, ips: List[str]) -> Dict[str, List[str]]: """ 分析IP所属的网段和网段下的IP :param ips: :return: """ distribution = {} for ip in ips: gateway = '.'.join(ip.split('.')[:3] + ['1/24']) if gateway in distribution: distribution[gateway].append(ip) else: distribution[gateway] = [ip] return distribution class ExternalIPTopTask(TaskRun): """ 模块:资产中心——外联资产TOP5 更新周期:1天 描述:每天凌晨统计一次,保存昨天的外联资产Top5,保存后删除redis的记录 """ @classmethod def run(cls, current: datetime): last = get_last_day(current) external = TodayExternalIP(last) data = external.get_top_n() ips = [] count = [] for d in data: ips.append(d['ip']) count.append(d['count']) ExternalIPTopFive.objects.create(ips=ips, count=count, update_time=current) external.clean() class ProtocolPortRankTask(TaskRun): """ 模块:流量中心——今日端口统计 更新周期:1天 描述:每天凌晨统计一次,保存昨天的端口排名统计,保存后删除redis数据 """ @classmethod def run(cls, current: datetime): last = get_last_day(current) port = PortRank(last) data = port.get_top_n() data['update_time'] = current ProtocolPortRank.objects.create(**data) port.clean() class ProtocolIPRankTask(TaskRun): """ 模块:流量中心——今日IP统计 更新周期:1天 描述:每天凌晨统计一次,保存昨天的IP排名统计,保存后删除redis数据 """ @classmethod def run(cls, current: datetime): last = get_last_day(current) ip_rank = IPRank(last) data = ip_rank.get_top_n() data['update_time'] = current ProtocolIPRank.objects.create(**data) ip_rank.clean() class AttackIPRankTask(TaskRun): """ 模块:流量中心——今日IP统计 更新周期:1天 描述:每天凌晨统计一次,保存昨天的IP排名统计,保存后删除redis数据 """ @classmethod def run(cls, current: datetime): last = get_last_day(current) ip_rank = AttackIPRankProcess(last) data = ip_rank.get_top_n() data['update_time'] = current AttackIPRank.objects.create(**data) ip_rank.clean() class AuditorProtocolSynchronizeTask(TaskRun): """ 模块:协议审计 更新周期:1小时 描述:每小时查询一次协议审计上一个小时的数据并更新 """ @classmethod def run(cls, current: datetime): auditor = Device.objects.filter(type=Device.AUDITOR, register_status=Device.REGISTERED) if not auditor.exists(): return None auditor = auditor[0] sync = AuditorProtocol(auditor, current) sync.synchronize() class AttackIPStatisticTask(TaskRun): """ 模块:安全态势中心 更新周期:1天 描述:将昨天统计的攻击次数,攻击源IP个数存储下来 """ @classmethod def run(cls, current: datetime) -> AttackIPStatistic: last = get_last_day(current) statistic, _ = AttackIPStatistic.objects.get_or_create(id=1) attack = IPSource(last) attack_data = attack.get_attack_data() statistic.count += int(attack_data['count']) statistic.src_ip += int(attack_data['history_src_ip']) statistic.foreign += int(attack_data['history_foreign']) statistic.external_ip += int(attack_data['external_ip']) statistic.save() attack.clean() return statistic class AlertWeekTrendTask(TaskRunWebsocket): """ 模块:安全态势——异常行为——安全威胁本周趋势 更新周期:1天 描述:统计昨天的新增的安全威胁,分类记录下来 """ room_group_name = 'abnormal' @classmethod def run(cls, current: datetime): last = get_last_day(current) result = DeviceAllAlert.objects.filter(occurred_time__gte=last).values( 'category', 'type').annotate(count=Count('id')).order_by( 'category', 'type') trend = [ {r: 0 for r in DeviceAllAlert.SCAN_TYPE}, {r: 0 for r in DeviceAllAlert.FLAW_TYPE}, {r: 0 for r in DeviceAllAlert.PENETRATION_TYPE}, {r: 0 for r in DeviceAllAlert.APT_TYPE}, {r: 0 for r in DeviceAllAlert.OTHER_TYPE}, ] for r in result: category = r['category'] - 1 type_ = r['type'] if type_ in trend[category]: trend[category][type_] = r['count'] scan = trend[0] flaw = trend[1] penetration = trend[2] apt = trend[3] other = trend[4] cls.websocket_send({ 'message': cls.room_group_name, 'data': { 'alert_week': AlertWeekTrendSerializer( AlertWeekTrend.objects.order_by('-update_time')[:7]).data } }) return AlertWeekTrend.objects.create( scan=scan, flaw=flaw, penetration=penetration, apt=apt, other=other, update_time=last )
2f3ff636fb34d745ffaa5ea9b022823502f5d43c
665455c521cc7cf76c5436337ed545de90976af4
/cohesity_management_sdk/models/subscription_type_azure_credentials_enum.py
3089b273d3faa936de0e61a8f028a28e860b1215
[ "Apache-2.0" ]
permissive
hsantoyo2/management-sdk-python
d226273bc8eedcf9220ea4999a6f0b9a1a30d99c
0093194d125fc6746f55b8499da1270c64f473fc
refs/heads/master
2023-03-01T06:09:39.644085
2021-01-15T08:23:16
2021-01-15T08:23:16
null
0
0
null
null
null
null
UTF-8
Python
false
false
683
py
# -*- coding: utf-8 -*- # Copyright 2020 Cohesity Inc. class SubscriptionTypeAzureCredentialsEnum(object): """Implementation of the 'SubscriptionType_AzureCredentials' enum. Specifies the subscription type of Azure such as 'kAzureCommercial' or 'kAzureGovCloud'. Specifies the subscription type of an Azure source entity. 'kAzureCommercial' indicates a standard Azure subscription. 'kAzureGovCloud' indicates a govt Azure subscription. Attributes: KAZURECOMMERCIAL: TODO: type description here. KAZUREGOVCLOUD: TODO: type description here. """ KAZURECOMMERCIAL = 'kAzureCommercial' K_AZURE_GO_VCLOUD = 'kAzureGovCloud'
48f0854884ecd2500df38b72140371a1a933f8b9
a80295f0d7d6c6c8ea5c0dce3929206eef2dfa66
/server.py
ddc0415ff3af2352c792b0766c11232e6c28b67a
[]
no_license
bkodakari/flask2
38425ea04d12fcefeb538761ebeb66decc104852
f17793af004bdd7602b6d7032ab84556a49a1317
refs/heads/master
2020-12-31T00:29:37.991325
2017-03-16T04:15:12
2017-03-16T04:15:12
85,152,138
0
0
null
null
null
null
UTF-8
Python
false
false
2,561
py
from flask import Flask, request from random import choice, randint from flask import render_template COMPLIMENTS = ["smart", "clever", "tenacious", "awesome", "Pythonic"] # "__name__" is a special Python variable for the name of the current module # Flask wants to know this to know what any imported things are relative to. app = Flask(__name__) @app.route('/') def index(): """Home page.""" return "<html><body><h1>I am the landing page</h1></body></html>" @app.route('/hello') def say_hello(): html = """ <html> <body> Say hello </body> </html> """ return html @app.route('/lucky') def lucky_number(): lucky_num = randint(1, 100) lucky_message = "Your lucky number is %s " % lucky_num return "<html><body><h1>" + lucky_message + "</h1></body></html>" """Provides a random lucky number""" # add code here of getting a lucky number and return a string # with the lucky number @app.route('/puppies_or_kittens') def puppies_or_kittens(): buttons = """ <html> <body> <a href=/puppy> <button type='button'> Click here to see a PUPPY!</button> </a></br> <a href=/kitten> <button type='button'> click me for a kitten! </button></a> </body> </html> """ return buttons @app.route('/puppy') def show_puppy(): #html with the puppy image puppy = """ <html> <body> <img src = "https://ipetcompanion.com/feedapuppy/styles/media/puppy.jpg"><br> <h3><a href =/puppies_or_kittens>Take me back!</a></h3> </body> </html> """ return puppy #link to the route puppies or kittens @app.route('/kitten') def show_kitten(): kitten = """ <html> <body> <img src = http://s3.amazonaws.com/assets.prod.vetstreet.com/2a/cd/ee484be546418f40cc3cbc194b52/kitten-in-arms-thinkstockphotos-106397271-335lc070915jpg.jpg> <h3><a href = /puppies_or_kittens>Take me back!</a><h3> </body> </html> """ return kitten @app.route('/form') def show_form(): return render_template("form.html") @app.route('/greet') def greet(): player = request.args.get("person") nice_thing = choice(COMPLIMENTS) return render_template("compliments.html", name=player, compliment=nice_thing) if __name__ == '__main__': # debug=True gives us error messages in the browser and also "reloads" # our web app if we change the code. app.run(debug=True)
10f794876bff9222640ce92abb3e52e1013e1415
a9fe1b5c320cdef138ac4a942a8b741c7f27de7c
/LC1302-Deepest-Leaves-Sum.py
c6d72946df16cfe5c4125b05fb11adb0f535d37c
[]
no_license
kate-melnykova/LeetCode-solutions
a6bbb5845310ce082770bcb92ef6f6877962a8ee
ee8237b66975fb5584a3d68b311e762c0462c8aa
refs/heads/master
2023-06-28T06:35:33.342025
2021-07-30T06:59:31
2021-07-30T06:59:31
325,106,033
2
1
null
null
null
null
UTF-8
Python
false
false
1,508
py
""" Given the root of a binary tree, return the sum of values of its deepest leaves. Example 1: Input: root = [1,2,3,4,5,null,6,7,null,null,null,null,8] Output: 15 Example 2: Input: root = [6,7,8,2,7,1,3,9,null,1,4,null,null,null,5] Output: 19 Constraints: (*) The number of nodes in the tree is in the range [1, 10^4]. (*) 1 <= Node.val <= 100 """ from TreeNode import TreeNode # Definition for a binary tree node. # class TreeNode: # def __init__(self, val=0, left=None, right=None): # self.val = val # self.left = left # self.right = right class Solution: def deepestLeavesSum(self, root: TreeNode) -> int: if root is None: return 0 level_new = [root, ] while level_new: level = list(level_new) level_new = list() for node in level: if node.left is not None: level_new.append(node.left) if node.right is not None: level_new.append(node.right) return sum(node.val for node in level) if __name__ == "__main__": import run_tests correct_answers = [ [[1,2,3,4,5,None,6,7,None,None,None,None,8], 15], [[6,7,8,2,7,1,3,9,None,1,4,None,None,None,5], 19] ] for i in range(len(correct_answers)): correct_answers[i][0] = TreeNode.to_treenode(correct_answers[i][0]) print(f"Running tests for deepestLeavesSum") run_tests.run_tests(Solution().deepestLeavesSum, correct_answers)
f3e3df18459f25016b7a178b64b5e52b4c0ee2b4
23b0cb36ba16017d5b9670bdf1ebef1cc36f1cc9
/python/samples/tthAnalyzeSamples_2017_base.py
a62be3e928abe455fbce2172aa41fac127eb3e6d
[]
no_license
HEP-KBFI/tth-htt
9d51b5ef087e62d491e88e387ecd824300552f64
f95c39d6841058a5d1e36d5a0f806c6d6833952a
refs/heads/master
2023-04-28T16:17:31.030396
2023-04-24T17:35:09
2023-04-24T17:35:09
45,119,990
3
19
null
2022-11-29T12:05:30
2015-10-28T14:58:26
Python
UTF-8
Python
false
false
3,791,195
py
from collections import OrderedDict as OD # file generated at 2021-04-23 14:08:59 with the following command: # create_dictionary.py -m python/samples/metaDict_2017.py -p python/samples/sampleLocations_2017.txt -N samples_2017 -E 2017 -o python/samples -g tthAnalyzeSamples_2017_base.py -M samples_2017 = OD() samples_2017["/SingleElectron/Run2017B-31Mar2018-v1/MINIAOD"] = OD([ ("type", "data"), ("sample_category", "data_obs"), ("process_name_specific", "SingleElectron_Run2017B_31Mar2018_v1"), ("nof_files", 29), ("nof_db_files", 499), ("nof_events", { }), ("nof_tree_events", 56501676), ("nof_db_events", 60537490), ("fsize_local", 27382012570), # 27.38GB, avg file size 944.21MB ("fsize_db", 1791096960075), # 1.79TB, avg file size 3.59GB ("use_it", True), ("triggers", ['1e', '1e1tau']), ("has_LHE", False), ("nof_PSweights", 0), ("LHE_set", ""), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2020Dec27_woPresel_nom_all_hh_multilepton/ntuples/SingleElectron_Run2017B_31Mar2018_v1"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ ]), ("missing_from_superset", [ ]), ("missing_hlt_paths", [ "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", "HLT_Ele32_WPTight_Gsf", "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ_Mass3p8", "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", "HLT_Mu3_PFJet40", ]), ("hlt_paths", [ "HLT_AK4CaloJet100", "HLT_AK4CaloJet120", "HLT_AK4CaloJet30", "HLT_AK4CaloJet40", "HLT_AK4CaloJet50", "HLT_AK4CaloJet80", "HLT_AK4PFJet100", "HLT_AK4PFJet120", "HLT_AK4PFJet30", "HLT_AK4PFJet50", "HLT_AK4PFJet80", "HLT_AK8PFJet140", "HLT_AK8PFJet200", "HLT_AK8PFJet260", "HLT_AK8PFJet320", "HLT_AK8PFJet40", "HLT_AK8PFJet400", "HLT_AK8PFJet450", "HLT_AK8PFJet500", "HLT_AK8PFJet550", "HLT_AK8PFJet60", "HLT_AK8PFJet80", "HLT_BTagMu_AK4DiJet110_Mu5", "HLT_BTagMu_AK4DiJet170_Mu5", "HLT_BTagMu_AK4DiJet20_Mu5", "HLT_BTagMu_AK4DiJet40_Mu5", "HLT_BTagMu_AK4DiJet70_Mu5", "HLT_BTagMu_AK4Jet300_Mu5", "HLT_BTagMu_AK8DiJet170_Mu5", "HLT_BTagMu_AK8Jet300_Mu5", "HLT_CaloJet500_NoJetID", "HLT_CaloJet550_NoJetID", "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", "HLT_DiMu9_Ele9_CaloIdL_TrackIdL_DZ", "HLT_Dimuon0_LowMass_L1_0er1p5R", "HLT_Dimuon0_LowMass_L1_4R", "HLT_Dimuon10_PsiPrime_Barrel_Seagulls", "HLT_Dimuon12_Upsilon_eta1p5", "HLT_Dimuon14_Phi_Barrel_Seagulls", "HLT_Dimuon18_PsiPrime", "HLT_Dimuon20_Jpsi_Barrel_Seagulls", "HLT_Dimuon25_Jpsi", "HLT_DiPFJet15_FBEta3_NoCaloMatched", "HLT_DiPFJet15_NoCaloMatched", "HLT_DiPFJet25_FBEta3_NoCaloMatched", "HLT_DiPFJet25_NoCaloMatched", "HLT_DiPFJetAve15_HFJEC", "HLT_DiPFJetAve25_HFJEC", "HLT_DiPFJetAve35_HFJEC", "HLT_Diphoton30_22_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", "HLT_Diphoton30_22_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass95", "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_NoPixelVeto_Mass55", "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_PixelVeto_Mass55", "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_NoPixelVeto_Mass55", "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_PixelVeto_Mass55", "HLT_DiSC30_18_EIso_AND_HE_Mass70", "HLT_DoubleEle33_CaloIdL_MW", "HLT_DoubleLooseChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMu20_7_Mass0to30_L1_DM4EG", "HLT_DoubleMu20_7_Mass0to30_Photon23", "HLT_DoubleMu3_Trk_Tau3mu", "HLT_DoubleMu4_3_Bs", "HLT_DoubleMu4_3_Jpsi_Displaced", "HLT_DoubleMu4_Jpsi_Displaced", "HLT_DoubleMu4_Jpsi_NoVertexing", "HLT_DoubleMu4_JpsiTrk_Displaced", "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", "HLT_DoubleMu4_PsiPrimeTrk_Displaced", "HLT_DoublePhoton33_CaloIdL", "HLT_DoublePhoton70", "HLT_DoublePhoton85", "HLT_DoubleTightChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_EcalCalibration", "HLT_ECALHT800", "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Ele24_eta2p1_WPTight_Gsf_LooseChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_LooseChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_MediumChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_MediumChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_TightChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_TightChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele27_WPTight_Gsf", "HLT_Ele28_eta2p1_WPTight_Gsf_HT150", "HLT_Ele30_eta2p1_WPTight_Gsf_CentralPFJet35_EleCleaned", "HLT_Ele32_WPTight_Gsf_L1DoubleEG", "HLT_Ele35_WPTight_Gsf", "HLT_Ele38_WPTight_Gsf", "HLT_Ele40_WPTight_Gsf", "HLT_FullTrack_Multiplicity105", "HLT_FullTrack_Multiplicity135", "HLT_FullTrack_Multiplicity155", "HLT_FullTrack_Multiplicity85", "HLT_HcalCalibration", "HLT_HcalIsolatedbunch", "HLT_HcalNZS", "HLT_HcalPhiSym", "HLT_HISinglePhoton10_Eta3p1ForPPRef", "HLT_HISinglePhoton20_Eta3p1ForPPRef", "HLT_HISinglePhoton30_Eta3p1ForPPRef", "HLT_HISinglePhoton40_Eta3p1ForPPRef", "HLT_HISinglePhoton50_Eta3p1ForPPRef", "HLT_HISinglePhoton60_Eta3p1ForPPRef", "HLT_HT300_Beamspot", "HLT_HT300PT30_QuadJet_75_60_45_40", "HLT_HT300PT30_QuadJet_75_60_45_40_TripeCSV_p07", "HLT_HT450_Beamspot", "HLT_IsoMu20", "HLT_IsoMu20_eta2p1_LooseChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_LooseChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu20_eta2p1_MediumChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_MediumChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu20_eta2p1_TightChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_TightChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu24", "HLT_IsoMu24_eta2p1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu27", "HLT_L1FatEvents", "HLT_L1MinimumBiasHF0OR", "HLT_L1MinimumBiasHF_OR", "HLT_L1NotBptxOR", "HLT_L1SingleMu18", "HLT_L1SingleMu25", "HLT_L1UnpairedBunchBptxMinus", "HLT_L1UnpairedBunchBptxPlus", "HLT_L2Mu10", "HLT_L2Mu10_NoVertex_NoBPTX", "HLT_L2Mu10_NoVertex_NoBPTX3BX", "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX", "HLT_MediumChargedIsoPFTau100HighPtRelaxedIso_Trk50_eta2p1_1pr", "HLT_MediumChargedIsoPFTau180HighPtRelaxedIso_Trk50_eta2p1", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET100", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET90", "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Mu17", "HLT_Mu17_TrkIsoVVL", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ_Mass8", "HLT_Mu20", "HLT_Mu20_TkMu0_Phi", "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Mu27", "HLT_Mu30_TkMu0_Onia", "HLT_Mu50", "HLT_Mu7p5_Track2_Jpsi", "HLT_Mu7p5_Track2_Upsilon", "HLT_Mu7p5_Track3p5_Jpsi", "HLT_Mu7p5_Track3p5_Upsilon", "HLT_Mu7p5_Track7_Jpsi", "HLT_Mu7p5_Track7_Upsilon", "HLT_Mu8", "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", "HLT_Mu8_DiEle12_CaloIdL_TrackIdL_DZ", "HLT_Mu8_TrkIsoVVL", "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_PFHT1050", "HLT_PFHT180", "HLT_PFHT250", "HLT_PFHT350", "HLT_PFHT370", "HLT_PFHT380_SixJet32_DoubleBTagCSV_p075", "HLT_PFHT430", "HLT_PFHT430_SixJet40_BTagCSV_p080", "HLT_PFHT500_PFMET100_PFMHT100_IDTight", "HLT_PFHT500_PFMET110_PFMHT110_IDTight", "HLT_PFHT510", "HLT_PFHT590", "HLT_PFHT680", "HLT_PFHT700_PFMET85_PFMHT85_IDTight", "HLT_PFHT700_PFMET95_PFMHT95_IDTight", "HLT_PFHT780", "HLT_PFHT800_PFMET75_PFMHT75_IDTight", "HLT_PFHT800_PFMET85_PFMHT85_IDTight", "HLT_PFHT890", "HLT_PFJet140", "HLT_PFJet200", "HLT_PFJet260", "HLT_PFJet320", "HLT_PFJet40", "HLT_PFJet400", "HLT_PFJet450", "HLT_PFJet500", "HLT_PFJet550", "HLT_PFJet60", "HLT_PFJet80", "HLT_PFMET110_PFMHT110_IDTight", "HLT_PFMET120_PFMHT120_IDTight", "HLT_PFMET130_PFMHT130_IDTight", "HLT_PFMET140_PFMHT140_IDTight", "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", "HLT_PFMETTypeOne110_PFMHT110_IDTight", "HLT_PFMETTypeOne120_PFMHT120_IDTight", "HLT_PFMETTypeOne130_PFMHT130_IDTight", "HLT_PFMETTypeOne140_PFMHT140_IDTight", "HLT_Photon120", "HLT_Photon120_R9Id90_HE10_IsoM", "HLT_Photon150", "HLT_Photon165_R9Id90_HE10_IsoM", "HLT_Photon175", "HLT_Photon200", "HLT_Photon20_HoverELoose", "HLT_Photon300_NoHE", "HLT_Photon30_HoverELoose", "HLT_Photon33", "HLT_Photon40_HoverELoose", "HLT_Photon50", "HLT_Photon50_HoverELoose", "HLT_Photon50_R9Id90_HE10_IsoM", "HLT_Photon60_HoverELoose", "HLT_Photon60_R9Id90_CaloIdL_IsoL_DisplacedIdL_PFHT350MinPFJet15", "HLT_Photon75", "HLT_Photon75_R9Id90_HE10_IsoM", "HLT_Photon90", "HLT_Photon90_R9Id90_HE10_IsoM", "HLT_Physics", "HLT_Random", "HLT_Trimuon2_Upsilon5_Muon", "HLT_TripleMu_10_5_5_DZ", "HLT_TripleMu_12_10_5", "HLT_UncorrectedJetE30_NoBPTX", "HLT_UncorrectedJetE30_NoBPTX3BX", "HLT_UncorrectedJetE60_NoBPTX3BX", "HLT_UncorrectedJetE70_NoBPTX3BX", "HLT_ZeroBias", "HLT_ZeroBias_FirstBXAfterTrain", "HLT_ZeroBias_FirstCollisionAfterAbortGap", "HLT_ZeroBias_FirstCollisionInTrain", "HLT_ZeroBias_IsolatedBunches", "HLT_ZeroBias_LastCollisionInTrain", "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_ZeroBias_part8", "HLT_ZeroBias_part9", ]), ]) samples_2017["/SingleElectron/Run2017C-31Mar2018-v1/MINIAOD"] = OD([ ("type", "data"), ("sample_category", "data_obs"), ("process_name_specific", "SingleElectron_Run2017C_31Mar2018_v1"), ("nof_files", 64), ("nof_db_files", 1179), ("nof_events", { }), ("nof_tree_events", 127361546), ("nof_db_events", 136637888), ("fsize_local", 71122902911), # 71.12GB, avg file size 1.11GB ("fsize_db", 4198024157433), # 4.20TB, avg file size 3.56GB ("use_it", True), ("triggers", ['1e', '1e1tau']), ("has_LHE", False), ("nof_PSweights", 0), ("LHE_set", ""), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2020Dec27_woPresel_nom_all_hh_multilepton/ntuples/SingleElectron_Run2017C_31Mar2018_v1"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ ]), ("missing_from_superset", [ ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ "HLT_AK4CaloJet100", "HLT_AK4CaloJet120", "HLT_AK4CaloJet30", "HLT_AK4CaloJet40", "HLT_AK4CaloJet50", "HLT_AK4CaloJet80", "HLT_AK4PFJet100", "HLT_AK4PFJet120", "HLT_AK4PFJet30", "HLT_AK4PFJet50", "HLT_AK4PFJet80", "HLT_AK8PFHT750_TrimMass50", "HLT_AK8PFHT800_TrimMass50", "HLT_AK8PFHT850_TrimMass50", "HLT_AK8PFHT900_TrimMass50", "HLT_AK8PFJet140", "HLT_AK8PFJet200", "HLT_AK8PFJet260", "HLT_AK8PFJet320", "HLT_AK8PFJet360_TrimMass30", "HLT_AK8PFJet380_TrimMass30", "HLT_AK8PFJet40", "HLT_AK8PFJet400", "HLT_AK8PFJet400_TrimMass30", "HLT_AK8PFJet420_TrimMass30", "HLT_AK8PFJet450", "HLT_AK8PFJet500", "HLT_AK8PFJet550", "HLT_AK8PFJet60", "HLT_AK8PFJet80", "HLT_AK8PFJetFwd140", "HLT_AK8PFJetFwd200", "HLT_AK8PFJetFwd260", "HLT_AK8PFJetFwd320", "HLT_AK8PFJetFwd40", "HLT_AK8PFJetFwd400", "HLT_AK8PFJetFwd450", "HLT_AK8PFJetFwd500", "HLT_AK8PFJetFwd60", "HLT_AK8PFJetFwd80", "HLT_BTagMu_AK4DiJet110_Mu5", "HLT_BTagMu_AK4DiJet170_Mu5", "HLT_BTagMu_AK4DiJet20_Mu5", "HLT_BTagMu_AK4DiJet40_Mu5", "HLT_BTagMu_AK4DiJet70_Mu5", "HLT_BTagMu_AK4Jet300_Mu5", "HLT_BTagMu_AK8DiJet170_Mu5", "HLT_BTagMu_AK8Jet300_Mu5", "HLT_CaloJet500_NoJetID", "HLT_CaloJet550_NoJetID", "HLT_CaloMET100_HBHECleaned", "HLT_CaloMET100_NotCleaned", "HLT_CaloMET110_NotCleaned", "HLT_CaloMET250_HBHECleaned", "HLT_CaloMET250_NotCleaned", "HLT_CaloMET300_HBHECleaned", "HLT_CaloMET350_HBHECleaned", "HLT_CaloMET70_HBHECleaned", "HLT_CaloMET80_HBHECleaned", "HLT_CaloMET80_NotCleaned", "HLT_CaloMET90_HBHECleaned", "HLT_CaloMET90_NotCleaned", "HLT_CaloMHT90", "HLT_DiEle27_WPTightCaloOnly_L1DoubleEG", "HLT_DiJet110_35_Mjj650_PFMET110", "HLT_DiJet110_35_Mjj650_PFMET120", "HLT_DiJet110_35_Mjj650_PFMET130", "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", "HLT_DiMu9_Ele9_CaloIdL_TrackIdL_DZ", "HLT_Dimuon0_Jpsi", "HLT_Dimuon0_Jpsi3p5_Muon2", "HLT_Dimuon0_Jpsi_L1_4R_0er1p5R", "HLT_Dimuon0_Jpsi_L1_NoOS", "HLT_Dimuon0_Jpsi_NoVertexing", "HLT_Dimuon0_Jpsi_NoVertexing_L1_4R_0er1p5R", "HLT_Dimuon0_Jpsi_NoVertexing_NoOS", "HLT_Dimuon0_LowMass", "HLT_Dimuon0_LowMass_L1_0er1p5", "HLT_Dimuon0_LowMass_L1_0er1p5R", "HLT_Dimuon0_LowMass_L1_4", "HLT_Dimuon0_LowMass_L1_4R", "HLT_Dimuon0_LowMass_L1_TM530", "HLT_Dimuon0_Upsilon_L1_4p5", "HLT_Dimuon0_Upsilon_L1_4p5er2p0", "HLT_Dimuon0_Upsilon_L1_4p5er2p0M", "HLT_Dimuon0_Upsilon_L1_4p5NoOS", "HLT_Dimuon0_Upsilon_L1_5", "HLT_Dimuon0_Upsilon_L1_5M", "HLT_Dimuon0_Upsilon_Muon_L1_TM0", "HLT_Dimuon0_Upsilon_Muon_NoL1Mass", "HLT_Dimuon0_Upsilon_NoVertexing", "HLT_Dimuon10_PsiPrime_Barrel_Seagulls", "HLT_Dimuon10_Upsilon_Barrel_Seagulls", "HLT_Dimuon12_Upsilon_eta1p5", "HLT_Dimuon14_Phi_Barrel_Seagulls", "HLT_Dimuon18_PsiPrime", "HLT_Dimuon18_PsiPrime_noCorrL1", "HLT_Dimuon20_Jpsi_Barrel_Seagulls", "HLT_Dimuon24_Phi_noCorrL1", "HLT_Dimuon24_Upsilon_noCorrL1", "HLT_Dimuon25_Jpsi", "HLT_Dimuon25_Jpsi_noCorrL1", "HLT_DiPFJet15_FBEta3_NoCaloMatched", "HLT_DiPFJet15_NoCaloMatched", "HLT_DiPFJet25_FBEta3_NoCaloMatched", "HLT_DiPFJet25_NoCaloMatched", "HLT_DiPFJetAve100_HFJEC", "HLT_DiPFJetAve140", "HLT_DiPFJetAve15_HFJEC", "HLT_DiPFJetAve160_HFJEC", "HLT_DiPFJetAve200", "HLT_DiPFJetAve220_HFJEC", "HLT_DiPFJetAve25_HFJEC", "HLT_DiPFJetAve260", "HLT_DiPFJetAve300_HFJEC", "HLT_DiPFJetAve320", "HLT_DiPFJetAve35_HFJEC", "HLT_DiPFJetAve40", "HLT_DiPFJetAve400", "HLT_DiPFJetAve500", "HLT_DiPFJetAve60", "HLT_DiPFJetAve60_HFJEC", "HLT_DiPFJetAve80", "HLT_DiPFJetAve80_HFJEC", "HLT_Diphoton30_22_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", "HLT_Diphoton30_22_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass95", "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_NoPixelVeto_Mass55", "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_PixelVeto_Mass55", "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_NoPixelVeto_Mass55", "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_PixelVeto_Mass55", "HLT_DiSC30_18_EIso_AND_HE_Mass70", "HLT_DoubleEle24_eta2p1_WPTight_Gsf", "HLT_DoubleEle25_CaloIdL_MW", "HLT_DoubleEle27_CaloIdL_MW", "HLT_DoubleEle33_CaloIdL_MW", "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_DZ_PFHT350", "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT350", "HLT_DoubleIsoMu20_eta2p1", "HLT_DoubleIsoMu24_eta2p1", "HLT_DoubleL2Mu50", "HLT_DoubleLooseChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMu20_7_Mass0to30_L1_DM4", "HLT_DoubleMu20_7_Mass0to30_L1_DM4EG", "HLT_DoubleMu20_7_Mass0to30_Photon23", "HLT_DoubleMu3_DZ_PFMET50_PFMHT60", "HLT_DoubleMu3_DZ_PFMET70_PFMHT70", "HLT_DoubleMu3_DZ_PFMET90_PFMHT90", "HLT_DoubleMu3_Trk_Tau3mu", "HLT_DoubleMu3_Trk_Tau3mu_NoL1Mass", "HLT_DoubleMu43NoFiltersNoVtx", "HLT_DoubleMu48NoFiltersNoVtx", "HLT_DoubleMu4_3_Bs", "HLT_DoubleMu4_3_Jpsi_Displaced", "HLT_DoubleMu4_Jpsi_Displaced", "HLT_DoubleMu4_Jpsi_NoVertexing", "HLT_DoubleMu4_JpsiTrk_Displaced", "HLT_DoubleMu4_JpsiTrkTrk_Displaced", "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", "HLT_DoubleMu4_Mass8_DZ_PFHT350", "HLT_DoubleMu4_PsiPrimeTrk_Displaced", "HLT_DoubleMu8_Mass8_PFHT350", "HLT_DoublePFJets100_CaloBTagCSV_p33", "HLT_DoublePFJets100MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_DoublePFJets116MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_DoublePFJets128MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_DoublePFJets200_CaloBTagCSV_p33", "HLT_DoublePFJets350_CaloBTagCSV_p33", "HLT_DoublePFJets40_CaloBTagCSV_p33", "HLT_DoublePhoton33_CaloIdL", "HLT_DoublePhoton70", "HLT_DoublePhoton85", "HLT_DoubleTightChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_EcalCalibration", "HLT_ECALHT800", "HLT_Ele115_CaloIdVT_GsfTrkIdT", "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele135_CaloIdVT_GsfTrkIdT", "HLT_Ele145_CaloIdVT_GsfTrkIdT", "HLT_Ele15_IsoVVVL_PFHT450", "HLT_Ele15_IsoVVVL_PFHT450_CaloBTagCSV_4p5", "HLT_Ele15_IsoVVVL_PFHT450_PFMET50", "HLT_Ele15_IsoVVVL_PFHT600", "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", "HLT_Ele200_CaloIdVT_GsfTrkIdT", "HLT_Ele20_eta2p1_WPLoose_Gsf", "HLT_Ele20_WPLoose_Gsf", "HLT_Ele20_WPTight_Gsf", "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Ele24_eta2p1_WPTight_Gsf_LooseChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_LooseChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_MediumChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_MediumChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_TightChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_TightChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele250_CaloIdVT_GsfTrkIdT", "HLT_Ele27_Ele37_CaloIdL_MW", "HLT_Ele27_WPTight_Gsf", "HLT_Ele28_eta2p1_WPTight_Gsf_HT150", "HLT_Ele28_HighEta_SC20_Mass55", "HLT_Ele300_CaloIdVT_GsfTrkIdT", "HLT_Ele30_eta2p1_WPTight_Gsf_CentralPFJet35_EleCleaned", "HLT_Ele32_WPTight_Gsf", "HLT_Ele32_WPTight_Gsf_L1DoubleEG", "HLT_Ele35_WPTight_Gsf", "HLT_Ele35_WPTight_Gsf_L1EGMT", "HLT_Ele38_WPTight_Gsf", "HLT_Ele40_WPTight_Gsf", "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", "HLT_Ele50_IsoVVVL_PFHT450", "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", "HLT_FullTrack_Multiplicity100", "HLT_FullTrack_Multiplicity130", "HLT_FullTrack_Multiplicity155", "HLT_FullTrack_Multiplicity85", "HLT_HcalCalibration", "HLT_HcalIsolatedbunch", "HLT_HcalNZS", "HLT_HcalPhiSym", "HLT_HISinglePhoton10_Eta3p1ForPPRef", "HLT_HISinglePhoton20_Eta3p1ForPPRef", "HLT_HISinglePhoton30_Eta3p1ForPPRef", "HLT_HISinglePhoton40_Eta3p1ForPPRef", "HLT_HISinglePhoton50_Eta3p1ForPPRef", "HLT_HISinglePhoton60_Eta3p1ForPPRef", "HLT_HT300_Beamspot", "HLT_HT400_DisplacedDijet40_DisplacedTrack", "HLT_HT425", "HLT_HT430_DisplacedDijet40_DisplacedTrack", "HLT_HT430_DisplacedDijet60_DisplacedTrack", "HLT_HT430_DisplacedDijet80_DisplacedTrack", "HLT_HT450_Beamspot", "HLT_HT550_DisplacedDijet60_Inclusive", "HLT_HT550_DisplacedDijet80_Inclusive", "HLT_HT650_DisplacedDijet60_Inclusive", "HLT_HT650_DisplacedDijet80_Inclusive", "HLT_HT750_DisplacedDijet80_Inclusive", "HLT_IsoMu20", "HLT_IsoMu20_eta2p1_LooseChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_LooseChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu20_eta2p1_MediumChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_MediumChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu20_eta2p1_TightChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_TightChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu24", "HLT_IsoMu24_eta2p1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau40_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau40_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu27", "HLT_IsoMu30", "HLT_IsoTrackHB", "HLT_IsoTrackHE", "HLT_L1_CDC_SingleMu_3_er1p2_TOP120_DPHI2p618_3p142", "HLT_L1ETMHadSeeds", "HLT_L1MinimumBiasHF0OR", "HLT_L1MinimumBiasHF_OR", "HLT_L1NotBptxOR", "HLT_L1SingleMu18", "HLT_L1SingleMu25", "HLT_L1UnpairedBunchBptxMinus", "HLT_L1UnpairedBunchBptxPlus", "HLT_L2Mu10", "HLT_L2Mu10_NoVertex_NoBPTX", "HLT_L2Mu10_NoVertex_NoBPTX3BX", "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX", "HLT_L2Mu50", "HLT_MediumChargedIsoPFTau180HighPtRelaxedIso_Trk50_eta2p1", "HLT_MediumChargedIsoPFTau180HighPtRelaxedIso_Trk50_eta2p1_1pr", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET100", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET110", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET120", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET130", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET90", "HLT_MET105_IsoTrk50", "HLT_MET120_IsoTrk50", "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu130_PFMHTNoMu130_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu140_PFMHTNoMu140_IDTight", "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", "HLT_Mu12_DoublePFJets100_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets200_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets350_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets40_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets40MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_Mu12_DoublePFJets54MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_Mu12_DoublePFJets62MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_Mu12_DoublePhoton20", "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Mu15_IsoVVVL_PFHT450", "HLT_Mu15_IsoVVVL_PFHT450_CaloBTagCSV_4p5", "HLT_Mu15_IsoVVVL_PFHT450_PFMET50", "HLT_Mu15_IsoVVVL_PFHT600", "HLT_Mu17", "HLT_Mu17_Photon30_IsoCaloId", "HLT_Mu17_TrkIsoVVL", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ_Mass3p8", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ_Mass8", "HLT_Mu19", "HLT_Mu19_TrkIsoVVL", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL_DZ", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL_DZ_Mass3p8", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL_DZ_Mass8", "HLT_Mu20", "HLT_Mu20_TkMu0_Phi", "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Mu25_TkMu0_Onia", "HLT_Mu25_TkMu0_Phi", "HLT_Mu27", "HLT_Mu27_Ele37_CaloIdL_MW", "HLT_Mu30_TkMu0_Onia", "HLT_Mu37_Ele27_CaloIdL_MW", "HLT_Mu37_TkMu27", "HLT_Mu3_PFJet40", "HLT_Mu43NoFiltersNoVtx_Photon43_CaloIdL", "HLT_Mu48NoFiltersNoVtx_Photon48_CaloIdL", "HLT_Mu50", "HLT_Mu50_IsoVVVL_PFHT450", "HLT_Mu55", "HLT_Mu7p5_L2Mu2_Jpsi", "HLT_Mu7p5_L2Mu2_Upsilon", "HLT_Mu7p5_Track2_Jpsi", "HLT_Mu7p5_Track2_Upsilon", "HLT_Mu7p5_Track3p5_Jpsi", "HLT_Mu7p5_Track3p5_Upsilon", "HLT_Mu7p5_Track7_Jpsi", "HLT_Mu7p5_Track7_Upsilon", "HLT_Mu8", "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", "HLT_Mu8_DiEle12_CaloIdL_TrackIdL_DZ", "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT350", "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT350_DZ", "HLT_Mu8_TrkIsoVVL", "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_OldMu100", "HLT_PFHT1050", "HLT_PFHT180", "HLT_PFHT250", "HLT_PFHT300PT30_QuadPFJet_75_60_45_40", "HLT_PFHT300PT30_QuadPFJet_75_60_45_40_TriplePFBTagCSV_3p0", "HLT_PFHT350", "HLT_PFHT350MinPFJet15", "HLT_PFHT370", "HLT_PFHT380_SixPFJet32", "HLT_PFHT380_SixPFJet32_DoublePFBTagCSV_2p2", "HLT_PFHT380_SixPFJet32_DoublePFBTagDeepCSV_2p2", "HLT_PFHT430", "HLT_PFHT430_SixPFJet40", "HLT_PFHT430_SixPFJet40_PFBTagCSV_1p5", "HLT_PFHT500_PFMET100_PFMHT100_IDTight", "HLT_PFHT500_PFMET110_PFMHT110_IDTight", "HLT_PFHT510", "HLT_PFHT590", "HLT_PFHT680", "HLT_PFHT700_PFMET85_PFMHT85_IDTight", "HLT_PFHT700_PFMET95_PFMHT95_IDTight", "HLT_PFHT780", "HLT_PFHT800_PFMET75_PFMHT75_IDTight", "HLT_PFHT800_PFMET85_PFMHT85_IDTight", "HLT_PFHT890", "HLT_PFJet140", "HLT_PFJet200", "HLT_PFJet260", "HLT_PFJet320", "HLT_PFJet40", "HLT_PFJet400", "HLT_PFJet450", "HLT_PFJet500", "HLT_PFJet550", "HLT_PFJet60", "HLT_PFJet80", "HLT_PFJetFwd140", "HLT_PFJetFwd200", "HLT_PFJetFwd260", "HLT_PFJetFwd320", "HLT_PFJetFwd40", "HLT_PFJetFwd400", "HLT_PFJetFwd450", "HLT_PFJetFwd500", "HLT_PFJetFwd60", "HLT_PFJetFwd80", "HLT_PFMET100_PFMHT100_IDTight_CaloBTagCSV_3p1", "HLT_PFMET110_PFMHT110_IDTight", "HLT_PFMET110_PFMHT110_IDTight_CaloBTagCSV_3p1", "HLT_PFMET120_PFMHT120_IDTight", "HLT_PFMET120_PFMHT120_IDTight_CaloBTagCSV_3p1", "HLT_PFMET120_PFMHT120_IDTight_HFCleaned", "HLT_PFMET120_PFMHT120_IDTight_PFHT60", "HLT_PFMET120_PFMHT120_IDTight_PFHT60_HFCleaned", "HLT_PFMET130_PFMHT130_IDTight", "HLT_PFMET130_PFMHT130_IDTight_CaloBTagCSV_3p1", "HLT_PFMET140_PFMHT140_IDTight", "HLT_PFMET140_PFMHT140_IDTight_CaloBTagCSV_3p1", "HLT_PFMET200_HBHE_BeamHaloCleaned", "HLT_PFMET200_HBHECleaned", "HLT_PFMET200_NotCleaned", "HLT_PFMET250_HBHECleaned", "HLT_PFMET300_HBHECleaned", "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight_HFCleaned", "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight_PFHT60", "HLT_PFMETNoMu130_PFMHTNoMu130_IDTight", "HLT_PFMETNoMu140_PFMHTNoMu140_IDTight", "HLT_PFMETTypeOne110_PFMHT110_IDTight", "HLT_PFMETTypeOne120_PFMHT120_IDTight", "HLT_PFMETTypeOne120_PFMHT120_IDTight_HFCleaned", "HLT_PFMETTypeOne120_PFMHT120_IDTight_PFHT60", "HLT_PFMETTypeOne130_PFMHT130_IDTight", "HLT_PFMETTypeOne140_PFMHT140_IDTight", "HLT_PFMETTypeOne200_HBHE_BeamHaloCleaned", "HLT_Photon120", "HLT_Photon120_R9Id90_HE10_IsoM", "HLT_Photon150", "HLT_Photon165_R9Id90_HE10_IsoM", "HLT_Photon175", "HLT_Photon200", "HLT_Photon20_HoverELoose", "HLT_Photon25", "HLT_Photon300_NoHE", "HLT_Photon30_HoverELoose", "HLT_Photon33", "HLT_Photon40_HoverELoose", "HLT_Photon50", "HLT_Photon50_HoverELoose", "HLT_Photon50_R9Id90_HE10_IsoM", "HLT_Photon60_HoverELoose", "HLT_Photon60_R9Id90_CaloIdL_IsoL", "HLT_Photon60_R9Id90_CaloIdL_IsoL_DisplacedIdL", "HLT_Photon60_R9Id90_CaloIdL_IsoL_DisplacedIdL_PFHT350MinPFJet15", "HLT_Photon75", "HLT_Photon75_R9Id90_HE10_IsoM", "HLT_Photon90", "HLT_Photon90_R9Id90_HE10_IsoM", "HLT_Physics", "HLT_Physics_part0", "HLT_Physics_part1", "HLT_Physics_part2", "HLT_Physics_part3", "HLT_Physics_part4", "HLT_Physics_part5", "HLT_Physics_part6", "HLT_Physics_part7", "HLT_Random", "HLT_Rsq0p35", "HLT_Rsq0p40", "HLT_RsqMR300_Rsq0p09_MR200", "HLT_RsqMR300_Rsq0p09_MR200_4jet", "HLT_RsqMR320_Rsq0p09_MR200", "HLT_RsqMR320_Rsq0p09_MR200_4jet", "HLT_SingleJet30_Mu12_SinglePFJet40", "HLT_Tau3Mu_Mu5_Mu1_TkMu1_IsoTau10", "HLT_Tau3Mu_Mu5_Mu1_TkMu1_IsoTau10_Charge1", "HLT_Tau3Mu_Mu5_Mu1_TkMu1_Tau10", "HLT_Tau3Mu_Mu5_Mu1_TkMu1_Tau10_Charge1", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_IsoTau15", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_IsoTau15_Charge1", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_Tau15", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_Tau15_Charge1", "HLT_TkMu100", "HLT_Trimuon5_3p5_2_Upsilon_Muon", "HLT_TripleJet110_35_35_Mjj650_PFMET110", "HLT_TripleJet110_35_35_Mjj650_PFMET120", "HLT_TripleJet110_35_35_Mjj650_PFMET130", "HLT_TripleMu_10_5_5_DZ", "HLT_TripleMu_12_10_5", "HLT_TriplePhoton_20_20_20_CaloIdLV2", "HLT_TriplePhoton_20_20_20_CaloIdLV2_R9IdVL", "HLT_TriplePhoton_30_30_10_CaloIdLV2", "HLT_TriplePhoton_30_30_10_CaloIdLV2_R9IdVL", "HLT_TriplePhoton_35_35_5_CaloIdLV2_R9IdVL", "HLT_TrkMu12_DoubleTrkMu5NoFiltersNoVtx", "HLT_TrkMu16_DoubleTrkMu6NoFiltersNoVtx", "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", "HLT_UncorrectedJetE30_NoBPTX", "HLT_UncorrectedJetE30_NoBPTX3BX", "HLT_UncorrectedJetE60_NoBPTX3BX", "HLT_UncorrectedJetE70_NoBPTX3BX", "HLT_VBF_DoubleLooseChargedIsoPFTau20_Trk1_eta2p1_Reg", "HLT_VBF_DoubleMediumChargedIsoPFTau20_Trk1_eta2p1_Reg", "HLT_VBF_DoubleTightChargedIsoPFTau20_Trk1_eta2p1_Reg", "HLT_ZeroBias", "HLT_ZeroBias_FirstBXAfterTrain", "HLT_ZeroBias_FirstCollisionAfterAbortGap", "HLT_ZeroBias_FirstCollisionInTrain", "HLT_ZeroBias_IsolatedBunches", "HLT_ZeroBias_LastCollisionInTrain", "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_ZeroBias_part8", "HLT_ZeroBias_part9", ]), ]) samples_2017["/SingleElectron/Run2017D-31Mar2018-v1/MINIAOD"] = OD([ ("type", "data"), ("sample_category", "data_obs"), ("process_name_specific", "SingleElectron_Run2017D_31Mar2018_v1"), ("nof_files", 26), ("nof_db_files", 448), ("nof_events", { }), ("nof_tree_events", 50610320), ("nof_db_events", 51526710), ("fsize_local", 28007144931), # 28.01GB, avg file size 1.08GB ("fsize_db", 1551689557804), # 1.55TB, avg file size 3.46GB ("use_it", True), ("triggers", ['1e', '1e1tau']), ("has_LHE", False), ("nof_PSweights", 0), ("LHE_set", ""), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2020Dec27_woPresel_nom_all_hh_multilepton/ntuples/SingleElectron_Run2017D_31Mar2018_v1"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ ]), ("missing_from_superset", [ ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ "HLT_AK4CaloJet100", "HLT_AK4CaloJet120", "HLT_AK4CaloJet30", "HLT_AK4CaloJet40", "HLT_AK4CaloJet50", "HLT_AK4CaloJet80", "HLT_AK4PFJet100", "HLT_AK4PFJet120", "HLT_AK4PFJet30", "HLT_AK4PFJet50", "HLT_AK4PFJet80", "HLT_AK8PFHT750_TrimMass50", "HLT_AK8PFHT800_TrimMass50", "HLT_AK8PFHT850_TrimMass50", "HLT_AK8PFHT900_TrimMass50", "HLT_AK8PFJet140", "HLT_AK8PFJet200", "HLT_AK8PFJet260", "HLT_AK8PFJet320", "HLT_AK8PFJet360_TrimMass30", "HLT_AK8PFJet380_TrimMass30", "HLT_AK8PFJet40", "HLT_AK8PFJet400", "HLT_AK8PFJet400_TrimMass30", "HLT_AK8PFJet420_TrimMass30", "HLT_AK8PFJet450", "HLT_AK8PFJet500", "HLT_AK8PFJet550", "HLT_AK8PFJet60", "HLT_AK8PFJet80", "HLT_AK8PFJetFwd140", "HLT_AK8PFJetFwd200", "HLT_AK8PFJetFwd260", "HLT_AK8PFJetFwd320", "HLT_AK8PFJetFwd40", "HLT_AK8PFJetFwd400", "HLT_AK8PFJetFwd450", "HLT_AK8PFJetFwd500", "HLT_AK8PFJetFwd60", "HLT_AK8PFJetFwd80", "HLT_BTagMu_AK4DiJet110_Mu5", "HLT_BTagMu_AK4DiJet170_Mu5", "HLT_BTagMu_AK4DiJet20_Mu5", "HLT_BTagMu_AK4DiJet40_Mu5", "HLT_BTagMu_AK4DiJet70_Mu5", "HLT_BTagMu_AK4Jet300_Mu5", "HLT_BTagMu_AK8DiJet170_Mu5", "HLT_BTagMu_AK8Jet300_Mu5", "HLT_CaloJet500_NoJetID", "HLT_CaloJet550_NoJetID", "HLT_CaloMET100_HBHECleaned", "HLT_CaloMET100_NotCleaned", "HLT_CaloMET110_NotCleaned", "HLT_CaloMET250_HBHECleaned", "HLT_CaloMET250_NotCleaned", "HLT_CaloMET300_HBHECleaned", "HLT_CaloMET350_HBHECleaned", "HLT_CaloMET70_HBHECleaned", "HLT_CaloMET80_HBHECleaned", "HLT_CaloMET80_NotCleaned", "HLT_CaloMET90_HBHECleaned", "HLT_CaloMET90_NotCleaned", "HLT_CaloMHT90", "HLT_DiEle27_WPTightCaloOnly_L1DoubleEG", "HLT_DiJet110_35_Mjj650_PFMET110", "HLT_DiJet110_35_Mjj650_PFMET120", "HLT_DiJet110_35_Mjj650_PFMET130", "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", "HLT_DiMu9_Ele9_CaloIdL_TrackIdL_DZ", "HLT_Dimuon0_Jpsi", "HLT_Dimuon0_Jpsi3p5_Muon2", "HLT_Dimuon0_Jpsi_L1_4R_0er1p5R", "HLT_Dimuon0_Jpsi_L1_NoOS", "HLT_Dimuon0_Jpsi_NoVertexing", "HLT_Dimuon0_Jpsi_NoVertexing_L1_4R_0er1p5R", "HLT_Dimuon0_Jpsi_NoVertexing_NoOS", "HLT_Dimuon0_LowMass", "HLT_Dimuon0_LowMass_L1_0er1p5", "HLT_Dimuon0_LowMass_L1_0er1p5R", "HLT_Dimuon0_LowMass_L1_4", "HLT_Dimuon0_LowMass_L1_4R", "HLT_Dimuon0_LowMass_L1_TM530", "HLT_Dimuon0_Upsilon_L1_4p5", "HLT_Dimuon0_Upsilon_L1_4p5er2p0", "HLT_Dimuon0_Upsilon_L1_4p5er2p0M", "HLT_Dimuon0_Upsilon_L1_4p5NoOS", "HLT_Dimuon0_Upsilon_L1_5", "HLT_Dimuon0_Upsilon_L1_5M", "HLT_Dimuon0_Upsilon_Muon_L1_TM0", "HLT_Dimuon0_Upsilon_Muon_NoL1Mass", "HLT_Dimuon0_Upsilon_NoVertexing", "HLT_Dimuon10_PsiPrime_Barrel_Seagulls", "HLT_Dimuon10_Upsilon_Barrel_Seagulls", "HLT_Dimuon12_Upsilon_eta1p5", "HLT_Dimuon14_Phi_Barrel_Seagulls", "HLT_Dimuon18_PsiPrime", "HLT_Dimuon18_PsiPrime_noCorrL1", "HLT_Dimuon20_Jpsi_Barrel_Seagulls", "HLT_Dimuon24_Phi_noCorrL1", "HLT_Dimuon24_Upsilon_noCorrL1", "HLT_Dimuon25_Jpsi", "HLT_Dimuon25_Jpsi_noCorrL1", "HLT_DiPFJet15_FBEta3_NoCaloMatched", "HLT_DiPFJet15_NoCaloMatched", "HLT_DiPFJet25_FBEta3_NoCaloMatched", "HLT_DiPFJet25_NoCaloMatched", "HLT_DiPFJetAve100_HFJEC", "HLT_DiPFJetAve140", "HLT_DiPFJetAve15_HFJEC", "HLT_DiPFJetAve160_HFJEC", "HLT_DiPFJetAve200", "HLT_DiPFJetAve220_HFJEC", "HLT_DiPFJetAve25_HFJEC", "HLT_DiPFJetAve260", "HLT_DiPFJetAve300_HFJEC", "HLT_DiPFJetAve320", "HLT_DiPFJetAve35_HFJEC", "HLT_DiPFJetAve40", "HLT_DiPFJetAve400", "HLT_DiPFJetAve500", "HLT_DiPFJetAve60", "HLT_DiPFJetAve60_HFJEC", "HLT_DiPFJetAve80", "HLT_DiPFJetAve80_HFJEC", "HLT_Diphoton30_22_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", "HLT_Diphoton30_22_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass95", "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_NoPixelVeto_Mass55", "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_PixelVeto_Mass55", "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_NoPixelVeto_Mass55", "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_PixelVeto_Mass55", "HLT_DiSC30_18_EIso_AND_HE_Mass70", "HLT_DoubleEle24_eta2p1_WPTight_Gsf", "HLT_DoubleEle25_CaloIdL_MW", "HLT_DoubleEle27_CaloIdL_MW", "HLT_DoubleEle33_CaloIdL_MW", "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_DZ_PFHT350", "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT350", "HLT_DoubleIsoMu20_eta2p1", "HLT_DoubleIsoMu24_eta2p1", "HLT_DoubleL2Mu50", "HLT_DoubleLooseChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMu20_7_Mass0to30_L1_DM4", "HLT_DoubleMu20_7_Mass0to30_L1_DM4EG", "HLT_DoubleMu20_7_Mass0to30_Photon23", "HLT_DoubleMu3_DZ_PFMET50_PFMHT60", "HLT_DoubleMu3_DZ_PFMET70_PFMHT70", "HLT_DoubleMu3_DZ_PFMET90_PFMHT90", "HLT_DoubleMu3_Trk_Tau3mu", "HLT_DoubleMu3_Trk_Tau3mu_NoL1Mass", "HLT_DoubleMu43NoFiltersNoVtx", "HLT_DoubleMu48NoFiltersNoVtx", "HLT_DoubleMu4_3_Bs", "HLT_DoubleMu4_3_Jpsi_Displaced", "HLT_DoubleMu4_Jpsi_Displaced", "HLT_DoubleMu4_Jpsi_NoVertexing", "HLT_DoubleMu4_JpsiTrk_Displaced", "HLT_DoubleMu4_JpsiTrkTrk_Displaced", "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", "HLT_DoubleMu4_Mass8_DZ_PFHT350", "HLT_DoubleMu4_PsiPrimeTrk_Displaced", "HLT_DoubleMu8_Mass8_PFHT350", "HLT_DoublePFJets100_CaloBTagCSV_p33", "HLT_DoublePFJets100MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_DoublePFJets116MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_DoublePFJets128MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_DoublePFJets200_CaloBTagCSV_p33", "HLT_DoublePFJets350_CaloBTagCSV_p33", "HLT_DoublePFJets40_CaloBTagCSV_p33", "HLT_DoublePhoton33_CaloIdL", "HLT_DoublePhoton70", "HLT_DoublePhoton85", "HLT_DoubleTightChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_EcalCalibration", "HLT_ECALHT800", "HLT_Ele115_CaloIdVT_GsfTrkIdT", "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele135_CaloIdVT_GsfTrkIdT", "HLT_Ele145_CaloIdVT_GsfTrkIdT", "HLT_Ele15_IsoVVVL_PFHT450", "HLT_Ele15_IsoVVVL_PFHT450_CaloBTagCSV_4p5", "HLT_Ele15_IsoVVVL_PFHT450_PFMET50", "HLT_Ele15_IsoVVVL_PFHT600", "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", "HLT_Ele200_CaloIdVT_GsfTrkIdT", "HLT_Ele20_eta2p1_WPLoose_Gsf", "HLT_Ele20_WPLoose_Gsf", "HLT_Ele20_WPTight_Gsf", "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Ele24_eta2p1_WPTight_Gsf_LooseChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_LooseChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_MediumChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_MediumChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_TightChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_TightChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele250_CaloIdVT_GsfTrkIdT", "HLT_Ele27_Ele37_CaloIdL_MW", "HLT_Ele27_WPTight_Gsf", "HLT_Ele28_eta2p1_WPTight_Gsf_HT150", "HLT_Ele28_HighEta_SC20_Mass55", "HLT_Ele300_CaloIdVT_GsfTrkIdT", "HLT_Ele30_eta2p1_WPTight_Gsf_CentralPFJet35_EleCleaned", "HLT_Ele32_WPTight_Gsf", "HLT_Ele32_WPTight_Gsf_L1DoubleEG", "HLT_Ele35_WPTight_Gsf", "HLT_Ele35_WPTight_Gsf_L1EGMT", "HLT_Ele38_WPTight_Gsf", "HLT_Ele40_WPTight_Gsf", "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", "HLT_Ele50_IsoVVVL_PFHT450", "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", "HLT_FullTrack_Multiplicity100", "HLT_FullTrack_Multiplicity130", "HLT_FullTrack_Multiplicity155", "HLT_FullTrack_Multiplicity85", "HLT_HcalCalibration", "HLT_HcalIsolatedbunch", "HLT_HcalNZS", "HLT_HcalPhiSym", "HLT_HISinglePhoton10_Eta3p1ForPPRef", "HLT_HISinglePhoton20_Eta3p1ForPPRef", "HLT_HISinglePhoton30_Eta3p1ForPPRef", "HLT_HISinglePhoton40_Eta3p1ForPPRef", "HLT_HISinglePhoton50_Eta3p1ForPPRef", "HLT_HISinglePhoton60_Eta3p1ForPPRef", "HLT_HT300_Beamspot", "HLT_HT400_DisplacedDijet40_DisplacedTrack", "HLT_HT425", "HLT_HT430_DisplacedDijet40_DisplacedTrack", "HLT_HT430_DisplacedDijet60_DisplacedTrack", "HLT_HT430_DisplacedDijet80_DisplacedTrack", "HLT_HT450_Beamspot", "HLT_HT550_DisplacedDijet60_Inclusive", "HLT_HT550_DisplacedDijet80_Inclusive", "HLT_HT650_DisplacedDijet60_Inclusive", "HLT_HT650_DisplacedDijet80_Inclusive", "HLT_HT750_DisplacedDijet80_Inclusive", "HLT_IsoMu20", "HLT_IsoMu20_eta2p1_LooseChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_LooseChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu20_eta2p1_MediumChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_MediumChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu20_eta2p1_TightChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_TightChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu24", "HLT_IsoMu24_eta2p1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau40_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau40_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu27", "HLT_IsoMu30", "HLT_IsoTrackHB", "HLT_IsoTrackHE", "HLT_L1_CDC_SingleMu_3_er1p2_TOP120_DPHI2p618_3p142", "HLT_L1ETMHadSeeds", "HLT_L1MinimumBiasHF0OR", "HLT_L1MinimumBiasHF_OR", "HLT_L1NotBptxOR", "HLT_L1SingleMu18", "HLT_L1SingleMu25", "HLT_L1UnpairedBunchBptxMinus", "HLT_L1UnpairedBunchBptxPlus", "HLT_L2Mu10", "HLT_L2Mu10_NoVertex_NoBPTX", "HLT_L2Mu10_NoVertex_NoBPTX3BX", "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX", "HLT_L2Mu50", "HLT_MediumChargedIsoPFTau180HighPtRelaxedIso_Trk50_eta2p1", "HLT_MediumChargedIsoPFTau180HighPtRelaxedIso_Trk50_eta2p1_1pr", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET100", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET110", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET120", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET130", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET90", "HLT_MET105_IsoTrk50", "HLT_MET120_IsoTrk50", "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu130_PFMHTNoMu130_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu140_PFMHTNoMu140_IDTight", "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", "HLT_Mu12_DoublePFJets100_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets200_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets350_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets40_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets40MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_Mu12_DoublePFJets54MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_Mu12_DoublePFJets62MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_Mu12_DoublePhoton20", "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Mu15_IsoVVVL_PFHT450", "HLT_Mu15_IsoVVVL_PFHT450_CaloBTagCSV_4p5", "HLT_Mu15_IsoVVVL_PFHT450_PFMET50", "HLT_Mu15_IsoVVVL_PFHT600", "HLT_Mu17", "HLT_Mu17_Photon30_IsoCaloId", "HLT_Mu17_TrkIsoVVL", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ_Mass3p8", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ_Mass8", "HLT_Mu19", "HLT_Mu19_TrkIsoVVL", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL_DZ", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL_DZ_Mass3p8", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL_DZ_Mass8", "HLT_Mu20", "HLT_Mu20_TkMu0_Phi", "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Mu25_TkMu0_Onia", "HLT_Mu25_TkMu0_Phi", "HLT_Mu27", "HLT_Mu27_Ele37_CaloIdL_MW", "HLT_Mu30_TkMu0_Onia", "HLT_Mu37_Ele27_CaloIdL_MW", "HLT_Mu37_TkMu27", "HLT_Mu3_PFJet40", "HLT_Mu43NoFiltersNoVtx_Photon43_CaloIdL", "HLT_Mu48NoFiltersNoVtx_Photon48_CaloIdL", "HLT_Mu50", "HLT_Mu50_IsoVVVL_PFHT450", "HLT_Mu55", "HLT_Mu7p5_L2Mu2_Jpsi", "HLT_Mu7p5_L2Mu2_Upsilon", "HLT_Mu7p5_Track2_Jpsi", "HLT_Mu7p5_Track2_Upsilon", "HLT_Mu7p5_Track3p5_Jpsi", "HLT_Mu7p5_Track3p5_Upsilon", "HLT_Mu7p5_Track7_Jpsi", "HLT_Mu7p5_Track7_Upsilon", "HLT_Mu8", "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", "HLT_Mu8_DiEle12_CaloIdL_TrackIdL_DZ", "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT350", "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT350_DZ", "HLT_Mu8_TrkIsoVVL", "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_OldMu100", "HLT_PFHT1050", "HLT_PFHT180", "HLT_PFHT250", "HLT_PFHT300PT30_QuadPFJet_75_60_45_40", "HLT_PFHT300PT30_QuadPFJet_75_60_45_40_TriplePFBTagCSV_3p0", "HLT_PFHT350", "HLT_PFHT350MinPFJet15", "HLT_PFHT370", "HLT_PFHT380_SixPFJet32", "HLT_PFHT380_SixPFJet32_DoublePFBTagCSV_2p2", "HLT_PFHT380_SixPFJet32_DoublePFBTagDeepCSV_2p2", "HLT_PFHT430", "HLT_PFHT430_SixPFJet40", "HLT_PFHT430_SixPFJet40_PFBTagCSV_1p5", "HLT_PFHT500_PFMET100_PFMHT100_IDTight", "HLT_PFHT500_PFMET110_PFMHT110_IDTight", "HLT_PFHT510", "HLT_PFHT590", "HLT_PFHT680", "HLT_PFHT700_PFMET85_PFMHT85_IDTight", "HLT_PFHT700_PFMET95_PFMHT95_IDTight", "HLT_PFHT780", "HLT_PFHT800_PFMET75_PFMHT75_IDTight", "HLT_PFHT800_PFMET85_PFMHT85_IDTight", "HLT_PFHT890", "HLT_PFJet140", "HLT_PFJet200", "HLT_PFJet260", "HLT_PFJet320", "HLT_PFJet40", "HLT_PFJet400", "HLT_PFJet450", "HLT_PFJet500", "HLT_PFJet550", "HLT_PFJet60", "HLT_PFJet80", "HLT_PFJetFwd140", "HLT_PFJetFwd200", "HLT_PFJetFwd260", "HLT_PFJetFwd320", "HLT_PFJetFwd40", "HLT_PFJetFwd400", "HLT_PFJetFwd450", "HLT_PFJetFwd500", "HLT_PFJetFwd60", "HLT_PFJetFwd80", "HLT_PFMET100_PFMHT100_IDTight_CaloBTagCSV_3p1", "HLT_PFMET110_PFMHT110_IDTight", "HLT_PFMET110_PFMHT110_IDTight_CaloBTagCSV_3p1", "HLT_PFMET120_PFMHT120_IDTight", "HLT_PFMET120_PFMHT120_IDTight_CaloBTagCSV_3p1", "HLT_PFMET120_PFMHT120_IDTight_PFHT60", "HLT_PFMET130_PFMHT130_IDTight", "HLT_PFMET130_PFMHT130_IDTight_CaloBTagCSV_3p1", "HLT_PFMET140_PFMHT140_IDTight", "HLT_PFMET140_PFMHT140_IDTight_CaloBTagCSV_3p1", "HLT_PFMET200_HBHE_BeamHaloCleaned", "HLT_PFMET200_HBHECleaned", "HLT_PFMET200_NotCleaned", "HLT_PFMET250_HBHECleaned", "HLT_PFMET300_HBHECleaned", "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight_PFHT60", "HLT_PFMETNoMu130_PFMHTNoMu130_IDTight", "HLT_PFMETNoMu140_PFMHTNoMu140_IDTight", "HLT_PFMETTypeOne110_PFMHT110_IDTight", "HLT_PFMETTypeOne120_PFMHT120_IDTight", "HLT_PFMETTypeOne120_PFMHT120_IDTight_PFHT60", "HLT_PFMETTypeOne130_PFMHT130_IDTight", "HLT_PFMETTypeOne140_PFMHT140_IDTight", "HLT_PFMETTypeOne200_HBHE_BeamHaloCleaned", "HLT_Photon120", "HLT_Photon120_R9Id90_HE10_IsoM", "HLT_Photon150", "HLT_Photon165_R9Id90_HE10_IsoM", "HLT_Photon175", "HLT_Photon200", "HLT_Photon20_HoverELoose", "HLT_Photon25", "HLT_Photon300_NoHE", "HLT_Photon30_HoverELoose", "HLT_Photon33", "HLT_Photon40_HoverELoose", "HLT_Photon50", "HLT_Photon50_HoverELoose", "HLT_Photon50_R9Id90_HE10_IsoM", "HLT_Photon60_HoverELoose", "HLT_Photon60_R9Id90_CaloIdL_IsoL", "HLT_Photon60_R9Id90_CaloIdL_IsoL_DisplacedIdL", "HLT_Photon60_R9Id90_CaloIdL_IsoL_DisplacedIdL_PFHT350MinPFJet15", "HLT_Photon75", "HLT_Photon75_R9Id90_HE10_IsoM", "HLT_Photon90", "HLT_Photon90_R9Id90_HE10_IsoM", "HLT_Physics", "HLT_Physics_part0", "HLT_Physics_part1", "HLT_Physics_part2", "HLT_Physics_part3", "HLT_Physics_part4", "HLT_Physics_part5", "HLT_Physics_part6", "HLT_Physics_part7", "HLT_Random", "HLT_Rsq0p35", "HLT_Rsq0p40", "HLT_RsqMR300_Rsq0p09_MR200", "HLT_RsqMR300_Rsq0p09_MR200_4jet", "HLT_RsqMR320_Rsq0p09_MR200", "HLT_RsqMR320_Rsq0p09_MR200_4jet", "HLT_SingleJet30_Mu12_SinglePFJet40", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_IsoTau15", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_IsoTau15_Charge1", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_Tau15", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_Tau15_Charge1", "HLT_TkMu100", "HLT_Trimuon5_3p5_2_Upsilon_Muon", "HLT_TripleJet110_35_35_Mjj650_PFMET110", "HLT_TripleJet110_35_35_Mjj650_PFMET120", "HLT_TripleJet110_35_35_Mjj650_PFMET130", "HLT_TripleMu_10_5_5_DZ", "HLT_TripleMu_12_10_5", "HLT_TripleMu_5_3_3_Mass3p8to60_DZ", "HLT_TriplePhoton_20_20_20_CaloIdLV2", "HLT_TriplePhoton_20_20_20_CaloIdLV2_R9IdVL", "HLT_TriplePhoton_30_30_10_CaloIdLV2", "HLT_TriplePhoton_30_30_10_CaloIdLV2_R9IdVL", "HLT_TriplePhoton_35_35_5_CaloIdLV2_R9IdVL", "HLT_TrkMu12_DoubleTrkMu5NoFiltersNoVtx", "HLT_TrkMu16_DoubleTrkMu6NoFiltersNoVtx", "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", "HLT_UncorrectedJetE30_NoBPTX", "HLT_UncorrectedJetE30_NoBPTX3BX", "HLT_UncorrectedJetE60_NoBPTX3BX", "HLT_UncorrectedJetE70_NoBPTX3BX", "HLT_VBF_DoubleLooseChargedIsoPFTau20_Trk1_eta2p1_Reg", "HLT_VBF_DoubleMediumChargedIsoPFTau20_Trk1_eta2p1_Reg", "HLT_VBF_DoubleTightChargedIsoPFTau20_Trk1_eta2p1_Reg", "HLT_ZeroBias", "HLT_ZeroBias_FirstBXAfterTrain", "HLT_ZeroBias_FirstCollisionAfterAbortGap", "HLT_ZeroBias_FirstCollisionInTrain", "HLT_ZeroBias_IsolatedBunches", "HLT_ZeroBias_LastCollisionInTrain", "HLT_ZeroBias_part0", "HLT_ZeroBias_part1", "HLT_ZeroBias_part2", "HLT_ZeroBias_part3", "HLT_ZeroBias_part4", "HLT_ZeroBias_part5", "HLT_ZeroBias_part6", "HLT_ZeroBias_part7", ]), ]) samples_2017["/SingleElectron/Run2017E-31Mar2018-v1/MINIAOD"] = OD([ ("type", "data"), ("sample_category", "data_obs"), ("process_name_specific", "SingleElectron_Run2017E_31Mar2018_v1"), ("nof_files", 50), ("nof_db_files", 1054), ("nof_events", { }), ("nof_tree_events", 100205122), ("nof_db_events", 102121689), ("fsize_local", 57045198336), # 57.05GB, avg file size 1.14GB ("fsize_db", 3472568613831), # 3.47TB, avg file size 3.29GB ("use_it", True), ("triggers", ['1e', '1e1tau']), ("has_LHE", False), ("nof_PSweights", 0), ("LHE_set", ""), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2020Dec27_woPresel_nom_all_hh_multilepton/ntuples/SingleElectron_Run2017E_31Mar2018_v1"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ ]), ("missing_from_superset", [ ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ "HLT_AK4CaloJet100", "HLT_AK4CaloJet120", "HLT_AK4CaloJet30", "HLT_AK4CaloJet40", "HLT_AK4CaloJet50", "HLT_AK4CaloJet80", "HLT_AK4PFJet100", "HLT_AK4PFJet120", "HLT_AK4PFJet30", "HLT_AK4PFJet50", "HLT_AK4PFJet80", "HLT_AK8PFHT750_TrimMass50", "HLT_AK8PFHT800_TrimMass50", "HLT_AK8PFHT850_TrimMass50", "HLT_AK8PFHT900_TrimMass50", "HLT_AK8PFJet140", "HLT_AK8PFJet200", "HLT_AK8PFJet260", "HLT_AK8PFJet320", "HLT_AK8PFJet360_TrimMass30", "HLT_AK8PFJet380_TrimMass30", "HLT_AK8PFJet40", "HLT_AK8PFJet400", "HLT_AK8PFJet400_TrimMass30", "HLT_AK8PFJet420_TrimMass30", "HLT_AK8PFJet450", "HLT_AK8PFJet500", "HLT_AK8PFJet550", "HLT_AK8PFJet60", "HLT_AK8PFJet80", "HLT_AK8PFJetFwd140", "HLT_AK8PFJetFwd200", "HLT_AK8PFJetFwd260", "HLT_AK8PFJetFwd320", "HLT_AK8PFJetFwd40", "HLT_AK8PFJetFwd400", "HLT_AK8PFJetFwd450", "HLT_AK8PFJetFwd500", "HLT_AK8PFJetFwd60", "HLT_AK8PFJetFwd80", "HLT_BTagMu_AK4DiJet110_Mu5", "HLT_BTagMu_AK4DiJet170_Mu5", "HLT_BTagMu_AK4DiJet20_Mu5", "HLT_BTagMu_AK4DiJet40_Mu5", "HLT_BTagMu_AK4DiJet70_Mu5", "HLT_BTagMu_AK4Jet300_Mu5", "HLT_BTagMu_AK8DiJet170_Mu5", "HLT_BTagMu_AK8Jet300_Mu5", "HLT_CaloJet500_NoJetID", "HLT_CaloJet550_NoJetID", "HLT_CaloMET100_HBHECleaned", "HLT_CaloMET100_NotCleaned", "HLT_CaloMET110_NotCleaned", "HLT_CaloMET250_HBHECleaned", "HLT_CaloMET250_NotCleaned", "HLT_CaloMET300_HBHECleaned", "HLT_CaloMET350_HBHECleaned", "HLT_CaloMET70_HBHECleaned", "HLT_CaloMET80_HBHECleaned", "HLT_CaloMET80_NotCleaned", "HLT_CaloMET90_HBHECleaned", "HLT_CaloMET90_NotCleaned", "HLT_CaloMHT90", "HLT_DiEle27_WPTightCaloOnly_L1DoubleEG", "HLT_DiJet110_35_Mjj650_PFMET110", "HLT_DiJet110_35_Mjj650_PFMET120", "HLT_DiJet110_35_Mjj650_PFMET130", "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", "HLT_DiMu9_Ele9_CaloIdL_TrackIdL_DZ", "HLT_Dimuon0_Jpsi", "HLT_Dimuon0_Jpsi3p5_Muon2", "HLT_Dimuon0_Jpsi_L1_4R_0er1p5R", "HLT_Dimuon0_Jpsi_L1_NoOS", "HLT_Dimuon0_Jpsi_NoVertexing", "HLT_Dimuon0_Jpsi_NoVertexing_L1_4R_0er1p5R", "HLT_Dimuon0_Jpsi_NoVertexing_NoOS", "HLT_Dimuon0_LowMass", "HLT_Dimuon0_LowMass_L1_0er1p5", "HLT_Dimuon0_LowMass_L1_0er1p5R", "HLT_Dimuon0_LowMass_L1_4", "HLT_Dimuon0_LowMass_L1_4R", "HLT_Dimuon0_LowMass_L1_TM530", "HLT_Dimuon0_Upsilon_L1_4p5", "HLT_Dimuon0_Upsilon_L1_4p5er2p0", "HLT_Dimuon0_Upsilon_L1_4p5er2p0M", "HLT_Dimuon0_Upsilon_L1_4p5NoOS", "HLT_Dimuon0_Upsilon_L1_5", "HLT_Dimuon0_Upsilon_L1_5M", "HLT_Dimuon0_Upsilon_Muon_L1_TM0", "HLT_Dimuon0_Upsilon_Muon_NoL1Mass", "HLT_Dimuon0_Upsilon_NoVertexing", "HLT_Dimuon10_PsiPrime_Barrel_Seagulls", "HLT_Dimuon10_Upsilon_Barrel_Seagulls", "HLT_Dimuon12_Upsilon_eta1p5", "HLT_Dimuon14_Phi_Barrel_Seagulls", "HLT_Dimuon18_PsiPrime", "HLT_Dimuon18_PsiPrime_noCorrL1", "HLT_Dimuon20_Jpsi_Barrel_Seagulls", "HLT_Dimuon24_Phi_noCorrL1", "HLT_Dimuon24_Upsilon_noCorrL1", "HLT_Dimuon25_Jpsi", "HLT_Dimuon25_Jpsi_noCorrL1", "HLT_DiPFJet15_FBEta3_NoCaloMatched", "HLT_DiPFJet15_NoCaloMatched", "HLT_DiPFJet25_FBEta3_NoCaloMatched", "HLT_DiPFJet25_NoCaloMatched", "HLT_DiPFJetAve100_HFJEC", "HLT_DiPFJetAve140", "HLT_DiPFJetAve15_HFJEC", "HLT_DiPFJetAve160_HFJEC", "HLT_DiPFJetAve200", "HLT_DiPFJetAve220_HFJEC", "HLT_DiPFJetAve25_HFJEC", "HLT_DiPFJetAve260", "HLT_DiPFJetAve300_HFJEC", "HLT_DiPFJetAve320", "HLT_DiPFJetAve35_HFJEC", "HLT_DiPFJetAve40", "HLT_DiPFJetAve400", "HLT_DiPFJetAve500", "HLT_DiPFJetAve60", "HLT_DiPFJetAve60_HFJEC", "HLT_DiPFJetAve80", "HLT_DiPFJetAve80_HFJEC", "HLT_Diphoton30_22_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", "HLT_Diphoton30_22_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass95", "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_NoPixelVeto_Mass55", "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_PixelVeto_Mass55", "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_NoPixelVeto_Mass55", "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_PixelVeto_Mass55", "HLT_DiSC30_18_EIso_AND_HE_Mass70", "HLT_DoubleEle24_eta2p1_WPTight_Gsf", "HLT_DoubleEle25_CaloIdL_MW", "HLT_DoubleEle27_CaloIdL_MW", "HLT_DoubleEle33_CaloIdL_MW", "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_DZ_PFHT350", "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT350", "HLT_DoubleIsoMu20_eta2p1", "HLT_DoubleIsoMu24_eta2p1", "HLT_DoubleL2Mu50", "HLT_DoubleLooseChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMu20_7_Mass0to30_L1_DM4", "HLT_DoubleMu20_7_Mass0to30_L1_DM4EG", "HLT_DoubleMu20_7_Mass0to30_Photon23", "HLT_DoubleMu3_DZ_PFMET50_PFMHT60", "HLT_DoubleMu3_DZ_PFMET70_PFMHT70", "HLT_DoubleMu3_DZ_PFMET90_PFMHT90", "HLT_DoubleMu3_Trk_Tau3mu", "HLT_DoubleMu3_Trk_Tau3mu_NoL1Mass", "HLT_DoubleMu43NoFiltersNoVtx", "HLT_DoubleMu48NoFiltersNoVtx", "HLT_DoubleMu4_3_Bs", "HLT_DoubleMu4_3_Jpsi_Displaced", "HLT_DoubleMu4_Jpsi_Displaced", "HLT_DoubleMu4_Jpsi_NoVertexing", "HLT_DoubleMu4_JpsiTrk_Displaced", "HLT_DoubleMu4_JpsiTrkTrk_Displaced", "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", "HLT_DoubleMu4_Mass8_DZ_PFHT350", "HLT_DoubleMu4_PsiPrimeTrk_Displaced", "HLT_DoubleMu8_Mass8_PFHT350", "HLT_DoublePFJets100_CaloBTagCSV_p33", "HLT_DoublePFJets100MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_DoublePFJets116MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_DoublePFJets128MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_DoublePFJets200_CaloBTagCSV_p33", "HLT_DoublePFJets350_CaloBTagCSV_p33", "HLT_DoublePFJets40_CaloBTagCSV_p33", "HLT_DoublePhoton33_CaloIdL", "HLT_DoublePhoton70", "HLT_DoublePhoton85", "HLT_DoubleTightChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_EcalCalibration", "HLT_ECALHT800", "HLT_Ele115_CaloIdVT_GsfTrkIdT", "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele135_CaloIdVT_GsfTrkIdT", "HLT_Ele145_CaloIdVT_GsfTrkIdT", "HLT_Ele15_IsoVVVL_PFHT450", "HLT_Ele15_IsoVVVL_PFHT450_CaloBTagCSV_4p5", "HLT_Ele15_IsoVVVL_PFHT450_PFMET50", "HLT_Ele15_IsoVVVL_PFHT600", "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", "HLT_Ele200_CaloIdVT_GsfTrkIdT", "HLT_Ele20_eta2p1_WPLoose_Gsf", "HLT_Ele20_WPLoose_Gsf", "HLT_Ele20_WPTight_Gsf", "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Ele24_eta2p1_WPTight_Gsf_LooseChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_LooseChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_MediumChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_MediumChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_TightChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_TightChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele250_CaloIdVT_GsfTrkIdT", "HLT_Ele27_Ele37_CaloIdL_MW", "HLT_Ele27_WPTight_Gsf", "HLT_Ele28_eta2p1_WPTight_Gsf_HT150", "HLT_Ele28_HighEta_SC20_Mass55", "HLT_Ele300_CaloIdVT_GsfTrkIdT", "HLT_Ele30_eta2p1_WPTight_Gsf_CentralPFJet35_EleCleaned", "HLT_Ele32_WPTight_Gsf", "HLT_Ele32_WPTight_Gsf_L1DoubleEG", "HLT_Ele35_WPTight_Gsf", "HLT_Ele35_WPTight_Gsf_L1EGMT", "HLT_Ele38_WPTight_Gsf", "HLT_Ele40_WPTight_Gsf", "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", "HLT_Ele50_IsoVVVL_PFHT450", "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", "HLT_FullTrack_Multiplicity100", "HLT_FullTrack_Multiplicity130", "HLT_FullTrack_Multiplicity155", "HLT_FullTrack_Multiplicity85", "HLT_HcalCalibration", "HLT_HcalIsolatedbunch", "HLT_HcalNZS", "HLT_HcalPhiSym", "HLT_HISinglePhoton10_Eta3p1ForPPRef", "HLT_HISinglePhoton20_Eta3p1ForPPRef", "HLT_HISinglePhoton30_Eta3p1ForPPRef", "HLT_HISinglePhoton40_Eta3p1ForPPRef", "HLT_HISinglePhoton50_Eta3p1ForPPRef", "HLT_HISinglePhoton60_Eta3p1ForPPRef", "HLT_HT300_Beamspot", "HLT_HT400_DisplacedDijet40_DisplacedTrack", "HLT_HT425", "HLT_HT430_DisplacedDijet40_DisplacedTrack", "HLT_HT430_DisplacedDijet60_DisplacedTrack", "HLT_HT430_DisplacedDijet80_DisplacedTrack", "HLT_HT450_Beamspot", "HLT_HT550_DisplacedDijet60_Inclusive", "HLT_HT550_DisplacedDijet80_Inclusive", "HLT_HT650_DisplacedDijet60_Inclusive", "HLT_HT650_DisplacedDijet80_Inclusive", "HLT_HT750_DisplacedDijet80_Inclusive", "HLT_IsoMu20", "HLT_IsoMu20_eta2p1_LooseChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_LooseChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu20_eta2p1_MediumChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_MediumChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu20_eta2p1_TightChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_TightChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu24", "HLT_IsoMu24_eta2p1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau40_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau40_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu27", "HLT_IsoMu30", "HLT_IsoTrackHB", "HLT_IsoTrackHE", "HLT_L1_CDC_SingleMu_3_er1p2_TOP120_DPHI2p618_3p142", "HLT_L1ETMHadSeeds", "HLT_L1MinimumBiasHF0OR", "HLT_L1MinimumBiasHF_OR", "HLT_L1NotBptxOR", "HLT_L1SingleMu18", "HLT_L1SingleMu25", "HLT_L1UnpairedBunchBptxMinus", "HLT_L1UnpairedBunchBptxPlus", "HLT_L2Mu10", "HLT_L2Mu10_NoVertex_NoBPTX", "HLT_L2Mu10_NoVertex_NoBPTX3BX", "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX", "HLT_L2Mu50", "HLT_MediumChargedIsoPFTau180HighPtRelaxedIso_Trk50_eta2p1", "HLT_MediumChargedIsoPFTau180HighPtRelaxedIso_Trk50_eta2p1_1pr", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET100", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET110", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET120", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET130", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET90", "HLT_MET105_IsoTrk50", "HLT_MET120_IsoTrk50", "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu130_PFMHTNoMu130_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu140_PFMHTNoMu140_IDTight", "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", "HLT_Mu12_DoublePFJets100_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets200_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets350_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets40_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets40MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_Mu12_DoublePFJets54MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_Mu12_DoublePFJets62MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_Mu12_DoublePhoton20", "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Mu15_IsoVVVL_PFHT450", "HLT_Mu15_IsoVVVL_PFHT450_CaloBTagCSV_4p5", "HLT_Mu15_IsoVVVL_PFHT450_PFMET50", "HLT_Mu15_IsoVVVL_PFHT600", "HLT_Mu17", "HLT_Mu17_Photon30_IsoCaloId", "HLT_Mu17_TrkIsoVVL", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ_Mass3p8", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ_Mass8", "HLT_Mu19", "HLT_Mu19_TrkIsoVVL", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL_DZ", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL_DZ_Mass3p8", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL_DZ_Mass8", "HLT_Mu20", "HLT_Mu20_TkMu0_Phi", "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Mu25_TkMu0_Onia", "HLT_Mu25_TkMu0_Phi", "HLT_Mu27", "HLT_Mu27_Ele37_CaloIdL_MW", "HLT_Mu30_TkMu0_Onia", "HLT_Mu37_Ele27_CaloIdL_MW", "HLT_Mu37_TkMu27", "HLT_Mu3_PFJet40", "HLT_Mu43NoFiltersNoVtx_Photon43_CaloIdL", "HLT_Mu48NoFiltersNoVtx_Photon48_CaloIdL", "HLT_Mu50", "HLT_Mu50_IsoVVVL_PFHT450", "HLT_Mu55", "HLT_Mu7p5_L2Mu2_Jpsi", "HLT_Mu7p5_L2Mu2_Upsilon", "HLT_Mu7p5_Track2_Jpsi", "HLT_Mu7p5_Track2_Upsilon", "HLT_Mu7p5_Track3p5_Jpsi", "HLT_Mu7p5_Track3p5_Upsilon", "HLT_Mu7p5_Track7_Jpsi", "HLT_Mu7p5_Track7_Upsilon", "HLT_Mu8", "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", "HLT_Mu8_DiEle12_CaloIdL_TrackIdL_DZ", "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT350", "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT350_DZ", "HLT_Mu8_TrkIsoVVL", "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_OldMu100", "HLT_PFHT1050", "HLT_PFHT180", "HLT_PFHT250", "HLT_PFHT300PT30_QuadPFJet_75_60_45_40", "HLT_PFHT300PT30_QuadPFJet_75_60_45_40_TriplePFBTagCSV_3p0", "HLT_PFHT350", "HLT_PFHT350MinPFJet15", "HLT_PFHT370", "HLT_PFHT380_SixPFJet32", "HLT_PFHT380_SixPFJet32_DoublePFBTagCSV_2p2", "HLT_PFHT380_SixPFJet32_DoublePFBTagDeepCSV_2p2", "HLT_PFHT430", "HLT_PFHT430_SixPFJet40", "HLT_PFHT430_SixPFJet40_PFBTagCSV_1p5", "HLT_PFHT500_PFMET100_PFMHT100_IDTight", "HLT_PFHT500_PFMET110_PFMHT110_IDTight", "HLT_PFHT510", "HLT_PFHT590", "HLT_PFHT680", "HLT_PFHT700_PFMET85_PFMHT85_IDTight", "HLT_PFHT700_PFMET95_PFMHT95_IDTight", "HLT_PFHT780", "HLT_PFHT800_PFMET75_PFMHT75_IDTight", "HLT_PFHT800_PFMET85_PFMHT85_IDTight", "HLT_PFHT890", "HLT_PFJet140", "HLT_PFJet200", "HLT_PFJet260", "HLT_PFJet320", "HLT_PFJet40", "HLT_PFJet400", "HLT_PFJet450", "HLT_PFJet500", "HLT_PFJet550", "HLT_PFJet60", "HLT_PFJet80", "HLT_PFJetFwd140", "HLT_PFJetFwd200", "HLT_PFJetFwd260", "HLT_PFJetFwd320", "HLT_PFJetFwd40", "HLT_PFJetFwd400", "HLT_PFJetFwd450", "HLT_PFJetFwd500", "HLT_PFJetFwd60", "HLT_PFJetFwd80", "HLT_PFMET100_PFMHT100_IDTight_CaloBTagCSV_3p1", "HLT_PFMET110_PFMHT110_IDTight", "HLT_PFMET110_PFMHT110_IDTight_CaloBTagCSV_3p1", "HLT_PFMET120_PFMHT120_IDTight", "HLT_PFMET120_PFMHT120_IDTight_CaloBTagCSV_3p1", "HLT_PFMET120_PFMHT120_IDTight_PFHT60", "HLT_PFMET130_PFMHT130_IDTight", "HLT_PFMET130_PFMHT130_IDTight_CaloBTagCSV_3p1", "HLT_PFMET140_PFMHT140_IDTight", "HLT_PFMET140_PFMHT140_IDTight_CaloBTagCSV_3p1", "HLT_PFMET200_HBHE_BeamHaloCleaned", "HLT_PFMET200_HBHECleaned", "HLT_PFMET200_NotCleaned", "HLT_PFMET250_HBHECleaned", "HLT_PFMET300_HBHECleaned", "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight_PFHT60", "HLT_PFMETNoMu130_PFMHTNoMu130_IDTight", "HLT_PFMETNoMu140_PFMHTNoMu140_IDTight", "HLT_PFMETTypeOne110_PFMHT110_IDTight", "HLT_PFMETTypeOne120_PFMHT120_IDTight", "HLT_PFMETTypeOne120_PFMHT120_IDTight_PFHT60", "HLT_PFMETTypeOne130_PFMHT130_IDTight", "HLT_PFMETTypeOne140_PFMHT140_IDTight", "HLT_PFMETTypeOne200_HBHE_BeamHaloCleaned", "HLT_Photon120", "HLT_Photon120_R9Id90_HE10_IsoM", "HLT_Photon150", "HLT_Photon165_R9Id90_HE10_IsoM", "HLT_Photon175", "HLT_Photon200", "HLT_Photon20_HoverELoose", "HLT_Photon25", "HLT_Photon300_NoHE", "HLT_Photon30_HoverELoose", "HLT_Photon33", "HLT_Photon40_HoverELoose", "HLT_Photon50", "HLT_Photon50_HoverELoose", "HLT_Photon50_R9Id90_HE10_IsoM", "HLT_Photon60_HoverELoose", "HLT_Photon60_R9Id90_CaloIdL_IsoL", "HLT_Photon60_R9Id90_CaloIdL_IsoL_DisplacedIdL", "HLT_Photon60_R9Id90_CaloIdL_IsoL_DisplacedIdL_PFHT350MinPFJet15", "HLT_Photon75", "HLT_Photon75_R9Id90_HE10_IsoM", "HLT_Photon90", "HLT_Photon90_R9Id90_HE10_IsoM", "HLT_Physics", "HLT_Physics_part0", "HLT_Physics_part1", "HLT_Physics_part2", "HLT_Physics_part3", "HLT_Physics_part4", "HLT_Physics_part5", "HLT_Physics_part6", "HLT_Physics_part7", "HLT_Random", "HLT_Rsq0p35", "HLT_Rsq0p40", "HLT_RsqMR300_Rsq0p09_MR200", "HLT_RsqMR300_Rsq0p09_MR200_4jet", "HLT_RsqMR320_Rsq0p09_MR200", "HLT_RsqMR320_Rsq0p09_MR200_4jet", "HLT_SingleJet30_Mu12_SinglePFJet40", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_IsoTau15", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_IsoTau15_Charge1", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_Tau15", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_Tau15_Charge1", "HLT_TkMu100", "HLT_Trimuon5_3p5_2_Upsilon_Muon", "HLT_TripleJet110_35_35_Mjj650_PFMET110", "HLT_TripleJet110_35_35_Mjj650_PFMET120", "HLT_TripleJet110_35_35_Mjj650_PFMET130", "HLT_TripleMu_10_5_5_DZ", "HLT_TripleMu_12_10_5", "HLT_TripleMu_5_3_3_Mass3p8to60_DZ", "HLT_TriplePhoton_20_20_20_CaloIdLV2", "HLT_TriplePhoton_20_20_20_CaloIdLV2_R9IdVL", "HLT_TriplePhoton_30_30_10_CaloIdLV2", "HLT_TriplePhoton_30_30_10_CaloIdLV2_R9IdVL", "HLT_TriplePhoton_35_35_5_CaloIdLV2_R9IdVL", "HLT_TrkMu12_DoubleTrkMu5NoFiltersNoVtx", "HLT_TrkMu16_DoubleTrkMu6NoFiltersNoVtx", "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", "HLT_UncorrectedJetE30_NoBPTX", "HLT_UncorrectedJetE30_NoBPTX3BX", "HLT_UncorrectedJetE60_NoBPTX3BX", "HLT_UncorrectedJetE70_NoBPTX3BX", "HLT_VBF_DoubleLooseChargedIsoPFTau20_Trk1_eta2p1_Reg", "HLT_VBF_DoubleMediumChargedIsoPFTau20_Trk1_eta2p1_Reg", "HLT_VBF_DoubleTightChargedIsoPFTau20_Trk1_eta2p1_Reg", "HLT_ZeroBias", "HLT_ZeroBias_FirstBXAfterTrain", "HLT_ZeroBias_FirstCollisionAfterAbortGap", "HLT_ZeroBias_FirstCollisionInTrain", "HLT_ZeroBias_IsolatedBunches", "HLT_ZeroBias_LastCollisionInTrain", "HLT_ZeroBias_part0", "HLT_ZeroBias_part1", "HLT_ZeroBias_part2", "HLT_ZeroBias_part3", "HLT_ZeroBias_part4", "HLT_ZeroBias_part5", "HLT_ZeroBias_part6", "HLT_ZeroBias_part7", ]), ]) samples_2017["/SingleElectron/Run2017F-31Mar2018-v1/MINIAOD"] = OD([ ("type", "data"), ("sample_category", "data_obs"), ("process_name_specific", "SingleElectron_Run2017F_31Mar2018_v1"), ("nof_files", 64), ("nof_db_files", 1351), ("nof_events", { }), ("nof_tree_events", 126059593), ("nof_db_events", 128467223), ("fsize_local", 73039390754), # 73.04GB, avg file size 1.14GB ("fsize_db", 4488676859926), # 4.49TB, avg file size 3.32GB ("use_it", True), ("triggers", ['1e', '1e1tau']), ("has_LHE", False), ("nof_PSweights", 0), ("LHE_set", ""), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2020Dec27_woPresel_nom_all_hh_multilepton/ntuples/SingleElectron_Run2017F_31Mar2018_v1"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ ]), ("missing_from_superset", [ ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ "HLT_AK4CaloJet100", "HLT_AK4CaloJet120", "HLT_AK4CaloJet30", "HLT_AK4CaloJet40", "HLT_AK4CaloJet50", "HLT_AK4CaloJet80", "HLT_AK4PFJet100", "HLT_AK4PFJet120", "HLT_AK4PFJet30", "HLT_AK4PFJet50", "HLT_AK4PFJet80", "HLT_AK8PFHT750_TrimMass50", "HLT_AK8PFHT800_TrimMass50", "HLT_AK8PFHT850_TrimMass50", "HLT_AK8PFHT900_TrimMass50", "HLT_AK8PFJet140", "HLT_AK8PFJet200", "HLT_AK8PFJet260", "HLT_AK8PFJet320", "HLT_AK8PFJet330_PFAK8BTagCSV_p1", "HLT_AK8PFJet330_PFAK8BTagCSV_p17", "HLT_AK8PFJet360_TrimMass30", "HLT_AK8PFJet380_TrimMass30", "HLT_AK8PFJet40", "HLT_AK8PFJet400", "HLT_AK8PFJet400_TrimMass30", "HLT_AK8PFJet420_TrimMass30", "HLT_AK8PFJet450", "HLT_AK8PFJet500", "HLT_AK8PFJet550", "HLT_AK8PFJet60", "HLT_AK8PFJet80", "HLT_AK8PFJetFwd140", "HLT_AK8PFJetFwd200", "HLT_AK8PFJetFwd260", "HLT_AK8PFJetFwd320", "HLT_AK8PFJetFwd40", "HLT_AK8PFJetFwd400", "HLT_AK8PFJetFwd450", "HLT_AK8PFJetFwd500", "HLT_AK8PFJetFwd60", "HLT_AK8PFJetFwd80", "HLT_BTagMu_AK4DiJet110_Mu5", "HLT_BTagMu_AK4DiJet170_Mu5", "HLT_BTagMu_AK4DiJet20_Mu5", "HLT_BTagMu_AK4DiJet40_Mu5", "HLT_BTagMu_AK4DiJet70_Mu5", "HLT_BTagMu_AK4Jet300_Mu5", "HLT_BTagMu_AK8DiJet170_Mu5", "HLT_BTagMu_AK8Jet300_Mu5", "HLT_CaloJet500_NoJetID", "HLT_CaloJet550_NoJetID", "HLT_CaloMET100_HBHECleaned", "HLT_CaloMET100_NotCleaned", "HLT_CaloMET110_NotCleaned", "HLT_CaloMET250_HBHECleaned", "HLT_CaloMET250_NotCleaned", "HLT_CaloMET300_HBHECleaned", "HLT_CaloMET350_HBHECleaned", "HLT_CaloMET70_HBHECleaned", "HLT_CaloMET80_HBHECleaned", "HLT_CaloMET80_NotCleaned", "HLT_CaloMET90_HBHECleaned", "HLT_CaloMET90_NotCleaned", "HLT_CaloMHT90", "HLT_DiEle27_WPTightCaloOnly_L1DoubleEG", "HLT_DiJet110_35_Mjj650_PFMET110", "HLT_DiJet110_35_Mjj650_PFMET120", "HLT_DiJet110_35_Mjj650_PFMET130", "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", "HLT_DiMu9_Ele9_CaloIdL_TrackIdL_DZ", "HLT_Dimuon0_Jpsi", "HLT_Dimuon0_Jpsi3p5_Muon2", "HLT_Dimuon0_Jpsi_L1_4R_0er1p5R", "HLT_Dimuon0_Jpsi_L1_NoOS", "HLT_Dimuon0_Jpsi_NoVertexing", "HLT_Dimuon0_Jpsi_NoVertexing_L1_4R_0er1p5R", "HLT_Dimuon0_Jpsi_NoVertexing_NoOS", "HLT_Dimuon0_LowMass", "HLT_Dimuon0_LowMass_L1_0er1p5", "HLT_Dimuon0_LowMass_L1_0er1p5R", "HLT_Dimuon0_LowMass_L1_4", "HLT_Dimuon0_LowMass_L1_4R", "HLT_Dimuon0_LowMass_L1_TM530", "HLT_Dimuon0_Upsilon_L1_4p5", "HLT_Dimuon0_Upsilon_L1_4p5er2p0", "HLT_Dimuon0_Upsilon_L1_4p5er2p0M", "HLT_Dimuon0_Upsilon_L1_4p5NoOS", "HLT_Dimuon0_Upsilon_L1_5", "HLT_Dimuon0_Upsilon_L1_5M", "HLT_Dimuon0_Upsilon_Muon_L1_TM0", "HLT_Dimuon0_Upsilon_Muon_NoL1Mass", "HLT_Dimuon0_Upsilon_NoVertexing", "HLT_Dimuon10_PsiPrime_Barrel_Seagulls", "HLT_Dimuon10_Upsilon_Barrel_Seagulls", "HLT_Dimuon12_Upsilon_eta1p5", "HLT_Dimuon14_Phi_Barrel_Seagulls", "HLT_Dimuon18_PsiPrime", "HLT_Dimuon18_PsiPrime_noCorrL1", "HLT_Dimuon20_Jpsi_Barrel_Seagulls", "HLT_Dimuon24_Phi_noCorrL1", "HLT_Dimuon24_Upsilon_noCorrL1", "HLT_Dimuon25_Jpsi", "HLT_Dimuon25_Jpsi_noCorrL1", "HLT_DiPFJet15_FBEta3_NoCaloMatched", "HLT_DiPFJet15_NoCaloMatched", "HLT_DiPFJet25_FBEta3_NoCaloMatched", "HLT_DiPFJet25_NoCaloMatched", "HLT_DiPFJetAve100_HFJEC", "HLT_DiPFJetAve140", "HLT_DiPFJetAve15_HFJEC", "HLT_DiPFJetAve160_HFJEC", "HLT_DiPFJetAve200", "HLT_DiPFJetAve220_HFJEC", "HLT_DiPFJetAve25_HFJEC", "HLT_DiPFJetAve260", "HLT_DiPFJetAve300_HFJEC", "HLT_DiPFJetAve320", "HLT_DiPFJetAve35_HFJEC", "HLT_DiPFJetAve40", "HLT_DiPFJetAve400", "HLT_DiPFJetAve500", "HLT_DiPFJetAve60", "HLT_DiPFJetAve60_HFJEC", "HLT_DiPFJetAve80", "HLT_DiPFJetAve80_HFJEC", "HLT_Diphoton30_18_PVrealAND_R9Id_AND_IsoCaloId_AND_HE_R9Id_NoPixelVeto_Mass55", "HLT_Diphoton30_18_PVrealAND_R9Id_AND_IsoCaloId_AND_HE_R9Id_PixelVeto_Mass55", "HLT_Diphoton30_22_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", "HLT_Diphoton30_22_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass95", "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_NoPixelVeto_Mass55", "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_PixelVeto_Mass55", "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_NoPixelVeto_Mass55", "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_PixelVeto_Mass55", "HLT_DiSC30_18_EIso_AND_HE_Mass70", "HLT_DoubleEle24_eta2p1_WPTight_Gsf", "HLT_DoubleEle25_CaloIdL_MW", "HLT_DoubleEle27_CaloIdL_MW", "HLT_DoubleEle33_CaloIdL_MW", "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_DZ_PFHT350", "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT350", "HLT_DoubleIsoMu20_eta2p1", "HLT_DoubleIsoMu24_eta2p1", "HLT_DoubleL2Mu50", "HLT_DoubleLooseChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMu20_7_Mass0to30_L1_DM4", "HLT_DoubleMu20_7_Mass0to30_L1_DM4EG", "HLT_DoubleMu20_7_Mass0to30_Photon23", "HLT_DoubleMu2_Jpsi_DoubleTkMu0_Phi", "HLT_DoubleMu2_Jpsi_DoubleTrk1_Phi", "HLT_DoubleMu3_DCA_PFMET50_PFMHT60", "HLT_DoubleMu3_DoubleEle7p5_CaloIdL_TrackIdL_Upsilon", "HLT_DoubleMu3_DZ_PFMET50_PFMHT60", "HLT_DoubleMu3_DZ_PFMET70_PFMHT70", "HLT_DoubleMu3_DZ_PFMET90_PFMHT90", "HLT_DoubleMu3_TkMu_DsTau3Mu", "HLT_DoubleMu3_Trk_Tau3mu", "HLT_DoubleMu3_Trk_Tau3mu_NoL1Mass", "HLT_DoubleMu43NoFiltersNoVtx", "HLT_DoubleMu48NoFiltersNoVtx", "HLT_DoubleMu4_3_Bs", "HLT_DoubleMu4_3_Jpsi_Displaced", "HLT_DoubleMu4_Jpsi_Displaced", "HLT_DoubleMu4_Jpsi_NoVertexing", "HLT_DoubleMu4_JpsiTrk_Displaced", "HLT_DoubleMu4_JpsiTrkTrk_Displaced", "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", "HLT_DoubleMu4_Mass8_DZ_PFHT350", "HLT_DoubleMu4_PsiPrimeTrk_Displaced", "HLT_DoubleMu5_Upsilon_DoubleEle3_CaloIdL_TrackIdL", "HLT_DoubleMu8_Mass8_PFHT350", "HLT_DoublePFJets100_CaloBTagCSV_p33", "HLT_DoublePFJets100MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_DoublePFJets116MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_DoublePFJets128MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_DoublePFJets200_CaloBTagCSV_p33", "HLT_DoublePFJets350_CaloBTagCSV_p33", "HLT_DoublePFJets40_CaloBTagCSV_p33", "HLT_DoublePhoton33_CaloIdL", "HLT_DoublePhoton70", "HLT_DoublePhoton85", "HLT_DoubleTightChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_EcalCalibration", "HLT_ECALHT800", "HLT_Ele115_CaloIdVT_GsfTrkIdT", "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele135_CaloIdVT_GsfTrkIdT", "HLT_Ele145_CaloIdVT_GsfTrkIdT", "HLT_Ele15_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele15_Ele8_CaloIdL_TrackIdL_IsoVL", "HLT_Ele15_IsoVVVL_PFHT450", "HLT_Ele15_IsoVVVL_PFHT450_CaloBTagCSV_4p5", "HLT_Ele15_IsoVVVL_PFHT450_PFMET50", "HLT_Ele15_IsoVVVL_PFHT600", "HLT_Ele15_WPLoose_Gsf", "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", "HLT_Ele17_WPLoose_Gsf", "HLT_Ele200_CaloIdVT_GsfTrkIdT", "HLT_Ele20_eta2p1_WPLoose_Gsf", "HLT_Ele20_WPLoose_Gsf", "HLT_Ele20_WPTight_Gsf", "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Ele24_eta2p1_WPTight_Gsf_LooseChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_LooseChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_MediumChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_MediumChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_TightChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_TightChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele250_CaloIdVT_GsfTrkIdT", "HLT_Ele27_Ele37_CaloIdL_MW", "HLT_Ele27_WPTight_Gsf", "HLT_Ele28_eta2p1_WPTight_Gsf_HT150", "HLT_Ele28_HighEta_SC20_Mass55", "HLT_Ele300_CaloIdVT_GsfTrkIdT", "HLT_Ele30_eta2p1_WPTight_Gsf_CentralPFJet35_EleCleaned", "HLT_Ele32_WPTight_Gsf", "HLT_Ele32_WPTight_Gsf_L1DoubleEG", "HLT_Ele35_WPTight_Gsf", "HLT_Ele35_WPTight_Gsf_L1EGMT", "HLT_Ele38_WPTight_Gsf", "HLT_Ele40_WPTight_Gsf", "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", "HLT_Ele50_IsoVVVL_PFHT450", "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", "HLT_FullTrack_Multiplicity100", "HLT_FullTrack_Multiplicity130", "HLT_FullTrack_Multiplicity155", "HLT_FullTrack_Multiplicity85", "HLT_HcalCalibration", "HLT_HcalIsolatedbunch", "HLT_HcalNZS", "HLT_HcalPhiSym", "HLT_HISinglePhoton10_Eta3p1ForPPRef", "HLT_HISinglePhoton20_Eta3p1ForPPRef", "HLT_HISinglePhoton30_Eta3p1ForPPRef", "HLT_HISinglePhoton40_Eta3p1ForPPRef", "HLT_HISinglePhoton50_Eta3p1ForPPRef", "HLT_HISinglePhoton60_Eta3p1ForPPRef", "HLT_HT300_Beamspot", "HLT_HT400_DisplacedDijet40_DisplacedTrack", "HLT_HT425", "HLT_HT430_DisplacedDijet40_DisplacedTrack", "HLT_HT430_DisplacedDijet60_DisplacedTrack", "HLT_HT430_DisplacedDijet80_DisplacedTrack", "HLT_HT450_Beamspot", "HLT_HT550_DisplacedDijet60_Inclusive", "HLT_HT550_DisplacedDijet80_Inclusive", "HLT_HT650_DisplacedDijet60_Inclusive", "HLT_HT650_DisplacedDijet80_Inclusive", "HLT_HT750_DisplacedDijet80_Inclusive", "HLT_IsoMu20", "HLT_IsoMu20_eta2p1_LooseChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_LooseChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu20_eta2p1_MediumChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_MediumChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu20_eta2p1_TightChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_TightChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu24", "HLT_IsoMu24_eta2p1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau40_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau40_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu27", "HLT_IsoMu27_LooseChargedIsoPFTau20_SingleL1", "HLT_IsoMu27_MediumChargedIsoPFTau20_SingleL1", "HLT_IsoMu27_TightChargedIsoPFTau20_SingleL1", "HLT_IsoMu30", "HLT_IsoTrackHB", "HLT_IsoTrackHE", "HLT_L1_CDC_SingleMu_3_er1p2_TOP120_DPHI2p618_3p142", "HLT_L1_DoubleJet30_Mass_Min400_Mu10", "HLT_L1ETMHadSeeds", "HLT_L1MinimumBiasHF0OR", "HLT_L1MinimumBiasHF_OR", "HLT_L1NotBptxOR", "HLT_L1SingleMu18", "HLT_L1SingleMu25", "HLT_L1UnpairedBunchBptxMinus", "HLT_L1UnpairedBunchBptxPlus", "HLT_L2Mu10", "HLT_L2Mu10_NoVertex_NoBPTX", "HLT_L2Mu10_NoVertex_NoBPTX3BX", "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX", "HLT_L2Mu50", "HLT_MediumChargedIsoPFTau180HighPtRelaxedIso_Trk50_eta2p1", "HLT_MediumChargedIsoPFTau180HighPtRelaxedIso_Trk50_eta2p1_1pr", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET100", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET110", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET120", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET130", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET90", "HLT_MET105_IsoTrk50", "HLT_MET120_IsoTrk50", "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu130_PFMHTNoMu130_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu140_PFMHTNoMu140_IDTight", "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", "HLT_Mu12", "HLT_Mu12_DoublePFJets100_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets200_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets350_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets40_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets40MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_Mu12_DoublePFJets54MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_Mu12_DoublePFJets62MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_Mu12_DoublePhoton20", "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Mu15", "HLT_Mu15_IsoVVVL_PFHT450", "HLT_Mu15_IsoVVVL_PFHT450_CaloBTagCSV_4p5", "HLT_Mu15_IsoVVVL_PFHT450_PFMET50", "HLT_Mu15_IsoVVVL_PFHT600", "HLT_Mu17", "HLT_Mu17_Photon30_IsoCaloId", "HLT_Mu17_TrkIsoVVL", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ_Mass3p8", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ_Mass8", "HLT_Mu18_Mu9", "HLT_Mu18_Mu9_DZ", "HLT_Mu18_Mu9_SameSign", "HLT_Mu18_Mu9_SameSign_DZ", "HLT_Mu19", "HLT_Mu19_TrkIsoVVL", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL_DZ", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL_DZ_Mass3p8", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL_DZ_Mass8", "HLT_Mu20", "HLT_Mu20_Mu10", "HLT_Mu20_Mu10_DZ", "HLT_Mu20_Mu10_SameSign", "HLT_Mu20_Mu10_SameSign_DZ", "HLT_Mu20_TkMu0_Phi", "HLT_Mu23_Mu12", "HLT_Mu23_Mu12_DZ", "HLT_Mu23_Mu12_SameSign", "HLT_Mu23_Mu12_SameSign_DZ", "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Mu25_TkMu0_Onia", "HLT_Mu25_TkMu0_Phi", "HLT_Mu27", "HLT_Mu27_Ele37_CaloIdL_MW", "HLT_Mu30_TkMu0_Onia", "HLT_Mu37_Ele27_CaloIdL_MW", "HLT_Mu37_TkMu27", "HLT_Mu3_PFJet40", "HLT_Mu43NoFiltersNoVtx_Photon43_CaloIdL", "HLT_Mu48NoFiltersNoVtx_Photon48_CaloIdL", "HLT_Mu50", "HLT_Mu50_IsoVVVL_PFHT450", "HLT_Mu55", "HLT_Mu7p5_L2Mu2_Jpsi", "HLT_Mu7p5_L2Mu2_Upsilon", "HLT_Mu7p5_Track2_Jpsi", "HLT_Mu7p5_Track2_Upsilon", "HLT_Mu7p5_Track3p5_Jpsi", "HLT_Mu7p5_Track3p5_Upsilon", "HLT_Mu7p5_Track7_Jpsi", "HLT_Mu7p5_Track7_Upsilon", "HLT_Mu8", "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", "HLT_Mu8_DiEle12_CaloIdL_TrackIdL_DZ", "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT350", "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT350_DZ", "HLT_Mu8_TrkIsoVVL", "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_OldMu100", "HLT_PFHT1050", "HLT_PFHT180", "HLT_PFHT250", "HLT_PFHT300PT30_QuadPFJet_75_60_45_40", "HLT_PFHT300PT30_QuadPFJet_75_60_45_40_TriplePFBTagCSV_3p0", "HLT_PFHT350", "HLT_PFHT350MinPFJet15", "HLT_PFHT370", "HLT_PFHT380_SixPFJet32", "HLT_PFHT380_SixPFJet32_DoublePFBTagCSV_2p2", "HLT_PFHT380_SixPFJet32_DoublePFBTagDeepCSV_2p2", "HLT_PFHT430", "HLT_PFHT430_SixPFJet40", "HLT_PFHT430_SixPFJet40_PFBTagCSV_1p5", "HLT_PFHT500_PFMET100_PFMHT100_IDTight", "HLT_PFHT500_PFMET110_PFMHT110_IDTight", "HLT_PFHT510", "HLT_PFHT590", "HLT_PFHT680", "HLT_PFHT700_PFMET85_PFMHT85_IDTight", "HLT_PFHT700_PFMET95_PFMHT95_IDTight", "HLT_PFHT780", "HLT_PFHT800_PFMET75_PFMHT75_IDTight", "HLT_PFHT800_PFMET85_PFMHT85_IDTight", "HLT_PFHT890", "HLT_PFJet140", "HLT_PFJet200", "HLT_PFJet260", "HLT_PFJet320", "HLT_PFJet40", "HLT_PFJet400", "HLT_PFJet450", "HLT_PFJet500", "HLT_PFJet550", "HLT_PFJet60", "HLT_PFJet80", "HLT_PFJetFwd140", "HLT_PFJetFwd200", "HLT_PFJetFwd260", "HLT_PFJetFwd320", "HLT_PFJetFwd40", "HLT_PFJetFwd400", "HLT_PFJetFwd450", "HLT_PFJetFwd500", "HLT_PFJetFwd60", "HLT_PFJetFwd80", "HLT_PFMET100_PFMHT100_IDTight_CaloBTagCSV_3p1", "HLT_PFMET100_PFMHT100_IDTight_PFHT60", "HLT_PFMET110_PFMHT110_IDTight", "HLT_PFMET110_PFMHT110_IDTight_CaloBTagCSV_3p1", "HLT_PFMET120_PFMHT120_IDTight", "HLT_PFMET120_PFMHT120_IDTight_CaloBTagCSV_3p1", "HLT_PFMET120_PFMHT120_IDTight_PFHT60", "HLT_PFMET130_PFMHT130_IDTight", "HLT_PFMET130_PFMHT130_IDTight_CaloBTagCSV_3p1", "HLT_PFMET140_PFMHT140_IDTight", "HLT_PFMET140_PFMHT140_IDTight_CaloBTagCSV_3p1", "HLT_PFMET200_HBHE_BeamHaloCleaned", "HLT_PFMET200_HBHECleaned", "HLT_PFMET200_NotCleaned", "HLT_PFMET250_HBHECleaned", "HLT_PFMET300_HBHECleaned", "HLT_PFMETNoMu100_PFMHTNoMu100_IDTight_PFHT60", "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight_PFHT60", "HLT_PFMETNoMu130_PFMHTNoMu130_IDTight", "HLT_PFMETNoMu140_PFMHTNoMu140_IDTight", "HLT_PFMETTypeOne100_PFMHT100_IDTight_PFHT60", "HLT_PFMETTypeOne110_PFMHT110_IDTight", "HLT_PFMETTypeOne120_PFMHT120_IDTight", "HLT_PFMETTypeOne120_PFMHT120_IDTight_PFHT60", "HLT_PFMETTypeOne130_PFMHT130_IDTight", "HLT_PFMETTypeOne140_PFMHT140_IDTight", "HLT_PFMETTypeOne200_HBHE_BeamHaloCleaned", "HLT_Photon120", "HLT_Photon120_R9Id90_HE10_IsoM", "HLT_Photon150", "HLT_Photon165_R9Id90_HE10_IsoM", "HLT_Photon175", "HLT_Photon20", "HLT_Photon200", "HLT_Photon20_HoverELoose", "HLT_Photon25", "HLT_Photon300_NoHE", "HLT_Photon30_HoverELoose", "HLT_Photon33", "HLT_Photon40_HoverELoose", "HLT_Photon50", "HLT_Photon50_HoverELoose", "HLT_Photon50_R9Id90_HE10_IsoM", "HLT_Photon50_R9Id90_HE10_IsoM_EBOnly_PFJetsMJJ300DEta3_PFMET50", "HLT_Photon60_HoverELoose", "HLT_Photon60_R9Id90_CaloIdL_IsoL", "HLT_Photon60_R9Id90_CaloIdL_IsoL_DisplacedIdL", "HLT_Photon60_R9Id90_CaloIdL_IsoL_DisplacedIdL_PFHT350MinPFJet15", "HLT_Photon75", "HLT_Photon75_R9Id90_HE10_IsoM", "HLT_Photon75_R9Id90_HE10_IsoM_EBOnly_PFJetsMJJ300DEta3", "HLT_Photon75_R9Id90_HE10_IsoM_EBOnly_PFJetsMJJ600DEta3", "HLT_Photon90", "HLT_Photon90_R9Id90_HE10_IsoM", "HLT_Physics", "HLT_Physics_part0", "HLT_Physics_part1", "HLT_Physics_part2", "HLT_Physics_part3", "HLT_Physics_part4", "HLT_Physics_part5", "HLT_Physics_part6", "HLT_Physics_part7", "HLT_QuadPFJet103_88_75_15", "HLT_QuadPFJet103_88_75_15_BTagCSV_p013_VBF2", "HLT_QuadPFJet103_88_75_15_DoubleBTagCSV_p013_p08_VBF1", "HLT_QuadPFJet105_88_76_15", "HLT_QuadPFJet105_88_76_15_BTagCSV_p013_VBF2", "HLT_QuadPFJet105_90_76_15_DoubleBTagCSV_p013_p08_VBF1", "HLT_QuadPFJet111_90_80_15", "HLT_QuadPFJet111_90_80_15_BTagCSV_p013_VBF2", "HLT_QuadPFJet111_90_80_15_DoubleBTagCSV_p013_p08_VBF1", "HLT_QuadPFJet98_83_71_15", "HLT_QuadPFJet98_83_71_15_BTagCSV_p013_VBF2", "HLT_QuadPFJet98_83_71_15_DoubleBTagCSV_p013_p08_VBF1", "HLT_Random", "HLT_Rsq0p35", "HLT_Rsq0p40", "HLT_RsqMR300_Rsq0p09_MR200", "HLT_RsqMR300_Rsq0p09_MR200_4jet", "HLT_RsqMR320_Rsq0p09_MR200", "HLT_RsqMR320_Rsq0p09_MR200_4jet", "HLT_SingleJet30_Mu12_SinglePFJet40", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_IsoTau15", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_IsoTau15_Charge1", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_Tau15", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_Tau15_Charge1", "HLT_TkMu100", "HLT_Trimuon5_3p5_2_Upsilon_Muon", "HLT_TrimuonOpen_5_3p5_2_Upsilon_Muon", "HLT_TripleJet110_35_35_Mjj650_PFMET110", "HLT_TripleJet110_35_35_Mjj650_PFMET120", "HLT_TripleJet110_35_35_Mjj650_PFMET130", "HLT_TripleMu_10_5_5_DZ", "HLT_TripleMu_12_10_5", "HLT_TripleMu_5_3_3_Mass3p8to60_DCA", "HLT_TripleMu_5_3_3_Mass3p8to60_DZ", "HLT_TriplePhoton_20_20_20_CaloIdLV2", "HLT_TriplePhoton_20_20_20_CaloIdLV2_R9IdVL", "HLT_TriplePhoton_30_30_10_CaloIdLV2", "HLT_TriplePhoton_30_30_10_CaloIdLV2_R9IdVL", "HLT_TriplePhoton_35_35_5_CaloIdLV2_R9IdVL", "HLT_TrkMu12_DoubleTrkMu5NoFiltersNoVtx", "HLT_TrkMu16_DoubleTrkMu6NoFiltersNoVtx", "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", "HLT_UncorrectedJetE30_NoBPTX", "HLT_UncorrectedJetE30_NoBPTX3BX", "HLT_UncorrectedJetE60_NoBPTX3BX", "HLT_UncorrectedJetE70_NoBPTX3BX", "HLT_VBF_DoubleLooseChargedIsoPFTau20_Trk1_eta2p1_Reg", "HLT_VBF_DoubleMediumChargedIsoPFTau20_Trk1_eta2p1_Reg", "HLT_VBF_DoubleTightChargedIsoPFTau20_Trk1_eta2p1_Reg", "HLT_ZeroBias", "HLT_ZeroBias_Beamspot", "HLT_ZeroBias_FirstBXAfterTrain", "HLT_ZeroBias_FirstCollisionAfterAbortGap", "HLT_ZeroBias_FirstCollisionInTrain", "HLT_ZeroBias_IsolatedBunches", "HLT_ZeroBias_LastCollisionInTrain", "HLT_ZeroBias_part0", "HLT_ZeroBias_part1", "HLT_ZeroBias_part2", "HLT_ZeroBias_part3", "HLT_ZeroBias_part4", "HLT_ZeroBias_part5", "HLT_ZeroBias_part6", "HLT_ZeroBias_part7", ]), ]) samples_2017["/SingleMuon/Run2017B-31Mar2018-v1/MINIAOD"] = OD([ ("type", "data"), ("sample_category", "data_obs"), ("process_name_specific", "SingleMuon_Run2017B_31Mar2018_v1"), ("nof_files", 65), ("nof_db_files", 1059), ("nof_events", { }), ("nof_tree_events", 128496874), ("nof_db_events", 136300266), ("fsize_local", 57261605279), # 57.26GB, avg file size 880.95MB ("fsize_db", 3650463521822), # 3.65TB, avg file size 3.45GB ("use_it", True), ("triggers", ['1mu', '1mu1tau']), ("has_LHE", False), ("nof_PSweights", 0), ("LHE_set", ""), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2020Dec27_woPresel_nom_all_hh_multilepton/ntuples/SingleMuon_Run2017B_31Mar2018_v1"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ ]), ("missing_from_superset", [ ]), ("missing_hlt_paths", [ "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", "HLT_Ele32_WPTight_Gsf", "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ_Mass3p8", "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", "HLT_Mu3_PFJet40", ]), ("hlt_paths", [ "HLT_AK4CaloJet100", "HLT_AK4CaloJet120", "HLT_AK4CaloJet30", "HLT_AK4CaloJet40", "HLT_AK4CaloJet50", "HLT_AK4CaloJet80", "HLT_AK4PFJet100", "HLT_AK4PFJet120", "HLT_AK4PFJet30", "HLT_AK4PFJet50", "HLT_AK4PFJet80", "HLT_AK8PFJet140", "HLT_AK8PFJet200", "HLT_AK8PFJet260", "HLT_AK8PFJet320", "HLT_AK8PFJet40", "HLT_AK8PFJet400", "HLT_AK8PFJet450", "HLT_AK8PFJet500", "HLT_AK8PFJet550", "HLT_AK8PFJet60", "HLT_AK8PFJet80", "HLT_BTagMu_AK4DiJet110_Mu5", "HLT_BTagMu_AK4DiJet170_Mu5", "HLT_BTagMu_AK4DiJet20_Mu5", "HLT_BTagMu_AK4DiJet40_Mu5", "HLT_BTagMu_AK4DiJet70_Mu5", "HLT_BTagMu_AK4Jet300_Mu5", "HLT_BTagMu_AK8DiJet170_Mu5", "HLT_BTagMu_AK8Jet300_Mu5", "HLT_CaloJet500_NoJetID", "HLT_CaloJet550_NoJetID", "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", "HLT_DiMu9_Ele9_CaloIdL_TrackIdL_DZ", "HLT_Dimuon0_LowMass_L1_0er1p5R", "HLT_Dimuon0_LowMass_L1_4R", "HLT_Dimuon10_PsiPrime_Barrel_Seagulls", "HLT_Dimuon12_Upsilon_eta1p5", "HLT_Dimuon14_Phi_Barrel_Seagulls", "HLT_Dimuon18_PsiPrime", "HLT_Dimuon20_Jpsi_Barrel_Seagulls", "HLT_Dimuon25_Jpsi", "HLT_DiPFJet15_FBEta3_NoCaloMatched", "HLT_DiPFJet15_NoCaloMatched", "HLT_DiPFJet25_FBEta3_NoCaloMatched", "HLT_DiPFJet25_NoCaloMatched", "HLT_DiPFJetAve15_HFJEC", "HLT_DiPFJetAve25_HFJEC", "HLT_DiPFJetAve35_HFJEC", "HLT_Diphoton30_22_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", "HLT_Diphoton30_22_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass95", "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_NoPixelVeto_Mass55", "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_PixelVeto_Mass55", "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_NoPixelVeto_Mass55", "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_PixelVeto_Mass55", "HLT_DiSC30_18_EIso_AND_HE_Mass70", "HLT_DoubleEle33_CaloIdL_MW", "HLT_DoubleLooseChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMu20_7_Mass0to30_L1_DM4EG", "HLT_DoubleMu20_7_Mass0to30_Photon23", "HLT_DoubleMu3_Trk_Tau3mu", "HLT_DoubleMu4_3_Bs", "HLT_DoubleMu4_3_Jpsi_Displaced", "HLT_DoubleMu4_Jpsi_Displaced", "HLT_DoubleMu4_Jpsi_NoVertexing", "HLT_DoubleMu4_JpsiTrk_Displaced", "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", "HLT_DoubleMu4_PsiPrimeTrk_Displaced", "HLT_DoublePhoton33_CaloIdL", "HLT_DoublePhoton70", "HLT_DoublePhoton85", "HLT_DoubleTightChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_EcalCalibration", "HLT_ECALHT800", "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Ele24_eta2p1_WPTight_Gsf_LooseChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_LooseChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_MediumChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_MediumChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_TightChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_TightChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele27_WPTight_Gsf", "HLT_Ele28_eta2p1_WPTight_Gsf_HT150", "HLT_Ele30_eta2p1_WPTight_Gsf_CentralPFJet35_EleCleaned", "HLT_Ele32_WPTight_Gsf_L1DoubleEG", "HLT_Ele35_WPTight_Gsf", "HLT_Ele38_WPTight_Gsf", "HLT_Ele40_WPTight_Gsf", "HLT_FullTrack_Multiplicity105", "HLT_FullTrack_Multiplicity135", "HLT_FullTrack_Multiplicity155", "HLT_FullTrack_Multiplicity85", "HLT_HcalCalibration", "HLT_HcalIsolatedbunch", "HLT_HcalNZS", "HLT_HcalPhiSym", "HLT_HISinglePhoton10_Eta3p1ForPPRef", "HLT_HISinglePhoton20_Eta3p1ForPPRef", "HLT_HISinglePhoton30_Eta3p1ForPPRef", "HLT_HISinglePhoton40_Eta3p1ForPPRef", "HLT_HISinglePhoton50_Eta3p1ForPPRef", "HLT_HISinglePhoton60_Eta3p1ForPPRef", "HLT_HT300_Beamspot", "HLT_HT300PT30_QuadJet_75_60_45_40", "HLT_HT300PT30_QuadJet_75_60_45_40_TripeCSV_p07", "HLT_HT450_Beamspot", "HLT_IsoMu20", "HLT_IsoMu20_eta2p1_LooseChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_LooseChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu20_eta2p1_MediumChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_MediumChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu20_eta2p1_TightChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_TightChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu24", "HLT_IsoMu24_eta2p1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu27", "HLT_L1FatEvents", "HLT_L1MinimumBiasHF0OR", "HLT_L1MinimumBiasHF_OR", "HLT_L1NotBptxOR", "HLT_L1SingleMu18", "HLT_L1SingleMu25", "HLT_L1UnpairedBunchBptxMinus", "HLT_L1UnpairedBunchBptxPlus", "HLT_L2Mu10", "HLT_L2Mu10_NoVertex_NoBPTX", "HLT_L2Mu10_NoVertex_NoBPTX3BX", "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX", "HLT_MediumChargedIsoPFTau100HighPtRelaxedIso_Trk50_eta2p1_1pr", "HLT_MediumChargedIsoPFTau180HighPtRelaxedIso_Trk50_eta2p1", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET100", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET90", "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Mu17", "HLT_Mu17_TrkIsoVVL", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ_Mass8", "HLT_Mu20", "HLT_Mu20_TkMu0_Phi", "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Mu27", "HLT_Mu30_TkMu0_Onia", "HLT_Mu50", "HLT_Mu7p5_Track2_Jpsi", "HLT_Mu7p5_Track2_Upsilon", "HLT_Mu7p5_Track3p5_Jpsi", "HLT_Mu7p5_Track3p5_Upsilon", "HLT_Mu7p5_Track7_Jpsi", "HLT_Mu7p5_Track7_Upsilon", "HLT_Mu8", "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", "HLT_Mu8_DiEle12_CaloIdL_TrackIdL_DZ", "HLT_Mu8_TrkIsoVVL", "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_PFHT1050", "HLT_PFHT180", "HLT_PFHT250", "HLT_PFHT350", "HLT_PFHT370", "HLT_PFHT380_SixJet32_DoubleBTagCSV_p075", "HLT_PFHT430", "HLT_PFHT430_SixJet40_BTagCSV_p080", "HLT_PFHT500_PFMET100_PFMHT100_IDTight", "HLT_PFHT500_PFMET110_PFMHT110_IDTight", "HLT_PFHT510", "HLT_PFHT590", "HLT_PFHT680", "HLT_PFHT700_PFMET85_PFMHT85_IDTight", "HLT_PFHT700_PFMET95_PFMHT95_IDTight", "HLT_PFHT780", "HLT_PFHT800_PFMET75_PFMHT75_IDTight", "HLT_PFHT800_PFMET85_PFMHT85_IDTight", "HLT_PFHT890", "HLT_PFJet140", "HLT_PFJet200", "HLT_PFJet260", "HLT_PFJet320", "HLT_PFJet40", "HLT_PFJet400", "HLT_PFJet450", "HLT_PFJet500", "HLT_PFJet550", "HLT_PFJet60", "HLT_PFJet80", "HLT_PFMET110_PFMHT110_IDTight", "HLT_PFMET120_PFMHT120_IDTight", "HLT_PFMET130_PFMHT130_IDTight", "HLT_PFMET140_PFMHT140_IDTight", "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", "HLT_PFMETTypeOne110_PFMHT110_IDTight", "HLT_PFMETTypeOne120_PFMHT120_IDTight", "HLT_PFMETTypeOne130_PFMHT130_IDTight", "HLT_PFMETTypeOne140_PFMHT140_IDTight", "HLT_Photon120", "HLT_Photon120_R9Id90_HE10_IsoM", "HLT_Photon150", "HLT_Photon165_R9Id90_HE10_IsoM", "HLT_Photon175", "HLT_Photon200", "HLT_Photon20_HoverELoose", "HLT_Photon300_NoHE", "HLT_Photon30_HoverELoose", "HLT_Photon33", "HLT_Photon40_HoverELoose", "HLT_Photon50", "HLT_Photon50_HoverELoose", "HLT_Photon50_R9Id90_HE10_IsoM", "HLT_Photon60_HoverELoose", "HLT_Photon60_R9Id90_CaloIdL_IsoL_DisplacedIdL_PFHT350MinPFJet15", "HLT_Photon75", "HLT_Photon75_R9Id90_HE10_IsoM", "HLT_Photon90", "HLT_Photon90_R9Id90_HE10_IsoM", "HLT_Physics", "HLT_Random", "HLT_Trimuon2_Upsilon5_Muon", "HLT_TripleMu_10_5_5_DZ", "HLT_TripleMu_12_10_5", "HLT_UncorrectedJetE30_NoBPTX", "HLT_UncorrectedJetE30_NoBPTX3BX", "HLT_UncorrectedJetE60_NoBPTX3BX", "HLT_UncorrectedJetE70_NoBPTX3BX", "HLT_ZeroBias", "HLT_ZeroBias_FirstBXAfterTrain", "HLT_ZeroBias_FirstCollisionAfterAbortGap", "HLT_ZeroBias_FirstCollisionInTrain", "HLT_ZeroBias_IsolatedBunches", "HLT_ZeroBias_LastCollisionInTrain", "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_ZeroBias_part8", "HLT_ZeroBias_part9", ]), ]) samples_2017["/SingleMuon/Run2017C-31Mar2018-v1/MINIAOD"] = OD([ ("type", "data"), ("sample_category", "data_obs"), ("process_name_specific", "SingleMuon_Run2017C_31Mar2018_v1"), ("nof_files", 77), ("nof_db_files", 1248), ("nof_events", { }), ("nof_tree_events", 154633551), ("nof_db_events", 165652756), ("fsize_local", 80133788335), # 80.13GB, avg file size 1.04GB ("fsize_db", 4578913820228), # 4.58TB, avg file size 3.67GB ("use_it", True), ("triggers", ['1mu', '1mu1tau']), ("has_LHE", False), ("nof_PSweights", 0), ("LHE_set", ""), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2020Dec27_woPresel_nom_all_hh_multilepton/ntuples/SingleMuon_Run2017C_31Mar2018_v1"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ ]), ("missing_from_superset", [ ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ "HLT_AK4CaloJet100", "HLT_AK4CaloJet120", "HLT_AK4CaloJet30", "HLT_AK4CaloJet40", "HLT_AK4CaloJet50", "HLT_AK4CaloJet80", "HLT_AK4PFJet100", "HLT_AK4PFJet120", "HLT_AK4PFJet30", "HLT_AK4PFJet50", "HLT_AK4PFJet80", "HLT_AK8PFHT750_TrimMass50", "HLT_AK8PFHT800_TrimMass50", "HLT_AK8PFHT850_TrimMass50", "HLT_AK8PFHT900_TrimMass50", "HLT_AK8PFJet140", "HLT_AK8PFJet200", "HLT_AK8PFJet260", "HLT_AK8PFJet320", "HLT_AK8PFJet360_TrimMass30", "HLT_AK8PFJet380_TrimMass30", "HLT_AK8PFJet40", "HLT_AK8PFJet400", "HLT_AK8PFJet400_TrimMass30", "HLT_AK8PFJet420_TrimMass30", "HLT_AK8PFJet450", "HLT_AK8PFJet500", "HLT_AK8PFJet550", "HLT_AK8PFJet60", "HLT_AK8PFJet80", "HLT_AK8PFJetFwd140", "HLT_AK8PFJetFwd200", "HLT_AK8PFJetFwd260", "HLT_AK8PFJetFwd320", "HLT_AK8PFJetFwd40", "HLT_AK8PFJetFwd400", "HLT_AK8PFJetFwd450", "HLT_AK8PFJetFwd500", "HLT_AK8PFJetFwd60", "HLT_AK8PFJetFwd80", "HLT_BTagMu_AK4DiJet110_Mu5", "HLT_BTagMu_AK4DiJet170_Mu5", "HLT_BTagMu_AK4DiJet20_Mu5", "HLT_BTagMu_AK4DiJet40_Mu5", "HLT_BTagMu_AK4DiJet70_Mu5", "HLT_BTagMu_AK4Jet300_Mu5", "HLT_BTagMu_AK8DiJet170_Mu5", "HLT_BTagMu_AK8Jet300_Mu5", "HLT_CaloJet500_NoJetID", "HLT_CaloJet550_NoJetID", "HLT_CaloMET100_HBHECleaned", "HLT_CaloMET100_NotCleaned", "HLT_CaloMET110_NotCleaned", "HLT_CaloMET250_HBHECleaned", "HLT_CaloMET250_NotCleaned", "HLT_CaloMET300_HBHECleaned", "HLT_CaloMET350_HBHECleaned", "HLT_CaloMET70_HBHECleaned", "HLT_CaloMET80_HBHECleaned", "HLT_CaloMET80_NotCleaned", "HLT_CaloMET90_HBHECleaned", "HLT_CaloMET90_NotCleaned", "HLT_CaloMHT90", "HLT_DiEle27_WPTightCaloOnly_L1DoubleEG", "HLT_DiJet110_35_Mjj650_PFMET110", "HLT_DiJet110_35_Mjj650_PFMET120", "HLT_DiJet110_35_Mjj650_PFMET130", "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", "HLT_DiMu9_Ele9_CaloIdL_TrackIdL_DZ", "HLT_Dimuon0_Jpsi", "HLT_Dimuon0_Jpsi3p5_Muon2", "HLT_Dimuon0_Jpsi_L1_4R_0er1p5R", "HLT_Dimuon0_Jpsi_L1_NoOS", "HLT_Dimuon0_Jpsi_NoVertexing", "HLT_Dimuon0_Jpsi_NoVertexing_L1_4R_0er1p5R", "HLT_Dimuon0_Jpsi_NoVertexing_NoOS", "HLT_Dimuon0_LowMass", "HLT_Dimuon0_LowMass_L1_0er1p5", "HLT_Dimuon0_LowMass_L1_0er1p5R", "HLT_Dimuon0_LowMass_L1_4", "HLT_Dimuon0_LowMass_L1_4R", "HLT_Dimuon0_LowMass_L1_TM530", "HLT_Dimuon0_Upsilon_L1_4p5", "HLT_Dimuon0_Upsilon_L1_4p5er2p0", "HLT_Dimuon0_Upsilon_L1_4p5er2p0M", "HLT_Dimuon0_Upsilon_L1_4p5NoOS", "HLT_Dimuon0_Upsilon_L1_5", "HLT_Dimuon0_Upsilon_L1_5M", "HLT_Dimuon0_Upsilon_Muon_L1_TM0", "HLT_Dimuon0_Upsilon_Muon_NoL1Mass", "HLT_Dimuon0_Upsilon_NoVertexing", "HLT_Dimuon10_PsiPrime_Barrel_Seagulls", "HLT_Dimuon10_Upsilon_Barrel_Seagulls", "HLT_Dimuon12_Upsilon_eta1p5", "HLT_Dimuon14_Phi_Barrel_Seagulls", "HLT_Dimuon18_PsiPrime", "HLT_Dimuon18_PsiPrime_noCorrL1", "HLT_Dimuon20_Jpsi_Barrel_Seagulls", "HLT_Dimuon24_Phi_noCorrL1", "HLT_Dimuon24_Upsilon_noCorrL1", "HLT_Dimuon25_Jpsi", "HLT_Dimuon25_Jpsi_noCorrL1", "HLT_DiPFJet15_FBEta3_NoCaloMatched", "HLT_DiPFJet15_NoCaloMatched", "HLT_DiPFJet25_FBEta3_NoCaloMatched", "HLT_DiPFJet25_NoCaloMatched", "HLT_DiPFJetAve100_HFJEC", "HLT_DiPFJetAve140", "HLT_DiPFJetAve15_HFJEC", "HLT_DiPFJetAve160_HFJEC", "HLT_DiPFJetAve200", "HLT_DiPFJetAve220_HFJEC", "HLT_DiPFJetAve25_HFJEC", "HLT_DiPFJetAve260", "HLT_DiPFJetAve300_HFJEC", "HLT_DiPFJetAve320", "HLT_DiPFJetAve35_HFJEC", "HLT_DiPFJetAve40", "HLT_DiPFJetAve400", "HLT_DiPFJetAve500", "HLT_DiPFJetAve60", "HLT_DiPFJetAve60_HFJEC", "HLT_DiPFJetAve80", "HLT_DiPFJetAve80_HFJEC", "HLT_Diphoton30_22_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", "HLT_Diphoton30_22_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass95", "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_NoPixelVeto_Mass55", "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_PixelVeto_Mass55", "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_NoPixelVeto_Mass55", "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_PixelVeto_Mass55", "HLT_DiSC30_18_EIso_AND_HE_Mass70", "HLT_DoubleEle24_eta2p1_WPTight_Gsf", "HLT_DoubleEle25_CaloIdL_MW", "HLT_DoubleEle27_CaloIdL_MW", "HLT_DoubleEle33_CaloIdL_MW", "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_DZ_PFHT350", "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT350", "HLT_DoubleIsoMu20_eta2p1", "HLT_DoubleIsoMu24_eta2p1", "HLT_DoubleL2Mu50", "HLT_DoubleLooseChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMu20_7_Mass0to30_L1_DM4", "HLT_DoubleMu20_7_Mass0to30_L1_DM4EG", "HLT_DoubleMu20_7_Mass0to30_Photon23", "HLT_DoubleMu3_DZ_PFMET50_PFMHT60", "HLT_DoubleMu3_DZ_PFMET70_PFMHT70", "HLT_DoubleMu3_DZ_PFMET90_PFMHT90", "HLT_DoubleMu3_Trk_Tau3mu", "HLT_DoubleMu3_Trk_Tau3mu_NoL1Mass", "HLT_DoubleMu43NoFiltersNoVtx", "HLT_DoubleMu48NoFiltersNoVtx", "HLT_DoubleMu4_3_Bs", "HLT_DoubleMu4_3_Jpsi_Displaced", "HLT_DoubleMu4_Jpsi_Displaced", "HLT_DoubleMu4_Jpsi_NoVertexing", "HLT_DoubleMu4_JpsiTrk_Displaced", "HLT_DoubleMu4_JpsiTrkTrk_Displaced", "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", "HLT_DoubleMu4_Mass8_DZ_PFHT350", "HLT_DoubleMu4_PsiPrimeTrk_Displaced", "HLT_DoubleMu8_Mass8_PFHT350", "HLT_DoublePFJets100_CaloBTagCSV_p33", "HLT_DoublePFJets100MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_DoublePFJets116MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_DoublePFJets128MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_DoublePFJets200_CaloBTagCSV_p33", "HLT_DoublePFJets350_CaloBTagCSV_p33", "HLT_DoublePFJets40_CaloBTagCSV_p33", "HLT_DoublePhoton33_CaloIdL", "HLT_DoublePhoton70", "HLT_DoublePhoton85", "HLT_DoubleTightChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_EcalCalibration", "HLT_ECALHT800", "HLT_Ele115_CaloIdVT_GsfTrkIdT", "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele135_CaloIdVT_GsfTrkIdT", "HLT_Ele145_CaloIdVT_GsfTrkIdT", "HLT_Ele15_IsoVVVL_PFHT450", "HLT_Ele15_IsoVVVL_PFHT450_CaloBTagCSV_4p5", "HLT_Ele15_IsoVVVL_PFHT450_PFMET50", "HLT_Ele15_IsoVVVL_PFHT600", "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", "HLT_Ele200_CaloIdVT_GsfTrkIdT", "HLT_Ele20_eta2p1_WPLoose_Gsf", "HLT_Ele20_WPLoose_Gsf", "HLT_Ele20_WPTight_Gsf", "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Ele24_eta2p1_WPTight_Gsf_LooseChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_LooseChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_MediumChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_MediumChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_TightChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_TightChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele250_CaloIdVT_GsfTrkIdT", "HLT_Ele27_Ele37_CaloIdL_MW", "HLT_Ele27_WPTight_Gsf", "HLT_Ele28_eta2p1_WPTight_Gsf_HT150", "HLT_Ele28_HighEta_SC20_Mass55", "HLT_Ele300_CaloIdVT_GsfTrkIdT", "HLT_Ele30_eta2p1_WPTight_Gsf_CentralPFJet35_EleCleaned", "HLT_Ele32_WPTight_Gsf", "HLT_Ele32_WPTight_Gsf_L1DoubleEG", "HLT_Ele35_WPTight_Gsf", "HLT_Ele35_WPTight_Gsf_L1EGMT", "HLT_Ele38_WPTight_Gsf", "HLT_Ele40_WPTight_Gsf", "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", "HLT_Ele50_IsoVVVL_PFHT450", "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", "HLT_FullTrack_Multiplicity100", "HLT_FullTrack_Multiplicity130", "HLT_FullTrack_Multiplicity155", "HLT_FullTrack_Multiplicity85", "HLT_HcalCalibration", "HLT_HcalIsolatedbunch", "HLT_HcalNZS", "HLT_HcalPhiSym", "HLT_HISinglePhoton10_Eta3p1ForPPRef", "HLT_HISinglePhoton20_Eta3p1ForPPRef", "HLT_HISinglePhoton30_Eta3p1ForPPRef", "HLT_HISinglePhoton40_Eta3p1ForPPRef", "HLT_HISinglePhoton50_Eta3p1ForPPRef", "HLT_HISinglePhoton60_Eta3p1ForPPRef", "HLT_HT300_Beamspot", "HLT_HT400_DisplacedDijet40_DisplacedTrack", "HLT_HT425", "HLT_HT430_DisplacedDijet40_DisplacedTrack", "HLT_HT430_DisplacedDijet60_DisplacedTrack", "HLT_HT430_DisplacedDijet80_DisplacedTrack", "HLT_HT450_Beamspot", "HLT_HT550_DisplacedDijet60_Inclusive", "HLT_HT550_DisplacedDijet80_Inclusive", "HLT_HT650_DisplacedDijet60_Inclusive", "HLT_HT650_DisplacedDijet80_Inclusive", "HLT_HT750_DisplacedDijet80_Inclusive", "HLT_IsoMu20", "HLT_IsoMu20_eta2p1_LooseChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_LooseChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu20_eta2p1_MediumChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_MediumChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu20_eta2p1_TightChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_TightChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu24", "HLT_IsoMu24_eta2p1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau40_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau40_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu27", "HLT_IsoMu30", "HLT_IsoTrackHB", "HLT_IsoTrackHE", "HLT_L1_CDC_SingleMu_3_er1p2_TOP120_DPHI2p618_3p142", "HLT_L1ETMHadSeeds", "HLT_L1MinimumBiasHF0OR", "HLT_L1MinimumBiasHF_OR", "HLT_L1NotBptxOR", "HLT_L1SingleMu18", "HLT_L1SingleMu25", "HLT_L1UnpairedBunchBptxMinus", "HLT_L1UnpairedBunchBptxPlus", "HLT_L2Mu10", "HLT_L2Mu10_NoVertex_NoBPTX", "HLT_L2Mu10_NoVertex_NoBPTX3BX", "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX", "HLT_L2Mu50", "HLT_MediumChargedIsoPFTau180HighPtRelaxedIso_Trk50_eta2p1", "HLT_MediumChargedIsoPFTau180HighPtRelaxedIso_Trk50_eta2p1_1pr", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET100", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET110", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET120", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET130", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET90", "HLT_MET105_IsoTrk50", "HLT_MET120_IsoTrk50", "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu130_PFMHTNoMu130_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu140_PFMHTNoMu140_IDTight", "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", "HLT_Mu12_DoublePFJets100_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets200_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets350_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets40_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets40MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_Mu12_DoublePFJets54MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_Mu12_DoublePFJets62MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_Mu12_DoublePhoton20", "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Mu15_IsoVVVL_PFHT450", "HLT_Mu15_IsoVVVL_PFHT450_CaloBTagCSV_4p5", "HLT_Mu15_IsoVVVL_PFHT450_PFMET50", "HLT_Mu15_IsoVVVL_PFHT600", "HLT_Mu17", "HLT_Mu17_Photon30_IsoCaloId", "HLT_Mu17_TrkIsoVVL", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ_Mass3p8", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ_Mass8", "HLT_Mu19", "HLT_Mu19_TrkIsoVVL", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL_DZ", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL_DZ_Mass3p8", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL_DZ_Mass8", "HLT_Mu20", "HLT_Mu20_TkMu0_Phi", "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Mu25_TkMu0_Onia", "HLT_Mu25_TkMu0_Phi", "HLT_Mu27", "HLT_Mu27_Ele37_CaloIdL_MW", "HLT_Mu30_TkMu0_Onia", "HLT_Mu37_Ele27_CaloIdL_MW", "HLT_Mu37_TkMu27", "HLT_Mu3_PFJet40", "HLT_Mu43NoFiltersNoVtx_Photon43_CaloIdL", "HLT_Mu48NoFiltersNoVtx_Photon48_CaloIdL", "HLT_Mu50", "HLT_Mu50_IsoVVVL_PFHT450", "HLT_Mu55", "HLT_Mu7p5_L2Mu2_Jpsi", "HLT_Mu7p5_L2Mu2_Upsilon", "HLT_Mu7p5_Track2_Jpsi", "HLT_Mu7p5_Track2_Upsilon", "HLT_Mu7p5_Track3p5_Jpsi", "HLT_Mu7p5_Track3p5_Upsilon", "HLT_Mu7p5_Track7_Jpsi", "HLT_Mu7p5_Track7_Upsilon", "HLT_Mu8", "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", "HLT_Mu8_DiEle12_CaloIdL_TrackIdL_DZ", "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT350", "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT350_DZ", "HLT_Mu8_TrkIsoVVL", "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_OldMu100", "HLT_PFHT1050", "HLT_PFHT180", "HLT_PFHT250", "HLT_PFHT300PT30_QuadPFJet_75_60_45_40", "HLT_PFHT300PT30_QuadPFJet_75_60_45_40_TriplePFBTagCSV_3p0", "HLT_PFHT350", "HLT_PFHT350MinPFJet15", "HLT_PFHT370", "HLT_PFHT380_SixPFJet32", "HLT_PFHT380_SixPFJet32_DoublePFBTagCSV_2p2", "HLT_PFHT380_SixPFJet32_DoublePFBTagDeepCSV_2p2", "HLT_PFHT430", "HLT_PFHT430_SixPFJet40", "HLT_PFHT430_SixPFJet40_PFBTagCSV_1p5", "HLT_PFHT500_PFMET100_PFMHT100_IDTight", "HLT_PFHT500_PFMET110_PFMHT110_IDTight", "HLT_PFHT510", "HLT_PFHT590", "HLT_PFHT680", "HLT_PFHT700_PFMET85_PFMHT85_IDTight", "HLT_PFHT700_PFMET95_PFMHT95_IDTight", "HLT_PFHT780", "HLT_PFHT800_PFMET75_PFMHT75_IDTight", "HLT_PFHT800_PFMET85_PFMHT85_IDTight", "HLT_PFHT890", "HLT_PFJet140", "HLT_PFJet200", "HLT_PFJet260", "HLT_PFJet320", "HLT_PFJet40", "HLT_PFJet400", "HLT_PFJet450", "HLT_PFJet500", "HLT_PFJet550", "HLT_PFJet60", "HLT_PFJet80", "HLT_PFJetFwd140", "HLT_PFJetFwd200", "HLT_PFJetFwd260", "HLT_PFJetFwd320", "HLT_PFJetFwd40", "HLT_PFJetFwd400", "HLT_PFJetFwd450", "HLT_PFJetFwd500", "HLT_PFJetFwd60", "HLT_PFJetFwd80", "HLT_PFMET100_PFMHT100_IDTight_CaloBTagCSV_3p1", "HLT_PFMET110_PFMHT110_IDTight", "HLT_PFMET110_PFMHT110_IDTight_CaloBTagCSV_3p1", "HLT_PFMET120_PFMHT120_IDTight", "HLT_PFMET120_PFMHT120_IDTight_CaloBTagCSV_3p1", "HLT_PFMET120_PFMHT120_IDTight_HFCleaned", "HLT_PFMET120_PFMHT120_IDTight_PFHT60", "HLT_PFMET120_PFMHT120_IDTight_PFHT60_HFCleaned", "HLT_PFMET130_PFMHT130_IDTight", "HLT_PFMET130_PFMHT130_IDTight_CaloBTagCSV_3p1", "HLT_PFMET140_PFMHT140_IDTight", "HLT_PFMET140_PFMHT140_IDTight_CaloBTagCSV_3p1", "HLT_PFMET200_HBHE_BeamHaloCleaned", "HLT_PFMET200_HBHECleaned", "HLT_PFMET200_NotCleaned", "HLT_PFMET250_HBHECleaned", "HLT_PFMET300_HBHECleaned", "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight_HFCleaned", "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight_PFHT60", "HLT_PFMETNoMu130_PFMHTNoMu130_IDTight", "HLT_PFMETNoMu140_PFMHTNoMu140_IDTight", "HLT_PFMETTypeOne110_PFMHT110_IDTight", "HLT_PFMETTypeOne120_PFMHT120_IDTight", "HLT_PFMETTypeOne120_PFMHT120_IDTight_HFCleaned", "HLT_PFMETTypeOne120_PFMHT120_IDTight_PFHT60", "HLT_PFMETTypeOne130_PFMHT130_IDTight", "HLT_PFMETTypeOne140_PFMHT140_IDTight", "HLT_PFMETTypeOne200_HBHE_BeamHaloCleaned", "HLT_Photon120", "HLT_Photon120_R9Id90_HE10_IsoM", "HLT_Photon150", "HLT_Photon165_R9Id90_HE10_IsoM", "HLT_Photon175", "HLT_Photon200", "HLT_Photon20_HoverELoose", "HLT_Photon25", "HLT_Photon300_NoHE", "HLT_Photon30_HoverELoose", "HLT_Photon33", "HLT_Photon40_HoverELoose", "HLT_Photon50", "HLT_Photon50_HoverELoose", "HLT_Photon50_R9Id90_HE10_IsoM", "HLT_Photon60_HoverELoose", "HLT_Photon60_R9Id90_CaloIdL_IsoL", "HLT_Photon60_R9Id90_CaloIdL_IsoL_DisplacedIdL", "HLT_Photon60_R9Id90_CaloIdL_IsoL_DisplacedIdL_PFHT350MinPFJet15", "HLT_Photon75", "HLT_Photon75_R9Id90_HE10_IsoM", "HLT_Photon90", "HLT_Photon90_R9Id90_HE10_IsoM", "HLT_Physics", "HLT_Physics_part0", "HLT_Physics_part1", "HLT_Physics_part2", "HLT_Physics_part3", "HLT_Physics_part4", "HLT_Physics_part5", "HLT_Physics_part6", "HLT_Physics_part7", "HLT_Random", "HLT_Rsq0p35", "HLT_Rsq0p40", "HLT_RsqMR300_Rsq0p09_MR200", "HLT_RsqMR300_Rsq0p09_MR200_4jet", "HLT_RsqMR320_Rsq0p09_MR200", "HLT_RsqMR320_Rsq0p09_MR200_4jet", "HLT_SingleJet30_Mu12_SinglePFJet40", "HLT_Tau3Mu_Mu5_Mu1_TkMu1_IsoTau10", "HLT_Tau3Mu_Mu5_Mu1_TkMu1_IsoTau10_Charge1", "HLT_Tau3Mu_Mu5_Mu1_TkMu1_Tau10", "HLT_Tau3Mu_Mu5_Mu1_TkMu1_Tau10_Charge1", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_IsoTau15", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_IsoTau15_Charge1", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_Tau15", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_Tau15_Charge1", "HLT_TkMu100", "HLT_Trimuon5_3p5_2_Upsilon_Muon", "HLT_TripleJet110_35_35_Mjj650_PFMET110", "HLT_TripleJet110_35_35_Mjj650_PFMET120", "HLT_TripleJet110_35_35_Mjj650_PFMET130", "HLT_TripleMu_10_5_5_DZ", "HLT_TripleMu_12_10_5", "HLT_TriplePhoton_20_20_20_CaloIdLV2", "HLT_TriplePhoton_20_20_20_CaloIdLV2_R9IdVL", "HLT_TriplePhoton_30_30_10_CaloIdLV2", "HLT_TriplePhoton_30_30_10_CaloIdLV2_R9IdVL", "HLT_TriplePhoton_35_35_5_CaloIdLV2_R9IdVL", "HLT_TrkMu12_DoubleTrkMu5NoFiltersNoVtx", "HLT_TrkMu16_DoubleTrkMu6NoFiltersNoVtx", "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", "HLT_UncorrectedJetE30_NoBPTX", "HLT_UncorrectedJetE30_NoBPTX3BX", "HLT_UncorrectedJetE60_NoBPTX3BX", "HLT_UncorrectedJetE70_NoBPTX3BX", "HLT_VBF_DoubleLooseChargedIsoPFTau20_Trk1_eta2p1_Reg", "HLT_VBF_DoubleMediumChargedIsoPFTau20_Trk1_eta2p1_Reg", "HLT_VBF_DoubleTightChargedIsoPFTau20_Trk1_eta2p1_Reg", "HLT_ZeroBias", "HLT_ZeroBias_FirstBXAfterTrain", "HLT_ZeroBias_FirstCollisionAfterAbortGap", "HLT_ZeroBias_FirstCollisionInTrain", "HLT_ZeroBias_IsolatedBunches", "HLT_ZeroBias_LastCollisionInTrain", "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_ZeroBias_part8", "HLT_ZeroBias_part9", ]), ]) samples_2017["/SingleMuon/Run2017D-31Mar2018-v1/MINIAOD"] = OD([ ("type", "data"), ("sample_category", "data_obs"), ("process_name_specific", "SingleMuon_Run2017D_31Mar2018_v1"), ("nof_files", 35), ("nof_db_files", 607), ("nof_events", { }), ("nof_tree_events", 69031074), ("nof_db_events", 70361660), ("fsize_local", 35890538075), # 35.89GB, avg file size 1.03GB ("fsize_db", 1920098801002), # 1.92TB, avg file size 3.16GB ("use_it", True), ("triggers", ['1mu', '1mu1tau']), ("has_LHE", False), ("nof_PSweights", 0), ("LHE_set", ""), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2020Dec27_woPresel_nom_all_hh_multilepton/ntuples/SingleMuon_Run2017D_31Mar2018_v1"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ ]), ("missing_from_superset", [ ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ "HLT_AK4CaloJet100", "HLT_AK4CaloJet120", "HLT_AK4CaloJet30", "HLT_AK4CaloJet40", "HLT_AK4CaloJet50", "HLT_AK4CaloJet80", "HLT_AK4PFJet100", "HLT_AK4PFJet120", "HLT_AK4PFJet30", "HLT_AK4PFJet50", "HLT_AK4PFJet80", "HLT_AK8PFHT750_TrimMass50", "HLT_AK8PFHT800_TrimMass50", "HLT_AK8PFHT850_TrimMass50", "HLT_AK8PFHT900_TrimMass50", "HLT_AK8PFJet140", "HLT_AK8PFJet200", "HLT_AK8PFJet260", "HLT_AK8PFJet320", "HLT_AK8PFJet360_TrimMass30", "HLT_AK8PFJet380_TrimMass30", "HLT_AK8PFJet40", "HLT_AK8PFJet400", "HLT_AK8PFJet400_TrimMass30", "HLT_AK8PFJet420_TrimMass30", "HLT_AK8PFJet450", "HLT_AK8PFJet500", "HLT_AK8PFJet550", "HLT_AK8PFJet60", "HLT_AK8PFJet80", "HLT_AK8PFJetFwd140", "HLT_AK8PFJetFwd200", "HLT_AK8PFJetFwd260", "HLT_AK8PFJetFwd320", "HLT_AK8PFJetFwd40", "HLT_AK8PFJetFwd400", "HLT_AK8PFJetFwd450", "HLT_AK8PFJetFwd500", "HLT_AK8PFJetFwd60", "HLT_AK8PFJetFwd80", "HLT_BTagMu_AK4DiJet110_Mu5", "HLT_BTagMu_AK4DiJet170_Mu5", "HLT_BTagMu_AK4DiJet20_Mu5", "HLT_BTagMu_AK4DiJet40_Mu5", "HLT_BTagMu_AK4DiJet70_Mu5", "HLT_BTagMu_AK4Jet300_Mu5", "HLT_BTagMu_AK8DiJet170_Mu5", "HLT_BTagMu_AK8Jet300_Mu5", "HLT_CaloJet500_NoJetID", "HLT_CaloJet550_NoJetID", "HLT_CaloMET100_HBHECleaned", "HLT_CaloMET100_NotCleaned", "HLT_CaloMET110_NotCleaned", "HLT_CaloMET250_HBHECleaned", "HLT_CaloMET250_NotCleaned", "HLT_CaloMET300_HBHECleaned", "HLT_CaloMET350_HBHECleaned", "HLT_CaloMET70_HBHECleaned", "HLT_CaloMET80_HBHECleaned", "HLT_CaloMET80_NotCleaned", "HLT_CaloMET90_HBHECleaned", "HLT_CaloMET90_NotCleaned", "HLT_CaloMHT90", "HLT_DiEle27_WPTightCaloOnly_L1DoubleEG", "HLT_DiJet110_35_Mjj650_PFMET110", "HLT_DiJet110_35_Mjj650_PFMET120", "HLT_DiJet110_35_Mjj650_PFMET130", "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", "HLT_DiMu9_Ele9_CaloIdL_TrackIdL_DZ", "HLT_Dimuon0_Jpsi", "HLT_Dimuon0_Jpsi3p5_Muon2", "HLT_Dimuon0_Jpsi_L1_4R_0er1p5R", "HLT_Dimuon0_Jpsi_L1_NoOS", "HLT_Dimuon0_Jpsi_NoVertexing", "HLT_Dimuon0_Jpsi_NoVertexing_L1_4R_0er1p5R", "HLT_Dimuon0_Jpsi_NoVertexing_NoOS", "HLT_Dimuon0_LowMass", "HLT_Dimuon0_LowMass_L1_0er1p5", "HLT_Dimuon0_LowMass_L1_0er1p5R", "HLT_Dimuon0_LowMass_L1_4", "HLT_Dimuon0_LowMass_L1_4R", "HLT_Dimuon0_LowMass_L1_TM530", "HLT_Dimuon0_Upsilon_L1_4p5", "HLT_Dimuon0_Upsilon_L1_4p5er2p0", "HLT_Dimuon0_Upsilon_L1_4p5er2p0M", "HLT_Dimuon0_Upsilon_L1_4p5NoOS", "HLT_Dimuon0_Upsilon_L1_5", "HLT_Dimuon0_Upsilon_L1_5M", "HLT_Dimuon0_Upsilon_Muon_L1_TM0", "HLT_Dimuon0_Upsilon_Muon_NoL1Mass", "HLT_Dimuon0_Upsilon_NoVertexing", "HLT_Dimuon10_PsiPrime_Barrel_Seagulls", "HLT_Dimuon10_Upsilon_Barrel_Seagulls", "HLT_Dimuon12_Upsilon_eta1p5", "HLT_Dimuon14_Phi_Barrel_Seagulls", "HLT_Dimuon18_PsiPrime", "HLT_Dimuon18_PsiPrime_noCorrL1", "HLT_Dimuon20_Jpsi_Barrel_Seagulls", "HLT_Dimuon24_Phi_noCorrL1", "HLT_Dimuon24_Upsilon_noCorrL1", "HLT_Dimuon25_Jpsi", "HLT_Dimuon25_Jpsi_noCorrL1", "HLT_DiPFJet15_FBEta3_NoCaloMatched", "HLT_DiPFJet15_NoCaloMatched", "HLT_DiPFJet25_FBEta3_NoCaloMatched", "HLT_DiPFJet25_NoCaloMatched", "HLT_DiPFJetAve100_HFJEC", "HLT_DiPFJetAve140", "HLT_DiPFJetAve15_HFJEC", "HLT_DiPFJetAve160_HFJEC", "HLT_DiPFJetAve200", "HLT_DiPFJetAve220_HFJEC", "HLT_DiPFJetAve25_HFJEC", "HLT_DiPFJetAve260", "HLT_DiPFJetAve300_HFJEC", "HLT_DiPFJetAve320", "HLT_DiPFJetAve35_HFJEC", "HLT_DiPFJetAve40", "HLT_DiPFJetAve400", "HLT_DiPFJetAve500", "HLT_DiPFJetAve60", "HLT_DiPFJetAve60_HFJEC", "HLT_DiPFJetAve80", "HLT_DiPFJetAve80_HFJEC", "HLT_Diphoton30_22_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", "HLT_Diphoton30_22_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass95", "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_NoPixelVeto_Mass55", "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_PixelVeto_Mass55", "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_NoPixelVeto_Mass55", "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_PixelVeto_Mass55", "HLT_DiSC30_18_EIso_AND_HE_Mass70", "HLT_DoubleEle24_eta2p1_WPTight_Gsf", "HLT_DoubleEle25_CaloIdL_MW", "HLT_DoubleEle27_CaloIdL_MW", "HLT_DoubleEle33_CaloIdL_MW", "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_DZ_PFHT350", "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT350", "HLT_DoubleIsoMu20_eta2p1", "HLT_DoubleIsoMu24_eta2p1", "HLT_DoubleL2Mu50", "HLT_DoubleLooseChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMu20_7_Mass0to30_L1_DM4", "HLT_DoubleMu20_7_Mass0to30_L1_DM4EG", "HLT_DoubleMu20_7_Mass0to30_Photon23", "HLT_DoubleMu3_DZ_PFMET50_PFMHT60", "HLT_DoubleMu3_DZ_PFMET70_PFMHT70", "HLT_DoubleMu3_DZ_PFMET90_PFMHT90", "HLT_DoubleMu3_Trk_Tau3mu", "HLT_DoubleMu3_Trk_Tau3mu_NoL1Mass", "HLT_DoubleMu43NoFiltersNoVtx", "HLT_DoubleMu48NoFiltersNoVtx", "HLT_DoubleMu4_3_Bs", "HLT_DoubleMu4_3_Jpsi_Displaced", "HLT_DoubleMu4_Jpsi_Displaced", "HLT_DoubleMu4_Jpsi_NoVertexing", "HLT_DoubleMu4_JpsiTrk_Displaced", "HLT_DoubleMu4_JpsiTrkTrk_Displaced", "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", "HLT_DoubleMu4_Mass8_DZ_PFHT350", "HLT_DoubleMu4_PsiPrimeTrk_Displaced", "HLT_DoubleMu8_Mass8_PFHT350", "HLT_DoublePFJets100_CaloBTagCSV_p33", "HLT_DoublePFJets100MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_DoublePFJets116MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_DoublePFJets128MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_DoublePFJets200_CaloBTagCSV_p33", "HLT_DoublePFJets350_CaloBTagCSV_p33", "HLT_DoublePFJets40_CaloBTagCSV_p33", "HLT_DoublePhoton33_CaloIdL", "HLT_DoublePhoton70", "HLT_DoublePhoton85", "HLT_DoubleTightChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_EcalCalibration", "HLT_ECALHT800", "HLT_Ele115_CaloIdVT_GsfTrkIdT", "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele135_CaloIdVT_GsfTrkIdT", "HLT_Ele145_CaloIdVT_GsfTrkIdT", "HLT_Ele15_IsoVVVL_PFHT450", "HLT_Ele15_IsoVVVL_PFHT450_CaloBTagCSV_4p5", "HLT_Ele15_IsoVVVL_PFHT450_PFMET50", "HLT_Ele15_IsoVVVL_PFHT600", "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", "HLT_Ele200_CaloIdVT_GsfTrkIdT", "HLT_Ele20_eta2p1_WPLoose_Gsf", "HLT_Ele20_WPLoose_Gsf", "HLT_Ele20_WPTight_Gsf", "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Ele24_eta2p1_WPTight_Gsf_LooseChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_LooseChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_MediumChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_MediumChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_TightChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_TightChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele250_CaloIdVT_GsfTrkIdT", "HLT_Ele27_Ele37_CaloIdL_MW", "HLT_Ele27_WPTight_Gsf", "HLT_Ele28_eta2p1_WPTight_Gsf_HT150", "HLT_Ele28_HighEta_SC20_Mass55", "HLT_Ele300_CaloIdVT_GsfTrkIdT", "HLT_Ele30_eta2p1_WPTight_Gsf_CentralPFJet35_EleCleaned", "HLT_Ele32_WPTight_Gsf", "HLT_Ele32_WPTight_Gsf_L1DoubleEG", "HLT_Ele35_WPTight_Gsf", "HLT_Ele35_WPTight_Gsf_L1EGMT", "HLT_Ele38_WPTight_Gsf", "HLT_Ele40_WPTight_Gsf", "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", "HLT_Ele50_IsoVVVL_PFHT450", "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", "HLT_FullTrack_Multiplicity100", "HLT_FullTrack_Multiplicity130", "HLT_FullTrack_Multiplicity155", "HLT_FullTrack_Multiplicity85", "HLT_HcalCalibration", "HLT_HcalIsolatedbunch", "HLT_HcalNZS", "HLT_HcalPhiSym", "HLT_HISinglePhoton10_Eta3p1ForPPRef", "HLT_HISinglePhoton20_Eta3p1ForPPRef", "HLT_HISinglePhoton30_Eta3p1ForPPRef", "HLT_HISinglePhoton40_Eta3p1ForPPRef", "HLT_HISinglePhoton50_Eta3p1ForPPRef", "HLT_HISinglePhoton60_Eta3p1ForPPRef", "HLT_HT300_Beamspot", "HLT_HT400_DisplacedDijet40_DisplacedTrack", "HLT_HT425", "HLT_HT430_DisplacedDijet40_DisplacedTrack", "HLT_HT430_DisplacedDijet60_DisplacedTrack", "HLT_HT430_DisplacedDijet80_DisplacedTrack", "HLT_HT450_Beamspot", "HLT_HT550_DisplacedDijet60_Inclusive", "HLT_HT550_DisplacedDijet80_Inclusive", "HLT_HT650_DisplacedDijet60_Inclusive", "HLT_HT650_DisplacedDijet80_Inclusive", "HLT_HT750_DisplacedDijet80_Inclusive", "HLT_IsoMu20", "HLT_IsoMu20_eta2p1_LooseChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_LooseChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu20_eta2p1_MediumChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_MediumChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu20_eta2p1_TightChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_TightChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu24", "HLT_IsoMu24_eta2p1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau40_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau40_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu27", "HLT_IsoMu30", "HLT_IsoTrackHB", "HLT_IsoTrackHE", "HLT_L1_CDC_SingleMu_3_er1p2_TOP120_DPHI2p618_3p142", "HLT_L1ETMHadSeeds", "HLT_L1MinimumBiasHF0OR", "HLT_L1MinimumBiasHF_OR", "HLT_L1NotBptxOR", "HLT_L1SingleMu18", "HLT_L1SingleMu25", "HLT_L1UnpairedBunchBptxMinus", "HLT_L1UnpairedBunchBptxPlus", "HLT_L2Mu10", "HLT_L2Mu10_NoVertex_NoBPTX", "HLT_L2Mu10_NoVertex_NoBPTX3BX", "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX", "HLT_L2Mu50", "HLT_MediumChargedIsoPFTau180HighPtRelaxedIso_Trk50_eta2p1", "HLT_MediumChargedIsoPFTau180HighPtRelaxedIso_Trk50_eta2p1_1pr", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET100", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET110", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET120", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET130", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET90", "HLT_MET105_IsoTrk50", "HLT_MET120_IsoTrk50", "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu130_PFMHTNoMu130_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu140_PFMHTNoMu140_IDTight", "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", "HLT_Mu12_DoublePFJets100_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets200_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets350_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets40_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets40MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_Mu12_DoublePFJets54MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_Mu12_DoublePFJets62MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_Mu12_DoublePhoton20", "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Mu15_IsoVVVL_PFHT450", "HLT_Mu15_IsoVVVL_PFHT450_CaloBTagCSV_4p5", "HLT_Mu15_IsoVVVL_PFHT450_PFMET50", "HLT_Mu15_IsoVVVL_PFHT600", "HLT_Mu17", "HLT_Mu17_Photon30_IsoCaloId", "HLT_Mu17_TrkIsoVVL", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ_Mass3p8", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ_Mass8", "HLT_Mu19", "HLT_Mu19_TrkIsoVVL", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL_DZ", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL_DZ_Mass3p8", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL_DZ_Mass8", "HLT_Mu20", "HLT_Mu20_TkMu0_Phi", "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Mu25_TkMu0_Onia", "HLT_Mu25_TkMu0_Phi", "HLT_Mu27", "HLT_Mu27_Ele37_CaloIdL_MW", "HLT_Mu30_TkMu0_Onia", "HLT_Mu37_Ele27_CaloIdL_MW", "HLT_Mu37_TkMu27", "HLT_Mu3_PFJet40", "HLT_Mu43NoFiltersNoVtx_Photon43_CaloIdL", "HLT_Mu48NoFiltersNoVtx_Photon48_CaloIdL", "HLT_Mu50", "HLT_Mu50_IsoVVVL_PFHT450", "HLT_Mu55", "HLT_Mu7p5_L2Mu2_Jpsi", "HLT_Mu7p5_L2Mu2_Upsilon", "HLT_Mu7p5_Track2_Jpsi", "HLT_Mu7p5_Track2_Upsilon", "HLT_Mu7p5_Track3p5_Jpsi", "HLT_Mu7p5_Track3p5_Upsilon", "HLT_Mu7p5_Track7_Jpsi", "HLT_Mu7p5_Track7_Upsilon", "HLT_Mu8", "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", "HLT_Mu8_DiEle12_CaloIdL_TrackIdL_DZ", "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT350", "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT350_DZ", "HLT_Mu8_TrkIsoVVL", "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_OldMu100", "HLT_PFHT1050", "HLT_PFHT180", "HLT_PFHT250", "HLT_PFHT300PT30_QuadPFJet_75_60_45_40", "HLT_PFHT300PT30_QuadPFJet_75_60_45_40_TriplePFBTagCSV_3p0", "HLT_PFHT350", "HLT_PFHT350MinPFJet15", "HLT_PFHT370", "HLT_PFHT380_SixPFJet32", "HLT_PFHT380_SixPFJet32_DoublePFBTagCSV_2p2", "HLT_PFHT380_SixPFJet32_DoublePFBTagDeepCSV_2p2", "HLT_PFHT430", "HLT_PFHT430_SixPFJet40", "HLT_PFHT430_SixPFJet40_PFBTagCSV_1p5", "HLT_PFHT500_PFMET100_PFMHT100_IDTight", "HLT_PFHT500_PFMET110_PFMHT110_IDTight", "HLT_PFHT510", "HLT_PFHT590", "HLT_PFHT680", "HLT_PFHT700_PFMET85_PFMHT85_IDTight", "HLT_PFHT700_PFMET95_PFMHT95_IDTight", "HLT_PFHT780", "HLT_PFHT800_PFMET75_PFMHT75_IDTight", "HLT_PFHT800_PFMET85_PFMHT85_IDTight", "HLT_PFHT890", "HLT_PFJet140", "HLT_PFJet200", "HLT_PFJet260", "HLT_PFJet320", "HLT_PFJet40", "HLT_PFJet400", "HLT_PFJet450", "HLT_PFJet500", "HLT_PFJet550", "HLT_PFJet60", "HLT_PFJet80", "HLT_PFJetFwd140", "HLT_PFJetFwd200", "HLT_PFJetFwd260", "HLT_PFJetFwd320", "HLT_PFJetFwd40", "HLT_PFJetFwd400", "HLT_PFJetFwd450", "HLT_PFJetFwd500", "HLT_PFJetFwd60", "HLT_PFJetFwd80", "HLT_PFMET100_PFMHT100_IDTight_CaloBTagCSV_3p1", "HLT_PFMET110_PFMHT110_IDTight", "HLT_PFMET110_PFMHT110_IDTight_CaloBTagCSV_3p1", "HLT_PFMET120_PFMHT120_IDTight", "HLT_PFMET120_PFMHT120_IDTight_CaloBTagCSV_3p1", "HLT_PFMET120_PFMHT120_IDTight_PFHT60", "HLT_PFMET130_PFMHT130_IDTight", "HLT_PFMET130_PFMHT130_IDTight_CaloBTagCSV_3p1", "HLT_PFMET140_PFMHT140_IDTight", "HLT_PFMET140_PFMHT140_IDTight_CaloBTagCSV_3p1", "HLT_PFMET200_HBHE_BeamHaloCleaned", "HLT_PFMET200_HBHECleaned", "HLT_PFMET200_NotCleaned", "HLT_PFMET250_HBHECleaned", "HLT_PFMET300_HBHECleaned", "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight_PFHT60", "HLT_PFMETNoMu130_PFMHTNoMu130_IDTight", "HLT_PFMETNoMu140_PFMHTNoMu140_IDTight", "HLT_PFMETTypeOne110_PFMHT110_IDTight", "HLT_PFMETTypeOne120_PFMHT120_IDTight", "HLT_PFMETTypeOne120_PFMHT120_IDTight_PFHT60", "HLT_PFMETTypeOne130_PFMHT130_IDTight", "HLT_PFMETTypeOne140_PFMHT140_IDTight", "HLT_PFMETTypeOne200_HBHE_BeamHaloCleaned", "HLT_Photon120", "HLT_Photon120_R9Id90_HE10_IsoM", "HLT_Photon150", "HLT_Photon165_R9Id90_HE10_IsoM", "HLT_Photon175", "HLT_Photon200", "HLT_Photon20_HoverELoose", "HLT_Photon25", "HLT_Photon300_NoHE", "HLT_Photon30_HoverELoose", "HLT_Photon33", "HLT_Photon40_HoverELoose", "HLT_Photon50", "HLT_Photon50_HoverELoose", "HLT_Photon50_R9Id90_HE10_IsoM", "HLT_Photon60_HoverELoose", "HLT_Photon60_R9Id90_CaloIdL_IsoL", "HLT_Photon60_R9Id90_CaloIdL_IsoL_DisplacedIdL", "HLT_Photon60_R9Id90_CaloIdL_IsoL_DisplacedIdL_PFHT350MinPFJet15", "HLT_Photon75", "HLT_Photon75_R9Id90_HE10_IsoM", "HLT_Photon90", "HLT_Photon90_R9Id90_HE10_IsoM", "HLT_Physics", "HLT_Physics_part0", "HLT_Physics_part1", "HLT_Physics_part2", "HLT_Physics_part3", "HLT_Physics_part4", "HLT_Physics_part5", "HLT_Physics_part6", "HLT_Physics_part7", "HLT_Random", "HLT_Rsq0p35", "HLT_Rsq0p40", "HLT_RsqMR300_Rsq0p09_MR200", "HLT_RsqMR300_Rsq0p09_MR200_4jet", "HLT_RsqMR320_Rsq0p09_MR200", "HLT_RsqMR320_Rsq0p09_MR200_4jet", "HLT_SingleJet30_Mu12_SinglePFJet40", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_IsoTau15", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_IsoTau15_Charge1", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_Tau15", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_Tau15_Charge1", "HLT_TkMu100", "HLT_Trimuon5_3p5_2_Upsilon_Muon", "HLT_TripleJet110_35_35_Mjj650_PFMET110", "HLT_TripleJet110_35_35_Mjj650_PFMET120", "HLT_TripleJet110_35_35_Mjj650_PFMET130", "HLT_TripleMu_10_5_5_DZ", "HLT_TripleMu_12_10_5", "HLT_TripleMu_5_3_3_Mass3p8to60_DZ", "HLT_TriplePhoton_20_20_20_CaloIdLV2", "HLT_TriplePhoton_20_20_20_CaloIdLV2_R9IdVL", "HLT_TriplePhoton_30_30_10_CaloIdLV2", "HLT_TriplePhoton_30_30_10_CaloIdLV2_R9IdVL", "HLT_TriplePhoton_35_35_5_CaloIdLV2_R9IdVL", "HLT_TrkMu12_DoubleTrkMu5NoFiltersNoVtx", "HLT_TrkMu16_DoubleTrkMu6NoFiltersNoVtx", "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", "HLT_UncorrectedJetE30_NoBPTX", "HLT_UncorrectedJetE30_NoBPTX3BX", "HLT_UncorrectedJetE60_NoBPTX3BX", "HLT_UncorrectedJetE70_NoBPTX3BX", "HLT_VBF_DoubleLooseChargedIsoPFTau20_Trk1_eta2p1_Reg", "HLT_VBF_DoubleMediumChargedIsoPFTau20_Trk1_eta2p1_Reg", "HLT_VBF_DoubleTightChargedIsoPFTau20_Trk1_eta2p1_Reg", "HLT_ZeroBias", "HLT_ZeroBias_FirstBXAfterTrain", "HLT_ZeroBias_FirstCollisionAfterAbortGap", "HLT_ZeroBias_FirstCollisionInTrain", "HLT_ZeroBias_IsolatedBunches", "HLT_ZeroBias_LastCollisionInTrain", "HLT_ZeroBias_part0", "HLT_ZeroBias_part1", "HLT_ZeroBias_part2", "HLT_ZeroBias_part3", "HLT_ZeroBias_part4", "HLT_ZeroBias_part5", "HLT_ZeroBias_part6", "HLT_ZeroBias_part7", ]), ]) samples_2017["/SingleMuon/Run2017E-31Mar2018-v1/MINIAOD"] = OD([ ("type", "data"), ("sample_category", "data_obs"), ("process_name_specific", "SingleMuon_Run2017E_31Mar2018_v1"), ("nof_files", 77), ("nof_db_files", 1523), ("nof_events", { }), ("nof_tree_events", 151713898), ("nof_db_events", 154630534), ("fsize_local", 80161785657), # 80.16GB, avg file size 1.04GB ("fsize_db", 4902457537015), # 4.90TB, avg file size 3.22GB ("use_it", True), ("triggers", ['1mu', '1mu1tau']), ("has_LHE", False), ("nof_PSweights", 0), ("LHE_set", ""), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2020Dec27_woPresel_nom_all_hh_multilepton/ntuples/SingleMuon_Run2017E_31Mar2018_v1"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ ]), ("missing_from_superset", [ ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ "HLT_AK4CaloJet100", "HLT_AK4CaloJet120", "HLT_AK4CaloJet30", "HLT_AK4CaloJet40", "HLT_AK4CaloJet50", "HLT_AK4CaloJet80", "HLT_AK4PFJet100", "HLT_AK4PFJet120", "HLT_AK4PFJet30", "HLT_AK4PFJet50", "HLT_AK4PFJet80", "HLT_AK8PFHT750_TrimMass50", "HLT_AK8PFHT800_TrimMass50", "HLT_AK8PFHT850_TrimMass50", "HLT_AK8PFHT900_TrimMass50", "HLT_AK8PFJet140", "HLT_AK8PFJet200", "HLT_AK8PFJet260", "HLT_AK8PFJet320", "HLT_AK8PFJet360_TrimMass30", "HLT_AK8PFJet380_TrimMass30", "HLT_AK8PFJet40", "HLT_AK8PFJet400", "HLT_AK8PFJet400_TrimMass30", "HLT_AK8PFJet420_TrimMass30", "HLT_AK8PFJet450", "HLT_AK8PFJet500", "HLT_AK8PFJet550", "HLT_AK8PFJet60", "HLT_AK8PFJet80", "HLT_AK8PFJetFwd140", "HLT_AK8PFJetFwd200", "HLT_AK8PFJetFwd260", "HLT_AK8PFJetFwd320", "HLT_AK8PFJetFwd40", "HLT_AK8PFJetFwd400", "HLT_AK8PFJetFwd450", "HLT_AK8PFJetFwd500", "HLT_AK8PFJetFwd60", "HLT_AK8PFJetFwd80", "HLT_BTagMu_AK4DiJet110_Mu5", "HLT_BTagMu_AK4DiJet170_Mu5", "HLT_BTagMu_AK4DiJet20_Mu5", "HLT_BTagMu_AK4DiJet40_Mu5", "HLT_BTagMu_AK4DiJet70_Mu5", "HLT_BTagMu_AK4Jet300_Mu5", "HLT_BTagMu_AK8DiJet170_Mu5", "HLT_BTagMu_AK8Jet300_Mu5", "HLT_CaloJet500_NoJetID", "HLT_CaloJet550_NoJetID", "HLT_CaloMET100_HBHECleaned", "HLT_CaloMET100_NotCleaned", "HLT_CaloMET110_NotCleaned", "HLT_CaloMET250_HBHECleaned", "HLT_CaloMET250_NotCleaned", "HLT_CaloMET300_HBHECleaned", "HLT_CaloMET350_HBHECleaned", "HLT_CaloMET70_HBHECleaned", "HLT_CaloMET80_HBHECleaned", "HLT_CaloMET80_NotCleaned", "HLT_CaloMET90_HBHECleaned", "HLT_CaloMET90_NotCleaned", "HLT_CaloMHT90", "HLT_DiEle27_WPTightCaloOnly_L1DoubleEG", "HLT_DiJet110_35_Mjj650_PFMET110", "HLT_DiJet110_35_Mjj650_PFMET120", "HLT_DiJet110_35_Mjj650_PFMET130", "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", "HLT_DiMu9_Ele9_CaloIdL_TrackIdL_DZ", "HLT_Dimuon0_Jpsi", "HLT_Dimuon0_Jpsi3p5_Muon2", "HLT_Dimuon0_Jpsi_L1_4R_0er1p5R", "HLT_Dimuon0_Jpsi_L1_NoOS", "HLT_Dimuon0_Jpsi_NoVertexing", "HLT_Dimuon0_Jpsi_NoVertexing_L1_4R_0er1p5R", "HLT_Dimuon0_Jpsi_NoVertexing_NoOS", "HLT_Dimuon0_LowMass", "HLT_Dimuon0_LowMass_L1_0er1p5", "HLT_Dimuon0_LowMass_L1_0er1p5R", "HLT_Dimuon0_LowMass_L1_4", "HLT_Dimuon0_LowMass_L1_4R", "HLT_Dimuon0_LowMass_L1_TM530", "HLT_Dimuon0_Upsilon_L1_4p5", "HLT_Dimuon0_Upsilon_L1_4p5er2p0", "HLT_Dimuon0_Upsilon_L1_4p5er2p0M", "HLT_Dimuon0_Upsilon_L1_4p5NoOS", "HLT_Dimuon0_Upsilon_L1_5", "HLT_Dimuon0_Upsilon_L1_5M", "HLT_Dimuon0_Upsilon_Muon_L1_TM0", "HLT_Dimuon0_Upsilon_Muon_NoL1Mass", "HLT_Dimuon0_Upsilon_NoVertexing", "HLT_Dimuon10_PsiPrime_Barrel_Seagulls", "HLT_Dimuon10_Upsilon_Barrel_Seagulls", "HLT_Dimuon12_Upsilon_eta1p5", "HLT_Dimuon14_Phi_Barrel_Seagulls", "HLT_Dimuon18_PsiPrime", "HLT_Dimuon18_PsiPrime_noCorrL1", "HLT_Dimuon20_Jpsi_Barrel_Seagulls", "HLT_Dimuon24_Phi_noCorrL1", "HLT_Dimuon24_Upsilon_noCorrL1", "HLT_Dimuon25_Jpsi", "HLT_Dimuon25_Jpsi_noCorrL1", "HLT_DiPFJet15_FBEta3_NoCaloMatched", "HLT_DiPFJet15_NoCaloMatched", "HLT_DiPFJet25_FBEta3_NoCaloMatched", "HLT_DiPFJet25_NoCaloMatched", "HLT_DiPFJetAve100_HFJEC", "HLT_DiPFJetAve140", "HLT_DiPFJetAve15_HFJEC", "HLT_DiPFJetAve160_HFJEC", "HLT_DiPFJetAve200", "HLT_DiPFJetAve220_HFJEC", "HLT_DiPFJetAve25_HFJEC", "HLT_DiPFJetAve260", "HLT_DiPFJetAve300_HFJEC", "HLT_DiPFJetAve320", "HLT_DiPFJetAve35_HFJEC", "HLT_DiPFJetAve40", "HLT_DiPFJetAve400", "HLT_DiPFJetAve500", "HLT_DiPFJetAve60", "HLT_DiPFJetAve60_HFJEC", "HLT_DiPFJetAve80", "HLT_DiPFJetAve80_HFJEC", "HLT_Diphoton30_22_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", "HLT_Diphoton30_22_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass95", "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_NoPixelVeto_Mass55", "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_PixelVeto_Mass55", "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_NoPixelVeto_Mass55", "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_PixelVeto_Mass55", "HLT_DiSC30_18_EIso_AND_HE_Mass70", "HLT_DoubleEle24_eta2p1_WPTight_Gsf", "HLT_DoubleEle25_CaloIdL_MW", "HLT_DoubleEle27_CaloIdL_MW", "HLT_DoubleEle33_CaloIdL_MW", "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_DZ_PFHT350", "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT350", "HLT_DoubleIsoMu20_eta2p1", "HLT_DoubleIsoMu24_eta2p1", "HLT_DoubleL2Mu50", "HLT_DoubleLooseChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMu20_7_Mass0to30_L1_DM4", "HLT_DoubleMu20_7_Mass0to30_L1_DM4EG", "HLT_DoubleMu20_7_Mass0to30_Photon23", "HLT_DoubleMu3_DZ_PFMET50_PFMHT60", "HLT_DoubleMu3_DZ_PFMET70_PFMHT70", "HLT_DoubleMu3_DZ_PFMET90_PFMHT90", "HLT_DoubleMu3_Trk_Tau3mu", "HLT_DoubleMu3_Trk_Tau3mu_NoL1Mass", "HLT_DoubleMu43NoFiltersNoVtx", "HLT_DoubleMu48NoFiltersNoVtx", "HLT_DoubleMu4_3_Bs", "HLT_DoubleMu4_3_Jpsi_Displaced", "HLT_DoubleMu4_Jpsi_Displaced", "HLT_DoubleMu4_Jpsi_NoVertexing", "HLT_DoubleMu4_JpsiTrk_Displaced", "HLT_DoubleMu4_JpsiTrkTrk_Displaced", "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", "HLT_DoubleMu4_Mass8_DZ_PFHT350", "HLT_DoubleMu4_PsiPrimeTrk_Displaced", "HLT_DoubleMu8_Mass8_PFHT350", "HLT_DoublePFJets100_CaloBTagCSV_p33", "HLT_DoublePFJets100MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_DoublePFJets116MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_DoublePFJets128MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_DoublePFJets200_CaloBTagCSV_p33", "HLT_DoublePFJets350_CaloBTagCSV_p33", "HLT_DoublePFJets40_CaloBTagCSV_p33", "HLT_DoublePhoton33_CaloIdL", "HLT_DoublePhoton70", "HLT_DoublePhoton85", "HLT_DoubleTightChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_EcalCalibration", "HLT_ECALHT800", "HLT_Ele115_CaloIdVT_GsfTrkIdT", "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele135_CaloIdVT_GsfTrkIdT", "HLT_Ele145_CaloIdVT_GsfTrkIdT", "HLT_Ele15_IsoVVVL_PFHT450", "HLT_Ele15_IsoVVVL_PFHT450_CaloBTagCSV_4p5", "HLT_Ele15_IsoVVVL_PFHT450_PFMET50", "HLT_Ele15_IsoVVVL_PFHT600", "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", "HLT_Ele200_CaloIdVT_GsfTrkIdT", "HLT_Ele20_eta2p1_WPLoose_Gsf", "HLT_Ele20_WPLoose_Gsf", "HLT_Ele20_WPTight_Gsf", "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Ele24_eta2p1_WPTight_Gsf_LooseChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_LooseChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_MediumChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_MediumChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_TightChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_TightChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele250_CaloIdVT_GsfTrkIdT", "HLT_Ele27_Ele37_CaloIdL_MW", "HLT_Ele27_WPTight_Gsf", "HLT_Ele28_eta2p1_WPTight_Gsf_HT150", "HLT_Ele28_HighEta_SC20_Mass55", "HLT_Ele300_CaloIdVT_GsfTrkIdT", "HLT_Ele30_eta2p1_WPTight_Gsf_CentralPFJet35_EleCleaned", "HLT_Ele32_WPTight_Gsf", "HLT_Ele32_WPTight_Gsf_L1DoubleEG", "HLT_Ele35_WPTight_Gsf", "HLT_Ele35_WPTight_Gsf_L1EGMT", "HLT_Ele38_WPTight_Gsf", "HLT_Ele40_WPTight_Gsf", "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", "HLT_Ele50_IsoVVVL_PFHT450", "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", "HLT_FullTrack_Multiplicity100", "HLT_FullTrack_Multiplicity130", "HLT_FullTrack_Multiplicity155", "HLT_FullTrack_Multiplicity85", "HLT_HcalCalibration", "HLT_HcalIsolatedbunch", "HLT_HcalNZS", "HLT_HcalPhiSym", "HLT_HISinglePhoton10_Eta3p1ForPPRef", "HLT_HISinglePhoton20_Eta3p1ForPPRef", "HLT_HISinglePhoton30_Eta3p1ForPPRef", "HLT_HISinglePhoton40_Eta3p1ForPPRef", "HLT_HISinglePhoton50_Eta3p1ForPPRef", "HLT_HISinglePhoton60_Eta3p1ForPPRef", "HLT_HT300_Beamspot", "HLT_HT400_DisplacedDijet40_DisplacedTrack", "HLT_HT425", "HLT_HT430_DisplacedDijet40_DisplacedTrack", "HLT_HT430_DisplacedDijet60_DisplacedTrack", "HLT_HT430_DisplacedDijet80_DisplacedTrack", "HLT_HT450_Beamspot", "HLT_HT550_DisplacedDijet60_Inclusive", "HLT_HT550_DisplacedDijet80_Inclusive", "HLT_HT650_DisplacedDijet60_Inclusive", "HLT_HT650_DisplacedDijet80_Inclusive", "HLT_HT750_DisplacedDijet80_Inclusive", "HLT_IsoMu20", "HLT_IsoMu20_eta2p1_LooseChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_LooseChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu20_eta2p1_MediumChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_MediumChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu20_eta2p1_TightChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_TightChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu24", "HLT_IsoMu24_eta2p1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau40_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau40_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu27", "HLT_IsoMu30", "HLT_IsoTrackHB", "HLT_IsoTrackHE", "HLT_L1_CDC_SingleMu_3_er1p2_TOP120_DPHI2p618_3p142", "HLT_L1ETMHadSeeds", "HLT_L1MinimumBiasHF0OR", "HLT_L1MinimumBiasHF_OR", "HLT_L1NotBptxOR", "HLT_L1SingleMu18", "HLT_L1SingleMu25", "HLT_L1UnpairedBunchBptxMinus", "HLT_L1UnpairedBunchBptxPlus", "HLT_L2Mu10", "HLT_L2Mu10_NoVertex_NoBPTX", "HLT_L2Mu10_NoVertex_NoBPTX3BX", "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX", "HLT_L2Mu50", "HLT_MediumChargedIsoPFTau180HighPtRelaxedIso_Trk50_eta2p1", "HLT_MediumChargedIsoPFTau180HighPtRelaxedIso_Trk50_eta2p1_1pr", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET100", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET110", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET120", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET130", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET90", "HLT_MET105_IsoTrk50", "HLT_MET120_IsoTrk50", "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu130_PFMHTNoMu130_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu140_PFMHTNoMu140_IDTight", "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", "HLT_Mu12_DoublePFJets100_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets200_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets350_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets40_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets40MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_Mu12_DoublePFJets54MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_Mu12_DoublePFJets62MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_Mu12_DoublePhoton20", "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Mu15_IsoVVVL_PFHT450", "HLT_Mu15_IsoVVVL_PFHT450_CaloBTagCSV_4p5", "HLT_Mu15_IsoVVVL_PFHT450_PFMET50", "HLT_Mu15_IsoVVVL_PFHT600", "HLT_Mu17", "HLT_Mu17_Photon30_IsoCaloId", "HLT_Mu17_TrkIsoVVL", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ_Mass3p8", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ_Mass8", "HLT_Mu19", "HLT_Mu19_TrkIsoVVL", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL_DZ", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL_DZ_Mass3p8", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL_DZ_Mass8", "HLT_Mu20", "HLT_Mu20_TkMu0_Phi", "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Mu25_TkMu0_Onia", "HLT_Mu25_TkMu0_Phi", "HLT_Mu27", "HLT_Mu27_Ele37_CaloIdL_MW", "HLT_Mu30_TkMu0_Onia", "HLT_Mu37_Ele27_CaloIdL_MW", "HLT_Mu37_TkMu27", "HLT_Mu3_PFJet40", "HLT_Mu43NoFiltersNoVtx_Photon43_CaloIdL", "HLT_Mu48NoFiltersNoVtx_Photon48_CaloIdL", "HLT_Mu50", "HLT_Mu50_IsoVVVL_PFHT450", "HLT_Mu55", "HLT_Mu7p5_L2Mu2_Jpsi", "HLT_Mu7p5_L2Mu2_Upsilon", "HLT_Mu7p5_Track2_Jpsi", "HLT_Mu7p5_Track2_Upsilon", "HLT_Mu7p5_Track3p5_Jpsi", "HLT_Mu7p5_Track3p5_Upsilon", "HLT_Mu7p5_Track7_Jpsi", "HLT_Mu7p5_Track7_Upsilon", "HLT_Mu8", "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", "HLT_Mu8_DiEle12_CaloIdL_TrackIdL_DZ", "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT350", "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT350_DZ", "HLT_Mu8_TrkIsoVVL", "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_OldMu100", "HLT_PFHT1050", "HLT_PFHT180", "HLT_PFHT250", "HLT_PFHT300PT30_QuadPFJet_75_60_45_40", "HLT_PFHT300PT30_QuadPFJet_75_60_45_40_TriplePFBTagCSV_3p0", "HLT_PFHT350", "HLT_PFHT350MinPFJet15", "HLT_PFHT370", "HLT_PFHT380_SixPFJet32", "HLT_PFHT380_SixPFJet32_DoublePFBTagCSV_2p2", "HLT_PFHT380_SixPFJet32_DoublePFBTagDeepCSV_2p2", "HLT_PFHT430", "HLT_PFHT430_SixPFJet40", "HLT_PFHT430_SixPFJet40_PFBTagCSV_1p5", "HLT_PFHT500_PFMET100_PFMHT100_IDTight", "HLT_PFHT500_PFMET110_PFMHT110_IDTight", "HLT_PFHT510", "HLT_PFHT590", "HLT_PFHT680", "HLT_PFHT700_PFMET85_PFMHT85_IDTight", "HLT_PFHT700_PFMET95_PFMHT95_IDTight", "HLT_PFHT780", "HLT_PFHT800_PFMET75_PFMHT75_IDTight", "HLT_PFHT800_PFMET85_PFMHT85_IDTight", "HLT_PFHT890", "HLT_PFJet140", "HLT_PFJet200", "HLT_PFJet260", "HLT_PFJet320", "HLT_PFJet40", "HLT_PFJet400", "HLT_PFJet450", "HLT_PFJet500", "HLT_PFJet550", "HLT_PFJet60", "HLT_PFJet80", "HLT_PFJetFwd140", "HLT_PFJetFwd200", "HLT_PFJetFwd260", "HLT_PFJetFwd320", "HLT_PFJetFwd40", "HLT_PFJetFwd400", "HLT_PFJetFwd450", "HLT_PFJetFwd500", "HLT_PFJetFwd60", "HLT_PFJetFwd80", "HLT_PFMET100_PFMHT100_IDTight_CaloBTagCSV_3p1", "HLT_PFMET110_PFMHT110_IDTight", "HLT_PFMET110_PFMHT110_IDTight_CaloBTagCSV_3p1", "HLT_PFMET120_PFMHT120_IDTight", "HLT_PFMET120_PFMHT120_IDTight_CaloBTagCSV_3p1", "HLT_PFMET120_PFMHT120_IDTight_PFHT60", "HLT_PFMET130_PFMHT130_IDTight", "HLT_PFMET130_PFMHT130_IDTight_CaloBTagCSV_3p1", "HLT_PFMET140_PFMHT140_IDTight", "HLT_PFMET140_PFMHT140_IDTight_CaloBTagCSV_3p1", "HLT_PFMET200_HBHE_BeamHaloCleaned", "HLT_PFMET200_HBHECleaned", "HLT_PFMET200_NotCleaned", "HLT_PFMET250_HBHECleaned", "HLT_PFMET300_HBHECleaned", "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight_PFHT60", "HLT_PFMETNoMu130_PFMHTNoMu130_IDTight", "HLT_PFMETNoMu140_PFMHTNoMu140_IDTight", "HLT_PFMETTypeOne110_PFMHT110_IDTight", "HLT_PFMETTypeOne120_PFMHT120_IDTight", "HLT_PFMETTypeOne120_PFMHT120_IDTight_PFHT60", "HLT_PFMETTypeOne130_PFMHT130_IDTight", "HLT_PFMETTypeOne140_PFMHT140_IDTight", "HLT_PFMETTypeOne200_HBHE_BeamHaloCleaned", "HLT_Photon120", "HLT_Photon120_R9Id90_HE10_IsoM", "HLT_Photon150", "HLT_Photon165_R9Id90_HE10_IsoM", "HLT_Photon175", "HLT_Photon200", "HLT_Photon20_HoverELoose", "HLT_Photon25", "HLT_Photon300_NoHE", "HLT_Photon30_HoverELoose", "HLT_Photon33", "HLT_Photon40_HoverELoose", "HLT_Photon50", "HLT_Photon50_HoverELoose", "HLT_Photon50_R9Id90_HE10_IsoM", "HLT_Photon60_HoverELoose", "HLT_Photon60_R9Id90_CaloIdL_IsoL", "HLT_Photon60_R9Id90_CaloIdL_IsoL_DisplacedIdL", "HLT_Photon60_R9Id90_CaloIdL_IsoL_DisplacedIdL_PFHT350MinPFJet15", "HLT_Photon75", "HLT_Photon75_R9Id90_HE10_IsoM", "HLT_Photon90", "HLT_Photon90_R9Id90_HE10_IsoM", "HLT_Physics", "HLT_Physics_part0", "HLT_Physics_part1", "HLT_Physics_part2", "HLT_Physics_part3", "HLT_Physics_part4", "HLT_Physics_part5", "HLT_Physics_part6", "HLT_Physics_part7", "HLT_Random", "HLT_Rsq0p35", "HLT_Rsq0p40", "HLT_RsqMR300_Rsq0p09_MR200", "HLT_RsqMR300_Rsq0p09_MR200_4jet", "HLT_RsqMR320_Rsq0p09_MR200", "HLT_RsqMR320_Rsq0p09_MR200_4jet", "HLT_SingleJet30_Mu12_SinglePFJet40", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_IsoTau15", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_IsoTau15_Charge1", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_Tau15", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_Tau15_Charge1", "HLT_TkMu100", "HLT_Trimuon5_3p5_2_Upsilon_Muon", "HLT_TripleJet110_35_35_Mjj650_PFMET110", "HLT_TripleJet110_35_35_Mjj650_PFMET120", "HLT_TripleJet110_35_35_Mjj650_PFMET130", "HLT_TripleMu_10_5_5_DZ", "HLT_TripleMu_12_10_5", "HLT_TripleMu_5_3_3_Mass3p8to60_DZ", "HLT_TriplePhoton_20_20_20_CaloIdLV2", "HLT_TriplePhoton_20_20_20_CaloIdLV2_R9IdVL", "HLT_TriplePhoton_30_30_10_CaloIdLV2", "HLT_TriplePhoton_30_30_10_CaloIdLV2_R9IdVL", "HLT_TriplePhoton_35_35_5_CaloIdLV2_R9IdVL", "HLT_TrkMu12_DoubleTrkMu5NoFiltersNoVtx", "HLT_TrkMu16_DoubleTrkMu6NoFiltersNoVtx", "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", "HLT_UncorrectedJetE30_NoBPTX", "HLT_UncorrectedJetE30_NoBPTX3BX", "HLT_UncorrectedJetE60_NoBPTX3BX", "HLT_UncorrectedJetE70_NoBPTX3BX", "HLT_VBF_DoubleLooseChargedIsoPFTau20_Trk1_eta2p1_Reg", "HLT_VBF_DoubleMediumChargedIsoPFTau20_Trk1_eta2p1_Reg", "HLT_VBF_DoubleTightChargedIsoPFTau20_Trk1_eta2p1_Reg", "HLT_ZeroBias", "HLT_ZeroBias_FirstBXAfterTrain", "HLT_ZeroBias_FirstCollisionAfterAbortGap", "HLT_ZeroBias_FirstCollisionInTrain", "HLT_ZeroBias_IsolatedBunches", "HLT_ZeroBias_LastCollisionInTrain", "HLT_ZeroBias_part0", "HLT_ZeroBias_part1", "HLT_ZeroBias_part2", "HLT_ZeroBias_part3", "HLT_ZeroBias_part4", "HLT_ZeroBias_part5", "HLT_ZeroBias_part6", "HLT_ZeroBias_part7", ]), ]) samples_2017["/SingleMuon/Run2017F-31Mar2018-v1/MINIAOD"] = OD([ ("type", "data"), ("sample_category", "data_obs"), ("process_name_specific", "SingleMuon_Run2017F_31Mar2018_v1"), ("nof_files", 120), ("nof_db_files", 2435), ("nof_events", { }), ("nof_tree_events", 235937214), ("nof_db_events", 242135500), ("fsize_local", 124282387764), # 124.28GB, avg file size 1.04GB ("fsize_db", 7833216217809), # 7.83TB, avg file size 3.22GB ("use_it", True), ("triggers", ['1mu', '1mu1tau']), ("has_LHE", False), ("nof_PSweights", 0), ("LHE_set", ""), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2020Dec27_woPresel_nom_all_hh_multilepton/ntuples/SingleMuon_Run2017F_31Mar2018_v1"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ ]), ("missing_from_superset", [ ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ "HLT_AK4CaloJet100", "HLT_AK4CaloJet120", "HLT_AK4CaloJet30", "HLT_AK4CaloJet40", "HLT_AK4CaloJet50", "HLT_AK4CaloJet80", "HLT_AK4PFJet100", "HLT_AK4PFJet120", "HLT_AK4PFJet30", "HLT_AK4PFJet50", "HLT_AK4PFJet80", "HLT_AK8PFHT750_TrimMass50", "HLT_AK8PFHT800_TrimMass50", "HLT_AK8PFHT850_TrimMass50", "HLT_AK8PFHT900_TrimMass50", "HLT_AK8PFJet140", "HLT_AK8PFJet200", "HLT_AK8PFJet260", "HLT_AK8PFJet320", "HLT_AK8PFJet330_PFAK8BTagCSV_p1", "HLT_AK8PFJet330_PFAK8BTagCSV_p17", "HLT_AK8PFJet360_TrimMass30", "HLT_AK8PFJet380_TrimMass30", "HLT_AK8PFJet40", "HLT_AK8PFJet400", "HLT_AK8PFJet400_TrimMass30", "HLT_AK8PFJet420_TrimMass30", "HLT_AK8PFJet450", "HLT_AK8PFJet500", "HLT_AK8PFJet550", "HLT_AK8PFJet60", "HLT_AK8PFJet80", "HLT_AK8PFJetFwd140", "HLT_AK8PFJetFwd200", "HLT_AK8PFJetFwd260", "HLT_AK8PFJetFwd320", "HLT_AK8PFJetFwd40", "HLT_AK8PFJetFwd400", "HLT_AK8PFJetFwd450", "HLT_AK8PFJetFwd500", "HLT_AK8PFJetFwd60", "HLT_AK8PFJetFwd80", "HLT_BTagMu_AK4DiJet110_Mu5", "HLT_BTagMu_AK4DiJet170_Mu5", "HLT_BTagMu_AK4DiJet20_Mu5", "HLT_BTagMu_AK4DiJet40_Mu5", "HLT_BTagMu_AK4DiJet70_Mu5", "HLT_BTagMu_AK4Jet300_Mu5", "HLT_BTagMu_AK8DiJet170_Mu5", "HLT_BTagMu_AK8Jet300_Mu5", "HLT_CaloJet500_NoJetID", "HLT_CaloJet550_NoJetID", "HLT_CaloMET100_HBHECleaned", "HLT_CaloMET100_NotCleaned", "HLT_CaloMET110_NotCleaned", "HLT_CaloMET250_HBHECleaned", "HLT_CaloMET250_NotCleaned", "HLT_CaloMET300_HBHECleaned", "HLT_CaloMET350_HBHECleaned", "HLT_CaloMET70_HBHECleaned", "HLT_CaloMET80_HBHECleaned", "HLT_CaloMET80_NotCleaned", "HLT_CaloMET90_HBHECleaned", "HLT_CaloMET90_NotCleaned", "HLT_CaloMHT90", "HLT_DiEle27_WPTightCaloOnly_L1DoubleEG", "HLT_DiJet110_35_Mjj650_PFMET110", "HLT_DiJet110_35_Mjj650_PFMET120", "HLT_DiJet110_35_Mjj650_PFMET130", "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", "HLT_DiMu9_Ele9_CaloIdL_TrackIdL_DZ", "HLT_Dimuon0_Jpsi", "HLT_Dimuon0_Jpsi3p5_Muon2", "HLT_Dimuon0_Jpsi_L1_4R_0er1p5R", "HLT_Dimuon0_Jpsi_L1_NoOS", "HLT_Dimuon0_Jpsi_NoVertexing", "HLT_Dimuon0_Jpsi_NoVertexing_L1_4R_0er1p5R", "HLT_Dimuon0_Jpsi_NoVertexing_NoOS", "HLT_Dimuon0_LowMass", "HLT_Dimuon0_LowMass_L1_0er1p5", "HLT_Dimuon0_LowMass_L1_0er1p5R", "HLT_Dimuon0_LowMass_L1_4", "HLT_Dimuon0_LowMass_L1_4R", "HLT_Dimuon0_LowMass_L1_TM530", "HLT_Dimuon0_Upsilon_L1_4p5", "HLT_Dimuon0_Upsilon_L1_4p5er2p0", "HLT_Dimuon0_Upsilon_L1_4p5er2p0M", "HLT_Dimuon0_Upsilon_L1_4p5NoOS", "HLT_Dimuon0_Upsilon_L1_5", "HLT_Dimuon0_Upsilon_L1_5M", "HLT_Dimuon0_Upsilon_Muon_L1_TM0", "HLT_Dimuon0_Upsilon_Muon_NoL1Mass", "HLT_Dimuon0_Upsilon_NoVertexing", "HLT_Dimuon10_PsiPrime_Barrel_Seagulls", "HLT_Dimuon10_Upsilon_Barrel_Seagulls", "HLT_Dimuon12_Upsilon_eta1p5", "HLT_Dimuon14_Phi_Barrel_Seagulls", "HLT_Dimuon18_PsiPrime", "HLT_Dimuon18_PsiPrime_noCorrL1", "HLT_Dimuon20_Jpsi_Barrel_Seagulls", "HLT_Dimuon24_Phi_noCorrL1", "HLT_Dimuon24_Upsilon_noCorrL1", "HLT_Dimuon25_Jpsi", "HLT_Dimuon25_Jpsi_noCorrL1", "HLT_DiPFJet15_FBEta3_NoCaloMatched", "HLT_DiPFJet15_NoCaloMatched", "HLT_DiPFJet25_FBEta3_NoCaloMatched", "HLT_DiPFJet25_NoCaloMatched", "HLT_DiPFJetAve100_HFJEC", "HLT_DiPFJetAve140", "HLT_DiPFJetAve15_HFJEC", "HLT_DiPFJetAve160_HFJEC", "HLT_DiPFJetAve200", "HLT_DiPFJetAve220_HFJEC", "HLT_DiPFJetAve25_HFJEC", "HLT_DiPFJetAve260", "HLT_DiPFJetAve300_HFJEC", "HLT_DiPFJetAve320", "HLT_DiPFJetAve35_HFJEC", "HLT_DiPFJetAve40", "HLT_DiPFJetAve400", "HLT_DiPFJetAve500", "HLT_DiPFJetAve60", "HLT_DiPFJetAve60_HFJEC", "HLT_DiPFJetAve80", "HLT_DiPFJetAve80_HFJEC", "HLT_Diphoton30_18_PVrealAND_R9Id_AND_IsoCaloId_AND_HE_R9Id_NoPixelVeto_Mass55", "HLT_Diphoton30_18_PVrealAND_R9Id_AND_IsoCaloId_AND_HE_R9Id_PixelVeto_Mass55", "HLT_Diphoton30_22_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", "HLT_Diphoton30_22_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass95", "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_NoPixelVeto_Mass55", "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_PixelVeto_Mass55", "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_NoPixelVeto_Mass55", "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_PixelVeto_Mass55", "HLT_DiSC30_18_EIso_AND_HE_Mass70", "HLT_DoubleEle24_eta2p1_WPTight_Gsf", "HLT_DoubleEle25_CaloIdL_MW", "HLT_DoubleEle27_CaloIdL_MW", "HLT_DoubleEle33_CaloIdL_MW", "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_DZ_PFHT350", "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT350", "HLT_DoubleIsoMu20_eta2p1", "HLT_DoubleIsoMu24_eta2p1", "HLT_DoubleL2Mu50", "HLT_DoubleLooseChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMu20_7_Mass0to30_L1_DM4", "HLT_DoubleMu20_7_Mass0to30_L1_DM4EG", "HLT_DoubleMu20_7_Mass0to30_Photon23", "HLT_DoubleMu2_Jpsi_DoubleTkMu0_Phi", "HLT_DoubleMu2_Jpsi_DoubleTrk1_Phi", "HLT_DoubleMu3_DCA_PFMET50_PFMHT60", "HLT_DoubleMu3_DoubleEle7p5_CaloIdL_TrackIdL_Upsilon", "HLT_DoubleMu3_DZ_PFMET50_PFMHT60", "HLT_DoubleMu3_DZ_PFMET70_PFMHT70", "HLT_DoubleMu3_DZ_PFMET90_PFMHT90", "HLT_DoubleMu3_TkMu_DsTau3Mu", "HLT_DoubleMu3_Trk_Tau3mu", "HLT_DoubleMu3_Trk_Tau3mu_NoL1Mass", "HLT_DoubleMu43NoFiltersNoVtx", "HLT_DoubleMu48NoFiltersNoVtx", "HLT_DoubleMu4_3_Bs", "HLT_DoubleMu4_3_Jpsi_Displaced", "HLT_DoubleMu4_Jpsi_Displaced", "HLT_DoubleMu4_Jpsi_NoVertexing", "HLT_DoubleMu4_JpsiTrk_Displaced", "HLT_DoubleMu4_JpsiTrkTrk_Displaced", "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", "HLT_DoubleMu4_Mass8_DZ_PFHT350", "HLT_DoubleMu4_PsiPrimeTrk_Displaced", "HLT_DoubleMu5_Upsilon_DoubleEle3_CaloIdL_TrackIdL", "HLT_DoubleMu8_Mass8_PFHT350", "HLT_DoublePFJets100_CaloBTagCSV_p33", "HLT_DoublePFJets100MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_DoublePFJets116MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_DoublePFJets128MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_DoublePFJets200_CaloBTagCSV_p33", "HLT_DoublePFJets350_CaloBTagCSV_p33", "HLT_DoublePFJets40_CaloBTagCSV_p33", "HLT_DoublePhoton33_CaloIdL", "HLT_DoublePhoton70", "HLT_DoublePhoton85", "HLT_DoubleTightChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_EcalCalibration", "HLT_ECALHT800", "HLT_Ele115_CaloIdVT_GsfTrkIdT", "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele135_CaloIdVT_GsfTrkIdT", "HLT_Ele145_CaloIdVT_GsfTrkIdT", "HLT_Ele15_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele15_Ele8_CaloIdL_TrackIdL_IsoVL", "HLT_Ele15_IsoVVVL_PFHT450", "HLT_Ele15_IsoVVVL_PFHT450_CaloBTagCSV_4p5", "HLT_Ele15_IsoVVVL_PFHT450_PFMET50", "HLT_Ele15_IsoVVVL_PFHT600", "HLT_Ele15_WPLoose_Gsf", "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", "HLT_Ele17_WPLoose_Gsf", "HLT_Ele200_CaloIdVT_GsfTrkIdT", "HLT_Ele20_eta2p1_WPLoose_Gsf", "HLT_Ele20_WPLoose_Gsf", "HLT_Ele20_WPTight_Gsf", "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Ele24_eta2p1_WPTight_Gsf_LooseChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_LooseChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_MediumChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_MediumChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_TightChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_TightChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele250_CaloIdVT_GsfTrkIdT", "HLT_Ele27_Ele37_CaloIdL_MW", "HLT_Ele27_WPTight_Gsf", "HLT_Ele28_eta2p1_WPTight_Gsf_HT150", "HLT_Ele28_HighEta_SC20_Mass55", "HLT_Ele300_CaloIdVT_GsfTrkIdT", "HLT_Ele30_eta2p1_WPTight_Gsf_CentralPFJet35_EleCleaned", "HLT_Ele32_WPTight_Gsf", "HLT_Ele32_WPTight_Gsf_L1DoubleEG", "HLT_Ele35_WPTight_Gsf", "HLT_Ele35_WPTight_Gsf_L1EGMT", "HLT_Ele38_WPTight_Gsf", "HLT_Ele40_WPTight_Gsf", "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", "HLT_Ele50_IsoVVVL_PFHT450", "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", "HLT_FullTrack_Multiplicity100", "HLT_FullTrack_Multiplicity130", "HLT_FullTrack_Multiplicity155", "HLT_FullTrack_Multiplicity85", "HLT_HcalCalibration", "HLT_HcalIsolatedbunch", "HLT_HcalNZS", "HLT_HcalPhiSym", "HLT_HISinglePhoton10_Eta3p1ForPPRef", "HLT_HISinglePhoton20_Eta3p1ForPPRef", "HLT_HISinglePhoton30_Eta3p1ForPPRef", "HLT_HISinglePhoton40_Eta3p1ForPPRef", "HLT_HISinglePhoton50_Eta3p1ForPPRef", "HLT_HISinglePhoton60_Eta3p1ForPPRef", "HLT_HT300_Beamspot", "HLT_HT400_DisplacedDijet40_DisplacedTrack", "HLT_HT425", "HLT_HT430_DisplacedDijet40_DisplacedTrack", "HLT_HT430_DisplacedDijet60_DisplacedTrack", "HLT_HT430_DisplacedDijet80_DisplacedTrack", "HLT_HT450_Beamspot", "HLT_HT550_DisplacedDijet60_Inclusive", "HLT_HT550_DisplacedDijet80_Inclusive", "HLT_HT650_DisplacedDijet60_Inclusive", "HLT_HT650_DisplacedDijet80_Inclusive", "HLT_HT750_DisplacedDijet80_Inclusive", "HLT_IsoMu20", "HLT_IsoMu20_eta2p1_LooseChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_LooseChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu20_eta2p1_MediumChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_MediumChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu20_eta2p1_TightChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_TightChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu24", "HLT_IsoMu24_eta2p1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau40_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau40_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu27", "HLT_IsoMu27_LooseChargedIsoPFTau20_SingleL1", "HLT_IsoMu27_MediumChargedIsoPFTau20_SingleL1", "HLT_IsoMu27_TightChargedIsoPFTau20_SingleL1", "HLT_IsoMu30", "HLT_IsoTrackHB", "HLT_IsoTrackHE", "HLT_L1_CDC_SingleMu_3_er1p2_TOP120_DPHI2p618_3p142", "HLT_L1_DoubleJet30_Mass_Min400_Mu10", "HLT_L1ETMHadSeeds", "HLT_L1MinimumBiasHF0OR", "HLT_L1MinimumBiasHF_OR", "HLT_L1NotBptxOR", "HLT_L1SingleMu18", "HLT_L1SingleMu25", "HLT_L1UnpairedBunchBptxMinus", "HLT_L1UnpairedBunchBptxPlus", "HLT_L2Mu10", "HLT_L2Mu10_NoVertex_NoBPTX", "HLT_L2Mu10_NoVertex_NoBPTX3BX", "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX", "HLT_L2Mu50", "HLT_MediumChargedIsoPFTau180HighPtRelaxedIso_Trk50_eta2p1", "HLT_MediumChargedIsoPFTau180HighPtRelaxedIso_Trk50_eta2p1_1pr", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET100", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET110", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET120", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET130", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET90", "HLT_MET105_IsoTrk50", "HLT_MET120_IsoTrk50", "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu130_PFMHTNoMu130_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu140_PFMHTNoMu140_IDTight", "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", "HLT_Mu12", "HLT_Mu12_DoublePFJets100_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets200_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets350_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets40_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets40MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_Mu12_DoublePFJets54MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_Mu12_DoublePFJets62MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_Mu12_DoublePhoton20", "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Mu15", "HLT_Mu15_IsoVVVL_PFHT450", "HLT_Mu15_IsoVVVL_PFHT450_CaloBTagCSV_4p5", "HLT_Mu15_IsoVVVL_PFHT450_PFMET50", "HLT_Mu15_IsoVVVL_PFHT600", "HLT_Mu17", "HLT_Mu17_Photon30_IsoCaloId", "HLT_Mu17_TrkIsoVVL", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ_Mass3p8", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ_Mass8", "HLT_Mu18_Mu9", "HLT_Mu18_Mu9_DZ", "HLT_Mu18_Mu9_SameSign", "HLT_Mu18_Mu9_SameSign_DZ", "HLT_Mu19", "HLT_Mu19_TrkIsoVVL", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL_DZ", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL_DZ_Mass3p8", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL_DZ_Mass8", "HLT_Mu20", "HLT_Mu20_Mu10", "HLT_Mu20_Mu10_DZ", "HLT_Mu20_Mu10_SameSign", "HLT_Mu20_Mu10_SameSign_DZ", "HLT_Mu20_TkMu0_Phi", "HLT_Mu23_Mu12", "HLT_Mu23_Mu12_DZ", "HLT_Mu23_Mu12_SameSign", "HLT_Mu23_Mu12_SameSign_DZ", "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Mu25_TkMu0_Onia", "HLT_Mu25_TkMu0_Phi", "HLT_Mu27", "HLT_Mu27_Ele37_CaloIdL_MW", "HLT_Mu30_TkMu0_Onia", "HLT_Mu37_Ele27_CaloIdL_MW", "HLT_Mu37_TkMu27", "HLT_Mu3_PFJet40", "HLT_Mu43NoFiltersNoVtx_Photon43_CaloIdL", "HLT_Mu48NoFiltersNoVtx_Photon48_CaloIdL", "HLT_Mu50", "HLT_Mu50_IsoVVVL_PFHT450", "HLT_Mu55", "HLT_Mu7p5_L2Mu2_Jpsi", "HLT_Mu7p5_L2Mu2_Upsilon", "HLT_Mu7p5_Track2_Jpsi", "HLT_Mu7p5_Track2_Upsilon", "HLT_Mu7p5_Track3p5_Jpsi", "HLT_Mu7p5_Track3p5_Upsilon", "HLT_Mu7p5_Track7_Jpsi", "HLT_Mu7p5_Track7_Upsilon", "HLT_Mu8", "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", "HLT_Mu8_DiEle12_CaloIdL_TrackIdL_DZ", "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT350", "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT350_DZ", "HLT_Mu8_TrkIsoVVL", "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_OldMu100", "HLT_PFHT1050", "HLT_PFHT180", "HLT_PFHT250", "HLT_PFHT300PT30_QuadPFJet_75_60_45_40", "HLT_PFHT300PT30_QuadPFJet_75_60_45_40_TriplePFBTagCSV_3p0", "HLT_PFHT350", "HLT_PFHT350MinPFJet15", "HLT_PFHT370", "HLT_PFHT380_SixPFJet32", "HLT_PFHT380_SixPFJet32_DoublePFBTagCSV_2p2", "HLT_PFHT380_SixPFJet32_DoublePFBTagDeepCSV_2p2", "HLT_PFHT430", "HLT_PFHT430_SixPFJet40", "HLT_PFHT430_SixPFJet40_PFBTagCSV_1p5", "HLT_PFHT500_PFMET100_PFMHT100_IDTight", "HLT_PFHT500_PFMET110_PFMHT110_IDTight", "HLT_PFHT510", "HLT_PFHT590", "HLT_PFHT680", "HLT_PFHT700_PFMET85_PFMHT85_IDTight", "HLT_PFHT700_PFMET95_PFMHT95_IDTight", "HLT_PFHT780", "HLT_PFHT800_PFMET75_PFMHT75_IDTight", "HLT_PFHT800_PFMET85_PFMHT85_IDTight", "HLT_PFHT890", "HLT_PFJet140", "HLT_PFJet200", "HLT_PFJet260", "HLT_PFJet320", "HLT_PFJet40", "HLT_PFJet400", "HLT_PFJet450", "HLT_PFJet500", "HLT_PFJet550", "HLT_PFJet60", "HLT_PFJet80", "HLT_PFJetFwd140", "HLT_PFJetFwd200", "HLT_PFJetFwd260", "HLT_PFJetFwd320", "HLT_PFJetFwd40", "HLT_PFJetFwd400", "HLT_PFJetFwd450", "HLT_PFJetFwd500", "HLT_PFJetFwd60", "HLT_PFJetFwd80", "HLT_PFMET100_PFMHT100_IDTight_CaloBTagCSV_3p1", "HLT_PFMET100_PFMHT100_IDTight_PFHT60", "HLT_PFMET110_PFMHT110_IDTight", "HLT_PFMET110_PFMHT110_IDTight_CaloBTagCSV_3p1", "HLT_PFMET120_PFMHT120_IDTight", "HLT_PFMET120_PFMHT120_IDTight_CaloBTagCSV_3p1", "HLT_PFMET120_PFMHT120_IDTight_PFHT60", "HLT_PFMET130_PFMHT130_IDTight", "HLT_PFMET130_PFMHT130_IDTight_CaloBTagCSV_3p1", "HLT_PFMET140_PFMHT140_IDTight", "HLT_PFMET140_PFMHT140_IDTight_CaloBTagCSV_3p1", "HLT_PFMET200_HBHE_BeamHaloCleaned", "HLT_PFMET200_HBHECleaned", "HLT_PFMET200_NotCleaned", "HLT_PFMET250_HBHECleaned", "HLT_PFMET300_HBHECleaned", "HLT_PFMETNoMu100_PFMHTNoMu100_IDTight_PFHT60", "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight_PFHT60", "HLT_PFMETNoMu130_PFMHTNoMu130_IDTight", "HLT_PFMETNoMu140_PFMHTNoMu140_IDTight", "HLT_PFMETTypeOne100_PFMHT100_IDTight_PFHT60", "HLT_PFMETTypeOne110_PFMHT110_IDTight", "HLT_PFMETTypeOne120_PFMHT120_IDTight", "HLT_PFMETTypeOne120_PFMHT120_IDTight_PFHT60", "HLT_PFMETTypeOne130_PFMHT130_IDTight", "HLT_PFMETTypeOne140_PFMHT140_IDTight", "HLT_PFMETTypeOne200_HBHE_BeamHaloCleaned", "HLT_Photon120", "HLT_Photon120_R9Id90_HE10_IsoM", "HLT_Photon150", "HLT_Photon165_R9Id90_HE10_IsoM", "HLT_Photon175", "HLT_Photon20", "HLT_Photon200", "HLT_Photon20_HoverELoose", "HLT_Photon25", "HLT_Photon300_NoHE", "HLT_Photon30_HoverELoose", "HLT_Photon33", "HLT_Photon40_HoverELoose", "HLT_Photon50", "HLT_Photon50_HoverELoose", "HLT_Photon50_R9Id90_HE10_IsoM", "HLT_Photon50_R9Id90_HE10_IsoM_EBOnly_PFJetsMJJ300DEta3_PFMET50", "HLT_Photon60_HoverELoose", "HLT_Photon60_R9Id90_CaloIdL_IsoL", "HLT_Photon60_R9Id90_CaloIdL_IsoL_DisplacedIdL", "HLT_Photon60_R9Id90_CaloIdL_IsoL_DisplacedIdL_PFHT350MinPFJet15", "HLT_Photon75", "HLT_Photon75_R9Id90_HE10_IsoM", "HLT_Photon75_R9Id90_HE10_IsoM_EBOnly_PFJetsMJJ300DEta3", "HLT_Photon75_R9Id90_HE10_IsoM_EBOnly_PFJetsMJJ600DEta3", "HLT_Photon90", "HLT_Photon90_R9Id90_HE10_IsoM", "HLT_Physics", "HLT_Physics_part0", "HLT_Physics_part1", "HLT_Physics_part2", "HLT_Physics_part3", "HLT_Physics_part4", "HLT_Physics_part5", "HLT_Physics_part6", "HLT_Physics_part7", "HLT_QuadPFJet103_88_75_15", "HLT_QuadPFJet103_88_75_15_BTagCSV_p013_VBF2", "HLT_QuadPFJet103_88_75_15_DoubleBTagCSV_p013_p08_VBF1", "HLT_QuadPFJet105_88_76_15", "HLT_QuadPFJet105_88_76_15_BTagCSV_p013_VBF2", "HLT_QuadPFJet105_90_76_15_DoubleBTagCSV_p013_p08_VBF1", "HLT_QuadPFJet111_90_80_15", "HLT_QuadPFJet111_90_80_15_BTagCSV_p013_VBF2", "HLT_QuadPFJet111_90_80_15_DoubleBTagCSV_p013_p08_VBF1", "HLT_QuadPFJet98_83_71_15", "HLT_QuadPFJet98_83_71_15_BTagCSV_p013_VBF2", "HLT_QuadPFJet98_83_71_15_DoubleBTagCSV_p013_p08_VBF1", "HLT_Random", "HLT_Rsq0p35", "HLT_Rsq0p40", "HLT_RsqMR300_Rsq0p09_MR200", "HLT_RsqMR300_Rsq0p09_MR200_4jet", "HLT_RsqMR320_Rsq0p09_MR200", "HLT_RsqMR320_Rsq0p09_MR200_4jet", "HLT_SingleJet30_Mu12_SinglePFJet40", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_IsoTau15", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_IsoTau15_Charge1", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_Tau15", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_Tau15_Charge1", "HLT_TkMu100", "HLT_Trimuon5_3p5_2_Upsilon_Muon", "HLT_TrimuonOpen_5_3p5_2_Upsilon_Muon", "HLT_TripleJet110_35_35_Mjj650_PFMET110", "HLT_TripleJet110_35_35_Mjj650_PFMET120", "HLT_TripleJet110_35_35_Mjj650_PFMET130", "HLT_TripleMu_10_5_5_DZ", "HLT_TripleMu_12_10_5", "HLT_TripleMu_5_3_3_Mass3p8to60_DCA", "HLT_TripleMu_5_3_3_Mass3p8to60_DZ", "HLT_TriplePhoton_20_20_20_CaloIdLV2", "HLT_TriplePhoton_20_20_20_CaloIdLV2_R9IdVL", "HLT_TriplePhoton_30_30_10_CaloIdLV2", "HLT_TriplePhoton_30_30_10_CaloIdLV2_R9IdVL", "HLT_TriplePhoton_35_35_5_CaloIdLV2_R9IdVL", "HLT_TrkMu12_DoubleTrkMu5NoFiltersNoVtx", "HLT_TrkMu16_DoubleTrkMu6NoFiltersNoVtx", "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", "HLT_UncorrectedJetE30_NoBPTX", "HLT_UncorrectedJetE30_NoBPTX3BX", "HLT_UncorrectedJetE60_NoBPTX3BX", "HLT_UncorrectedJetE70_NoBPTX3BX", "HLT_VBF_DoubleLooseChargedIsoPFTau20_Trk1_eta2p1_Reg", "HLT_VBF_DoubleMediumChargedIsoPFTau20_Trk1_eta2p1_Reg", "HLT_VBF_DoubleTightChargedIsoPFTau20_Trk1_eta2p1_Reg", "HLT_ZeroBias", "HLT_ZeroBias_Beamspot", "HLT_ZeroBias_FirstBXAfterTrain", "HLT_ZeroBias_FirstCollisionAfterAbortGap", "HLT_ZeroBias_FirstCollisionInTrain", "HLT_ZeroBias_IsolatedBunches", "HLT_ZeroBias_LastCollisionInTrain", "HLT_ZeroBias_part0", "HLT_ZeroBias_part1", "HLT_ZeroBias_part2", "HLT_ZeroBias_part3", "HLT_ZeroBias_part4", "HLT_ZeroBias_part5", "HLT_ZeroBias_part6", "HLT_ZeroBias_part7", ]), ]) samples_2017["/DoubleEG/Run2017B-31Mar2018-v1/MINIAOD"] = OD([ ("type", "data"), ("sample_category", "data_obs"), ("process_name_specific", "DoubleEG_Run2017B_31Mar2018_v1"), ("nof_files", 28), ("nof_db_files", 578), ("nof_events", { }), ("nof_tree_events", 54125900), ("nof_db_events", 58088760), ("fsize_local", 31095050041), # 31.10GB, avg file size 1.11GB ("fsize_db", 1946674557955), # 1.95TB, avg file size 3.37GB ("use_it", True), ("triggers", ['2e', '3e']), ("has_LHE", False), ("nof_PSweights", 0), ("LHE_set", ""), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2020Dec27_woPresel_nom_all_hh_multilepton/ntuples/DoubleEG_Run2017B_31Mar2018_v1"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ ]), ("missing_from_superset", [ ]), ("missing_hlt_paths", [ "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", "HLT_Ele32_WPTight_Gsf", "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ_Mass3p8", "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", "HLT_Mu3_PFJet40", ]), ("hlt_paths", [ "HLT_AK4CaloJet100", "HLT_AK4CaloJet120", "HLT_AK4CaloJet30", "HLT_AK4CaloJet40", "HLT_AK4CaloJet50", "HLT_AK4CaloJet80", "HLT_AK4PFJet100", "HLT_AK4PFJet120", "HLT_AK4PFJet30", "HLT_AK4PFJet50", "HLT_AK4PFJet80", "HLT_AK8PFJet140", "HLT_AK8PFJet200", "HLT_AK8PFJet260", "HLT_AK8PFJet320", "HLT_AK8PFJet40", "HLT_AK8PFJet400", "HLT_AK8PFJet450", "HLT_AK8PFJet500", "HLT_AK8PFJet550", "HLT_AK8PFJet60", "HLT_AK8PFJet80", "HLT_BTagMu_AK4DiJet110_Mu5", "HLT_BTagMu_AK4DiJet170_Mu5", "HLT_BTagMu_AK4DiJet20_Mu5", "HLT_BTagMu_AK4DiJet40_Mu5", "HLT_BTagMu_AK4DiJet70_Mu5", "HLT_BTagMu_AK4Jet300_Mu5", "HLT_BTagMu_AK8DiJet170_Mu5", "HLT_BTagMu_AK8Jet300_Mu5", "HLT_CaloJet500_NoJetID", "HLT_CaloJet550_NoJetID", "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", "HLT_DiMu9_Ele9_CaloIdL_TrackIdL_DZ", "HLT_Dimuon0_LowMass_L1_0er1p5R", "HLT_Dimuon0_LowMass_L1_4R", "HLT_Dimuon10_PsiPrime_Barrel_Seagulls", "HLT_Dimuon12_Upsilon_eta1p5", "HLT_Dimuon14_Phi_Barrel_Seagulls", "HLT_Dimuon18_PsiPrime", "HLT_Dimuon20_Jpsi_Barrel_Seagulls", "HLT_Dimuon25_Jpsi", "HLT_DiPFJet15_FBEta3_NoCaloMatched", "HLT_DiPFJet15_NoCaloMatched", "HLT_DiPFJet25_FBEta3_NoCaloMatched", "HLT_DiPFJet25_NoCaloMatched", "HLT_DiPFJetAve15_HFJEC", "HLT_DiPFJetAve25_HFJEC", "HLT_DiPFJetAve35_HFJEC", "HLT_Diphoton30_22_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", "HLT_Diphoton30_22_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass95", "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_NoPixelVeto_Mass55", "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_PixelVeto_Mass55", "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_NoPixelVeto_Mass55", "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_PixelVeto_Mass55", "HLT_DiSC30_18_EIso_AND_HE_Mass70", "HLT_DoubleEle33_CaloIdL_MW", "HLT_DoubleLooseChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMu20_7_Mass0to30_L1_DM4EG", "HLT_DoubleMu20_7_Mass0to30_Photon23", "HLT_DoubleMu3_Trk_Tau3mu", "HLT_DoubleMu4_3_Bs", "HLT_DoubleMu4_3_Jpsi_Displaced", "HLT_DoubleMu4_Jpsi_Displaced", "HLT_DoubleMu4_Jpsi_NoVertexing", "HLT_DoubleMu4_JpsiTrk_Displaced", "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", "HLT_DoubleMu4_PsiPrimeTrk_Displaced", "HLT_DoublePhoton33_CaloIdL", "HLT_DoublePhoton70", "HLT_DoublePhoton85", "HLT_DoubleTightChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_EcalCalibration", "HLT_ECALHT800", "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Ele24_eta2p1_WPTight_Gsf_LooseChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_LooseChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_MediumChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_MediumChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_TightChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_TightChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele27_WPTight_Gsf", "HLT_Ele28_eta2p1_WPTight_Gsf_HT150", "HLT_Ele30_eta2p1_WPTight_Gsf_CentralPFJet35_EleCleaned", "HLT_Ele32_WPTight_Gsf_L1DoubleEG", "HLT_Ele35_WPTight_Gsf", "HLT_Ele38_WPTight_Gsf", "HLT_Ele40_WPTight_Gsf", "HLT_FullTrack_Multiplicity105", "HLT_FullTrack_Multiplicity135", "HLT_FullTrack_Multiplicity155", "HLT_FullTrack_Multiplicity85", "HLT_HcalCalibration", "HLT_HcalIsolatedbunch", "HLT_HcalNZS", "HLT_HcalPhiSym", "HLT_HISinglePhoton10_Eta3p1ForPPRef", "HLT_HISinglePhoton20_Eta3p1ForPPRef", "HLT_HISinglePhoton30_Eta3p1ForPPRef", "HLT_HISinglePhoton40_Eta3p1ForPPRef", "HLT_HISinglePhoton50_Eta3p1ForPPRef", "HLT_HISinglePhoton60_Eta3p1ForPPRef", "HLT_HT300_Beamspot", "HLT_HT300PT30_QuadJet_75_60_45_40", "HLT_HT300PT30_QuadJet_75_60_45_40_TripeCSV_p07", "HLT_HT450_Beamspot", "HLT_IsoMu20", "HLT_IsoMu20_eta2p1_LooseChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_LooseChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu20_eta2p1_MediumChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_MediumChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu20_eta2p1_TightChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_TightChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu24", "HLT_IsoMu24_eta2p1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu27", "HLT_L1FatEvents", "HLT_L1MinimumBiasHF0OR", "HLT_L1MinimumBiasHF_OR", "HLT_L1NotBptxOR", "HLT_L1SingleMu18", "HLT_L1SingleMu25", "HLT_L1UnpairedBunchBptxMinus", "HLT_L1UnpairedBunchBptxPlus", "HLT_L2Mu10", "HLT_L2Mu10_NoVertex_NoBPTX", "HLT_L2Mu10_NoVertex_NoBPTX3BX", "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX", "HLT_MediumChargedIsoPFTau100HighPtRelaxedIso_Trk50_eta2p1_1pr", "HLT_MediumChargedIsoPFTau180HighPtRelaxedIso_Trk50_eta2p1", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET100", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET90", "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Mu17", "HLT_Mu17_TrkIsoVVL", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ_Mass8", "HLT_Mu20", "HLT_Mu20_TkMu0_Phi", "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Mu27", "HLT_Mu30_TkMu0_Onia", "HLT_Mu50", "HLT_Mu7p5_Track2_Jpsi", "HLT_Mu7p5_Track2_Upsilon", "HLT_Mu7p5_Track3p5_Jpsi", "HLT_Mu7p5_Track3p5_Upsilon", "HLT_Mu7p5_Track7_Jpsi", "HLT_Mu7p5_Track7_Upsilon", "HLT_Mu8", "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", "HLT_Mu8_DiEle12_CaloIdL_TrackIdL_DZ", "HLT_Mu8_TrkIsoVVL", "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_PFHT1050", "HLT_PFHT180", "HLT_PFHT250", "HLT_PFHT350", "HLT_PFHT370", "HLT_PFHT380_SixJet32_DoubleBTagCSV_p075", "HLT_PFHT430", "HLT_PFHT430_SixJet40_BTagCSV_p080", "HLT_PFHT500_PFMET100_PFMHT100_IDTight", "HLT_PFHT500_PFMET110_PFMHT110_IDTight", "HLT_PFHT510", "HLT_PFHT590", "HLT_PFHT680", "HLT_PFHT700_PFMET85_PFMHT85_IDTight", "HLT_PFHT700_PFMET95_PFMHT95_IDTight", "HLT_PFHT780", "HLT_PFHT800_PFMET75_PFMHT75_IDTight", "HLT_PFHT800_PFMET85_PFMHT85_IDTight", "HLT_PFHT890", "HLT_PFJet140", "HLT_PFJet200", "HLT_PFJet260", "HLT_PFJet320", "HLT_PFJet40", "HLT_PFJet400", "HLT_PFJet450", "HLT_PFJet500", "HLT_PFJet550", "HLT_PFJet60", "HLT_PFJet80", "HLT_PFMET110_PFMHT110_IDTight", "HLT_PFMET120_PFMHT120_IDTight", "HLT_PFMET130_PFMHT130_IDTight", "HLT_PFMET140_PFMHT140_IDTight", "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", "HLT_PFMETTypeOne110_PFMHT110_IDTight", "HLT_PFMETTypeOne120_PFMHT120_IDTight", "HLT_PFMETTypeOne130_PFMHT130_IDTight", "HLT_PFMETTypeOne140_PFMHT140_IDTight", "HLT_Photon120", "HLT_Photon120_R9Id90_HE10_IsoM", "HLT_Photon150", "HLT_Photon165_R9Id90_HE10_IsoM", "HLT_Photon175", "HLT_Photon200", "HLT_Photon20_HoverELoose", "HLT_Photon300_NoHE", "HLT_Photon30_HoverELoose", "HLT_Photon33", "HLT_Photon40_HoverELoose", "HLT_Photon50", "HLT_Photon50_HoverELoose", "HLT_Photon50_R9Id90_HE10_IsoM", "HLT_Photon60_HoverELoose", "HLT_Photon60_R9Id90_CaloIdL_IsoL_DisplacedIdL_PFHT350MinPFJet15", "HLT_Photon75", "HLT_Photon75_R9Id90_HE10_IsoM", "HLT_Photon90", "HLT_Photon90_R9Id90_HE10_IsoM", "HLT_Physics", "HLT_Random", "HLT_Trimuon2_Upsilon5_Muon", "HLT_TripleMu_10_5_5_DZ", "HLT_TripleMu_12_10_5", "HLT_UncorrectedJetE30_NoBPTX", "HLT_UncorrectedJetE30_NoBPTX3BX", "HLT_UncorrectedJetE60_NoBPTX3BX", "HLT_UncorrectedJetE70_NoBPTX3BX", "HLT_ZeroBias", "HLT_ZeroBias_FirstBXAfterTrain", "HLT_ZeroBias_FirstCollisionAfterAbortGap", "HLT_ZeroBias_FirstCollisionInTrain", "HLT_ZeroBias_IsolatedBunches", "HLT_ZeroBias_LastCollisionInTrain", "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_ZeroBias_part8", "HLT_ZeroBias_part9", ]), ]) samples_2017["/DoubleEG/Run2017C-31Mar2018-v1/MINIAOD"] = OD([ ("type", "data"), ("sample_category", "data_obs"), ("process_name_specific", "DoubleEG_Run2017C_31Mar2018_v1"), ("nof_files", 30), ("nof_db_files", 682), ("nof_events", { }), ("nof_tree_events", 60063430), ("nof_db_events", 65181125), ("fsize_local", 35680413875), # 35.68GB, avg file size 1.19GB ("fsize_db", 2194501360366), # 2.19TB, avg file size 3.22GB ("use_it", True), ("triggers", ['2e', '3e']), ("has_LHE", False), ("nof_PSweights", 0), ("LHE_set", ""), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2020Dec27_woPresel_nom_all_hh_multilepton/ntuples/DoubleEG_Run2017C_31Mar2018_v1"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ ]), ("missing_from_superset", [ ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ "HLT_AK4CaloJet100", "HLT_AK4CaloJet120", "HLT_AK4CaloJet30", "HLT_AK4CaloJet40", "HLT_AK4CaloJet50", "HLT_AK4CaloJet80", "HLT_AK4PFJet100", "HLT_AK4PFJet120", "HLT_AK4PFJet30", "HLT_AK4PFJet50", "HLT_AK4PFJet80", "HLT_AK8PFHT750_TrimMass50", "HLT_AK8PFHT800_TrimMass50", "HLT_AK8PFHT850_TrimMass50", "HLT_AK8PFHT900_TrimMass50", "HLT_AK8PFJet140", "HLT_AK8PFJet200", "HLT_AK8PFJet260", "HLT_AK8PFJet320", "HLT_AK8PFJet360_TrimMass30", "HLT_AK8PFJet380_TrimMass30", "HLT_AK8PFJet40", "HLT_AK8PFJet400", "HLT_AK8PFJet400_TrimMass30", "HLT_AK8PFJet420_TrimMass30", "HLT_AK8PFJet450", "HLT_AK8PFJet500", "HLT_AK8PFJet550", "HLT_AK8PFJet60", "HLT_AK8PFJet80", "HLT_AK8PFJetFwd140", "HLT_AK8PFJetFwd200", "HLT_AK8PFJetFwd260", "HLT_AK8PFJetFwd320", "HLT_AK8PFJetFwd40", "HLT_AK8PFJetFwd400", "HLT_AK8PFJetFwd450", "HLT_AK8PFJetFwd500", "HLT_AK8PFJetFwd60", "HLT_AK8PFJetFwd80", "HLT_BTagMu_AK4DiJet110_Mu5", "HLT_BTagMu_AK4DiJet170_Mu5", "HLT_BTagMu_AK4DiJet20_Mu5", "HLT_BTagMu_AK4DiJet40_Mu5", "HLT_BTagMu_AK4DiJet70_Mu5", "HLT_BTagMu_AK4Jet300_Mu5", "HLT_BTagMu_AK8DiJet170_Mu5", "HLT_BTagMu_AK8Jet300_Mu5", "HLT_CaloJet500_NoJetID", "HLT_CaloJet550_NoJetID", "HLT_CaloMET100_HBHECleaned", "HLT_CaloMET100_NotCleaned", "HLT_CaloMET110_NotCleaned", "HLT_CaloMET250_HBHECleaned", "HLT_CaloMET250_NotCleaned", "HLT_CaloMET300_HBHECleaned", "HLT_CaloMET350_HBHECleaned", "HLT_CaloMET70_HBHECleaned", "HLT_CaloMET80_HBHECleaned", "HLT_CaloMET80_NotCleaned", "HLT_CaloMET90_HBHECleaned", "HLT_CaloMET90_NotCleaned", "HLT_CaloMHT90", "HLT_DiEle27_WPTightCaloOnly_L1DoubleEG", "HLT_DiJet110_35_Mjj650_PFMET110", "HLT_DiJet110_35_Mjj650_PFMET120", "HLT_DiJet110_35_Mjj650_PFMET130", "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", "HLT_DiMu9_Ele9_CaloIdL_TrackIdL_DZ", "HLT_Dimuon0_Jpsi", "HLT_Dimuon0_Jpsi3p5_Muon2", "HLT_Dimuon0_Jpsi_L1_4R_0er1p5R", "HLT_Dimuon0_Jpsi_L1_NoOS", "HLT_Dimuon0_Jpsi_NoVertexing", "HLT_Dimuon0_Jpsi_NoVertexing_L1_4R_0er1p5R", "HLT_Dimuon0_Jpsi_NoVertexing_NoOS", "HLT_Dimuon0_LowMass", "HLT_Dimuon0_LowMass_L1_0er1p5", "HLT_Dimuon0_LowMass_L1_0er1p5R", "HLT_Dimuon0_LowMass_L1_4", "HLT_Dimuon0_LowMass_L1_4R", "HLT_Dimuon0_LowMass_L1_TM530", "HLT_Dimuon0_Upsilon_L1_4p5", "HLT_Dimuon0_Upsilon_L1_4p5er2p0", "HLT_Dimuon0_Upsilon_L1_4p5er2p0M", "HLT_Dimuon0_Upsilon_L1_4p5NoOS", "HLT_Dimuon0_Upsilon_L1_5", "HLT_Dimuon0_Upsilon_L1_5M", "HLT_Dimuon0_Upsilon_Muon_L1_TM0", "HLT_Dimuon0_Upsilon_Muon_NoL1Mass", "HLT_Dimuon0_Upsilon_NoVertexing", "HLT_Dimuon10_PsiPrime_Barrel_Seagulls", "HLT_Dimuon10_Upsilon_Barrel_Seagulls", "HLT_Dimuon12_Upsilon_eta1p5", "HLT_Dimuon14_Phi_Barrel_Seagulls", "HLT_Dimuon18_PsiPrime", "HLT_Dimuon18_PsiPrime_noCorrL1", "HLT_Dimuon20_Jpsi_Barrel_Seagulls", "HLT_Dimuon24_Phi_noCorrL1", "HLT_Dimuon24_Upsilon_noCorrL1", "HLT_Dimuon25_Jpsi", "HLT_Dimuon25_Jpsi_noCorrL1", "HLT_DiPFJet15_FBEta3_NoCaloMatched", "HLT_DiPFJet15_NoCaloMatched", "HLT_DiPFJet25_FBEta3_NoCaloMatched", "HLT_DiPFJet25_NoCaloMatched", "HLT_DiPFJetAve100_HFJEC", "HLT_DiPFJetAve140", "HLT_DiPFJetAve15_HFJEC", "HLT_DiPFJetAve160_HFJEC", "HLT_DiPFJetAve200", "HLT_DiPFJetAve220_HFJEC", "HLT_DiPFJetAve25_HFJEC", "HLT_DiPFJetAve260", "HLT_DiPFJetAve300_HFJEC", "HLT_DiPFJetAve320", "HLT_DiPFJetAve35_HFJEC", "HLT_DiPFJetAve40", "HLT_DiPFJetAve400", "HLT_DiPFJetAve500", "HLT_DiPFJetAve60", "HLT_DiPFJetAve60_HFJEC", "HLT_DiPFJetAve80", "HLT_DiPFJetAve80_HFJEC", "HLT_Diphoton30_22_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", "HLT_Diphoton30_22_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass95", "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_NoPixelVeto_Mass55", "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_PixelVeto_Mass55", "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_NoPixelVeto_Mass55", "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_PixelVeto_Mass55", "HLT_DiSC30_18_EIso_AND_HE_Mass70", "HLT_DoubleEle24_eta2p1_WPTight_Gsf", "HLT_DoubleEle25_CaloIdL_MW", "HLT_DoubleEle27_CaloIdL_MW", "HLT_DoubleEle33_CaloIdL_MW", "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_DZ_PFHT350", "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT350", "HLT_DoubleIsoMu20_eta2p1", "HLT_DoubleIsoMu24_eta2p1", "HLT_DoubleL2Mu50", "HLT_DoubleLooseChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMu20_7_Mass0to30_L1_DM4", "HLT_DoubleMu20_7_Mass0to30_L1_DM4EG", "HLT_DoubleMu20_7_Mass0to30_Photon23", "HLT_DoubleMu3_DZ_PFMET50_PFMHT60", "HLT_DoubleMu3_DZ_PFMET70_PFMHT70", "HLT_DoubleMu3_DZ_PFMET90_PFMHT90", "HLT_DoubleMu3_Trk_Tau3mu", "HLT_DoubleMu3_Trk_Tau3mu_NoL1Mass", "HLT_DoubleMu43NoFiltersNoVtx", "HLT_DoubleMu48NoFiltersNoVtx", "HLT_DoubleMu4_3_Bs", "HLT_DoubleMu4_3_Jpsi_Displaced", "HLT_DoubleMu4_Jpsi_Displaced", "HLT_DoubleMu4_Jpsi_NoVertexing", "HLT_DoubleMu4_JpsiTrk_Displaced", "HLT_DoubleMu4_JpsiTrkTrk_Displaced", "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", "HLT_DoubleMu4_Mass8_DZ_PFHT350", "HLT_DoubleMu4_PsiPrimeTrk_Displaced", "HLT_DoubleMu8_Mass8_PFHT350", "HLT_DoublePFJets100_CaloBTagCSV_p33", "HLT_DoublePFJets100MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_DoublePFJets116MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_DoublePFJets128MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_DoublePFJets200_CaloBTagCSV_p33", "HLT_DoublePFJets350_CaloBTagCSV_p33", "HLT_DoublePFJets40_CaloBTagCSV_p33", "HLT_DoublePhoton33_CaloIdL", "HLT_DoublePhoton70", "HLT_DoublePhoton85", "HLT_DoubleTightChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_EcalCalibration", "HLT_ECALHT800", "HLT_Ele115_CaloIdVT_GsfTrkIdT", "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele135_CaloIdVT_GsfTrkIdT", "HLT_Ele145_CaloIdVT_GsfTrkIdT", "HLT_Ele15_IsoVVVL_PFHT450", "HLT_Ele15_IsoVVVL_PFHT450_CaloBTagCSV_4p5", "HLT_Ele15_IsoVVVL_PFHT450_PFMET50", "HLT_Ele15_IsoVVVL_PFHT600", "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", "HLT_Ele200_CaloIdVT_GsfTrkIdT", "HLT_Ele20_eta2p1_WPLoose_Gsf", "HLT_Ele20_WPLoose_Gsf", "HLT_Ele20_WPTight_Gsf", "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Ele24_eta2p1_WPTight_Gsf_LooseChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_LooseChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_MediumChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_MediumChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_TightChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_TightChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele250_CaloIdVT_GsfTrkIdT", "HLT_Ele27_Ele37_CaloIdL_MW", "HLT_Ele27_WPTight_Gsf", "HLT_Ele28_eta2p1_WPTight_Gsf_HT150", "HLT_Ele28_HighEta_SC20_Mass55", "HLT_Ele300_CaloIdVT_GsfTrkIdT", "HLT_Ele30_eta2p1_WPTight_Gsf_CentralPFJet35_EleCleaned", "HLT_Ele32_WPTight_Gsf", "HLT_Ele32_WPTight_Gsf_L1DoubleEG", "HLT_Ele35_WPTight_Gsf", "HLT_Ele35_WPTight_Gsf_L1EGMT", "HLT_Ele38_WPTight_Gsf", "HLT_Ele40_WPTight_Gsf", "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", "HLT_Ele50_IsoVVVL_PFHT450", "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", "HLT_FullTrack_Multiplicity100", "HLT_FullTrack_Multiplicity130", "HLT_FullTrack_Multiplicity155", "HLT_FullTrack_Multiplicity85", "HLT_HcalCalibration", "HLT_HcalIsolatedbunch", "HLT_HcalNZS", "HLT_HcalPhiSym", "HLT_HISinglePhoton10_Eta3p1ForPPRef", "HLT_HISinglePhoton20_Eta3p1ForPPRef", "HLT_HISinglePhoton30_Eta3p1ForPPRef", "HLT_HISinglePhoton40_Eta3p1ForPPRef", "HLT_HISinglePhoton50_Eta3p1ForPPRef", "HLT_HISinglePhoton60_Eta3p1ForPPRef", "HLT_HT300_Beamspot", "HLT_HT400_DisplacedDijet40_DisplacedTrack", "HLT_HT425", "HLT_HT430_DisplacedDijet40_DisplacedTrack", "HLT_HT430_DisplacedDijet60_DisplacedTrack", "HLT_HT430_DisplacedDijet80_DisplacedTrack", "HLT_HT450_Beamspot", "HLT_HT550_DisplacedDijet60_Inclusive", "HLT_HT550_DisplacedDijet80_Inclusive", "HLT_HT650_DisplacedDijet60_Inclusive", "HLT_HT650_DisplacedDijet80_Inclusive", "HLT_HT750_DisplacedDijet80_Inclusive", "HLT_IsoMu20", "HLT_IsoMu20_eta2p1_LooseChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_LooseChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu20_eta2p1_MediumChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_MediumChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu20_eta2p1_TightChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_TightChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu24", "HLT_IsoMu24_eta2p1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau40_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau40_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu27", "HLT_IsoMu30", "HLT_IsoTrackHB", "HLT_IsoTrackHE", "HLT_L1_CDC_SingleMu_3_er1p2_TOP120_DPHI2p618_3p142", "HLT_L1ETMHadSeeds", "HLT_L1MinimumBiasHF0OR", "HLT_L1MinimumBiasHF_OR", "HLT_L1NotBptxOR", "HLT_L1SingleMu18", "HLT_L1SingleMu25", "HLT_L1UnpairedBunchBptxMinus", "HLT_L1UnpairedBunchBptxPlus", "HLT_L2Mu10", "HLT_L2Mu10_NoVertex_NoBPTX", "HLT_L2Mu10_NoVertex_NoBPTX3BX", "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX", "HLT_L2Mu50", "HLT_MediumChargedIsoPFTau180HighPtRelaxedIso_Trk50_eta2p1", "HLT_MediumChargedIsoPFTau180HighPtRelaxedIso_Trk50_eta2p1_1pr", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET100", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET110", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET120", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET130", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET90", "HLT_MET105_IsoTrk50", "HLT_MET120_IsoTrk50", "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu130_PFMHTNoMu130_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu140_PFMHTNoMu140_IDTight", "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", "HLT_Mu12_DoublePFJets100_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets200_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets350_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets40_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets40MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_Mu12_DoublePFJets54MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_Mu12_DoublePFJets62MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_Mu12_DoublePhoton20", "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Mu15_IsoVVVL_PFHT450", "HLT_Mu15_IsoVVVL_PFHT450_CaloBTagCSV_4p5", "HLT_Mu15_IsoVVVL_PFHT450_PFMET50", "HLT_Mu15_IsoVVVL_PFHT600", "HLT_Mu17", "HLT_Mu17_Photon30_IsoCaloId", "HLT_Mu17_TrkIsoVVL", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ_Mass3p8", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ_Mass8", "HLT_Mu19", "HLT_Mu19_TrkIsoVVL", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL_DZ", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL_DZ_Mass3p8", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL_DZ_Mass8", "HLT_Mu20", "HLT_Mu20_TkMu0_Phi", "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Mu25_TkMu0_Onia", "HLT_Mu25_TkMu0_Phi", "HLT_Mu27", "HLT_Mu27_Ele37_CaloIdL_MW", "HLT_Mu30_TkMu0_Onia", "HLT_Mu37_Ele27_CaloIdL_MW", "HLT_Mu37_TkMu27", "HLT_Mu3_PFJet40", "HLT_Mu43NoFiltersNoVtx_Photon43_CaloIdL", "HLT_Mu48NoFiltersNoVtx_Photon48_CaloIdL", "HLT_Mu50", "HLT_Mu50_IsoVVVL_PFHT450", "HLT_Mu55", "HLT_Mu7p5_L2Mu2_Jpsi", "HLT_Mu7p5_L2Mu2_Upsilon", "HLT_Mu7p5_Track2_Jpsi", "HLT_Mu7p5_Track2_Upsilon", "HLT_Mu7p5_Track3p5_Jpsi", "HLT_Mu7p5_Track3p5_Upsilon", "HLT_Mu7p5_Track7_Jpsi", "HLT_Mu7p5_Track7_Upsilon", "HLT_Mu8", "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", "HLT_Mu8_DiEle12_CaloIdL_TrackIdL_DZ", "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT350", "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT350_DZ", "HLT_Mu8_TrkIsoVVL", "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_OldMu100", "HLT_PFHT1050", "HLT_PFHT180", "HLT_PFHT250", "HLT_PFHT300PT30_QuadPFJet_75_60_45_40", "HLT_PFHT300PT30_QuadPFJet_75_60_45_40_TriplePFBTagCSV_3p0", "HLT_PFHT350", "HLT_PFHT350MinPFJet15", "HLT_PFHT370", "HLT_PFHT380_SixPFJet32", "HLT_PFHT380_SixPFJet32_DoublePFBTagCSV_2p2", "HLT_PFHT380_SixPFJet32_DoublePFBTagDeepCSV_2p2", "HLT_PFHT430", "HLT_PFHT430_SixPFJet40", "HLT_PFHT430_SixPFJet40_PFBTagCSV_1p5", "HLT_PFHT500_PFMET100_PFMHT100_IDTight", "HLT_PFHT500_PFMET110_PFMHT110_IDTight", "HLT_PFHT510", "HLT_PFHT590", "HLT_PFHT680", "HLT_PFHT700_PFMET85_PFMHT85_IDTight", "HLT_PFHT700_PFMET95_PFMHT95_IDTight", "HLT_PFHT780", "HLT_PFHT800_PFMET75_PFMHT75_IDTight", "HLT_PFHT800_PFMET85_PFMHT85_IDTight", "HLT_PFHT890", "HLT_PFJet140", "HLT_PFJet200", "HLT_PFJet260", "HLT_PFJet320", "HLT_PFJet40", "HLT_PFJet400", "HLT_PFJet450", "HLT_PFJet500", "HLT_PFJet550", "HLT_PFJet60", "HLT_PFJet80", "HLT_PFJetFwd140", "HLT_PFJetFwd200", "HLT_PFJetFwd260", "HLT_PFJetFwd320", "HLT_PFJetFwd40", "HLT_PFJetFwd400", "HLT_PFJetFwd450", "HLT_PFJetFwd500", "HLT_PFJetFwd60", "HLT_PFJetFwd80", "HLT_PFMET100_PFMHT100_IDTight_CaloBTagCSV_3p1", "HLT_PFMET110_PFMHT110_IDTight", "HLT_PFMET110_PFMHT110_IDTight_CaloBTagCSV_3p1", "HLT_PFMET120_PFMHT120_IDTight", "HLT_PFMET120_PFMHT120_IDTight_CaloBTagCSV_3p1", "HLT_PFMET120_PFMHT120_IDTight_HFCleaned", "HLT_PFMET120_PFMHT120_IDTight_PFHT60", "HLT_PFMET120_PFMHT120_IDTight_PFHT60_HFCleaned", "HLT_PFMET130_PFMHT130_IDTight", "HLT_PFMET130_PFMHT130_IDTight_CaloBTagCSV_3p1", "HLT_PFMET140_PFMHT140_IDTight", "HLT_PFMET140_PFMHT140_IDTight_CaloBTagCSV_3p1", "HLT_PFMET200_HBHE_BeamHaloCleaned", "HLT_PFMET200_HBHECleaned", "HLT_PFMET200_NotCleaned", "HLT_PFMET250_HBHECleaned", "HLT_PFMET300_HBHECleaned", "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight_HFCleaned", "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight_PFHT60", "HLT_PFMETNoMu130_PFMHTNoMu130_IDTight", "HLT_PFMETNoMu140_PFMHTNoMu140_IDTight", "HLT_PFMETTypeOne110_PFMHT110_IDTight", "HLT_PFMETTypeOne120_PFMHT120_IDTight", "HLT_PFMETTypeOne120_PFMHT120_IDTight_HFCleaned", "HLT_PFMETTypeOne120_PFMHT120_IDTight_PFHT60", "HLT_PFMETTypeOne130_PFMHT130_IDTight", "HLT_PFMETTypeOne140_PFMHT140_IDTight", "HLT_PFMETTypeOne200_HBHE_BeamHaloCleaned", "HLT_Photon120", "HLT_Photon120_R9Id90_HE10_IsoM", "HLT_Photon150", "HLT_Photon165_R9Id90_HE10_IsoM", "HLT_Photon175", "HLT_Photon200", "HLT_Photon20_HoverELoose", "HLT_Photon25", "HLT_Photon300_NoHE", "HLT_Photon30_HoverELoose", "HLT_Photon33", "HLT_Photon40_HoverELoose", "HLT_Photon50", "HLT_Photon50_HoverELoose", "HLT_Photon50_R9Id90_HE10_IsoM", "HLT_Photon60_HoverELoose", "HLT_Photon60_R9Id90_CaloIdL_IsoL", "HLT_Photon60_R9Id90_CaloIdL_IsoL_DisplacedIdL", "HLT_Photon60_R9Id90_CaloIdL_IsoL_DisplacedIdL_PFHT350MinPFJet15", "HLT_Photon75", "HLT_Photon75_R9Id90_HE10_IsoM", "HLT_Photon90", "HLT_Photon90_R9Id90_HE10_IsoM", "HLT_Physics", "HLT_Physics_part0", "HLT_Physics_part1", "HLT_Physics_part2", "HLT_Physics_part3", "HLT_Physics_part4", "HLT_Physics_part5", "HLT_Physics_part6", "HLT_Physics_part7", "HLT_Random", "HLT_Rsq0p35", "HLT_Rsq0p40", "HLT_RsqMR300_Rsq0p09_MR200", "HLT_RsqMR300_Rsq0p09_MR200_4jet", "HLT_RsqMR320_Rsq0p09_MR200", "HLT_RsqMR320_Rsq0p09_MR200_4jet", "HLT_SingleJet30_Mu12_SinglePFJet40", "HLT_Tau3Mu_Mu5_Mu1_TkMu1_IsoTau10", "HLT_Tau3Mu_Mu5_Mu1_TkMu1_IsoTau10_Charge1", "HLT_Tau3Mu_Mu5_Mu1_TkMu1_Tau10", "HLT_Tau3Mu_Mu5_Mu1_TkMu1_Tau10_Charge1", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_IsoTau15", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_IsoTau15_Charge1", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_Tau15", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_Tau15_Charge1", "HLT_TkMu100", "HLT_Trimuon5_3p5_2_Upsilon_Muon", "HLT_TripleJet110_35_35_Mjj650_PFMET110", "HLT_TripleJet110_35_35_Mjj650_PFMET120", "HLT_TripleJet110_35_35_Mjj650_PFMET130", "HLT_TripleMu_10_5_5_DZ", "HLT_TripleMu_12_10_5", "HLT_TriplePhoton_20_20_20_CaloIdLV2", "HLT_TriplePhoton_20_20_20_CaloIdLV2_R9IdVL", "HLT_TriplePhoton_30_30_10_CaloIdLV2", "HLT_TriplePhoton_30_30_10_CaloIdLV2_R9IdVL", "HLT_TriplePhoton_35_35_5_CaloIdLV2_R9IdVL", "HLT_TrkMu12_DoubleTrkMu5NoFiltersNoVtx", "HLT_TrkMu16_DoubleTrkMu6NoFiltersNoVtx", "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", "HLT_UncorrectedJetE30_NoBPTX", "HLT_UncorrectedJetE30_NoBPTX3BX", "HLT_UncorrectedJetE60_NoBPTX3BX", "HLT_UncorrectedJetE70_NoBPTX3BX", "HLT_VBF_DoubleLooseChargedIsoPFTau20_Trk1_eta2p1_Reg", "HLT_VBF_DoubleMediumChargedIsoPFTau20_Trk1_eta2p1_Reg", "HLT_VBF_DoubleTightChargedIsoPFTau20_Trk1_eta2p1_Reg", "HLT_ZeroBias", "HLT_ZeroBias_FirstBXAfterTrain", "HLT_ZeroBias_FirstCollisionAfterAbortGap", "HLT_ZeroBias_FirstCollisionInTrain", "HLT_ZeroBias_IsolatedBunches", "HLT_ZeroBias_LastCollisionInTrain", "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_ZeroBias_part8", "HLT_ZeroBias_part9", ]), ]) samples_2017["/DoubleEG/Run2017D-31Mar2018-v1/MINIAOD"] = OD([ ("type", "data"), ("sample_category", "data_obs"), ("process_name_specific", "DoubleEG_Run2017D_31Mar2018_v1"), ("nof_files", 13), ("nof_db_files", 250), ("nof_events", { }), ("nof_tree_events", 25209987), ("nof_db_events", 25911432), ("fsize_local", 15401214450), # 15.40GB, avg file size 1.18GB ("fsize_db", 847686026577), # 847.69GB, avg file size 3.39GB ("use_it", True), ("triggers", ['2e', '3e']), ("has_LHE", False), ("nof_PSweights", 0), ("LHE_set", ""), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2020Dec27_woPresel_nom_all_hh_multilepton/ntuples/DoubleEG_Run2017D_31Mar2018_v1"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ ]), ("missing_from_superset", [ ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ "HLT_AK4CaloJet100", "HLT_AK4CaloJet120", "HLT_AK4CaloJet30", "HLT_AK4CaloJet40", "HLT_AK4CaloJet50", "HLT_AK4CaloJet80", "HLT_AK4PFJet100", "HLT_AK4PFJet120", "HLT_AK4PFJet30", "HLT_AK4PFJet50", "HLT_AK4PFJet80", "HLT_AK8PFHT750_TrimMass50", "HLT_AK8PFHT800_TrimMass50", "HLT_AK8PFHT850_TrimMass50", "HLT_AK8PFHT900_TrimMass50", "HLT_AK8PFJet140", "HLT_AK8PFJet200", "HLT_AK8PFJet260", "HLT_AK8PFJet320", "HLT_AK8PFJet360_TrimMass30", "HLT_AK8PFJet380_TrimMass30", "HLT_AK8PFJet40", "HLT_AK8PFJet400", "HLT_AK8PFJet400_TrimMass30", "HLT_AK8PFJet420_TrimMass30", "HLT_AK8PFJet450", "HLT_AK8PFJet500", "HLT_AK8PFJet550", "HLT_AK8PFJet60", "HLT_AK8PFJet80", "HLT_AK8PFJetFwd140", "HLT_AK8PFJetFwd200", "HLT_AK8PFJetFwd260", "HLT_AK8PFJetFwd320", "HLT_AK8PFJetFwd40", "HLT_AK8PFJetFwd400", "HLT_AK8PFJetFwd450", "HLT_AK8PFJetFwd500", "HLT_AK8PFJetFwd60", "HLT_AK8PFJetFwd80", "HLT_BTagMu_AK4DiJet110_Mu5", "HLT_BTagMu_AK4DiJet170_Mu5", "HLT_BTagMu_AK4DiJet20_Mu5", "HLT_BTagMu_AK4DiJet40_Mu5", "HLT_BTagMu_AK4DiJet70_Mu5", "HLT_BTagMu_AK4Jet300_Mu5", "HLT_BTagMu_AK8DiJet170_Mu5", "HLT_BTagMu_AK8Jet300_Mu5", "HLT_CaloJet500_NoJetID", "HLT_CaloJet550_NoJetID", "HLT_CaloMET100_HBHECleaned", "HLT_CaloMET100_NotCleaned", "HLT_CaloMET110_NotCleaned", "HLT_CaloMET250_HBHECleaned", "HLT_CaloMET250_NotCleaned", "HLT_CaloMET300_HBHECleaned", "HLT_CaloMET350_HBHECleaned", "HLT_CaloMET70_HBHECleaned", "HLT_CaloMET80_HBHECleaned", "HLT_CaloMET80_NotCleaned", "HLT_CaloMET90_HBHECleaned", "HLT_CaloMET90_NotCleaned", "HLT_CaloMHT90", "HLT_DiEle27_WPTightCaloOnly_L1DoubleEG", "HLT_DiJet110_35_Mjj650_PFMET110", "HLT_DiJet110_35_Mjj650_PFMET120", "HLT_DiJet110_35_Mjj650_PFMET130", "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", "HLT_DiMu9_Ele9_CaloIdL_TrackIdL_DZ", "HLT_Dimuon0_Jpsi", "HLT_Dimuon0_Jpsi3p5_Muon2", "HLT_Dimuon0_Jpsi_L1_4R_0er1p5R", "HLT_Dimuon0_Jpsi_L1_NoOS", "HLT_Dimuon0_Jpsi_NoVertexing", "HLT_Dimuon0_Jpsi_NoVertexing_L1_4R_0er1p5R", "HLT_Dimuon0_Jpsi_NoVertexing_NoOS", "HLT_Dimuon0_LowMass", "HLT_Dimuon0_LowMass_L1_0er1p5", "HLT_Dimuon0_LowMass_L1_0er1p5R", "HLT_Dimuon0_LowMass_L1_4", "HLT_Dimuon0_LowMass_L1_4R", "HLT_Dimuon0_LowMass_L1_TM530", "HLT_Dimuon0_Upsilon_L1_4p5", "HLT_Dimuon0_Upsilon_L1_4p5er2p0", "HLT_Dimuon0_Upsilon_L1_4p5er2p0M", "HLT_Dimuon0_Upsilon_L1_4p5NoOS", "HLT_Dimuon0_Upsilon_L1_5", "HLT_Dimuon0_Upsilon_L1_5M", "HLT_Dimuon0_Upsilon_Muon_L1_TM0", "HLT_Dimuon0_Upsilon_Muon_NoL1Mass", "HLT_Dimuon0_Upsilon_NoVertexing", "HLT_Dimuon10_PsiPrime_Barrel_Seagulls", "HLT_Dimuon10_Upsilon_Barrel_Seagulls", "HLT_Dimuon12_Upsilon_eta1p5", "HLT_Dimuon14_Phi_Barrel_Seagulls", "HLT_Dimuon18_PsiPrime", "HLT_Dimuon18_PsiPrime_noCorrL1", "HLT_Dimuon20_Jpsi_Barrel_Seagulls", "HLT_Dimuon24_Phi_noCorrL1", "HLT_Dimuon24_Upsilon_noCorrL1", "HLT_Dimuon25_Jpsi", "HLT_Dimuon25_Jpsi_noCorrL1", "HLT_DiPFJet15_FBEta3_NoCaloMatched", "HLT_DiPFJet15_NoCaloMatched", "HLT_DiPFJet25_FBEta3_NoCaloMatched", "HLT_DiPFJet25_NoCaloMatched", "HLT_DiPFJetAve100_HFJEC", "HLT_DiPFJetAve140", "HLT_DiPFJetAve15_HFJEC", "HLT_DiPFJetAve160_HFJEC", "HLT_DiPFJetAve200", "HLT_DiPFJetAve220_HFJEC", "HLT_DiPFJetAve25_HFJEC", "HLT_DiPFJetAve260", "HLT_DiPFJetAve300_HFJEC", "HLT_DiPFJetAve320", "HLT_DiPFJetAve35_HFJEC", "HLT_DiPFJetAve40", "HLT_DiPFJetAve400", "HLT_DiPFJetAve500", "HLT_DiPFJetAve60", "HLT_DiPFJetAve60_HFJEC", "HLT_DiPFJetAve80", "HLT_DiPFJetAve80_HFJEC", "HLT_Diphoton30_22_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", "HLT_Diphoton30_22_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass95", "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_NoPixelVeto_Mass55", "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_PixelVeto_Mass55", "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_NoPixelVeto_Mass55", "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_PixelVeto_Mass55", "HLT_DiSC30_18_EIso_AND_HE_Mass70", "HLT_DoubleEle24_eta2p1_WPTight_Gsf", "HLT_DoubleEle25_CaloIdL_MW", "HLT_DoubleEle27_CaloIdL_MW", "HLT_DoubleEle33_CaloIdL_MW", "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_DZ_PFHT350", "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT350", "HLT_DoubleIsoMu20_eta2p1", "HLT_DoubleIsoMu24_eta2p1", "HLT_DoubleL2Mu50", "HLT_DoubleLooseChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMu20_7_Mass0to30_L1_DM4", "HLT_DoubleMu20_7_Mass0to30_L1_DM4EG", "HLT_DoubleMu20_7_Mass0to30_Photon23", "HLT_DoubleMu3_DZ_PFMET50_PFMHT60", "HLT_DoubleMu3_DZ_PFMET70_PFMHT70", "HLT_DoubleMu3_DZ_PFMET90_PFMHT90", "HLT_DoubleMu3_Trk_Tau3mu", "HLT_DoubleMu3_Trk_Tau3mu_NoL1Mass", "HLT_DoubleMu43NoFiltersNoVtx", "HLT_DoubleMu48NoFiltersNoVtx", "HLT_DoubleMu4_3_Bs", "HLT_DoubleMu4_3_Jpsi_Displaced", "HLT_DoubleMu4_Jpsi_Displaced", "HLT_DoubleMu4_Jpsi_NoVertexing", "HLT_DoubleMu4_JpsiTrk_Displaced", "HLT_DoubleMu4_JpsiTrkTrk_Displaced", "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", "HLT_DoubleMu4_Mass8_DZ_PFHT350", "HLT_DoubleMu4_PsiPrimeTrk_Displaced", "HLT_DoubleMu8_Mass8_PFHT350", "HLT_DoublePFJets100_CaloBTagCSV_p33", "HLT_DoublePFJets100MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_DoublePFJets116MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_DoublePFJets128MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_DoublePFJets200_CaloBTagCSV_p33", "HLT_DoublePFJets350_CaloBTagCSV_p33", "HLT_DoublePFJets40_CaloBTagCSV_p33", "HLT_DoublePhoton33_CaloIdL", "HLT_DoublePhoton70", "HLT_DoublePhoton85", "HLT_DoubleTightChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_EcalCalibration", "HLT_ECALHT800", "HLT_Ele115_CaloIdVT_GsfTrkIdT", "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele135_CaloIdVT_GsfTrkIdT", "HLT_Ele145_CaloIdVT_GsfTrkIdT", "HLT_Ele15_IsoVVVL_PFHT450", "HLT_Ele15_IsoVVVL_PFHT450_CaloBTagCSV_4p5", "HLT_Ele15_IsoVVVL_PFHT450_PFMET50", "HLT_Ele15_IsoVVVL_PFHT600", "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", "HLT_Ele200_CaloIdVT_GsfTrkIdT", "HLT_Ele20_eta2p1_WPLoose_Gsf", "HLT_Ele20_WPLoose_Gsf", "HLT_Ele20_WPTight_Gsf", "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Ele24_eta2p1_WPTight_Gsf_LooseChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_LooseChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_MediumChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_MediumChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_TightChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_TightChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele250_CaloIdVT_GsfTrkIdT", "HLT_Ele27_Ele37_CaloIdL_MW", "HLT_Ele27_WPTight_Gsf", "HLT_Ele28_eta2p1_WPTight_Gsf_HT150", "HLT_Ele28_HighEta_SC20_Mass55", "HLT_Ele300_CaloIdVT_GsfTrkIdT", "HLT_Ele30_eta2p1_WPTight_Gsf_CentralPFJet35_EleCleaned", "HLT_Ele32_WPTight_Gsf", "HLT_Ele32_WPTight_Gsf_L1DoubleEG", "HLT_Ele35_WPTight_Gsf", "HLT_Ele35_WPTight_Gsf_L1EGMT", "HLT_Ele38_WPTight_Gsf", "HLT_Ele40_WPTight_Gsf", "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", "HLT_Ele50_IsoVVVL_PFHT450", "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", "HLT_FullTrack_Multiplicity100", "HLT_FullTrack_Multiplicity130", "HLT_FullTrack_Multiplicity155", "HLT_FullTrack_Multiplicity85", "HLT_HcalCalibration", "HLT_HcalIsolatedbunch", "HLT_HcalNZS", "HLT_HcalPhiSym", "HLT_HISinglePhoton10_Eta3p1ForPPRef", "HLT_HISinglePhoton20_Eta3p1ForPPRef", "HLT_HISinglePhoton30_Eta3p1ForPPRef", "HLT_HISinglePhoton40_Eta3p1ForPPRef", "HLT_HISinglePhoton50_Eta3p1ForPPRef", "HLT_HISinglePhoton60_Eta3p1ForPPRef", "HLT_HT300_Beamspot", "HLT_HT400_DisplacedDijet40_DisplacedTrack", "HLT_HT425", "HLT_HT430_DisplacedDijet40_DisplacedTrack", "HLT_HT430_DisplacedDijet60_DisplacedTrack", "HLT_HT430_DisplacedDijet80_DisplacedTrack", "HLT_HT450_Beamspot", "HLT_HT550_DisplacedDijet60_Inclusive", "HLT_HT550_DisplacedDijet80_Inclusive", "HLT_HT650_DisplacedDijet60_Inclusive", "HLT_HT650_DisplacedDijet80_Inclusive", "HLT_HT750_DisplacedDijet80_Inclusive", "HLT_IsoMu20", "HLT_IsoMu20_eta2p1_LooseChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_LooseChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu20_eta2p1_MediumChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_MediumChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu20_eta2p1_TightChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_TightChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu24", "HLT_IsoMu24_eta2p1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau40_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau40_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu27", "HLT_IsoMu30", "HLT_IsoTrackHB", "HLT_IsoTrackHE", "HLT_L1_CDC_SingleMu_3_er1p2_TOP120_DPHI2p618_3p142", "HLT_L1ETMHadSeeds", "HLT_L1MinimumBiasHF0OR", "HLT_L1MinimumBiasHF_OR", "HLT_L1NotBptxOR", "HLT_L1SingleMu18", "HLT_L1SingleMu25", "HLT_L1UnpairedBunchBptxMinus", "HLT_L1UnpairedBunchBptxPlus", "HLT_L2Mu10", "HLT_L2Mu10_NoVertex_NoBPTX", "HLT_L2Mu10_NoVertex_NoBPTX3BX", "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX", "HLT_L2Mu50", "HLT_MediumChargedIsoPFTau180HighPtRelaxedIso_Trk50_eta2p1", "HLT_MediumChargedIsoPFTau180HighPtRelaxedIso_Trk50_eta2p1_1pr", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET100", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET110", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET120", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET130", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET90", "HLT_MET105_IsoTrk50", "HLT_MET120_IsoTrk50", "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu130_PFMHTNoMu130_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu140_PFMHTNoMu140_IDTight", "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", "HLT_Mu12_DoublePFJets100_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets200_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets350_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets40_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets40MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_Mu12_DoublePFJets54MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_Mu12_DoublePFJets62MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_Mu12_DoublePhoton20", "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Mu15_IsoVVVL_PFHT450", "HLT_Mu15_IsoVVVL_PFHT450_CaloBTagCSV_4p5", "HLT_Mu15_IsoVVVL_PFHT450_PFMET50", "HLT_Mu15_IsoVVVL_PFHT600", "HLT_Mu17", "HLT_Mu17_Photon30_IsoCaloId", "HLT_Mu17_TrkIsoVVL", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ_Mass3p8", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ_Mass8", "HLT_Mu19", "HLT_Mu19_TrkIsoVVL", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL_DZ", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL_DZ_Mass3p8", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL_DZ_Mass8", "HLT_Mu20", "HLT_Mu20_TkMu0_Phi", "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Mu25_TkMu0_Onia", "HLT_Mu25_TkMu0_Phi", "HLT_Mu27", "HLT_Mu27_Ele37_CaloIdL_MW", "HLT_Mu30_TkMu0_Onia", "HLT_Mu37_Ele27_CaloIdL_MW", "HLT_Mu37_TkMu27", "HLT_Mu3_PFJet40", "HLT_Mu43NoFiltersNoVtx_Photon43_CaloIdL", "HLT_Mu48NoFiltersNoVtx_Photon48_CaloIdL", "HLT_Mu50", "HLT_Mu50_IsoVVVL_PFHT450", "HLT_Mu55", "HLT_Mu7p5_L2Mu2_Jpsi", "HLT_Mu7p5_L2Mu2_Upsilon", "HLT_Mu7p5_Track2_Jpsi", "HLT_Mu7p5_Track2_Upsilon", "HLT_Mu7p5_Track3p5_Jpsi", "HLT_Mu7p5_Track3p5_Upsilon", "HLT_Mu7p5_Track7_Jpsi", "HLT_Mu7p5_Track7_Upsilon", "HLT_Mu8", "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", "HLT_Mu8_DiEle12_CaloIdL_TrackIdL_DZ", "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT350", "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT350_DZ", "HLT_Mu8_TrkIsoVVL", "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_OldMu100", "HLT_PFHT1050", "HLT_PFHT180", "HLT_PFHT250", "HLT_PFHT300PT30_QuadPFJet_75_60_45_40", "HLT_PFHT300PT30_QuadPFJet_75_60_45_40_TriplePFBTagCSV_3p0", "HLT_PFHT350", "HLT_PFHT350MinPFJet15", "HLT_PFHT370", "HLT_PFHT380_SixPFJet32", "HLT_PFHT380_SixPFJet32_DoublePFBTagCSV_2p2", "HLT_PFHT380_SixPFJet32_DoublePFBTagDeepCSV_2p2", "HLT_PFHT430", "HLT_PFHT430_SixPFJet40", "HLT_PFHT430_SixPFJet40_PFBTagCSV_1p5", "HLT_PFHT500_PFMET100_PFMHT100_IDTight", "HLT_PFHT500_PFMET110_PFMHT110_IDTight", "HLT_PFHT510", "HLT_PFHT590", "HLT_PFHT680", "HLT_PFHT700_PFMET85_PFMHT85_IDTight", "HLT_PFHT700_PFMET95_PFMHT95_IDTight", "HLT_PFHT780", "HLT_PFHT800_PFMET75_PFMHT75_IDTight", "HLT_PFHT800_PFMET85_PFMHT85_IDTight", "HLT_PFHT890", "HLT_PFJet140", "HLT_PFJet200", "HLT_PFJet260", "HLT_PFJet320", "HLT_PFJet40", "HLT_PFJet400", "HLT_PFJet450", "HLT_PFJet500", "HLT_PFJet550", "HLT_PFJet60", "HLT_PFJet80", "HLT_PFJetFwd140", "HLT_PFJetFwd200", "HLT_PFJetFwd260", "HLT_PFJetFwd320", "HLT_PFJetFwd40", "HLT_PFJetFwd400", "HLT_PFJetFwd450", "HLT_PFJetFwd500", "HLT_PFJetFwd60", "HLT_PFJetFwd80", "HLT_PFMET100_PFMHT100_IDTight_CaloBTagCSV_3p1", "HLT_PFMET110_PFMHT110_IDTight", "HLT_PFMET110_PFMHT110_IDTight_CaloBTagCSV_3p1", "HLT_PFMET120_PFMHT120_IDTight", "HLT_PFMET120_PFMHT120_IDTight_CaloBTagCSV_3p1", "HLT_PFMET120_PFMHT120_IDTight_PFHT60", "HLT_PFMET130_PFMHT130_IDTight", "HLT_PFMET130_PFMHT130_IDTight_CaloBTagCSV_3p1", "HLT_PFMET140_PFMHT140_IDTight", "HLT_PFMET140_PFMHT140_IDTight_CaloBTagCSV_3p1", "HLT_PFMET200_HBHE_BeamHaloCleaned", "HLT_PFMET200_HBHECleaned", "HLT_PFMET200_NotCleaned", "HLT_PFMET250_HBHECleaned", "HLT_PFMET300_HBHECleaned", "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight_PFHT60", "HLT_PFMETNoMu130_PFMHTNoMu130_IDTight", "HLT_PFMETNoMu140_PFMHTNoMu140_IDTight", "HLT_PFMETTypeOne110_PFMHT110_IDTight", "HLT_PFMETTypeOne120_PFMHT120_IDTight", "HLT_PFMETTypeOne120_PFMHT120_IDTight_PFHT60", "HLT_PFMETTypeOne130_PFMHT130_IDTight", "HLT_PFMETTypeOne140_PFMHT140_IDTight", "HLT_PFMETTypeOne200_HBHE_BeamHaloCleaned", "HLT_Photon120", "HLT_Photon120_R9Id90_HE10_IsoM", "HLT_Photon150", "HLT_Photon165_R9Id90_HE10_IsoM", "HLT_Photon175", "HLT_Photon200", "HLT_Photon20_HoverELoose", "HLT_Photon25", "HLT_Photon300_NoHE", "HLT_Photon30_HoverELoose", "HLT_Photon33", "HLT_Photon40_HoverELoose", "HLT_Photon50", "HLT_Photon50_HoverELoose", "HLT_Photon50_R9Id90_HE10_IsoM", "HLT_Photon60_HoverELoose", "HLT_Photon60_R9Id90_CaloIdL_IsoL", "HLT_Photon60_R9Id90_CaloIdL_IsoL_DisplacedIdL", "HLT_Photon60_R9Id90_CaloIdL_IsoL_DisplacedIdL_PFHT350MinPFJet15", "HLT_Photon75", "HLT_Photon75_R9Id90_HE10_IsoM", "HLT_Photon90", "HLT_Photon90_R9Id90_HE10_IsoM", "HLT_Physics", "HLT_Physics_part0", "HLT_Physics_part1", "HLT_Physics_part2", "HLT_Physics_part3", "HLT_Physics_part4", "HLT_Physics_part5", "HLT_Physics_part6", "HLT_Physics_part7", "HLT_Random", "HLT_Rsq0p35", "HLT_Rsq0p40", "HLT_RsqMR300_Rsq0p09_MR200", "HLT_RsqMR300_Rsq0p09_MR200_4jet", "HLT_RsqMR320_Rsq0p09_MR200", "HLT_RsqMR320_Rsq0p09_MR200_4jet", "HLT_SingleJet30_Mu12_SinglePFJet40", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_IsoTau15", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_IsoTau15_Charge1", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_Tau15", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_Tau15_Charge1", "HLT_TkMu100", "HLT_Trimuon5_3p5_2_Upsilon_Muon", "HLT_TripleJet110_35_35_Mjj650_PFMET110", "HLT_TripleJet110_35_35_Mjj650_PFMET120", "HLT_TripleJet110_35_35_Mjj650_PFMET130", "HLT_TripleMu_10_5_5_DZ", "HLT_TripleMu_12_10_5", "HLT_TripleMu_5_3_3_Mass3p8to60_DZ", "HLT_TriplePhoton_20_20_20_CaloIdLV2", "HLT_TriplePhoton_20_20_20_CaloIdLV2_R9IdVL", "HLT_TriplePhoton_30_30_10_CaloIdLV2", "HLT_TriplePhoton_30_30_10_CaloIdLV2_R9IdVL", "HLT_TriplePhoton_35_35_5_CaloIdLV2_R9IdVL", "HLT_TrkMu12_DoubleTrkMu5NoFiltersNoVtx", "HLT_TrkMu16_DoubleTrkMu6NoFiltersNoVtx", "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", "HLT_UncorrectedJetE30_NoBPTX", "HLT_UncorrectedJetE30_NoBPTX3BX", "HLT_UncorrectedJetE60_NoBPTX3BX", "HLT_UncorrectedJetE70_NoBPTX3BX", "HLT_VBF_DoubleLooseChargedIsoPFTau20_Trk1_eta2p1_Reg", "HLT_VBF_DoubleMediumChargedIsoPFTau20_Trk1_eta2p1_Reg", "HLT_VBF_DoubleTightChargedIsoPFTau20_Trk1_eta2p1_Reg", "HLT_ZeroBias", "HLT_ZeroBias_FirstBXAfterTrain", "HLT_ZeroBias_FirstCollisionAfterAbortGap", "HLT_ZeroBias_FirstCollisionInTrain", "HLT_ZeroBias_IsolatedBunches", "HLT_ZeroBias_LastCollisionInTrain", "HLT_ZeroBias_part0", "HLT_ZeroBias_part1", "HLT_ZeroBias_part2", "HLT_ZeroBias_part3", "HLT_ZeroBias_part4", "HLT_ZeroBias_part5", "HLT_ZeroBias_part6", "HLT_ZeroBias_part7", ]), ]) samples_2017["/DoubleEG/Run2017E-31Mar2018-v1/MINIAOD"] = OD([ ("type", "data"), ("sample_category", "data_obs"), ("process_name_specific", "DoubleEG_Run2017E_31Mar2018_v1"), ("nof_files", 28), ("nof_db_files", 661), ("nof_events", { }), ("nof_tree_events", 54624312), ("nof_db_events", 56235775), ("fsize_local", 34222122771), # 34.22GB, avg file size 1.22GB ("fsize_db", 2098322717194), # 2.10TB, avg file size 3.17GB ("use_it", True), ("triggers", ['2e', '3e']), ("has_LHE", False), ("nof_PSweights", 0), ("LHE_set", ""), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2020Dec27_woPresel_nom_all_hh_multilepton/ntuples/DoubleEG_Run2017E_31Mar2018_v1"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ ]), ("missing_from_superset", [ ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ "HLT_AK4CaloJet100", "HLT_AK4CaloJet120", "HLT_AK4CaloJet30", "HLT_AK4CaloJet40", "HLT_AK4CaloJet50", "HLT_AK4CaloJet80", "HLT_AK4PFJet100", "HLT_AK4PFJet120", "HLT_AK4PFJet30", "HLT_AK4PFJet50", "HLT_AK4PFJet80", "HLT_AK8PFHT750_TrimMass50", "HLT_AK8PFHT800_TrimMass50", "HLT_AK8PFHT850_TrimMass50", "HLT_AK8PFHT900_TrimMass50", "HLT_AK8PFJet140", "HLT_AK8PFJet200", "HLT_AK8PFJet260", "HLT_AK8PFJet320", "HLT_AK8PFJet360_TrimMass30", "HLT_AK8PFJet380_TrimMass30", "HLT_AK8PFJet40", "HLT_AK8PFJet400", "HLT_AK8PFJet400_TrimMass30", "HLT_AK8PFJet420_TrimMass30", "HLT_AK8PFJet450", "HLT_AK8PFJet500", "HLT_AK8PFJet550", "HLT_AK8PFJet60", "HLT_AK8PFJet80", "HLT_AK8PFJetFwd140", "HLT_AK8PFJetFwd200", "HLT_AK8PFJetFwd260", "HLT_AK8PFJetFwd320", "HLT_AK8PFJetFwd40", "HLT_AK8PFJetFwd400", "HLT_AK8PFJetFwd450", "HLT_AK8PFJetFwd500", "HLT_AK8PFJetFwd60", "HLT_AK8PFJetFwd80", "HLT_BTagMu_AK4DiJet110_Mu5", "HLT_BTagMu_AK4DiJet170_Mu5", "HLT_BTagMu_AK4DiJet20_Mu5", "HLT_BTagMu_AK4DiJet40_Mu5", "HLT_BTagMu_AK4DiJet70_Mu5", "HLT_BTagMu_AK4Jet300_Mu5", "HLT_BTagMu_AK8DiJet170_Mu5", "HLT_BTagMu_AK8Jet300_Mu5", "HLT_CaloJet500_NoJetID", "HLT_CaloJet550_NoJetID", "HLT_CaloMET100_HBHECleaned", "HLT_CaloMET100_NotCleaned", "HLT_CaloMET110_NotCleaned", "HLT_CaloMET250_HBHECleaned", "HLT_CaloMET250_NotCleaned", "HLT_CaloMET300_HBHECleaned", "HLT_CaloMET350_HBHECleaned", "HLT_CaloMET70_HBHECleaned", "HLT_CaloMET80_HBHECleaned", "HLT_CaloMET80_NotCleaned", "HLT_CaloMET90_HBHECleaned", "HLT_CaloMET90_NotCleaned", "HLT_CaloMHT90", "HLT_DiEle27_WPTightCaloOnly_L1DoubleEG", "HLT_DiJet110_35_Mjj650_PFMET110", "HLT_DiJet110_35_Mjj650_PFMET120", "HLT_DiJet110_35_Mjj650_PFMET130", "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", "HLT_DiMu9_Ele9_CaloIdL_TrackIdL_DZ", "HLT_Dimuon0_Jpsi", "HLT_Dimuon0_Jpsi3p5_Muon2", "HLT_Dimuon0_Jpsi_L1_4R_0er1p5R", "HLT_Dimuon0_Jpsi_L1_NoOS", "HLT_Dimuon0_Jpsi_NoVertexing", "HLT_Dimuon0_Jpsi_NoVertexing_L1_4R_0er1p5R", "HLT_Dimuon0_Jpsi_NoVertexing_NoOS", "HLT_Dimuon0_LowMass", "HLT_Dimuon0_LowMass_L1_0er1p5", "HLT_Dimuon0_LowMass_L1_0er1p5R", "HLT_Dimuon0_LowMass_L1_4", "HLT_Dimuon0_LowMass_L1_4R", "HLT_Dimuon0_LowMass_L1_TM530", "HLT_Dimuon0_Upsilon_L1_4p5", "HLT_Dimuon0_Upsilon_L1_4p5er2p0", "HLT_Dimuon0_Upsilon_L1_4p5er2p0M", "HLT_Dimuon0_Upsilon_L1_4p5NoOS", "HLT_Dimuon0_Upsilon_L1_5", "HLT_Dimuon0_Upsilon_L1_5M", "HLT_Dimuon0_Upsilon_Muon_L1_TM0", "HLT_Dimuon0_Upsilon_Muon_NoL1Mass", "HLT_Dimuon0_Upsilon_NoVertexing", "HLT_Dimuon10_PsiPrime_Barrel_Seagulls", "HLT_Dimuon10_Upsilon_Barrel_Seagulls", "HLT_Dimuon12_Upsilon_eta1p5", "HLT_Dimuon14_Phi_Barrel_Seagulls", "HLT_Dimuon18_PsiPrime", "HLT_Dimuon18_PsiPrime_noCorrL1", "HLT_Dimuon20_Jpsi_Barrel_Seagulls", "HLT_Dimuon24_Phi_noCorrL1", "HLT_Dimuon24_Upsilon_noCorrL1", "HLT_Dimuon25_Jpsi", "HLT_Dimuon25_Jpsi_noCorrL1", "HLT_DiPFJet15_FBEta3_NoCaloMatched", "HLT_DiPFJet15_NoCaloMatched", "HLT_DiPFJet25_FBEta3_NoCaloMatched", "HLT_DiPFJet25_NoCaloMatched", "HLT_DiPFJetAve100_HFJEC", "HLT_DiPFJetAve140", "HLT_DiPFJetAve15_HFJEC", "HLT_DiPFJetAve160_HFJEC", "HLT_DiPFJetAve200", "HLT_DiPFJetAve220_HFJEC", "HLT_DiPFJetAve25_HFJEC", "HLT_DiPFJetAve260", "HLT_DiPFJetAve300_HFJEC", "HLT_DiPFJetAve320", "HLT_DiPFJetAve35_HFJEC", "HLT_DiPFJetAve40", "HLT_DiPFJetAve400", "HLT_DiPFJetAve500", "HLT_DiPFJetAve60", "HLT_DiPFJetAve60_HFJEC", "HLT_DiPFJetAve80", "HLT_DiPFJetAve80_HFJEC", "HLT_Diphoton30_22_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", "HLT_Diphoton30_22_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass95", "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_NoPixelVeto_Mass55", "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_PixelVeto_Mass55", "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_NoPixelVeto_Mass55", "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_PixelVeto_Mass55", "HLT_DiSC30_18_EIso_AND_HE_Mass70", "HLT_DoubleEle24_eta2p1_WPTight_Gsf", "HLT_DoubleEle25_CaloIdL_MW", "HLT_DoubleEle27_CaloIdL_MW", "HLT_DoubleEle33_CaloIdL_MW", "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_DZ_PFHT350", "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT350", "HLT_DoubleIsoMu20_eta2p1", "HLT_DoubleIsoMu24_eta2p1", "HLT_DoubleL2Mu50", "HLT_DoubleLooseChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMu20_7_Mass0to30_L1_DM4", "HLT_DoubleMu20_7_Mass0to30_L1_DM4EG", "HLT_DoubleMu20_7_Mass0to30_Photon23", "HLT_DoubleMu3_DZ_PFMET50_PFMHT60", "HLT_DoubleMu3_DZ_PFMET70_PFMHT70", "HLT_DoubleMu3_DZ_PFMET90_PFMHT90", "HLT_DoubleMu3_Trk_Tau3mu", "HLT_DoubleMu3_Trk_Tau3mu_NoL1Mass", "HLT_DoubleMu43NoFiltersNoVtx", "HLT_DoubleMu48NoFiltersNoVtx", "HLT_DoubleMu4_3_Bs", "HLT_DoubleMu4_3_Jpsi_Displaced", "HLT_DoubleMu4_Jpsi_Displaced", "HLT_DoubleMu4_Jpsi_NoVertexing", "HLT_DoubleMu4_JpsiTrk_Displaced", "HLT_DoubleMu4_JpsiTrkTrk_Displaced", "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", "HLT_DoubleMu4_Mass8_DZ_PFHT350", "HLT_DoubleMu4_PsiPrimeTrk_Displaced", "HLT_DoubleMu8_Mass8_PFHT350", "HLT_DoublePFJets100_CaloBTagCSV_p33", "HLT_DoublePFJets100MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_DoublePFJets116MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_DoublePFJets128MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_DoublePFJets200_CaloBTagCSV_p33", "HLT_DoublePFJets350_CaloBTagCSV_p33", "HLT_DoublePFJets40_CaloBTagCSV_p33", "HLT_DoublePhoton33_CaloIdL", "HLT_DoublePhoton70", "HLT_DoublePhoton85", "HLT_DoubleTightChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_EcalCalibration", "HLT_ECALHT800", "HLT_Ele115_CaloIdVT_GsfTrkIdT", "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele135_CaloIdVT_GsfTrkIdT", "HLT_Ele145_CaloIdVT_GsfTrkIdT", "HLT_Ele15_IsoVVVL_PFHT450", "HLT_Ele15_IsoVVVL_PFHT450_CaloBTagCSV_4p5", "HLT_Ele15_IsoVVVL_PFHT450_PFMET50", "HLT_Ele15_IsoVVVL_PFHT600", "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", "HLT_Ele200_CaloIdVT_GsfTrkIdT", "HLT_Ele20_eta2p1_WPLoose_Gsf", "HLT_Ele20_WPLoose_Gsf", "HLT_Ele20_WPTight_Gsf", "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Ele24_eta2p1_WPTight_Gsf_LooseChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_LooseChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_MediumChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_MediumChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_TightChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_TightChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele250_CaloIdVT_GsfTrkIdT", "HLT_Ele27_Ele37_CaloIdL_MW", "HLT_Ele27_WPTight_Gsf", "HLT_Ele28_eta2p1_WPTight_Gsf_HT150", "HLT_Ele28_HighEta_SC20_Mass55", "HLT_Ele300_CaloIdVT_GsfTrkIdT", "HLT_Ele30_eta2p1_WPTight_Gsf_CentralPFJet35_EleCleaned", "HLT_Ele32_WPTight_Gsf", "HLT_Ele32_WPTight_Gsf_L1DoubleEG", "HLT_Ele35_WPTight_Gsf", "HLT_Ele35_WPTight_Gsf_L1EGMT", "HLT_Ele38_WPTight_Gsf", "HLT_Ele40_WPTight_Gsf", "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", "HLT_Ele50_IsoVVVL_PFHT450", "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", "HLT_FullTrack_Multiplicity100", "HLT_FullTrack_Multiplicity130", "HLT_FullTrack_Multiplicity155", "HLT_FullTrack_Multiplicity85", "HLT_HcalCalibration", "HLT_HcalIsolatedbunch", "HLT_HcalNZS", "HLT_HcalPhiSym", "HLT_HISinglePhoton10_Eta3p1ForPPRef", "HLT_HISinglePhoton20_Eta3p1ForPPRef", "HLT_HISinglePhoton30_Eta3p1ForPPRef", "HLT_HISinglePhoton40_Eta3p1ForPPRef", "HLT_HISinglePhoton50_Eta3p1ForPPRef", "HLT_HISinglePhoton60_Eta3p1ForPPRef", "HLT_HT300_Beamspot", "HLT_HT400_DisplacedDijet40_DisplacedTrack", "HLT_HT425", "HLT_HT430_DisplacedDijet40_DisplacedTrack", "HLT_HT430_DisplacedDijet60_DisplacedTrack", "HLT_HT430_DisplacedDijet80_DisplacedTrack", "HLT_HT450_Beamspot", "HLT_HT550_DisplacedDijet60_Inclusive", "HLT_HT550_DisplacedDijet80_Inclusive", "HLT_HT650_DisplacedDijet60_Inclusive", "HLT_HT650_DisplacedDijet80_Inclusive", "HLT_HT750_DisplacedDijet80_Inclusive", "HLT_IsoMu20", "HLT_IsoMu20_eta2p1_LooseChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_LooseChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu20_eta2p1_MediumChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_MediumChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu20_eta2p1_TightChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_TightChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu24", "HLT_IsoMu24_eta2p1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau40_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau40_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu27", "HLT_IsoMu30", "HLT_IsoTrackHB", "HLT_IsoTrackHE", "HLT_L1_CDC_SingleMu_3_er1p2_TOP120_DPHI2p618_3p142", "HLT_L1ETMHadSeeds", "HLT_L1MinimumBiasHF0OR", "HLT_L1MinimumBiasHF_OR", "HLT_L1NotBptxOR", "HLT_L1SingleMu18", "HLT_L1SingleMu25", "HLT_L1UnpairedBunchBptxMinus", "HLT_L1UnpairedBunchBptxPlus", "HLT_L2Mu10", "HLT_L2Mu10_NoVertex_NoBPTX", "HLT_L2Mu10_NoVertex_NoBPTX3BX", "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX", "HLT_L2Mu50", "HLT_MediumChargedIsoPFTau180HighPtRelaxedIso_Trk50_eta2p1", "HLT_MediumChargedIsoPFTau180HighPtRelaxedIso_Trk50_eta2p1_1pr", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET100", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET110", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET120", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET130", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET90", "HLT_MET105_IsoTrk50", "HLT_MET120_IsoTrk50", "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu130_PFMHTNoMu130_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu140_PFMHTNoMu140_IDTight", "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", "HLT_Mu12_DoublePFJets100_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets200_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets350_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets40_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets40MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_Mu12_DoublePFJets54MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_Mu12_DoublePFJets62MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_Mu12_DoublePhoton20", "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Mu15_IsoVVVL_PFHT450", "HLT_Mu15_IsoVVVL_PFHT450_CaloBTagCSV_4p5", "HLT_Mu15_IsoVVVL_PFHT450_PFMET50", "HLT_Mu15_IsoVVVL_PFHT600", "HLT_Mu17", "HLT_Mu17_Photon30_IsoCaloId", "HLT_Mu17_TrkIsoVVL", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ_Mass3p8", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ_Mass8", "HLT_Mu19", "HLT_Mu19_TrkIsoVVL", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL_DZ", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL_DZ_Mass3p8", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL_DZ_Mass8", "HLT_Mu20", "HLT_Mu20_TkMu0_Phi", "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Mu25_TkMu0_Onia", "HLT_Mu25_TkMu0_Phi", "HLT_Mu27", "HLT_Mu27_Ele37_CaloIdL_MW", "HLT_Mu30_TkMu0_Onia", "HLT_Mu37_Ele27_CaloIdL_MW", "HLT_Mu37_TkMu27", "HLT_Mu3_PFJet40", "HLT_Mu43NoFiltersNoVtx_Photon43_CaloIdL", "HLT_Mu48NoFiltersNoVtx_Photon48_CaloIdL", "HLT_Mu50", "HLT_Mu50_IsoVVVL_PFHT450", "HLT_Mu55", "HLT_Mu7p5_L2Mu2_Jpsi", "HLT_Mu7p5_L2Mu2_Upsilon", "HLT_Mu7p5_Track2_Jpsi", "HLT_Mu7p5_Track2_Upsilon", "HLT_Mu7p5_Track3p5_Jpsi", "HLT_Mu7p5_Track3p5_Upsilon", "HLT_Mu7p5_Track7_Jpsi", "HLT_Mu7p5_Track7_Upsilon", "HLT_Mu8", "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", "HLT_Mu8_DiEle12_CaloIdL_TrackIdL_DZ", "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT350", "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT350_DZ", "HLT_Mu8_TrkIsoVVL", "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_OldMu100", "HLT_PFHT1050", "HLT_PFHT180", "HLT_PFHT250", "HLT_PFHT300PT30_QuadPFJet_75_60_45_40", "HLT_PFHT300PT30_QuadPFJet_75_60_45_40_TriplePFBTagCSV_3p0", "HLT_PFHT350", "HLT_PFHT350MinPFJet15", "HLT_PFHT370", "HLT_PFHT380_SixPFJet32", "HLT_PFHT380_SixPFJet32_DoublePFBTagCSV_2p2", "HLT_PFHT380_SixPFJet32_DoublePFBTagDeepCSV_2p2", "HLT_PFHT430", "HLT_PFHT430_SixPFJet40", "HLT_PFHT430_SixPFJet40_PFBTagCSV_1p5", "HLT_PFHT500_PFMET100_PFMHT100_IDTight", "HLT_PFHT500_PFMET110_PFMHT110_IDTight", "HLT_PFHT510", "HLT_PFHT590", "HLT_PFHT680", "HLT_PFHT700_PFMET85_PFMHT85_IDTight", "HLT_PFHT700_PFMET95_PFMHT95_IDTight", "HLT_PFHT780", "HLT_PFHT800_PFMET75_PFMHT75_IDTight", "HLT_PFHT800_PFMET85_PFMHT85_IDTight", "HLT_PFHT890", "HLT_PFJet140", "HLT_PFJet200", "HLT_PFJet260", "HLT_PFJet320", "HLT_PFJet40", "HLT_PFJet400", "HLT_PFJet450", "HLT_PFJet500", "HLT_PFJet550", "HLT_PFJet60", "HLT_PFJet80", "HLT_PFJetFwd140", "HLT_PFJetFwd200", "HLT_PFJetFwd260", "HLT_PFJetFwd320", "HLT_PFJetFwd40", "HLT_PFJetFwd400", "HLT_PFJetFwd450", "HLT_PFJetFwd500", "HLT_PFJetFwd60", "HLT_PFJetFwd80", "HLT_PFMET100_PFMHT100_IDTight_CaloBTagCSV_3p1", "HLT_PFMET110_PFMHT110_IDTight", "HLT_PFMET110_PFMHT110_IDTight_CaloBTagCSV_3p1", "HLT_PFMET120_PFMHT120_IDTight", "HLT_PFMET120_PFMHT120_IDTight_CaloBTagCSV_3p1", "HLT_PFMET120_PFMHT120_IDTight_PFHT60", "HLT_PFMET130_PFMHT130_IDTight", "HLT_PFMET130_PFMHT130_IDTight_CaloBTagCSV_3p1", "HLT_PFMET140_PFMHT140_IDTight", "HLT_PFMET140_PFMHT140_IDTight_CaloBTagCSV_3p1", "HLT_PFMET200_HBHE_BeamHaloCleaned", "HLT_PFMET200_HBHECleaned", "HLT_PFMET200_NotCleaned", "HLT_PFMET250_HBHECleaned", "HLT_PFMET300_HBHECleaned", "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight_PFHT60", "HLT_PFMETNoMu130_PFMHTNoMu130_IDTight", "HLT_PFMETNoMu140_PFMHTNoMu140_IDTight", "HLT_PFMETTypeOne110_PFMHT110_IDTight", "HLT_PFMETTypeOne120_PFMHT120_IDTight", "HLT_PFMETTypeOne120_PFMHT120_IDTight_PFHT60", "HLT_PFMETTypeOne130_PFMHT130_IDTight", "HLT_PFMETTypeOne140_PFMHT140_IDTight", "HLT_PFMETTypeOne200_HBHE_BeamHaloCleaned", "HLT_Photon120", "HLT_Photon120_R9Id90_HE10_IsoM", "HLT_Photon150", "HLT_Photon165_R9Id90_HE10_IsoM", "HLT_Photon175", "HLT_Photon200", "HLT_Photon20_HoverELoose", "HLT_Photon25", "HLT_Photon300_NoHE", "HLT_Photon30_HoverELoose", "HLT_Photon33", "HLT_Photon40_HoverELoose", "HLT_Photon50", "HLT_Photon50_HoverELoose", "HLT_Photon50_R9Id90_HE10_IsoM", "HLT_Photon60_HoverELoose", "HLT_Photon60_R9Id90_CaloIdL_IsoL", "HLT_Photon60_R9Id90_CaloIdL_IsoL_DisplacedIdL", "HLT_Photon60_R9Id90_CaloIdL_IsoL_DisplacedIdL_PFHT350MinPFJet15", "HLT_Photon75", "HLT_Photon75_R9Id90_HE10_IsoM", "HLT_Photon90", "HLT_Photon90_R9Id90_HE10_IsoM", "HLT_Physics", "HLT_Physics_part0", "HLT_Physics_part1", "HLT_Physics_part2", "HLT_Physics_part3", "HLT_Physics_part4", "HLT_Physics_part5", "HLT_Physics_part6", "HLT_Physics_part7", "HLT_Random", "HLT_Rsq0p35", "HLT_Rsq0p40", "HLT_RsqMR300_Rsq0p09_MR200", "HLT_RsqMR300_Rsq0p09_MR200_4jet", "HLT_RsqMR320_Rsq0p09_MR200", "HLT_RsqMR320_Rsq0p09_MR200_4jet", "HLT_SingleJet30_Mu12_SinglePFJet40", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_IsoTau15", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_IsoTau15_Charge1", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_Tau15", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_Tau15_Charge1", "HLT_TkMu100", "HLT_Trimuon5_3p5_2_Upsilon_Muon", "HLT_TripleJet110_35_35_Mjj650_PFMET110", "HLT_TripleJet110_35_35_Mjj650_PFMET120", "HLT_TripleJet110_35_35_Mjj650_PFMET130", "HLT_TripleMu_10_5_5_DZ", "HLT_TripleMu_12_10_5", "HLT_TripleMu_5_3_3_Mass3p8to60_DZ", "HLT_TriplePhoton_20_20_20_CaloIdLV2", "HLT_TriplePhoton_20_20_20_CaloIdLV2_R9IdVL", "HLT_TriplePhoton_30_30_10_CaloIdLV2", "HLT_TriplePhoton_30_30_10_CaloIdLV2_R9IdVL", "HLT_TriplePhoton_35_35_5_CaloIdLV2_R9IdVL", "HLT_TrkMu12_DoubleTrkMu5NoFiltersNoVtx", "HLT_TrkMu16_DoubleTrkMu6NoFiltersNoVtx", "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", "HLT_UncorrectedJetE30_NoBPTX", "HLT_UncorrectedJetE30_NoBPTX3BX", "HLT_UncorrectedJetE60_NoBPTX3BX", "HLT_UncorrectedJetE70_NoBPTX3BX", "HLT_VBF_DoubleLooseChargedIsoPFTau20_Trk1_eta2p1_Reg", "HLT_VBF_DoubleMediumChargedIsoPFTau20_Trk1_eta2p1_Reg", "HLT_VBF_DoubleTightChargedIsoPFTau20_Trk1_eta2p1_Reg", "HLT_ZeroBias", "HLT_ZeroBias_FirstBXAfterTrain", "HLT_ZeroBias_FirstCollisionAfterAbortGap", "HLT_ZeroBias_FirstCollisionInTrain", "HLT_ZeroBias_IsolatedBunches", "HLT_ZeroBias_LastCollisionInTrain", "HLT_ZeroBias_part0", "HLT_ZeroBias_part1", "HLT_ZeroBias_part2", "HLT_ZeroBias_part3", "HLT_ZeroBias_part4", "HLT_ZeroBias_part5", "HLT_ZeroBias_part6", "HLT_ZeroBias_part7", ]), ]) samples_2017["/DoubleEG/Run2017F-31Mar2018-v1/MINIAOD"] = OD([ ("type", "data"), ("sample_category", "data_obs"), ("process_name_specific", "DoubleEG_Run2017F_31Mar2018_v1"), ("nof_files", 37), ("nof_db_files", 867), ("nof_events", { }), ("nof_tree_events", 72430490), ("nof_db_events", 74344288), ("fsize_local", 45729475316), # 45.73GB, avg file size 1.24GB ("fsize_db", 2845703836290), # 2.85TB, avg file size 3.28GB ("use_it", True), ("triggers", ['2e', '3e']), ("has_LHE", False), ("nof_PSweights", 0), ("LHE_set", ""), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2020Dec27_woPresel_nom_all_hh_multilepton/ntuples/DoubleEG_Run2017F_31Mar2018_v1"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ ]), ("missing_from_superset", [ ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ "HLT_AK4CaloJet100", "HLT_AK4CaloJet120", "HLT_AK4CaloJet30", "HLT_AK4CaloJet40", "HLT_AK4CaloJet50", "HLT_AK4CaloJet80", "HLT_AK4PFJet100", "HLT_AK4PFJet120", "HLT_AK4PFJet30", "HLT_AK4PFJet50", "HLT_AK4PFJet80", "HLT_AK8PFHT750_TrimMass50", "HLT_AK8PFHT800_TrimMass50", "HLT_AK8PFHT850_TrimMass50", "HLT_AK8PFHT900_TrimMass50", "HLT_AK8PFJet140", "HLT_AK8PFJet200", "HLT_AK8PFJet260", "HLT_AK8PFJet320", "HLT_AK8PFJet330_PFAK8BTagCSV_p1", "HLT_AK8PFJet330_PFAK8BTagCSV_p17", "HLT_AK8PFJet360_TrimMass30", "HLT_AK8PFJet380_TrimMass30", "HLT_AK8PFJet40", "HLT_AK8PFJet400", "HLT_AK8PFJet400_TrimMass30", "HLT_AK8PFJet420_TrimMass30", "HLT_AK8PFJet450", "HLT_AK8PFJet500", "HLT_AK8PFJet550", "HLT_AK8PFJet60", "HLT_AK8PFJet80", "HLT_AK8PFJetFwd140", "HLT_AK8PFJetFwd200", "HLT_AK8PFJetFwd260", "HLT_AK8PFJetFwd320", "HLT_AK8PFJetFwd40", "HLT_AK8PFJetFwd400", "HLT_AK8PFJetFwd450", "HLT_AK8PFJetFwd500", "HLT_AK8PFJetFwd60", "HLT_AK8PFJetFwd80", "HLT_BTagMu_AK4DiJet110_Mu5", "HLT_BTagMu_AK4DiJet170_Mu5", "HLT_BTagMu_AK4DiJet20_Mu5", "HLT_BTagMu_AK4DiJet40_Mu5", "HLT_BTagMu_AK4DiJet70_Mu5", "HLT_BTagMu_AK4Jet300_Mu5", "HLT_BTagMu_AK8DiJet170_Mu5", "HLT_BTagMu_AK8Jet300_Mu5", "HLT_CaloJet500_NoJetID", "HLT_CaloJet550_NoJetID", "HLT_CaloMET100_HBHECleaned", "HLT_CaloMET100_NotCleaned", "HLT_CaloMET110_NotCleaned", "HLT_CaloMET250_HBHECleaned", "HLT_CaloMET250_NotCleaned", "HLT_CaloMET300_HBHECleaned", "HLT_CaloMET350_HBHECleaned", "HLT_CaloMET70_HBHECleaned", "HLT_CaloMET80_HBHECleaned", "HLT_CaloMET80_NotCleaned", "HLT_CaloMET90_HBHECleaned", "HLT_CaloMET90_NotCleaned", "HLT_CaloMHT90", "HLT_DiEle27_WPTightCaloOnly_L1DoubleEG", "HLT_DiJet110_35_Mjj650_PFMET110", "HLT_DiJet110_35_Mjj650_PFMET120", "HLT_DiJet110_35_Mjj650_PFMET130", "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", "HLT_DiMu9_Ele9_CaloIdL_TrackIdL_DZ", "HLT_Dimuon0_Jpsi", "HLT_Dimuon0_Jpsi3p5_Muon2", "HLT_Dimuon0_Jpsi_L1_4R_0er1p5R", "HLT_Dimuon0_Jpsi_L1_NoOS", "HLT_Dimuon0_Jpsi_NoVertexing", "HLT_Dimuon0_Jpsi_NoVertexing_L1_4R_0er1p5R", "HLT_Dimuon0_Jpsi_NoVertexing_NoOS", "HLT_Dimuon0_LowMass", "HLT_Dimuon0_LowMass_L1_0er1p5", "HLT_Dimuon0_LowMass_L1_0er1p5R", "HLT_Dimuon0_LowMass_L1_4", "HLT_Dimuon0_LowMass_L1_4R", "HLT_Dimuon0_LowMass_L1_TM530", "HLT_Dimuon0_Upsilon_L1_4p5", "HLT_Dimuon0_Upsilon_L1_4p5er2p0", "HLT_Dimuon0_Upsilon_L1_4p5er2p0M", "HLT_Dimuon0_Upsilon_L1_4p5NoOS", "HLT_Dimuon0_Upsilon_L1_5", "HLT_Dimuon0_Upsilon_L1_5M", "HLT_Dimuon0_Upsilon_Muon_L1_TM0", "HLT_Dimuon0_Upsilon_Muon_NoL1Mass", "HLT_Dimuon0_Upsilon_NoVertexing", "HLT_Dimuon10_PsiPrime_Barrel_Seagulls", "HLT_Dimuon10_Upsilon_Barrel_Seagulls", "HLT_Dimuon12_Upsilon_eta1p5", "HLT_Dimuon14_Phi_Barrel_Seagulls", "HLT_Dimuon18_PsiPrime", "HLT_Dimuon18_PsiPrime_noCorrL1", "HLT_Dimuon20_Jpsi_Barrel_Seagulls", "HLT_Dimuon24_Phi_noCorrL1", "HLT_Dimuon24_Upsilon_noCorrL1", "HLT_Dimuon25_Jpsi", "HLT_Dimuon25_Jpsi_noCorrL1", "HLT_DiPFJet15_FBEta3_NoCaloMatched", "HLT_DiPFJet15_NoCaloMatched", "HLT_DiPFJet25_FBEta3_NoCaloMatched", "HLT_DiPFJet25_NoCaloMatched", "HLT_DiPFJetAve100_HFJEC", "HLT_DiPFJetAve140", "HLT_DiPFJetAve15_HFJEC", "HLT_DiPFJetAve160_HFJEC", "HLT_DiPFJetAve200", "HLT_DiPFJetAve220_HFJEC", "HLT_DiPFJetAve25_HFJEC", "HLT_DiPFJetAve260", "HLT_DiPFJetAve300_HFJEC", "HLT_DiPFJetAve320", "HLT_DiPFJetAve35_HFJEC", "HLT_DiPFJetAve40", "HLT_DiPFJetAve400", "HLT_DiPFJetAve500", "HLT_DiPFJetAve60", "HLT_DiPFJetAve60_HFJEC", "HLT_DiPFJetAve80", "HLT_DiPFJetAve80_HFJEC", "HLT_Diphoton30_18_PVrealAND_R9Id_AND_IsoCaloId_AND_HE_R9Id_NoPixelVeto_Mass55", "HLT_Diphoton30_18_PVrealAND_R9Id_AND_IsoCaloId_AND_HE_R9Id_PixelVeto_Mass55", "HLT_Diphoton30_22_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", "HLT_Diphoton30_22_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass95", "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_NoPixelVeto_Mass55", "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_PixelVeto_Mass55", "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_NoPixelVeto_Mass55", "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_PixelVeto_Mass55", "HLT_DiSC30_18_EIso_AND_HE_Mass70", "HLT_DoubleEle24_eta2p1_WPTight_Gsf", "HLT_DoubleEle25_CaloIdL_MW", "HLT_DoubleEle27_CaloIdL_MW", "HLT_DoubleEle33_CaloIdL_MW", "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_DZ_PFHT350", "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT350", "HLT_DoubleIsoMu20_eta2p1", "HLT_DoubleIsoMu24_eta2p1", "HLT_DoubleL2Mu50", "HLT_DoubleLooseChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMu20_7_Mass0to30_L1_DM4", "HLT_DoubleMu20_7_Mass0to30_L1_DM4EG", "HLT_DoubleMu20_7_Mass0to30_Photon23", "HLT_DoubleMu2_Jpsi_DoubleTkMu0_Phi", "HLT_DoubleMu2_Jpsi_DoubleTrk1_Phi", "HLT_DoubleMu3_DCA_PFMET50_PFMHT60", "HLT_DoubleMu3_DoubleEle7p5_CaloIdL_TrackIdL_Upsilon", "HLT_DoubleMu3_DZ_PFMET50_PFMHT60", "HLT_DoubleMu3_DZ_PFMET70_PFMHT70", "HLT_DoubleMu3_DZ_PFMET90_PFMHT90", "HLT_DoubleMu3_TkMu_DsTau3Mu", "HLT_DoubleMu3_Trk_Tau3mu", "HLT_DoubleMu3_Trk_Tau3mu_NoL1Mass", "HLT_DoubleMu43NoFiltersNoVtx", "HLT_DoubleMu48NoFiltersNoVtx", "HLT_DoubleMu4_3_Bs", "HLT_DoubleMu4_3_Jpsi_Displaced", "HLT_DoubleMu4_Jpsi_Displaced", "HLT_DoubleMu4_Jpsi_NoVertexing", "HLT_DoubleMu4_JpsiTrk_Displaced", "HLT_DoubleMu4_JpsiTrkTrk_Displaced", "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", "HLT_DoubleMu4_Mass8_DZ_PFHT350", "HLT_DoubleMu4_PsiPrimeTrk_Displaced", "HLT_DoubleMu5_Upsilon_DoubleEle3_CaloIdL_TrackIdL", "HLT_DoubleMu8_Mass8_PFHT350", "HLT_DoublePFJets100_CaloBTagCSV_p33", "HLT_DoublePFJets100MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_DoublePFJets116MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_DoublePFJets128MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_DoublePFJets200_CaloBTagCSV_p33", "HLT_DoublePFJets350_CaloBTagCSV_p33", "HLT_DoublePFJets40_CaloBTagCSV_p33", "HLT_DoublePhoton33_CaloIdL", "HLT_DoublePhoton70", "HLT_DoublePhoton85", "HLT_DoubleTightChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_EcalCalibration", "HLT_ECALHT800", "HLT_Ele115_CaloIdVT_GsfTrkIdT", "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele135_CaloIdVT_GsfTrkIdT", "HLT_Ele145_CaloIdVT_GsfTrkIdT", "HLT_Ele15_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele15_Ele8_CaloIdL_TrackIdL_IsoVL", "HLT_Ele15_IsoVVVL_PFHT450", "HLT_Ele15_IsoVVVL_PFHT450_CaloBTagCSV_4p5", "HLT_Ele15_IsoVVVL_PFHT450_PFMET50", "HLT_Ele15_IsoVVVL_PFHT600", "HLT_Ele15_WPLoose_Gsf", "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", "HLT_Ele17_WPLoose_Gsf", "HLT_Ele200_CaloIdVT_GsfTrkIdT", "HLT_Ele20_eta2p1_WPLoose_Gsf", "HLT_Ele20_WPLoose_Gsf", "HLT_Ele20_WPTight_Gsf", "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Ele24_eta2p1_WPTight_Gsf_LooseChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_LooseChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_MediumChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_MediumChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_TightChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_TightChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele250_CaloIdVT_GsfTrkIdT", "HLT_Ele27_Ele37_CaloIdL_MW", "HLT_Ele27_WPTight_Gsf", "HLT_Ele28_eta2p1_WPTight_Gsf_HT150", "HLT_Ele28_HighEta_SC20_Mass55", "HLT_Ele300_CaloIdVT_GsfTrkIdT", "HLT_Ele30_eta2p1_WPTight_Gsf_CentralPFJet35_EleCleaned", "HLT_Ele32_WPTight_Gsf", "HLT_Ele32_WPTight_Gsf_L1DoubleEG", "HLT_Ele35_WPTight_Gsf", "HLT_Ele35_WPTight_Gsf_L1EGMT", "HLT_Ele38_WPTight_Gsf", "HLT_Ele40_WPTight_Gsf", "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", "HLT_Ele50_IsoVVVL_PFHT450", "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", "HLT_FullTrack_Multiplicity100", "HLT_FullTrack_Multiplicity130", "HLT_FullTrack_Multiplicity155", "HLT_FullTrack_Multiplicity85", "HLT_HcalCalibration", "HLT_HcalIsolatedbunch", "HLT_HcalNZS", "HLT_HcalPhiSym", "HLT_HISinglePhoton10_Eta3p1ForPPRef", "HLT_HISinglePhoton20_Eta3p1ForPPRef", "HLT_HISinglePhoton30_Eta3p1ForPPRef", "HLT_HISinglePhoton40_Eta3p1ForPPRef", "HLT_HISinglePhoton50_Eta3p1ForPPRef", "HLT_HISinglePhoton60_Eta3p1ForPPRef", "HLT_HT300_Beamspot", "HLT_HT400_DisplacedDijet40_DisplacedTrack", "HLT_HT425", "HLT_HT430_DisplacedDijet40_DisplacedTrack", "HLT_HT430_DisplacedDijet60_DisplacedTrack", "HLT_HT430_DisplacedDijet80_DisplacedTrack", "HLT_HT450_Beamspot", "HLT_HT550_DisplacedDijet60_Inclusive", "HLT_HT550_DisplacedDijet80_Inclusive", "HLT_HT650_DisplacedDijet60_Inclusive", "HLT_HT650_DisplacedDijet80_Inclusive", "HLT_HT750_DisplacedDijet80_Inclusive", "HLT_IsoMu20", "HLT_IsoMu20_eta2p1_LooseChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_LooseChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu20_eta2p1_MediumChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_MediumChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu20_eta2p1_TightChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_TightChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu24", "HLT_IsoMu24_eta2p1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau40_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau40_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu27", "HLT_IsoMu27_LooseChargedIsoPFTau20_SingleL1", "HLT_IsoMu27_MediumChargedIsoPFTau20_SingleL1", "HLT_IsoMu27_TightChargedIsoPFTau20_SingleL1", "HLT_IsoMu30", "HLT_IsoTrackHB", "HLT_IsoTrackHE", "HLT_L1_CDC_SingleMu_3_er1p2_TOP120_DPHI2p618_3p142", "HLT_L1_DoubleJet30_Mass_Min400_Mu10", "HLT_L1ETMHadSeeds", "HLT_L1MinimumBiasHF0OR", "HLT_L1MinimumBiasHF_OR", "HLT_L1NotBptxOR", "HLT_L1SingleMu18", "HLT_L1SingleMu25", "HLT_L1UnpairedBunchBptxMinus", "HLT_L1UnpairedBunchBptxPlus", "HLT_L2Mu10", "HLT_L2Mu10_NoVertex_NoBPTX", "HLT_L2Mu10_NoVertex_NoBPTX3BX", "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX", "HLT_L2Mu50", "HLT_MediumChargedIsoPFTau180HighPtRelaxedIso_Trk50_eta2p1", "HLT_MediumChargedIsoPFTau180HighPtRelaxedIso_Trk50_eta2p1_1pr", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET100", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET110", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET120", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET130", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET90", "HLT_MET105_IsoTrk50", "HLT_MET120_IsoTrk50", "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu130_PFMHTNoMu130_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu140_PFMHTNoMu140_IDTight", "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", "HLT_Mu12", "HLT_Mu12_DoublePFJets100_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets200_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets350_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets40_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets40MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_Mu12_DoublePFJets54MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_Mu12_DoublePFJets62MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_Mu12_DoublePhoton20", "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Mu15", "HLT_Mu15_IsoVVVL_PFHT450", "HLT_Mu15_IsoVVVL_PFHT450_CaloBTagCSV_4p5", "HLT_Mu15_IsoVVVL_PFHT450_PFMET50", "HLT_Mu15_IsoVVVL_PFHT600", "HLT_Mu17", "HLT_Mu17_Photon30_IsoCaloId", "HLT_Mu17_TrkIsoVVL", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ_Mass3p8", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ_Mass8", "HLT_Mu18_Mu9", "HLT_Mu18_Mu9_DZ", "HLT_Mu18_Mu9_SameSign", "HLT_Mu18_Mu9_SameSign_DZ", "HLT_Mu19", "HLT_Mu19_TrkIsoVVL", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL_DZ", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL_DZ_Mass3p8", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL_DZ_Mass8", "HLT_Mu20", "HLT_Mu20_Mu10", "HLT_Mu20_Mu10_DZ", "HLT_Mu20_Mu10_SameSign", "HLT_Mu20_Mu10_SameSign_DZ", "HLT_Mu20_TkMu0_Phi", "HLT_Mu23_Mu12", "HLT_Mu23_Mu12_DZ", "HLT_Mu23_Mu12_SameSign", "HLT_Mu23_Mu12_SameSign_DZ", "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Mu25_TkMu0_Onia", "HLT_Mu25_TkMu0_Phi", "HLT_Mu27", "HLT_Mu27_Ele37_CaloIdL_MW", "HLT_Mu30_TkMu0_Onia", "HLT_Mu37_Ele27_CaloIdL_MW", "HLT_Mu37_TkMu27", "HLT_Mu3_PFJet40", "HLT_Mu43NoFiltersNoVtx_Photon43_CaloIdL", "HLT_Mu48NoFiltersNoVtx_Photon48_CaloIdL", "HLT_Mu50", "HLT_Mu50_IsoVVVL_PFHT450", "HLT_Mu55", "HLT_Mu7p5_L2Mu2_Jpsi", "HLT_Mu7p5_L2Mu2_Upsilon", "HLT_Mu7p5_Track2_Jpsi", "HLT_Mu7p5_Track2_Upsilon", "HLT_Mu7p5_Track3p5_Jpsi", "HLT_Mu7p5_Track3p5_Upsilon", "HLT_Mu7p5_Track7_Jpsi", "HLT_Mu7p5_Track7_Upsilon", "HLT_Mu8", "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", "HLT_Mu8_DiEle12_CaloIdL_TrackIdL_DZ", "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT350", "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT350_DZ", "HLT_Mu8_TrkIsoVVL", "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_OldMu100", "HLT_PFHT1050", "HLT_PFHT180", "HLT_PFHT250", "HLT_PFHT300PT30_QuadPFJet_75_60_45_40", "HLT_PFHT300PT30_QuadPFJet_75_60_45_40_TriplePFBTagCSV_3p0", "HLT_PFHT350", "HLT_PFHT350MinPFJet15", "HLT_PFHT370", "HLT_PFHT380_SixPFJet32", "HLT_PFHT380_SixPFJet32_DoublePFBTagCSV_2p2", "HLT_PFHT380_SixPFJet32_DoublePFBTagDeepCSV_2p2", "HLT_PFHT430", "HLT_PFHT430_SixPFJet40", "HLT_PFHT430_SixPFJet40_PFBTagCSV_1p5", "HLT_PFHT500_PFMET100_PFMHT100_IDTight", "HLT_PFHT500_PFMET110_PFMHT110_IDTight", "HLT_PFHT510", "HLT_PFHT590", "HLT_PFHT680", "HLT_PFHT700_PFMET85_PFMHT85_IDTight", "HLT_PFHT700_PFMET95_PFMHT95_IDTight", "HLT_PFHT780", "HLT_PFHT800_PFMET75_PFMHT75_IDTight", "HLT_PFHT800_PFMET85_PFMHT85_IDTight", "HLT_PFHT890", "HLT_PFJet140", "HLT_PFJet200", "HLT_PFJet260", "HLT_PFJet320", "HLT_PFJet40", "HLT_PFJet400", "HLT_PFJet450", "HLT_PFJet500", "HLT_PFJet550", "HLT_PFJet60", "HLT_PFJet80", "HLT_PFJetFwd140", "HLT_PFJetFwd200", "HLT_PFJetFwd260", "HLT_PFJetFwd320", "HLT_PFJetFwd40", "HLT_PFJetFwd400", "HLT_PFJetFwd450", "HLT_PFJetFwd500", "HLT_PFJetFwd60", "HLT_PFJetFwd80", "HLT_PFMET100_PFMHT100_IDTight_CaloBTagCSV_3p1", "HLT_PFMET100_PFMHT100_IDTight_PFHT60", "HLT_PFMET110_PFMHT110_IDTight", "HLT_PFMET110_PFMHT110_IDTight_CaloBTagCSV_3p1", "HLT_PFMET120_PFMHT120_IDTight", "HLT_PFMET120_PFMHT120_IDTight_CaloBTagCSV_3p1", "HLT_PFMET120_PFMHT120_IDTight_PFHT60", "HLT_PFMET130_PFMHT130_IDTight", "HLT_PFMET130_PFMHT130_IDTight_CaloBTagCSV_3p1", "HLT_PFMET140_PFMHT140_IDTight", "HLT_PFMET140_PFMHT140_IDTight_CaloBTagCSV_3p1", "HLT_PFMET200_HBHE_BeamHaloCleaned", "HLT_PFMET200_HBHECleaned", "HLT_PFMET200_NotCleaned", "HLT_PFMET250_HBHECleaned", "HLT_PFMET300_HBHECleaned", "HLT_PFMETNoMu100_PFMHTNoMu100_IDTight_PFHT60", "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight_PFHT60", "HLT_PFMETNoMu130_PFMHTNoMu130_IDTight", "HLT_PFMETNoMu140_PFMHTNoMu140_IDTight", "HLT_PFMETTypeOne100_PFMHT100_IDTight_PFHT60", "HLT_PFMETTypeOne110_PFMHT110_IDTight", "HLT_PFMETTypeOne120_PFMHT120_IDTight", "HLT_PFMETTypeOne120_PFMHT120_IDTight_PFHT60", "HLT_PFMETTypeOne130_PFMHT130_IDTight", "HLT_PFMETTypeOne140_PFMHT140_IDTight", "HLT_PFMETTypeOne200_HBHE_BeamHaloCleaned", "HLT_Photon120", "HLT_Photon120_R9Id90_HE10_IsoM", "HLT_Photon150", "HLT_Photon165_R9Id90_HE10_IsoM", "HLT_Photon175", "HLT_Photon20", "HLT_Photon200", "HLT_Photon20_HoverELoose", "HLT_Photon25", "HLT_Photon300_NoHE", "HLT_Photon30_HoverELoose", "HLT_Photon33", "HLT_Photon40_HoverELoose", "HLT_Photon50", "HLT_Photon50_HoverELoose", "HLT_Photon50_R9Id90_HE10_IsoM", "HLT_Photon50_R9Id90_HE10_IsoM_EBOnly_PFJetsMJJ300DEta3_PFMET50", "HLT_Photon60_HoverELoose", "HLT_Photon60_R9Id90_CaloIdL_IsoL", "HLT_Photon60_R9Id90_CaloIdL_IsoL_DisplacedIdL", "HLT_Photon60_R9Id90_CaloIdL_IsoL_DisplacedIdL_PFHT350MinPFJet15", "HLT_Photon75", "HLT_Photon75_R9Id90_HE10_IsoM", "HLT_Photon75_R9Id90_HE10_IsoM_EBOnly_PFJetsMJJ300DEta3", "HLT_Photon75_R9Id90_HE10_IsoM_EBOnly_PFJetsMJJ600DEta3", "HLT_Photon90", "HLT_Photon90_R9Id90_HE10_IsoM", "HLT_Physics", "HLT_Physics_part0", "HLT_Physics_part1", "HLT_Physics_part2", "HLT_Physics_part3", "HLT_Physics_part4", "HLT_Physics_part5", "HLT_Physics_part6", "HLT_Physics_part7", "HLT_QuadPFJet103_88_75_15", "HLT_QuadPFJet103_88_75_15_BTagCSV_p013_VBF2", "HLT_QuadPFJet103_88_75_15_DoubleBTagCSV_p013_p08_VBF1", "HLT_QuadPFJet105_88_76_15", "HLT_QuadPFJet105_88_76_15_BTagCSV_p013_VBF2", "HLT_QuadPFJet105_90_76_15_DoubleBTagCSV_p013_p08_VBF1", "HLT_QuadPFJet111_90_80_15", "HLT_QuadPFJet111_90_80_15_BTagCSV_p013_VBF2", "HLT_QuadPFJet111_90_80_15_DoubleBTagCSV_p013_p08_VBF1", "HLT_QuadPFJet98_83_71_15", "HLT_QuadPFJet98_83_71_15_BTagCSV_p013_VBF2", "HLT_QuadPFJet98_83_71_15_DoubleBTagCSV_p013_p08_VBF1", "HLT_Random", "HLT_Rsq0p35", "HLT_Rsq0p40", "HLT_RsqMR300_Rsq0p09_MR200", "HLT_RsqMR300_Rsq0p09_MR200_4jet", "HLT_RsqMR320_Rsq0p09_MR200", "HLT_RsqMR320_Rsq0p09_MR200_4jet", "HLT_SingleJet30_Mu12_SinglePFJet40", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_IsoTau15", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_IsoTau15_Charge1", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_Tau15", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_Tau15_Charge1", "HLT_TkMu100", "HLT_Trimuon5_3p5_2_Upsilon_Muon", "HLT_TrimuonOpen_5_3p5_2_Upsilon_Muon", "HLT_TripleJet110_35_35_Mjj650_PFMET110", "HLT_TripleJet110_35_35_Mjj650_PFMET120", "HLT_TripleJet110_35_35_Mjj650_PFMET130", "HLT_TripleMu_10_5_5_DZ", "HLT_TripleMu_12_10_5", "HLT_TripleMu_5_3_3_Mass3p8to60_DCA", "HLT_TripleMu_5_3_3_Mass3p8to60_DZ", "HLT_TriplePhoton_20_20_20_CaloIdLV2", "HLT_TriplePhoton_20_20_20_CaloIdLV2_R9IdVL", "HLT_TriplePhoton_30_30_10_CaloIdLV2", "HLT_TriplePhoton_30_30_10_CaloIdLV2_R9IdVL", "HLT_TriplePhoton_35_35_5_CaloIdLV2_R9IdVL", "HLT_TrkMu12_DoubleTrkMu5NoFiltersNoVtx", "HLT_TrkMu16_DoubleTrkMu6NoFiltersNoVtx", "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", "HLT_UncorrectedJetE30_NoBPTX", "HLT_UncorrectedJetE30_NoBPTX3BX", "HLT_UncorrectedJetE60_NoBPTX3BX", "HLT_UncorrectedJetE70_NoBPTX3BX", "HLT_VBF_DoubleLooseChargedIsoPFTau20_Trk1_eta2p1_Reg", "HLT_VBF_DoubleMediumChargedIsoPFTau20_Trk1_eta2p1_Reg", "HLT_VBF_DoubleTightChargedIsoPFTau20_Trk1_eta2p1_Reg", "HLT_ZeroBias", "HLT_ZeroBias_Beamspot", "HLT_ZeroBias_FirstBXAfterTrain", "HLT_ZeroBias_FirstCollisionAfterAbortGap", "HLT_ZeroBias_FirstCollisionInTrain", "HLT_ZeroBias_IsolatedBunches", "HLT_ZeroBias_LastCollisionInTrain", "HLT_ZeroBias_part0", "HLT_ZeroBias_part1", "HLT_ZeroBias_part2", "HLT_ZeroBias_part3", "HLT_ZeroBias_part4", "HLT_ZeroBias_part5", "HLT_ZeroBias_part6", "HLT_ZeroBias_part7", ]), ]) samples_2017["/DoubleMuon/Run2017B-31Mar2018-v1/MINIAOD"] = OD([ ("type", "data"), ("sample_category", "data_obs"), ("process_name_specific", "DoubleMuon_Run2017B_31Mar2018_v1"), ("nof_files", 7), ("nof_db_files", 119), ("nof_events", { }), ("nof_tree_events", 13572040), ("nof_db_events", 14501767), ("fsize_local", 7179464979), # 7.18GB, avg file size 1.03GB ("fsize_db", 424924211171), # 424.92GB, avg file size 3.57GB ("use_it", True), ("triggers", ['2mu', '3mu']), ("has_LHE", False), ("nof_PSweights", 0), ("LHE_set", ""), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2020Dec27_woPresel_nom_all_hh_multilepton/ntuples/DoubleMuon_Run2017B_31Mar2018_v1"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ ]), ("missing_from_superset", [ ]), ("missing_hlt_paths", [ "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", "HLT_Ele32_WPTight_Gsf", "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ_Mass3p8", "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", "HLT_Mu3_PFJet40", ]), ("hlt_paths", [ "HLT_AK4CaloJet100", "HLT_AK4CaloJet120", "HLT_AK4CaloJet30", "HLT_AK4CaloJet40", "HLT_AK4CaloJet50", "HLT_AK4CaloJet80", "HLT_AK4PFJet100", "HLT_AK4PFJet120", "HLT_AK4PFJet30", "HLT_AK4PFJet50", "HLT_AK4PFJet80", "HLT_AK8PFJet140", "HLT_AK8PFJet200", "HLT_AK8PFJet260", "HLT_AK8PFJet320", "HLT_AK8PFJet40", "HLT_AK8PFJet400", "HLT_AK8PFJet450", "HLT_AK8PFJet500", "HLT_AK8PFJet550", "HLT_AK8PFJet60", "HLT_AK8PFJet80", "HLT_BTagMu_AK4DiJet110_Mu5", "HLT_BTagMu_AK4DiJet170_Mu5", "HLT_BTagMu_AK4DiJet20_Mu5", "HLT_BTagMu_AK4DiJet40_Mu5", "HLT_BTagMu_AK4DiJet70_Mu5", "HLT_BTagMu_AK4Jet300_Mu5", "HLT_BTagMu_AK8DiJet170_Mu5", "HLT_BTagMu_AK8Jet300_Mu5", "HLT_CaloJet500_NoJetID", "HLT_CaloJet550_NoJetID", "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", "HLT_DiMu9_Ele9_CaloIdL_TrackIdL_DZ", "HLT_Dimuon0_LowMass_L1_0er1p5R", "HLT_Dimuon0_LowMass_L1_4R", "HLT_Dimuon10_PsiPrime_Barrel_Seagulls", "HLT_Dimuon12_Upsilon_eta1p5", "HLT_Dimuon14_Phi_Barrel_Seagulls", "HLT_Dimuon18_PsiPrime", "HLT_Dimuon20_Jpsi_Barrel_Seagulls", "HLT_Dimuon25_Jpsi", "HLT_DiPFJet15_FBEta3_NoCaloMatched", "HLT_DiPFJet15_NoCaloMatched", "HLT_DiPFJet25_FBEta3_NoCaloMatched", "HLT_DiPFJet25_NoCaloMatched", "HLT_DiPFJetAve15_HFJEC", "HLT_DiPFJetAve25_HFJEC", "HLT_DiPFJetAve35_HFJEC", "HLT_Diphoton30_22_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", "HLT_Diphoton30_22_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass95", "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_NoPixelVeto_Mass55", "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_PixelVeto_Mass55", "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_NoPixelVeto_Mass55", "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_PixelVeto_Mass55", "HLT_DiSC30_18_EIso_AND_HE_Mass70", "HLT_DoubleEle33_CaloIdL_MW", "HLT_DoubleLooseChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMu20_7_Mass0to30_L1_DM4EG", "HLT_DoubleMu20_7_Mass0to30_Photon23", "HLT_DoubleMu3_Trk_Tau3mu", "HLT_DoubleMu4_3_Bs", "HLT_DoubleMu4_3_Jpsi_Displaced", "HLT_DoubleMu4_Jpsi_Displaced", "HLT_DoubleMu4_Jpsi_NoVertexing", "HLT_DoubleMu4_JpsiTrk_Displaced", "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", "HLT_DoubleMu4_PsiPrimeTrk_Displaced", "HLT_DoublePhoton33_CaloIdL", "HLT_DoublePhoton70", "HLT_DoublePhoton85", "HLT_DoubleTightChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_EcalCalibration", "HLT_ECALHT800", "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Ele24_eta2p1_WPTight_Gsf_LooseChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_LooseChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_MediumChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_MediumChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_TightChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_TightChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele27_WPTight_Gsf", "HLT_Ele28_eta2p1_WPTight_Gsf_HT150", "HLT_Ele30_eta2p1_WPTight_Gsf_CentralPFJet35_EleCleaned", "HLT_Ele32_WPTight_Gsf_L1DoubleEG", "HLT_Ele35_WPTight_Gsf", "HLT_Ele38_WPTight_Gsf", "HLT_Ele40_WPTight_Gsf", "HLT_FullTrack_Multiplicity105", "HLT_FullTrack_Multiplicity135", "HLT_FullTrack_Multiplicity155", "HLT_FullTrack_Multiplicity85", "HLT_HcalCalibration", "HLT_HcalIsolatedbunch", "HLT_HcalNZS", "HLT_HcalPhiSym", "HLT_HISinglePhoton10_Eta3p1ForPPRef", "HLT_HISinglePhoton20_Eta3p1ForPPRef", "HLT_HISinglePhoton30_Eta3p1ForPPRef", "HLT_HISinglePhoton40_Eta3p1ForPPRef", "HLT_HISinglePhoton50_Eta3p1ForPPRef", "HLT_HISinglePhoton60_Eta3p1ForPPRef", "HLT_HT300_Beamspot", "HLT_HT300PT30_QuadJet_75_60_45_40", "HLT_HT300PT30_QuadJet_75_60_45_40_TripeCSV_p07", "HLT_HT450_Beamspot", "HLT_IsoMu20", "HLT_IsoMu20_eta2p1_LooseChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_LooseChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu20_eta2p1_MediumChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_MediumChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu20_eta2p1_TightChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_TightChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu24", "HLT_IsoMu24_eta2p1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu27", "HLT_L1FatEvents", "HLT_L1MinimumBiasHF0OR", "HLT_L1MinimumBiasHF_OR", "HLT_L1NotBptxOR", "HLT_L1SingleMu18", "HLT_L1SingleMu25", "HLT_L1UnpairedBunchBptxMinus", "HLT_L1UnpairedBunchBptxPlus", "HLT_L2Mu10", "HLT_L2Mu10_NoVertex_NoBPTX", "HLT_L2Mu10_NoVertex_NoBPTX3BX", "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX", "HLT_MediumChargedIsoPFTau100HighPtRelaxedIso_Trk50_eta2p1_1pr", "HLT_MediumChargedIsoPFTau180HighPtRelaxedIso_Trk50_eta2p1", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET100", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET90", "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Mu17", "HLT_Mu17_TrkIsoVVL", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ_Mass8", "HLT_Mu20", "HLT_Mu20_TkMu0_Phi", "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Mu27", "HLT_Mu30_TkMu0_Onia", "HLT_Mu50", "HLT_Mu7p5_Track2_Jpsi", "HLT_Mu7p5_Track2_Upsilon", "HLT_Mu7p5_Track3p5_Jpsi", "HLT_Mu7p5_Track3p5_Upsilon", "HLT_Mu7p5_Track7_Jpsi", "HLT_Mu7p5_Track7_Upsilon", "HLT_Mu8", "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", "HLT_Mu8_DiEle12_CaloIdL_TrackIdL_DZ", "HLT_Mu8_TrkIsoVVL", "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_PFHT1050", "HLT_PFHT180", "HLT_PFHT250", "HLT_PFHT350", "HLT_PFHT370", "HLT_PFHT380_SixJet32_DoubleBTagCSV_p075", "HLT_PFHT430", "HLT_PFHT430_SixJet40_BTagCSV_p080", "HLT_PFHT500_PFMET100_PFMHT100_IDTight", "HLT_PFHT500_PFMET110_PFMHT110_IDTight", "HLT_PFHT510", "HLT_PFHT590", "HLT_PFHT680", "HLT_PFHT700_PFMET85_PFMHT85_IDTight", "HLT_PFHT700_PFMET95_PFMHT95_IDTight", "HLT_PFHT780", "HLT_PFHT800_PFMET75_PFMHT75_IDTight", "HLT_PFHT800_PFMET85_PFMHT85_IDTight", "HLT_PFHT890", "HLT_PFJet140", "HLT_PFJet200", "HLT_PFJet260", "HLT_PFJet320", "HLT_PFJet40", "HLT_PFJet400", "HLT_PFJet450", "HLT_PFJet500", "HLT_PFJet550", "HLT_PFJet60", "HLT_PFJet80", "HLT_PFMET110_PFMHT110_IDTight", "HLT_PFMET120_PFMHT120_IDTight", "HLT_PFMET130_PFMHT130_IDTight", "HLT_PFMET140_PFMHT140_IDTight", "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", "HLT_PFMETTypeOne110_PFMHT110_IDTight", "HLT_PFMETTypeOne120_PFMHT120_IDTight", "HLT_PFMETTypeOne130_PFMHT130_IDTight", "HLT_PFMETTypeOne140_PFMHT140_IDTight", "HLT_Photon120", "HLT_Photon120_R9Id90_HE10_IsoM", "HLT_Photon150", "HLT_Photon165_R9Id90_HE10_IsoM", "HLT_Photon175", "HLT_Photon200", "HLT_Photon20_HoverELoose", "HLT_Photon300_NoHE", "HLT_Photon30_HoverELoose", "HLT_Photon33", "HLT_Photon40_HoverELoose", "HLT_Photon50", "HLT_Photon50_HoverELoose", "HLT_Photon50_R9Id90_HE10_IsoM", "HLT_Photon60_HoverELoose", "HLT_Photon60_R9Id90_CaloIdL_IsoL_DisplacedIdL_PFHT350MinPFJet15", "HLT_Photon75", "HLT_Photon75_R9Id90_HE10_IsoM", "HLT_Photon90", "HLT_Photon90_R9Id90_HE10_IsoM", "HLT_Physics", "HLT_Random", "HLT_Trimuon2_Upsilon5_Muon", "HLT_TripleMu_10_5_5_DZ", "HLT_TripleMu_12_10_5", "HLT_UncorrectedJetE30_NoBPTX", "HLT_UncorrectedJetE30_NoBPTX3BX", "HLT_UncorrectedJetE60_NoBPTX3BX", "HLT_UncorrectedJetE70_NoBPTX3BX", "HLT_ZeroBias", "HLT_ZeroBias_FirstBXAfterTrain", "HLT_ZeroBias_FirstCollisionAfterAbortGap", "HLT_ZeroBias_FirstCollisionInTrain", "HLT_ZeroBias_IsolatedBunches", "HLT_ZeroBias_LastCollisionInTrain", "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_ZeroBias_part8", "HLT_ZeroBias_part9", ]), ]) samples_2017["/DoubleMuon/Run2017C-31Mar2018-v1/MINIAOD"] = OD([ ("type", "data"), ("sample_category", "data_obs"), ("process_name_specific", "DoubleMuon_Run2017C_31Mar2018_v1"), ("nof_files", 23), ("nof_db_files", 463), ("nof_events", { }), ("nof_tree_events", 46273101), ("nof_db_events", 49636525), ("fsize_local", 26583482253), # 26.58GB, avg file size 1.16GB ("fsize_db", 1471738797571), # 1.47TB, avg file size 3.18GB ("use_it", True), ("triggers", ['2mu', '3mu']), ("has_LHE", False), ("nof_PSweights", 0), ("LHE_set", ""), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2020Dec27_woPresel_nom_all_hh_multilepton/ntuples/DoubleMuon_Run2017C_31Mar2018_v1"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ ]), ("missing_from_superset", [ ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ "HLT_AK4CaloJet100", "HLT_AK4CaloJet120", "HLT_AK4CaloJet30", "HLT_AK4CaloJet40", "HLT_AK4CaloJet50", "HLT_AK4CaloJet80", "HLT_AK4PFJet100", "HLT_AK4PFJet120", "HLT_AK4PFJet30", "HLT_AK4PFJet50", "HLT_AK4PFJet80", "HLT_AK8PFHT750_TrimMass50", "HLT_AK8PFHT800_TrimMass50", "HLT_AK8PFHT850_TrimMass50", "HLT_AK8PFHT900_TrimMass50", "HLT_AK8PFJet140", "HLT_AK8PFJet200", "HLT_AK8PFJet260", "HLT_AK8PFJet320", "HLT_AK8PFJet360_TrimMass30", "HLT_AK8PFJet380_TrimMass30", "HLT_AK8PFJet40", "HLT_AK8PFJet400", "HLT_AK8PFJet400_TrimMass30", "HLT_AK8PFJet420_TrimMass30", "HLT_AK8PFJet450", "HLT_AK8PFJet500", "HLT_AK8PFJet550", "HLT_AK8PFJet60", "HLT_AK8PFJet80", "HLT_AK8PFJetFwd140", "HLT_AK8PFJetFwd200", "HLT_AK8PFJetFwd260", "HLT_AK8PFJetFwd320", "HLT_AK8PFJetFwd40", "HLT_AK8PFJetFwd400", "HLT_AK8PFJetFwd450", "HLT_AK8PFJetFwd500", "HLT_AK8PFJetFwd60", "HLT_AK8PFJetFwd80", "HLT_BTagMu_AK4DiJet110_Mu5", "HLT_BTagMu_AK4DiJet170_Mu5", "HLT_BTagMu_AK4DiJet20_Mu5", "HLT_BTagMu_AK4DiJet40_Mu5", "HLT_BTagMu_AK4DiJet70_Mu5", "HLT_BTagMu_AK4Jet300_Mu5", "HLT_BTagMu_AK8DiJet170_Mu5", "HLT_BTagMu_AK8Jet300_Mu5", "HLT_CaloJet500_NoJetID", "HLT_CaloJet550_NoJetID", "HLT_CaloMET100_HBHECleaned", "HLT_CaloMET100_NotCleaned", "HLT_CaloMET110_NotCleaned", "HLT_CaloMET250_HBHECleaned", "HLT_CaloMET250_NotCleaned", "HLT_CaloMET300_HBHECleaned", "HLT_CaloMET350_HBHECleaned", "HLT_CaloMET70_HBHECleaned", "HLT_CaloMET80_HBHECleaned", "HLT_CaloMET80_NotCleaned", "HLT_CaloMET90_HBHECleaned", "HLT_CaloMET90_NotCleaned", "HLT_CaloMHT90", "HLT_DiEle27_WPTightCaloOnly_L1DoubleEG", "HLT_DiJet110_35_Mjj650_PFMET110", "HLT_DiJet110_35_Mjj650_PFMET120", "HLT_DiJet110_35_Mjj650_PFMET130", "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", "HLT_DiMu9_Ele9_CaloIdL_TrackIdL_DZ", "HLT_Dimuon0_Jpsi", "HLT_Dimuon0_Jpsi3p5_Muon2", "HLT_Dimuon0_Jpsi_L1_4R_0er1p5R", "HLT_Dimuon0_Jpsi_L1_NoOS", "HLT_Dimuon0_Jpsi_NoVertexing", "HLT_Dimuon0_Jpsi_NoVertexing_L1_4R_0er1p5R", "HLT_Dimuon0_Jpsi_NoVertexing_NoOS", "HLT_Dimuon0_LowMass", "HLT_Dimuon0_LowMass_L1_0er1p5", "HLT_Dimuon0_LowMass_L1_0er1p5R", "HLT_Dimuon0_LowMass_L1_4", "HLT_Dimuon0_LowMass_L1_4R", "HLT_Dimuon0_LowMass_L1_TM530", "HLT_Dimuon0_Upsilon_L1_4p5", "HLT_Dimuon0_Upsilon_L1_4p5er2p0", "HLT_Dimuon0_Upsilon_L1_4p5er2p0M", "HLT_Dimuon0_Upsilon_L1_4p5NoOS", "HLT_Dimuon0_Upsilon_L1_5", "HLT_Dimuon0_Upsilon_L1_5M", "HLT_Dimuon0_Upsilon_Muon_L1_TM0", "HLT_Dimuon0_Upsilon_Muon_NoL1Mass", "HLT_Dimuon0_Upsilon_NoVertexing", "HLT_Dimuon10_PsiPrime_Barrel_Seagulls", "HLT_Dimuon10_Upsilon_Barrel_Seagulls", "HLT_Dimuon12_Upsilon_eta1p5", "HLT_Dimuon14_Phi_Barrel_Seagulls", "HLT_Dimuon18_PsiPrime", "HLT_Dimuon18_PsiPrime_noCorrL1", "HLT_Dimuon20_Jpsi_Barrel_Seagulls", "HLT_Dimuon24_Phi_noCorrL1", "HLT_Dimuon24_Upsilon_noCorrL1", "HLT_Dimuon25_Jpsi", "HLT_Dimuon25_Jpsi_noCorrL1", "HLT_DiPFJet15_FBEta3_NoCaloMatched", "HLT_DiPFJet15_NoCaloMatched", "HLT_DiPFJet25_FBEta3_NoCaloMatched", "HLT_DiPFJet25_NoCaloMatched", "HLT_DiPFJetAve100_HFJEC", "HLT_DiPFJetAve140", "HLT_DiPFJetAve15_HFJEC", "HLT_DiPFJetAve160_HFJEC", "HLT_DiPFJetAve200", "HLT_DiPFJetAve220_HFJEC", "HLT_DiPFJetAve25_HFJEC", "HLT_DiPFJetAve260", "HLT_DiPFJetAve300_HFJEC", "HLT_DiPFJetAve320", "HLT_DiPFJetAve35_HFJEC", "HLT_DiPFJetAve40", "HLT_DiPFJetAve400", "HLT_DiPFJetAve500", "HLT_DiPFJetAve60", "HLT_DiPFJetAve60_HFJEC", "HLT_DiPFJetAve80", "HLT_DiPFJetAve80_HFJEC", "HLT_Diphoton30_22_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", "HLT_Diphoton30_22_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass95", "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_NoPixelVeto_Mass55", "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_PixelVeto_Mass55", "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_NoPixelVeto_Mass55", "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_PixelVeto_Mass55", "HLT_DiSC30_18_EIso_AND_HE_Mass70", "HLT_DoubleEle24_eta2p1_WPTight_Gsf", "HLT_DoubleEle25_CaloIdL_MW", "HLT_DoubleEle27_CaloIdL_MW", "HLT_DoubleEle33_CaloIdL_MW", "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_DZ_PFHT350", "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT350", "HLT_DoubleIsoMu20_eta2p1", "HLT_DoubleIsoMu24_eta2p1", "HLT_DoubleL2Mu50", "HLT_DoubleLooseChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMu20_7_Mass0to30_L1_DM4", "HLT_DoubleMu20_7_Mass0to30_L1_DM4EG", "HLT_DoubleMu20_7_Mass0to30_Photon23", "HLT_DoubleMu3_DZ_PFMET50_PFMHT60", "HLT_DoubleMu3_DZ_PFMET70_PFMHT70", "HLT_DoubleMu3_DZ_PFMET90_PFMHT90", "HLT_DoubleMu3_Trk_Tau3mu", "HLT_DoubleMu3_Trk_Tau3mu_NoL1Mass", "HLT_DoubleMu43NoFiltersNoVtx", "HLT_DoubleMu48NoFiltersNoVtx", "HLT_DoubleMu4_3_Bs", "HLT_DoubleMu4_3_Jpsi_Displaced", "HLT_DoubleMu4_Jpsi_Displaced", "HLT_DoubleMu4_Jpsi_NoVertexing", "HLT_DoubleMu4_JpsiTrk_Displaced", "HLT_DoubleMu4_JpsiTrkTrk_Displaced", "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", "HLT_DoubleMu4_Mass8_DZ_PFHT350", "HLT_DoubleMu4_PsiPrimeTrk_Displaced", "HLT_DoubleMu8_Mass8_PFHT350", "HLT_DoublePFJets100_CaloBTagCSV_p33", "HLT_DoublePFJets100MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_DoublePFJets116MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_DoublePFJets128MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_DoublePFJets200_CaloBTagCSV_p33", "HLT_DoublePFJets350_CaloBTagCSV_p33", "HLT_DoublePFJets40_CaloBTagCSV_p33", "HLT_DoublePhoton33_CaloIdL", "HLT_DoublePhoton70", "HLT_DoublePhoton85", "HLT_DoubleTightChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_EcalCalibration", "HLT_ECALHT800", "HLT_Ele115_CaloIdVT_GsfTrkIdT", "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele135_CaloIdVT_GsfTrkIdT", "HLT_Ele145_CaloIdVT_GsfTrkIdT", "HLT_Ele15_IsoVVVL_PFHT450", "HLT_Ele15_IsoVVVL_PFHT450_CaloBTagCSV_4p5", "HLT_Ele15_IsoVVVL_PFHT450_PFMET50", "HLT_Ele15_IsoVVVL_PFHT600", "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", "HLT_Ele200_CaloIdVT_GsfTrkIdT", "HLT_Ele20_eta2p1_WPLoose_Gsf", "HLT_Ele20_WPLoose_Gsf", "HLT_Ele20_WPTight_Gsf", "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Ele24_eta2p1_WPTight_Gsf_LooseChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_LooseChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_MediumChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_MediumChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_TightChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_TightChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele250_CaloIdVT_GsfTrkIdT", "HLT_Ele27_Ele37_CaloIdL_MW", "HLT_Ele27_WPTight_Gsf", "HLT_Ele28_eta2p1_WPTight_Gsf_HT150", "HLT_Ele28_HighEta_SC20_Mass55", "HLT_Ele300_CaloIdVT_GsfTrkIdT", "HLT_Ele30_eta2p1_WPTight_Gsf_CentralPFJet35_EleCleaned", "HLT_Ele32_WPTight_Gsf", "HLT_Ele32_WPTight_Gsf_L1DoubleEG", "HLT_Ele35_WPTight_Gsf", "HLT_Ele35_WPTight_Gsf_L1EGMT", "HLT_Ele38_WPTight_Gsf", "HLT_Ele40_WPTight_Gsf", "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", "HLT_Ele50_IsoVVVL_PFHT450", "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", "HLT_FullTrack_Multiplicity100", "HLT_FullTrack_Multiplicity130", "HLT_FullTrack_Multiplicity155", "HLT_FullTrack_Multiplicity85", "HLT_HcalCalibration", "HLT_HcalIsolatedbunch", "HLT_HcalNZS", "HLT_HcalPhiSym", "HLT_HISinglePhoton10_Eta3p1ForPPRef", "HLT_HISinglePhoton20_Eta3p1ForPPRef", "HLT_HISinglePhoton30_Eta3p1ForPPRef", "HLT_HISinglePhoton40_Eta3p1ForPPRef", "HLT_HISinglePhoton50_Eta3p1ForPPRef", "HLT_HISinglePhoton60_Eta3p1ForPPRef", "HLT_HT300_Beamspot", "HLT_HT400_DisplacedDijet40_DisplacedTrack", "HLT_HT425", "HLT_HT430_DisplacedDijet40_DisplacedTrack", "HLT_HT430_DisplacedDijet60_DisplacedTrack", "HLT_HT430_DisplacedDijet80_DisplacedTrack", "HLT_HT450_Beamspot", "HLT_HT550_DisplacedDijet60_Inclusive", "HLT_HT550_DisplacedDijet80_Inclusive", "HLT_HT650_DisplacedDijet60_Inclusive", "HLT_HT650_DisplacedDijet80_Inclusive", "HLT_HT750_DisplacedDijet80_Inclusive", "HLT_IsoMu20", "HLT_IsoMu20_eta2p1_LooseChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_LooseChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu20_eta2p1_MediumChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_MediumChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu20_eta2p1_TightChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_TightChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu24", "HLT_IsoMu24_eta2p1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau40_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau40_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu27", "HLT_IsoMu30", "HLT_IsoTrackHB", "HLT_IsoTrackHE", "HLT_L1_CDC_SingleMu_3_er1p2_TOP120_DPHI2p618_3p142", "HLT_L1ETMHadSeeds", "HLT_L1MinimumBiasHF0OR", "HLT_L1MinimumBiasHF_OR", "HLT_L1NotBptxOR", "HLT_L1SingleMu18", "HLT_L1SingleMu25", "HLT_L1UnpairedBunchBptxMinus", "HLT_L1UnpairedBunchBptxPlus", "HLT_L2Mu10", "HLT_L2Mu10_NoVertex_NoBPTX", "HLT_L2Mu10_NoVertex_NoBPTX3BX", "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX", "HLT_L2Mu50", "HLT_MediumChargedIsoPFTau180HighPtRelaxedIso_Trk50_eta2p1", "HLT_MediumChargedIsoPFTau180HighPtRelaxedIso_Trk50_eta2p1_1pr", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET100", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET110", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET120", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET130", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET90", "HLT_MET105_IsoTrk50", "HLT_MET120_IsoTrk50", "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu130_PFMHTNoMu130_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu140_PFMHTNoMu140_IDTight", "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", "HLT_Mu12_DoublePFJets100_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets200_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets350_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets40_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets40MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_Mu12_DoublePFJets54MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_Mu12_DoublePFJets62MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_Mu12_DoublePhoton20", "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Mu15_IsoVVVL_PFHT450", "HLT_Mu15_IsoVVVL_PFHT450_CaloBTagCSV_4p5", "HLT_Mu15_IsoVVVL_PFHT450_PFMET50", "HLT_Mu15_IsoVVVL_PFHT600", "HLT_Mu17", "HLT_Mu17_Photon30_IsoCaloId", "HLT_Mu17_TrkIsoVVL", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ_Mass3p8", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ_Mass8", "HLT_Mu19", "HLT_Mu19_TrkIsoVVL", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL_DZ", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL_DZ_Mass3p8", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL_DZ_Mass8", "HLT_Mu20", "HLT_Mu20_TkMu0_Phi", "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Mu25_TkMu0_Onia", "HLT_Mu25_TkMu0_Phi", "HLT_Mu27", "HLT_Mu27_Ele37_CaloIdL_MW", "HLT_Mu30_TkMu0_Onia", "HLT_Mu37_Ele27_CaloIdL_MW", "HLT_Mu37_TkMu27", "HLT_Mu3_PFJet40", "HLT_Mu43NoFiltersNoVtx_Photon43_CaloIdL", "HLT_Mu48NoFiltersNoVtx_Photon48_CaloIdL", "HLT_Mu50", "HLT_Mu50_IsoVVVL_PFHT450", "HLT_Mu55", "HLT_Mu7p5_L2Mu2_Jpsi", "HLT_Mu7p5_L2Mu2_Upsilon", "HLT_Mu7p5_Track2_Jpsi", "HLT_Mu7p5_Track2_Upsilon", "HLT_Mu7p5_Track3p5_Jpsi", "HLT_Mu7p5_Track3p5_Upsilon", "HLT_Mu7p5_Track7_Jpsi", "HLT_Mu7p5_Track7_Upsilon", "HLT_Mu8", "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", "HLT_Mu8_DiEle12_CaloIdL_TrackIdL_DZ", "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT350", "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT350_DZ", "HLT_Mu8_TrkIsoVVL", "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_OldMu100", "HLT_PFHT1050", "HLT_PFHT180", "HLT_PFHT250", "HLT_PFHT300PT30_QuadPFJet_75_60_45_40", "HLT_PFHT300PT30_QuadPFJet_75_60_45_40_TriplePFBTagCSV_3p0", "HLT_PFHT350", "HLT_PFHT350MinPFJet15", "HLT_PFHT370", "HLT_PFHT380_SixPFJet32", "HLT_PFHT380_SixPFJet32_DoublePFBTagCSV_2p2", "HLT_PFHT380_SixPFJet32_DoublePFBTagDeepCSV_2p2", "HLT_PFHT430", "HLT_PFHT430_SixPFJet40", "HLT_PFHT430_SixPFJet40_PFBTagCSV_1p5", "HLT_PFHT500_PFMET100_PFMHT100_IDTight", "HLT_PFHT500_PFMET110_PFMHT110_IDTight", "HLT_PFHT510", "HLT_PFHT590", "HLT_PFHT680", "HLT_PFHT700_PFMET85_PFMHT85_IDTight", "HLT_PFHT700_PFMET95_PFMHT95_IDTight", "HLT_PFHT780", "HLT_PFHT800_PFMET75_PFMHT75_IDTight", "HLT_PFHT800_PFMET85_PFMHT85_IDTight", "HLT_PFHT890", "HLT_PFJet140", "HLT_PFJet200", "HLT_PFJet260", "HLT_PFJet320", "HLT_PFJet40", "HLT_PFJet400", "HLT_PFJet450", "HLT_PFJet500", "HLT_PFJet550", "HLT_PFJet60", "HLT_PFJet80", "HLT_PFJetFwd140", "HLT_PFJetFwd200", "HLT_PFJetFwd260", "HLT_PFJetFwd320", "HLT_PFJetFwd40", "HLT_PFJetFwd400", "HLT_PFJetFwd450", "HLT_PFJetFwd500", "HLT_PFJetFwd60", "HLT_PFJetFwd80", "HLT_PFMET100_PFMHT100_IDTight_CaloBTagCSV_3p1", "HLT_PFMET110_PFMHT110_IDTight", "HLT_PFMET110_PFMHT110_IDTight_CaloBTagCSV_3p1", "HLT_PFMET120_PFMHT120_IDTight", "HLT_PFMET120_PFMHT120_IDTight_CaloBTagCSV_3p1", "HLT_PFMET120_PFMHT120_IDTight_HFCleaned", "HLT_PFMET120_PFMHT120_IDTight_PFHT60", "HLT_PFMET120_PFMHT120_IDTight_PFHT60_HFCleaned", "HLT_PFMET130_PFMHT130_IDTight", "HLT_PFMET130_PFMHT130_IDTight_CaloBTagCSV_3p1", "HLT_PFMET140_PFMHT140_IDTight", "HLT_PFMET140_PFMHT140_IDTight_CaloBTagCSV_3p1", "HLT_PFMET200_HBHE_BeamHaloCleaned", "HLT_PFMET200_HBHECleaned", "HLT_PFMET200_NotCleaned", "HLT_PFMET250_HBHECleaned", "HLT_PFMET300_HBHECleaned", "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight_HFCleaned", "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight_PFHT60", "HLT_PFMETNoMu130_PFMHTNoMu130_IDTight", "HLT_PFMETNoMu140_PFMHTNoMu140_IDTight", "HLT_PFMETTypeOne110_PFMHT110_IDTight", "HLT_PFMETTypeOne120_PFMHT120_IDTight", "HLT_PFMETTypeOne120_PFMHT120_IDTight_HFCleaned", "HLT_PFMETTypeOne120_PFMHT120_IDTight_PFHT60", "HLT_PFMETTypeOne130_PFMHT130_IDTight", "HLT_PFMETTypeOne140_PFMHT140_IDTight", "HLT_PFMETTypeOne200_HBHE_BeamHaloCleaned", "HLT_Photon120", "HLT_Photon120_R9Id90_HE10_IsoM", "HLT_Photon150", "HLT_Photon165_R9Id90_HE10_IsoM", "HLT_Photon175", "HLT_Photon200", "HLT_Photon20_HoverELoose", "HLT_Photon25", "HLT_Photon300_NoHE", "HLT_Photon30_HoverELoose", "HLT_Photon33", "HLT_Photon40_HoverELoose", "HLT_Photon50", "HLT_Photon50_HoverELoose", "HLT_Photon50_R9Id90_HE10_IsoM", "HLT_Photon60_HoverELoose", "HLT_Photon60_R9Id90_CaloIdL_IsoL", "HLT_Photon60_R9Id90_CaloIdL_IsoL_DisplacedIdL", "HLT_Photon60_R9Id90_CaloIdL_IsoL_DisplacedIdL_PFHT350MinPFJet15", "HLT_Photon75", "HLT_Photon75_R9Id90_HE10_IsoM", "HLT_Photon90", "HLT_Photon90_R9Id90_HE10_IsoM", "HLT_Physics", "HLT_Physics_part0", "HLT_Physics_part1", "HLT_Physics_part2", "HLT_Physics_part3", "HLT_Physics_part4", "HLT_Physics_part5", "HLT_Physics_part6", "HLT_Physics_part7", "HLT_Random", "HLT_Rsq0p35", "HLT_Rsq0p40", "HLT_RsqMR300_Rsq0p09_MR200", "HLT_RsqMR300_Rsq0p09_MR200_4jet", "HLT_RsqMR320_Rsq0p09_MR200", "HLT_RsqMR320_Rsq0p09_MR200_4jet", "HLT_SingleJet30_Mu12_SinglePFJet40", "HLT_Tau3Mu_Mu5_Mu1_TkMu1_IsoTau10", "HLT_Tau3Mu_Mu5_Mu1_TkMu1_IsoTau10_Charge1", "HLT_Tau3Mu_Mu5_Mu1_TkMu1_Tau10", "HLT_Tau3Mu_Mu5_Mu1_TkMu1_Tau10_Charge1", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_IsoTau15", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_IsoTau15_Charge1", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_Tau15", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_Tau15_Charge1", "HLT_TkMu100", "HLT_Trimuon5_3p5_2_Upsilon_Muon", "HLT_TripleJet110_35_35_Mjj650_PFMET110", "HLT_TripleJet110_35_35_Mjj650_PFMET120", "HLT_TripleJet110_35_35_Mjj650_PFMET130", "HLT_TripleMu_10_5_5_DZ", "HLT_TripleMu_12_10_5", "HLT_TriplePhoton_20_20_20_CaloIdLV2", "HLT_TriplePhoton_20_20_20_CaloIdLV2_R9IdVL", "HLT_TriplePhoton_30_30_10_CaloIdLV2", "HLT_TriplePhoton_30_30_10_CaloIdLV2_R9IdVL", "HLT_TriplePhoton_35_35_5_CaloIdLV2_R9IdVL", "HLT_TrkMu12_DoubleTrkMu5NoFiltersNoVtx", "HLT_TrkMu16_DoubleTrkMu6NoFiltersNoVtx", "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", "HLT_UncorrectedJetE30_NoBPTX", "HLT_UncorrectedJetE30_NoBPTX3BX", "HLT_UncorrectedJetE60_NoBPTX3BX", "HLT_UncorrectedJetE70_NoBPTX3BX", "HLT_VBF_DoubleLooseChargedIsoPFTau20_Trk1_eta2p1_Reg", "HLT_VBF_DoubleMediumChargedIsoPFTau20_Trk1_eta2p1_Reg", "HLT_VBF_DoubleTightChargedIsoPFTau20_Trk1_eta2p1_Reg", "HLT_ZeroBias", "HLT_ZeroBias_FirstBXAfterTrain", "HLT_ZeroBias_FirstCollisionAfterAbortGap", "HLT_ZeroBias_FirstCollisionInTrain", "HLT_ZeroBias_IsolatedBunches", "HLT_ZeroBias_LastCollisionInTrain", "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_ZeroBias_part8", "HLT_ZeroBias_part9", ]), ]) samples_2017["/DoubleMuon/Run2017D-31Mar2018-v1/MINIAOD"] = OD([ ("type", "data"), ("sample_category", "data_obs"), ("process_name_specific", "DoubleMuon_Run2017D_31Mar2018_v1"), ("nof_files", 12), ("nof_db_files", 223), ("nof_events", { }), ("nof_tree_events", 22646081), ("nof_db_events", 23075733), ("fsize_local", 13042711636), # 13.04GB, avg file size 1.09GB ("fsize_db", 683921495388), # 683.92GB, avg file size 3.07GB ("use_it", True), ("triggers", ['2mu', '3mu']), ("has_LHE", False), ("nof_PSweights", 0), ("LHE_set", ""), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2020Dec27_woPresel_nom_all_hh_multilepton/ntuples/DoubleMuon_Run2017D_31Mar2018_v1"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ ]), ("missing_from_superset", [ ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ "HLT_AK4CaloJet100", "HLT_AK4CaloJet120", "HLT_AK4CaloJet30", "HLT_AK4CaloJet40", "HLT_AK4CaloJet50", "HLT_AK4CaloJet80", "HLT_AK4PFJet100", "HLT_AK4PFJet120", "HLT_AK4PFJet30", "HLT_AK4PFJet50", "HLT_AK4PFJet80", "HLT_AK8PFHT750_TrimMass50", "HLT_AK8PFHT800_TrimMass50", "HLT_AK8PFHT850_TrimMass50", "HLT_AK8PFHT900_TrimMass50", "HLT_AK8PFJet140", "HLT_AK8PFJet200", "HLT_AK8PFJet260", "HLT_AK8PFJet320", "HLT_AK8PFJet360_TrimMass30", "HLT_AK8PFJet380_TrimMass30", "HLT_AK8PFJet40", "HLT_AK8PFJet400", "HLT_AK8PFJet400_TrimMass30", "HLT_AK8PFJet420_TrimMass30", "HLT_AK8PFJet450", "HLT_AK8PFJet500", "HLT_AK8PFJet550", "HLT_AK8PFJet60", "HLT_AK8PFJet80", "HLT_AK8PFJetFwd140", "HLT_AK8PFJetFwd200", "HLT_AK8PFJetFwd260", "HLT_AK8PFJetFwd320", "HLT_AK8PFJetFwd40", "HLT_AK8PFJetFwd400", "HLT_AK8PFJetFwd450", "HLT_AK8PFJetFwd500", "HLT_AK8PFJetFwd60", "HLT_AK8PFJetFwd80", "HLT_BTagMu_AK4DiJet110_Mu5", "HLT_BTagMu_AK4DiJet170_Mu5", "HLT_BTagMu_AK4DiJet20_Mu5", "HLT_BTagMu_AK4DiJet40_Mu5", "HLT_BTagMu_AK4DiJet70_Mu5", "HLT_BTagMu_AK4Jet300_Mu5", "HLT_BTagMu_AK8DiJet170_Mu5", "HLT_BTagMu_AK8Jet300_Mu5", "HLT_CaloJet500_NoJetID", "HLT_CaloJet550_NoJetID", "HLT_CaloMET100_HBHECleaned", "HLT_CaloMET100_NotCleaned", "HLT_CaloMET110_NotCleaned", "HLT_CaloMET250_HBHECleaned", "HLT_CaloMET250_NotCleaned", "HLT_CaloMET300_HBHECleaned", "HLT_CaloMET350_HBHECleaned", "HLT_CaloMET70_HBHECleaned", "HLT_CaloMET80_HBHECleaned", "HLT_CaloMET80_NotCleaned", "HLT_CaloMET90_HBHECleaned", "HLT_CaloMET90_NotCleaned", "HLT_CaloMHT90", "HLT_DiEle27_WPTightCaloOnly_L1DoubleEG", "HLT_DiJet110_35_Mjj650_PFMET110", "HLT_DiJet110_35_Mjj650_PFMET120", "HLT_DiJet110_35_Mjj650_PFMET130", "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", "HLT_DiMu9_Ele9_CaloIdL_TrackIdL_DZ", "HLT_Dimuon0_Jpsi", "HLT_Dimuon0_Jpsi3p5_Muon2", "HLT_Dimuon0_Jpsi_L1_4R_0er1p5R", "HLT_Dimuon0_Jpsi_L1_NoOS", "HLT_Dimuon0_Jpsi_NoVertexing", "HLT_Dimuon0_Jpsi_NoVertexing_L1_4R_0er1p5R", "HLT_Dimuon0_Jpsi_NoVertexing_NoOS", "HLT_Dimuon0_LowMass", "HLT_Dimuon0_LowMass_L1_0er1p5", "HLT_Dimuon0_LowMass_L1_0er1p5R", "HLT_Dimuon0_LowMass_L1_4", "HLT_Dimuon0_LowMass_L1_4R", "HLT_Dimuon0_LowMass_L1_TM530", "HLT_Dimuon0_Upsilon_L1_4p5", "HLT_Dimuon0_Upsilon_L1_4p5er2p0", "HLT_Dimuon0_Upsilon_L1_4p5er2p0M", "HLT_Dimuon0_Upsilon_L1_4p5NoOS", "HLT_Dimuon0_Upsilon_L1_5", "HLT_Dimuon0_Upsilon_L1_5M", "HLT_Dimuon0_Upsilon_Muon_L1_TM0", "HLT_Dimuon0_Upsilon_Muon_NoL1Mass", "HLT_Dimuon0_Upsilon_NoVertexing", "HLT_Dimuon10_PsiPrime_Barrel_Seagulls", "HLT_Dimuon10_Upsilon_Barrel_Seagulls", "HLT_Dimuon12_Upsilon_eta1p5", "HLT_Dimuon14_Phi_Barrel_Seagulls", "HLT_Dimuon18_PsiPrime", "HLT_Dimuon18_PsiPrime_noCorrL1", "HLT_Dimuon20_Jpsi_Barrel_Seagulls", "HLT_Dimuon24_Phi_noCorrL1", "HLT_Dimuon24_Upsilon_noCorrL1", "HLT_Dimuon25_Jpsi", "HLT_Dimuon25_Jpsi_noCorrL1", "HLT_DiPFJet15_FBEta3_NoCaloMatched", "HLT_DiPFJet15_NoCaloMatched", "HLT_DiPFJet25_FBEta3_NoCaloMatched", "HLT_DiPFJet25_NoCaloMatched", "HLT_DiPFJetAve100_HFJEC", "HLT_DiPFJetAve140", "HLT_DiPFJetAve15_HFJEC", "HLT_DiPFJetAve160_HFJEC", "HLT_DiPFJetAve200", "HLT_DiPFJetAve220_HFJEC", "HLT_DiPFJetAve25_HFJEC", "HLT_DiPFJetAve260", "HLT_DiPFJetAve300_HFJEC", "HLT_DiPFJetAve320", "HLT_DiPFJetAve35_HFJEC", "HLT_DiPFJetAve40", "HLT_DiPFJetAve400", "HLT_DiPFJetAve500", "HLT_DiPFJetAve60", "HLT_DiPFJetAve60_HFJEC", "HLT_DiPFJetAve80", "HLT_DiPFJetAve80_HFJEC", "HLT_Diphoton30_22_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", "HLT_Diphoton30_22_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass95", "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_NoPixelVeto_Mass55", "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_PixelVeto_Mass55", "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_NoPixelVeto_Mass55", "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_PixelVeto_Mass55", "HLT_DiSC30_18_EIso_AND_HE_Mass70", "HLT_DoubleEle24_eta2p1_WPTight_Gsf", "HLT_DoubleEle25_CaloIdL_MW", "HLT_DoubleEle27_CaloIdL_MW", "HLT_DoubleEle33_CaloIdL_MW", "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_DZ_PFHT350", "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT350", "HLT_DoubleIsoMu20_eta2p1", "HLT_DoubleIsoMu24_eta2p1", "HLT_DoubleL2Mu50", "HLT_DoubleLooseChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMu20_7_Mass0to30_L1_DM4", "HLT_DoubleMu20_7_Mass0to30_L1_DM4EG", "HLT_DoubleMu20_7_Mass0to30_Photon23", "HLT_DoubleMu3_DZ_PFMET50_PFMHT60", "HLT_DoubleMu3_DZ_PFMET70_PFMHT70", "HLT_DoubleMu3_DZ_PFMET90_PFMHT90", "HLT_DoubleMu3_Trk_Tau3mu", "HLT_DoubleMu3_Trk_Tau3mu_NoL1Mass", "HLT_DoubleMu43NoFiltersNoVtx", "HLT_DoubleMu48NoFiltersNoVtx", "HLT_DoubleMu4_3_Bs", "HLT_DoubleMu4_3_Jpsi_Displaced", "HLT_DoubleMu4_Jpsi_Displaced", "HLT_DoubleMu4_Jpsi_NoVertexing", "HLT_DoubleMu4_JpsiTrk_Displaced", "HLT_DoubleMu4_JpsiTrkTrk_Displaced", "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", "HLT_DoubleMu4_Mass8_DZ_PFHT350", "HLT_DoubleMu4_PsiPrimeTrk_Displaced", "HLT_DoubleMu8_Mass8_PFHT350", "HLT_DoublePFJets100_CaloBTagCSV_p33", "HLT_DoublePFJets100MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_DoublePFJets116MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_DoublePFJets128MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_DoublePFJets200_CaloBTagCSV_p33", "HLT_DoublePFJets350_CaloBTagCSV_p33", "HLT_DoublePFJets40_CaloBTagCSV_p33", "HLT_DoublePhoton33_CaloIdL", "HLT_DoublePhoton70", "HLT_DoublePhoton85", "HLT_DoubleTightChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_EcalCalibration", "HLT_ECALHT800", "HLT_Ele115_CaloIdVT_GsfTrkIdT", "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele135_CaloIdVT_GsfTrkIdT", "HLT_Ele145_CaloIdVT_GsfTrkIdT", "HLT_Ele15_IsoVVVL_PFHT450", "HLT_Ele15_IsoVVVL_PFHT450_CaloBTagCSV_4p5", "HLT_Ele15_IsoVVVL_PFHT450_PFMET50", "HLT_Ele15_IsoVVVL_PFHT600", "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", "HLT_Ele200_CaloIdVT_GsfTrkIdT", "HLT_Ele20_eta2p1_WPLoose_Gsf", "HLT_Ele20_WPLoose_Gsf", "HLT_Ele20_WPTight_Gsf", "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Ele24_eta2p1_WPTight_Gsf_LooseChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_LooseChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_MediumChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_MediumChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_TightChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_TightChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele250_CaloIdVT_GsfTrkIdT", "HLT_Ele27_Ele37_CaloIdL_MW", "HLT_Ele27_WPTight_Gsf", "HLT_Ele28_eta2p1_WPTight_Gsf_HT150", "HLT_Ele28_HighEta_SC20_Mass55", "HLT_Ele300_CaloIdVT_GsfTrkIdT", "HLT_Ele30_eta2p1_WPTight_Gsf_CentralPFJet35_EleCleaned", "HLT_Ele32_WPTight_Gsf", "HLT_Ele32_WPTight_Gsf_L1DoubleEG", "HLT_Ele35_WPTight_Gsf", "HLT_Ele35_WPTight_Gsf_L1EGMT", "HLT_Ele38_WPTight_Gsf", "HLT_Ele40_WPTight_Gsf", "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", "HLT_Ele50_IsoVVVL_PFHT450", "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", "HLT_FullTrack_Multiplicity100", "HLT_FullTrack_Multiplicity130", "HLT_FullTrack_Multiplicity155", "HLT_FullTrack_Multiplicity85", "HLT_HcalCalibration", "HLT_HcalIsolatedbunch", "HLT_HcalNZS", "HLT_HcalPhiSym", "HLT_HISinglePhoton10_Eta3p1ForPPRef", "HLT_HISinglePhoton20_Eta3p1ForPPRef", "HLT_HISinglePhoton30_Eta3p1ForPPRef", "HLT_HISinglePhoton40_Eta3p1ForPPRef", "HLT_HISinglePhoton50_Eta3p1ForPPRef", "HLT_HISinglePhoton60_Eta3p1ForPPRef", "HLT_HT300_Beamspot", "HLT_HT400_DisplacedDijet40_DisplacedTrack", "HLT_HT425", "HLT_HT430_DisplacedDijet40_DisplacedTrack", "HLT_HT430_DisplacedDijet60_DisplacedTrack", "HLT_HT430_DisplacedDijet80_DisplacedTrack", "HLT_HT450_Beamspot", "HLT_HT550_DisplacedDijet60_Inclusive", "HLT_HT550_DisplacedDijet80_Inclusive", "HLT_HT650_DisplacedDijet60_Inclusive", "HLT_HT650_DisplacedDijet80_Inclusive", "HLT_HT750_DisplacedDijet80_Inclusive", "HLT_IsoMu20", "HLT_IsoMu20_eta2p1_LooseChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_LooseChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu20_eta2p1_MediumChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_MediumChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu20_eta2p1_TightChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_TightChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu24", "HLT_IsoMu24_eta2p1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau40_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau40_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu27", "HLT_IsoMu30", "HLT_IsoTrackHB", "HLT_IsoTrackHE", "HLT_L1_CDC_SingleMu_3_er1p2_TOP120_DPHI2p618_3p142", "HLT_L1ETMHadSeeds", "HLT_L1MinimumBiasHF0OR", "HLT_L1MinimumBiasHF_OR", "HLT_L1NotBptxOR", "HLT_L1SingleMu18", "HLT_L1SingleMu25", "HLT_L1UnpairedBunchBptxMinus", "HLT_L1UnpairedBunchBptxPlus", "HLT_L2Mu10", "HLT_L2Mu10_NoVertex_NoBPTX", "HLT_L2Mu10_NoVertex_NoBPTX3BX", "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX", "HLT_L2Mu50", "HLT_MediumChargedIsoPFTau180HighPtRelaxedIso_Trk50_eta2p1", "HLT_MediumChargedIsoPFTau180HighPtRelaxedIso_Trk50_eta2p1_1pr", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET100", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET110", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET120", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET130", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET90", "HLT_MET105_IsoTrk50", "HLT_MET120_IsoTrk50", "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu130_PFMHTNoMu130_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu140_PFMHTNoMu140_IDTight", "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", "HLT_Mu12_DoublePFJets100_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets200_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets350_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets40_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets40MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_Mu12_DoublePFJets54MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_Mu12_DoublePFJets62MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_Mu12_DoublePhoton20", "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Mu15_IsoVVVL_PFHT450", "HLT_Mu15_IsoVVVL_PFHT450_CaloBTagCSV_4p5", "HLT_Mu15_IsoVVVL_PFHT450_PFMET50", "HLT_Mu15_IsoVVVL_PFHT600", "HLT_Mu17", "HLT_Mu17_Photon30_IsoCaloId", "HLT_Mu17_TrkIsoVVL", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ_Mass3p8", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ_Mass8", "HLT_Mu19", "HLT_Mu19_TrkIsoVVL", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL_DZ", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL_DZ_Mass3p8", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL_DZ_Mass8", "HLT_Mu20", "HLT_Mu20_TkMu0_Phi", "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Mu25_TkMu0_Onia", "HLT_Mu25_TkMu0_Phi", "HLT_Mu27", "HLT_Mu27_Ele37_CaloIdL_MW", "HLT_Mu30_TkMu0_Onia", "HLT_Mu37_Ele27_CaloIdL_MW", "HLT_Mu37_TkMu27", "HLT_Mu3_PFJet40", "HLT_Mu43NoFiltersNoVtx_Photon43_CaloIdL", "HLT_Mu48NoFiltersNoVtx_Photon48_CaloIdL", "HLT_Mu50", "HLT_Mu50_IsoVVVL_PFHT450", "HLT_Mu55", "HLT_Mu7p5_L2Mu2_Jpsi", "HLT_Mu7p5_L2Mu2_Upsilon", "HLT_Mu7p5_Track2_Jpsi", "HLT_Mu7p5_Track2_Upsilon", "HLT_Mu7p5_Track3p5_Jpsi", "HLT_Mu7p5_Track3p5_Upsilon", "HLT_Mu7p5_Track7_Jpsi", "HLT_Mu7p5_Track7_Upsilon", "HLT_Mu8", "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", "HLT_Mu8_DiEle12_CaloIdL_TrackIdL_DZ", "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT350", "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT350_DZ", "HLT_Mu8_TrkIsoVVL", "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_OldMu100", "HLT_PFHT1050", "HLT_PFHT180", "HLT_PFHT250", "HLT_PFHT300PT30_QuadPFJet_75_60_45_40", "HLT_PFHT300PT30_QuadPFJet_75_60_45_40_TriplePFBTagCSV_3p0", "HLT_PFHT350", "HLT_PFHT350MinPFJet15", "HLT_PFHT370", "HLT_PFHT380_SixPFJet32", "HLT_PFHT380_SixPFJet32_DoublePFBTagCSV_2p2", "HLT_PFHT380_SixPFJet32_DoublePFBTagDeepCSV_2p2", "HLT_PFHT430", "HLT_PFHT430_SixPFJet40", "HLT_PFHT430_SixPFJet40_PFBTagCSV_1p5", "HLT_PFHT500_PFMET100_PFMHT100_IDTight", "HLT_PFHT500_PFMET110_PFMHT110_IDTight", "HLT_PFHT510", "HLT_PFHT590", "HLT_PFHT680", "HLT_PFHT700_PFMET85_PFMHT85_IDTight", "HLT_PFHT700_PFMET95_PFMHT95_IDTight", "HLT_PFHT780", "HLT_PFHT800_PFMET75_PFMHT75_IDTight", "HLT_PFHT800_PFMET85_PFMHT85_IDTight", "HLT_PFHT890", "HLT_PFJet140", "HLT_PFJet200", "HLT_PFJet260", "HLT_PFJet320", "HLT_PFJet40", "HLT_PFJet400", "HLT_PFJet450", "HLT_PFJet500", "HLT_PFJet550", "HLT_PFJet60", "HLT_PFJet80", "HLT_PFJetFwd140", "HLT_PFJetFwd200", "HLT_PFJetFwd260", "HLT_PFJetFwd320", "HLT_PFJetFwd40", "HLT_PFJetFwd400", "HLT_PFJetFwd450", "HLT_PFJetFwd500", "HLT_PFJetFwd60", "HLT_PFJetFwd80", "HLT_PFMET100_PFMHT100_IDTight_CaloBTagCSV_3p1", "HLT_PFMET110_PFMHT110_IDTight", "HLT_PFMET110_PFMHT110_IDTight_CaloBTagCSV_3p1", "HLT_PFMET120_PFMHT120_IDTight", "HLT_PFMET120_PFMHT120_IDTight_CaloBTagCSV_3p1", "HLT_PFMET120_PFMHT120_IDTight_PFHT60", "HLT_PFMET130_PFMHT130_IDTight", "HLT_PFMET130_PFMHT130_IDTight_CaloBTagCSV_3p1", "HLT_PFMET140_PFMHT140_IDTight", "HLT_PFMET140_PFMHT140_IDTight_CaloBTagCSV_3p1", "HLT_PFMET200_HBHE_BeamHaloCleaned", "HLT_PFMET200_HBHECleaned", "HLT_PFMET200_NotCleaned", "HLT_PFMET250_HBHECleaned", "HLT_PFMET300_HBHECleaned", "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight_PFHT60", "HLT_PFMETNoMu130_PFMHTNoMu130_IDTight", "HLT_PFMETNoMu140_PFMHTNoMu140_IDTight", "HLT_PFMETTypeOne110_PFMHT110_IDTight", "HLT_PFMETTypeOne120_PFMHT120_IDTight", "HLT_PFMETTypeOne120_PFMHT120_IDTight_PFHT60", "HLT_PFMETTypeOne130_PFMHT130_IDTight", "HLT_PFMETTypeOne140_PFMHT140_IDTight", "HLT_PFMETTypeOne200_HBHE_BeamHaloCleaned", "HLT_Photon120", "HLT_Photon120_R9Id90_HE10_IsoM", "HLT_Photon150", "HLT_Photon165_R9Id90_HE10_IsoM", "HLT_Photon175", "HLT_Photon200", "HLT_Photon20_HoverELoose", "HLT_Photon25", "HLT_Photon300_NoHE", "HLT_Photon30_HoverELoose", "HLT_Photon33", "HLT_Photon40_HoverELoose", "HLT_Photon50", "HLT_Photon50_HoverELoose", "HLT_Photon50_R9Id90_HE10_IsoM", "HLT_Photon60_HoverELoose", "HLT_Photon60_R9Id90_CaloIdL_IsoL", "HLT_Photon60_R9Id90_CaloIdL_IsoL_DisplacedIdL", "HLT_Photon60_R9Id90_CaloIdL_IsoL_DisplacedIdL_PFHT350MinPFJet15", "HLT_Photon75", "HLT_Photon75_R9Id90_HE10_IsoM", "HLT_Photon90", "HLT_Photon90_R9Id90_HE10_IsoM", "HLT_Physics", "HLT_Physics_part0", "HLT_Physics_part1", "HLT_Physics_part2", "HLT_Physics_part3", "HLT_Physics_part4", "HLT_Physics_part5", "HLT_Physics_part6", "HLT_Physics_part7", "HLT_Random", "HLT_Rsq0p35", "HLT_Rsq0p40", "HLT_RsqMR300_Rsq0p09_MR200", "HLT_RsqMR300_Rsq0p09_MR200_4jet", "HLT_RsqMR320_Rsq0p09_MR200", "HLT_RsqMR320_Rsq0p09_MR200_4jet", "HLT_SingleJet30_Mu12_SinglePFJet40", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_IsoTau15", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_IsoTau15_Charge1", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_Tau15", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_Tau15_Charge1", "HLT_TkMu100", "HLT_Trimuon5_3p5_2_Upsilon_Muon", "HLT_TripleJet110_35_35_Mjj650_PFMET110", "HLT_TripleJet110_35_35_Mjj650_PFMET120", "HLT_TripleJet110_35_35_Mjj650_PFMET130", "HLT_TripleMu_10_5_5_DZ", "HLT_TripleMu_12_10_5", "HLT_TripleMu_5_3_3_Mass3p8to60_DZ", "HLT_TriplePhoton_20_20_20_CaloIdLV2", "HLT_TriplePhoton_20_20_20_CaloIdLV2_R9IdVL", "HLT_TriplePhoton_30_30_10_CaloIdLV2", "HLT_TriplePhoton_30_30_10_CaloIdLV2_R9IdVL", "HLT_TriplePhoton_35_35_5_CaloIdLV2_R9IdVL", "HLT_TrkMu12_DoubleTrkMu5NoFiltersNoVtx", "HLT_TrkMu16_DoubleTrkMu6NoFiltersNoVtx", "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", "HLT_UncorrectedJetE30_NoBPTX", "HLT_UncorrectedJetE30_NoBPTX3BX", "HLT_UncorrectedJetE60_NoBPTX3BX", "HLT_UncorrectedJetE70_NoBPTX3BX", "HLT_VBF_DoubleLooseChargedIsoPFTau20_Trk1_eta2p1_Reg", "HLT_VBF_DoubleMediumChargedIsoPFTau20_Trk1_eta2p1_Reg", "HLT_VBF_DoubleTightChargedIsoPFTau20_Trk1_eta2p1_Reg", "HLT_ZeroBias", "HLT_ZeroBias_FirstBXAfterTrain", "HLT_ZeroBias_FirstCollisionAfterAbortGap", "HLT_ZeroBias_FirstCollisionInTrain", "HLT_ZeroBias_IsolatedBunches", "HLT_ZeroBias_LastCollisionInTrain", "HLT_ZeroBias_part0", "HLT_ZeroBias_part1", "HLT_ZeroBias_part2", "HLT_ZeroBias_part3", "HLT_ZeroBias_part4", "HLT_ZeroBias_part5", "HLT_ZeroBias_part6", "HLT_ZeroBias_part7", ]), ]) samples_2017["/DoubleMuon/Run2017E-31Mar2018-v1/MINIAOD"] = OD([ ("type", "data"), ("sample_category", "data_obs"), ("process_name_specific", "DoubleMuon_Run2017E_31Mar2018_v1"), ("nof_files", 25), ("nof_db_files", 574), ("nof_events", { }), ("nof_tree_events", 50596536), ("nof_db_events", 51589091), ("fsize_local", 29242698345), # 29.24GB, avg file size 1.17GB ("fsize_db", 1788420451830), # 1.79TB, avg file size 3.12GB ("use_it", True), ("triggers", ['2mu', '3mu']), ("has_LHE", False), ("nof_PSweights", 0), ("LHE_set", ""), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2020Dec27_woPresel_nom_all_hh_multilepton/ntuples/DoubleMuon_Run2017E_31Mar2018_v1"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ ]), ("missing_from_superset", [ ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ "HLT_AK4CaloJet100", "HLT_AK4CaloJet120", "HLT_AK4CaloJet30", "HLT_AK4CaloJet40", "HLT_AK4CaloJet50", "HLT_AK4CaloJet80", "HLT_AK4PFJet100", "HLT_AK4PFJet120", "HLT_AK4PFJet30", "HLT_AK4PFJet50", "HLT_AK4PFJet80", "HLT_AK8PFHT750_TrimMass50", "HLT_AK8PFHT800_TrimMass50", "HLT_AK8PFHT850_TrimMass50", "HLT_AK8PFHT900_TrimMass50", "HLT_AK8PFJet140", "HLT_AK8PFJet200", "HLT_AK8PFJet260", "HLT_AK8PFJet320", "HLT_AK8PFJet360_TrimMass30", "HLT_AK8PFJet380_TrimMass30", "HLT_AK8PFJet40", "HLT_AK8PFJet400", "HLT_AK8PFJet400_TrimMass30", "HLT_AK8PFJet420_TrimMass30", "HLT_AK8PFJet450", "HLT_AK8PFJet500", "HLT_AK8PFJet550", "HLT_AK8PFJet60", "HLT_AK8PFJet80", "HLT_AK8PFJetFwd140", "HLT_AK8PFJetFwd200", "HLT_AK8PFJetFwd260", "HLT_AK8PFJetFwd320", "HLT_AK8PFJetFwd40", "HLT_AK8PFJetFwd400", "HLT_AK8PFJetFwd450", "HLT_AK8PFJetFwd500", "HLT_AK8PFJetFwd60", "HLT_AK8PFJetFwd80", "HLT_BTagMu_AK4DiJet110_Mu5", "HLT_BTagMu_AK4DiJet170_Mu5", "HLT_BTagMu_AK4DiJet20_Mu5", "HLT_BTagMu_AK4DiJet40_Mu5", "HLT_BTagMu_AK4DiJet70_Mu5", "HLT_BTagMu_AK4Jet300_Mu5", "HLT_BTagMu_AK8DiJet170_Mu5", "HLT_BTagMu_AK8Jet300_Mu5", "HLT_CaloJet500_NoJetID", "HLT_CaloJet550_NoJetID", "HLT_CaloMET100_HBHECleaned", "HLT_CaloMET100_NotCleaned", "HLT_CaloMET110_NotCleaned", "HLT_CaloMET250_HBHECleaned", "HLT_CaloMET250_NotCleaned", "HLT_CaloMET300_HBHECleaned", "HLT_CaloMET350_HBHECleaned", "HLT_CaloMET70_HBHECleaned", "HLT_CaloMET80_HBHECleaned", "HLT_CaloMET80_NotCleaned", "HLT_CaloMET90_HBHECleaned", "HLT_CaloMET90_NotCleaned", "HLT_CaloMHT90", "HLT_DiEle27_WPTightCaloOnly_L1DoubleEG", "HLT_DiJet110_35_Mjj650_PFMET110", "HLT_DiJet110_35_Mjj650_PFMET120", "HLT_DiJet110_35_Mjj650_PFMET130", "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", "HLT_DiMu9_Ele9_CaloIdL_TrackIdL_DZ", "HLT_Dimuon0_Jpsi", "HLT_Dimuon0_Jpsi3p5_Muon2", "HLT_Dimuon0_Jpsi_L1_4R_0er1p5R", "HLT_Dimuon0_Jpsi_L1_NoOS", "HLT_Dimuon0_Jpsi_NoVertexing", "HLT_Dimuon0_Jpsi_NoVertexing_L1_4R_0er1p5R", "HLT_Dimuon0_Jpsi_NoVertexing_NoOS", "HLT_Dimuon0_LowMass", "HLT_Dimuon0_LowMass_L1_0er1p5", "HLT_Dimuon0_LowMass_L1_0er1p5R", "HLT_Dimuon0_LowMass_L1_4", "HLT_Dimuon0_LowMass_L1_4R", "HLT_Dimuon0_LowMass_L1_TM530", "HLT_Dimuon0_Upsilon_L1_4p5", "HLT_Dimuon0_Upsilon_L1_4p5er2p0", "HLT_Dimuon0_Upsilon_L1_4p5er2p0M", "HLT_Dimuon0_Upsilon_L1_4p5NoOS", "HLT_Dimuon0_Upsilon_L1_5", "HLT_Dimuon0_Upsilon_L1_5M", "HLT_Dimuon0_Upsilon_Muon_L1_TM0", "HLT_Dimuon0_Upsilon_Muon_NoL1Mass", "HLT_Dimuon0_Upsilon_NoVertexing", "HLT_Dimuon10_PsiPrime_Barrel_Seagulls", "HLT_Dimuon10_Upsilon_Barrel_Seagulls", "HLT_Dimuon12_Upsilon_eta1p5", "HLT_Dimuon14_Phi_Barrel_Seagulls", "HLT_Dimuon18_PsiPrime", "HLT_Dimuon18_PsiPrime_noCorrL1", "HLT_Dimuon20_Jpsi_Barrel_Seagulls", "HLT_Dimuon24_Phi_noCorrL1", "HLT_Dimuon24_Upsilon_noCorrL1", "HLT_Dimuon25_Jpsi", "HLT_Dimuon25_Jpsi_noCorrL1", "HLT_DiPFJet15_FBEta3_NoCaloMatched", "HLT_DiPFJet15_NoCaloMatched", "HLT_DiPFJet25_FBEta3_NoCaloMatched", "HLT_DiPFJet25_NoCaloMatched", "HLT_DiPFJetAve100_HFJEC", "HLT_DiPFJetAve140", "HLT_DiPFJetAve15_HFJEC", "HLT_DiPFJetAve160_HFJEC", "HLT_DiPFJetAve200", "HLT_DiPFJetAve220_HFJEC", "HLT_DiPFJetAve25_HFJEC", "HLT_DiPFJetAve260", "HLT_DiPFJetAve300_HFJEC", "HLT_DiPFJetAve320", "HLT_DiPFJetAve35_HFJEC", "HLT_DiPFJetAve40", "HLT_DiPFJetAve400", "HLT_DiPFJetAve500", "HLT_DiPFJetAve60", "HLT_DiPFJetAve60_HFJEC", "HLT_DiPFJetAve80", "HLT_DiPFJetAve80_HFJEC", "HLT_Diphoton30_22_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", "HLT_Diphoton30_22_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass95", "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_NoPixelVeto_Mass55", "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_PixelVeto_Mass55", "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_NoPixelVeto_Mass55", "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_PixelVeto_Mass55", "HLT_DiSC30_18_EIso_AND_HE_Mass70", "HLT_DoubleEle24_eta2p1_WPTight_Gsf", "HLT_DoubleEle25_CaloIdL_MW", "HLT_DoubleEle27_CaloIdL_MW", "HLT_DoubleEle33_CaloIdL_MW", "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_DZ_PFHT350", "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT350", "HLT_DoubleIsoMu20_eta2p1", "HLT_DoubleIsoMu24_eta2p1", "HLT_DoubleL2Mu50", "HLT_DoubleLooseChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMu20_7_Mass0to30_L1_DM4", "HLT_DoubleMu20_7_Mass0to30_L1_DM4EG", "HLT_DoubleMu20_7_Mass0to30_Photon23", "HLT_DoubleMu3_DZ_PFMET50_PFMHT60", "HLT_DoubleMu3_DZ_PFMET70_PFMHT70", "HLT_DoubleMu3_DZ_PFMET90_PFMHT90", "HLT_DoubleMu3_Trk_Tau3mu", "HLT_DoubleMu3_Trk_Tau3mu_NoL1Mass", "HLT_DoubleMu43NoFiltersNoVtx", "HLT_DoubleMu48NoFiltersNoVtx", "HLT_DoubleMu4_3_Bs", "HLT_DoubleMu4_3_Jpsi_Displaced", "HLT_DoubleMu4_Jpsi_Displaced", "HLT_DoubleMu4_Jpsi_NoVertexing", "HLT_DoubleMu4_JpsiTrk_Displaced", "HLT_DoubleMu4_JpsiTrkTrk_Displaced", "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", "HLT_DoubleMu4_Mass8_DZ_PFHT350", "HLT_DoubleMu4_PsiPrimeTrk_Displaced", "HLT_DoubleMu8_Mass8_PFHT350", "HLT_DoublePFJets100_CaloBTagCSV_p33", "HLT_DoublePFJets100MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_DoublePFJets116MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_DoublePFJets128MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_DoublePFJets200_CaloBTagCSV_p33", "HLT_DoublePFJets350_CaloBTagCSV_p33", "HLT_DoublePFJets40_CaloBTagCSV_p33", "HLT_DoublePhoton33_CaloIdL", "HLT_DoublePhoton70", "HLT_DoublePhoton85", "HLT_DoubleTightChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_EcalCalibration", "HLT_ECALHT800", "HLT_Ele115_CaloIdVT_GsfTrkIdT", "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele135_CaloIdVT_GsfTrkIdT", "HLT_Ele145_CaloIdVT_GsfTrkIdT", "HLT_Ele15_IsoVVVL_PFHT450", "HLT_Ele15_IsoVVVL_PFHT450_CaloBTagCSV_4p5", "HLT_Ele15_IsoVVVL_PFHT450_PFMET50", "HLT_Ele15_IsoVVVL_PFHT600", "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", "HLT_Ele200_CaloIdVT_GsfTrkIdT", "HLT_Ele20_eta2p1_WPLoose_Gsf", "HLT_Ele20_WPLoose_Gsf", "HLT_Ele20_WPTight_Gsf", "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Ele24_eta2p1_WPTight_Gsf_LooseChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_LooseChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_MediumChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_MediumChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_TightChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_TightChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele250_CaloIdVT_GsfTrkIdT", "HLT_Ele27_Ele37_CaloIdL_MW", "HLT_Ele27_WPTight_Gsf", "HLT_Ele28_eta2p1_WPTight_Gsf_HT150", "HLT_Ele28_HighEta_SC20_Mass55", "HLT_Ele300_CaloIdVT_GsfTrkIdT", "HLT_Ele30_eta2p1_WPTight_Gsf_CentralPFJet35_EleCleaned", "HLT_Ele32_WPTight_Gsf", "HLT_Ele32_WPTight_Gsf_L1DoubleEG", "HLT_Ele35_WPTight_Gsf", "HLT_Ele35_WPTight_Gsf_L1EGMT", "HLT_Ele38_WPTight_Gsf", "HLT_Ele40_WPTight_Gsf", "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", "HLT_Ele50_IsoVVVL_PFHT450", "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", "HLT_FullTrack_Multiplicity100", "HLT_FullTrack_Multiplicity130", "HLT_FullTrack_Multiplicity155", "HLT_FullTrack_Multiplicity85", "HLT_HcalCalibration", "HLT_HcalIsolatedbunch", "HLT_HcalNZS", "HLT_HcalPhiSym", "HLT_HISinglePhoton10_Eta3p1ForPPRef", "HLT_HISinglePhoton20_Eta3p1ForPPRef", "HLT_HISinglePhoton30_Eta3p1ForPPRef", "HLT_HISinglePhoton40_Eta3p1ForPPRef", "HLT_HISinglePhoton50_Eta3p1ForPPRef", "HLT_HISinglePhoton60_Eta3p1ForPPRef", "HLT_HT300_Beamspot", "HLT_HT400_DisplacedDijet40_DisplacedTrack", "HLT_HT425", "HLT_HT430_DisplacedDijet40_DisplacedTrack", "HLT_HT430_DisplacedDijet60_DisplacedTrack", "HLT_HT430_DisplacedDijet80_DisplacedTrack", "HLT_HT450_Beamspot", "HLT_HT550_DisplacedDijet60_Inclusive", "HLT_HT550_DisplacedDijet80_Inclusive", "HLT_HT650_DisplacedDijet60_Inclusive", "HLT_HT650_DisplacedDijet80_Inclusive", "HLT_HT750_DisplacedDijet80_Inclusive", "HLT_IsoMu20", "HLT_IsoMu20_eta2p1_LooseChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_LooseChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu20_eta2p1_MediumChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_MediumChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu20_eta2p1_TightChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_TightChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu24", "HLT_IsoMu24_eta2p1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau40_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau40_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu27", "HLT_IsoMu30", "HLT_IsoTrackHB", "HLT_IsoTrackHE", "HLT_L1_CDC_SingleMu_3_er1p2_TOP120_DPHI2p618_3p142", "HLT_L1ETMHadSeeds", "HLT_L1MinimumBiasHF0OR", "HLT_L1MinimumBiasHF_OR", "HLT_L1NotBptxOR", "HLT_L1SingleMu18", "HLT_L1SingleMu25", "HLT_L1UnpairedBunchBptxMinus", "HLT_L1UnpairedBunchBptxPlus", "HLT_L2Mu10", "HLT_L2Mu10_NoVertex_NoBPTX", "HLT_L2Mu10_NoVertex_NoBPTX3BX", "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX", "HLT_L2Mu50", "HLT_MediumChargedIsoPFTau180HighPtRelaxedIso_Trk50_eta2p1", "HLT_MediumChargedIsoPFTau180HighPtRelaxedIso_Trk50_eta2p1_1pr", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET100", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET110", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET120", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET130", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET90", "HLT_MET105_IsoTrk50", "HLT_MET120_IsoTrk50", "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu130_PFMHTNoMu130_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu140_PFMHTNoMu140_IDTight", "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", "HLT_Mu12_DoublePFJets100_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets200_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets350_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets40_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets40MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_Mu12_DoublePFJets54MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_Mu12_DoublePFJets62MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_Mu12_DoublePhoton20", "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Mu15_IsoVVVL_PFHT450", "HLT_Mu15_IsoVVVL_PFHT450_CaloBTagCSV_4p5", "HLT_Mu15_IsoVVVL_PFHT450_PFMET50", "HLT_Mu15_IsoVVVL_PFHT600", "HLT_Mu17", "HLT_Mu17_Photon30_IsoCaloId", "HLT_Mu17_TrkIsoVVL", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ_Mass3p8", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ_Mass8", "HLT_Mu19", "HLT_Mu19_TrkIsoVVL", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL_DZ", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL_DZ_Mass3p8", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL_DZ_Mass8", "HLT_Mu20", "HLT_Mu20_TkMu0_Phi", "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Mu25_TkMu0_Onia", "HLT_Mu25_TkMu0_Phi", "HLT_Mu27", "HLT_Mu27_Ele37_CaloIdL_MW", "HLT_Mu30_TkMu0_Onia", "HLT_Mu37_Ele27_CaloIdL_MW", "HLT_Mu37_TkMu27", "HLT_Mu3_PFJet40", "HLT_Mu43NoFiltersNoVtx_Photon43_CaloIdL", "HLT_Mu48NoFiltersNoVtx_Photon48_CaloIdL", "HLT_Mu50", "HLT_Mu50_IsoVVVL_PFHT450", "HLT_Mu55", "HLT_Mu7p5_L2Mu2_Jpsi", "HLT_Mu7p5_L2Mu2_Upsilon", "HLT_Mu7p5_Track2_Jpsi", "HLT_Mu7p5_Track2_Upsilon", "HLT_Mu7p5_Track3p5_Jpsi", "HLT_Mu7p5_Track3p5_Upsilon", "HLT_Mu7p5_Track7_Jpsi", "HLT_Mu7p5_Track7_Upsilon", "HLT_Mu8", "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", "HLT_Mu8_DiEle12_CaloIdL_TrackIdL_DZ", "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT350", "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT350_DZ", "HLT_Mu8_TrkIsoVVL", "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_OldMu100", "HLT_PFHT1050", "HLT_PFHT180", "HLT_PFHT250", "HLT_PFHT300PT30_QuadPFJet_75_60_45_40", "HLT_PFHT300PT30_QuadPFJet_75_60_45_40_TriplePFBTagCSV_3p0", "HLT_PFHT350", "HLT_PFHT350MinPFJet15", "HLT_PFHT370", "HLT_PFHT380_SixPFJet32", "HLT_PFHT380_SixPFJet32_DoublePFBTagCSV_2p2", "HLT_PFHT380_SixPFJet32_DoublePFBTagDeepCSV_2p2", "HLT_PFHT430", "HLT_PFHT430_SixPFJet40", "HLT_PFHT430_SixPFJet40_PFBTagCSV_1p5", "HLT_PFHT500_PFMET100_PFMHT100_IDTight", "HLT_PFHT500_PFMET110_PFMHT110_IDTight", "HLT_PFHT510", "HLT_PFHT590", "HLT_PFHT680", "HLT_PFHT700_PFMET85_PFMHT85_IDTight", "HLT_PFHT700_PFMET95_PFMHT95_IDTight", "HLT_PFHT780", "HLT_PFHT800_PFMET75_PFMHT75_IDTight", "HLT_PFHT800_PFMET85_PFMHT85_IDTight", "HLT_PFHT890", "HLT_PFJet140", "HLT_PFJet200", "HLT_PFJet260", "HLT_PFJet320", "HLT_PFJet40", "HLT_PFJet400", "HLT_PFJet450", "HLT_PFJet500", "HLT_PFJet550", "HLT_PFJet60", "HLT_PFJet80", "HLT_PFJetFwd140", "HLT_PFJetFwd200", "HLT_PFJetFwd260", "HLT_PFJetFwd320", "HLT_PFJetFwd40", "HLT_PFJetFwd400", "HLT_PFJetFwd450", "HLT_PFJetFwd500", "HLT_PFJetFwd60", "HLT_PFJetFwd80", "HLT_PFMET100_PFMHT100_IDTight_CaloBTagCSV_3p1", "HLT_PFMET110_PFMHT110_IDTight", "HLT_PFMET110_PFMHT110_IDTight_CaloBTagCSV_3p1", "HLT_PFMET120_PFMHT120_IDTight", "HLT_PFMET120_PFMHT120_IDTight_CaloBTagCSV_3p1", "HLT_PFMET120_PFMHT120_IDTight_PFHT60", "HLT_PFMET130_PFMHT130_IDTight", "HLT_PFMET130_PFMHT130_IDTight_CaloBTagCSV_3p1", "HLT_PFMET140_PFMHT140_IDTight", "HLT_PFMET140_PFMHT140_IDTight_CaloBTagCSV_3p1", "HLT_PFMET200_HBHE_BeamHaloCleaned", "HLT_PFMET200_HBHECleaned", "HLT_PFMET200_NotCleaned", "HLT_PFMET250_HBHECleaned", "HLT_PFMET300_HBHECleaned", "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight_PFHT60", "HLT_PFMETNoMu130_PFMHTNoMu130_IDTight", "HLT_PFMETNoMu140_PFMHTNoMu140_IDTight", "HLT_PFMETTypeOne110_PFMHT110_IDTight", "HLT_PFMETTypeOne120_PFMHT120_IDTight", "HLT_PFMETTypeOne120_PFMHT120_IDTight_PFHT60", "HLT_PFMETTypeOne130_PFMHT130_IDTight", "HLT_PFMETTypeOne140_PFMHT140_IDTight", "HLT_PFMETTypeOne200_HBHE_BeamHaloCleaned", "HLT_Photon120", "HLT_Photon120_R9Id90_HE10_IsoM", "HLT_Photon150", "HLT_Photon165_R9Id90_HE10_IsoM", "HLT_Photon175", "HLT_Photon200", "HLT_Photon20_HoverELoose", "HLT_Photon25", "HLT_Photon300_NoHE", "HLT_Photon30_HoverELoose", "HLT_Photon33", "HLT_Photon40_HoverELoose", "HLT_Photon50", "HLT_Photon50_HoverELoose", "HLT_Photon50_R9Id90_HE10_IsoM", "HLT_Photon60_HoverELoose", "HLT_Photon60_R9Id90_CaloIdL_IsoL", "HLT_Photon60_R9Id90_CaloIdL_IsoL_DisplacedIdL", "HLT_Photon60_R9Id90_CaloIdL_IsoL_DisplacedIdL_PFHT350MinPFJet15", "HLT_Photon75", "HLT_Photon75_R9Id90_HE10_IsoM", "HLT_Photon90", "HLT_Photon90_R9Id90_HE10_IsoM", "HLT_Physics", "HLT_Physics_part0", "HLT_Physics_part1", "HLT_Physics_part2", "HLT_Physics_part3", "HLT_Physics_part4", "HLT_Physics_part5", "HLT_Physics_part6", "HLT_Physics_part7", "HLT_Random", "HLT_Rsq0p35", "HLT_Rsq0p40", "HLT_RsqMR300_Rsq0p09_MR200", "HLT_RsqMR300_Rsq0p09_MR200_4jet", "HLT_RsqMR320_Rsq0p09_MR200", "HLT_RsqMR320_Rsq0p09_MR200_4jet", "HLT_SingleJet30_Mu12_SinglePFJet40", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_IsoTau15", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_IsoTau15_Charge1", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_Tau15", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_Tau15_Charge1", "HLT_TkMu100", "HLT_Trimuon5_3p5_2_Upsilon_Muon", "HLT_TripleJet110_35_35_Mjj650_PFMET110", "HLT_TripleJet110_35_35_Mjj650_PFMET120", "HLT_TripleJet110_35_35_Mjj650_PFMET130", "HLT_TripleMu_10_5_5_DZ", "HLT_TripleMu_12_10_5", "HLT_TripleMu_5_3_3_Mass3p8to60_DZ", "HLT_TriplePhoton_20_20_20_CaloIdLV2", "HLT_TriplePhoton_20_20_20_CaloIdLV2_R9IdVL", "HLT_TriplePhoton_30_30_10_CaloIdLV2", "HLT_TriplePhoton_30_30_10_CaloIdLV2_R9IdVL", "HLT_TriplePhoton_35_35_5_CaloIdLV2_R9IdVL", "HLT_TrkMu12_DoubleTrkMu5NoFiltersNoVtx", "HLT_TrkMu16_DoubleTrkMu6NoFiltersNoVtx", "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", "HLT_UncorrectedJetE30_NoBPTX", "HLT_UncorrectedJetE30_NoBPTX3BX", "HLT_UncorrectedJetE60_NoBPTX3BX", "HLT_UncorrectedJetE70_NoBPTX3BX", "HLT_VBF_DoubleLooseChargedIsoPFTau20_Trk1_eta2p1_Reg", "HLT_VBF_DoubleMediumChargedIsoPFTau20_Trk1_eta2p1_Reg", "HLT_VBF_DoubleTightChargedIsoPFTau20_Trk1_eta2p1_Reg", "HLT_ZeroBias", "HLT_ZeroBias_FirstBXAfterTrain", "HLT_ZeroBias_FirstCollisionAfterAbortGap", "HLT_ZeroBias_FirstCollisionInTrain", "HLT_ZeroBias_IsolatedBunches", "HLT_ZeroBias_LastCollisionInTrain", "HLT_ZeroBias_part0", "HLT_ZeroBias_part1", "HLT_ZeroBias_part2", "HLT_ZeroBias_part3", "HLT_ZeroBias_part4", "HLT_ZeroBias_part5", "HLT_ZeroBias_part6", "HLT_ZeroBias_part7", ]), ]) samples_2017["/DoubleMuon/Run2017F-31Mar2018-v1/MINIAOD"] = OD([ ("type", "data"), ("sample_category", "data_obs"), ("process_name_specific", "DoubleMuon_Run2017F_31Mar2018_v1"), ("nof_files", 39), ("nof_db_files", 847), ("nof_events", { }), ("nof_tree_events", 75300854), ("nof_db_events", 79756560), ("fsize_local", 42812136691), # 42.81GB, avg file size 1.10GB ("fsize_db", 2739302963269), # 2.74TB, avg file size 3.23GB ("use_it", True), ("triggers", ['2mu', '3mu']), ("has_LHE", False), ("nof_PSweights", 0), ("LHE_set", ""), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2020Dec27_woPresel_nom_all_hh_multilepton/ntuples/DoubleMuon_Run2017F_31Mar2018_v1"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ ]), ("missing_from_superset", [ ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ "HLT_AK4CaloJet100", "HLT_AK4CaloJet120", "HLT_AK4CaloJet30", "HLT_AK4CaloJet40", "HLT_AK4CaloJet50", "HLT_AK4CaloJet80", "HLT_AK4PFJet100", "HLT_AK4PFJet120", "HLT_AK4PFJet30", "HLT_AK4PFJet50", "HLT_AK4PFJet80", "HLT_AK8PFHT750_TrimMass50", "HLT_AK8PFHT800_TrimMass50", "HLT_AK8PFHT850_TrimMass50", "HLT_AK8PFHT900_TrimMass50", "HLT_AK8PFJet140", "HLT_AK8PFJet200", "HLT_AK8PFJet260", "HLT_AK8PFJet320", "HLT_AK8PFJet330_PFAK8BTagCSV_p1", "HLT_AK8PFJet330_PFAK8BTagCSV_p17", "HLT_AK8PFJet360_TrimMass30", "HLT_AK8PFJet380_TrimMass30", "HLT_AK8PFJet40", "HLT_AK8PFJet400", "HLT_AK8PFJet400_TrimMass30", "HLT_AK8PFJet420_TrimMass30", "HLT_AK8PFJet450", "HLT_AK8PFJet500", "HLT_AK8PFJet550", "HLT_AK8PFJet60", "HLT_AK8PFJet80", "HLT_AK8PFJetFwd140", "HLT_AK8PFJetFwd200", "HLT_AK8PFJetFwd260", "HLT_AK8PFJetFwd320", "HLT_AK8PFJetFwd40", "HLT_AK8PFJetFwd400", "HLT_AK8PFJetFwd450", "HLT_AK8PFJetFwd500", "HLT_AK8PFJetFwd60", "HLT_AK8PFJetFwd80", "HLT_BTagMu_AK4DiJet110_Mu5", "HLT_BTagMu_AK4DiJet170_Mu5", "HLT_BTagMu_AK4DiJet20_Mu5", "HLT_BTagMu_AK4DiJet40_Mu5", "HLT_BTagMu_AK4DiJet70_Mu5", "HLT_BTagMu_AK4Jet300_Mu5", "HLT_BTagMu_AK8DiJet170_Mu5", "HLT_BTagMu_AK8Jet300_Mu5", "HLT_CaloJet500_NoJetID", "HLT_CaloJet550_NoJetID", "HLT_CaloMET100_HBHECleaned", "HLT_CaloMET100_NotCleaned", "HLT_CaloMET110_NotCleaned", "HLT_CaloMET250_HBHECleaned", "HLT_CaloMET250_NotCleaned", "HLT_CaloMET300_HBHECleaned", "HLT_CaloMET350_HBHECleaned", "HLT_CaloMET70_HBHECleaned", "HLT_CaloMET80_HBHECleaned", "HLT_CaloMET80_NotCleaned", "HLT_CaloMET90_HBHECleaned", "HLT_CaloMET90_NotCleaned", "HLT_CaloMHT90", "HLT_DiEle27_WPTightCaloOnly_L1DoubleEG", "HLT_DiJet110_35_Mjj650_PFMET110", "HLT_DiJet110_35_Mjj650_PFMET120", "HLT_DiJet110_35_Mjj650_PFMET130", "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", "HLT_DiMu9_Ele9_CaloIdL_TrackIdL_DZ", "HLT_Dimuon0_Jpsi", "HLT_Dimuon0_Jpsi3p5_Muon2", "HLT_Dimuon0_Jpsi_L1_4R_0er1p5R", "HLT_Dimuon0_Jpsi_L1_NoOS", "HLT_Dimuon0_Jpsi_NoVertexing", "HLT_Dimuon0_Jpsi_NoVertexing_L1_4R_0er1p5R", "HLT_Dimuon0_Jpsi_NoVertexing_NoOS", "HLT_Dimuon0_LowMass", "HLT_Dimuon0_LowMass_L1_0er1p5", "HLT_Dimuon0_LowMass_L1_0er1p5R", "HLT_Dimuon0_LowMass_L1_4", "HLT_Dimuon0_LowMass_L1_4R", "HLT_Dimuon0_LowMass_L1_TM530", "HLT_Dimuon0_Upsilon_L1_4p5", "HLT_Dimuon0_Upsilon_L1_4p5er2p0", "HLT_Dimuon0_Upsilon_L1_4p5er2p0M", "HLT_Dimuon0_Upsilon_L1_4p5NoOS", "HLT_Dimuon0_Upsilon_L1_5", "HLT_Dimuon0_Upsilon_L1_5M", "HLT_Dimuon0_Upsilon_Muon_L1_TM0", "HLT_Dimuon0_Upsilon_Muon_NoL1Mass", "HLT_Dimuon0_Upsilon_NoVertexing", "HLT_Dimuon10_PsiPrime_Barrel_Seagulls", "HLT_Dimuon10_Upsilon_Barrel_Seagulls", "HLT_Dimuon12_Upsilon_eta1p5", "HLT_Dimuon14_Phi_Barrel_Seagulls", "HLT_Dimuon18_PsiPrime", "HLT_Dimuon18_PsiPrime_noCorrL1", "HLT_Dimuon20_Jpsi_Barrel_Seagulls", "HLT_Dimuon24_Phi_noCorrL1", "HLT_Dimuon24_Upsilon_noCorrL1", "HLT_Dimuon25_Jpsi", "HLT_Dimuon25_Jpsi_noCorrL1", "HLT_DiPFJet15_FBEta3_NoCaloMatched", "HLT_DiPFJet15_NoCaloMatched", "HLT_DiPFJet25_FBEta3_NoCaloMatched", "HLT_DiPFJet25_NoCaloMatched", "HLT_DiPFJetAve100_HFJEC", "HLT_DiPFJetAve140", "HLT_DiPFJetAve15_HFJEC", "HLT_DiPFJetAve160_HFJEC", "HLT_DiPFJetAve200", "HLT_DiPFJetAve220_HFJEC", "HLT_DiPFJetAve25_HFJEC", "HLT_DiPFJetAve260", "HLT_DiPFJetAve300_HFJEC", "HLT_DiPFJetAve320", "HLT_DiPFJetAve35_HFJEC", "HLT_DiPFJetAve40", "HLT_DiPFJetAve400", "HLT_DiPFJetAve500", "HLT_DiPFJetAve60", "HLT_DiPFJetAve60_HFJEC", "HLT_DiPFJetAve80", "HLT_DiPFJetAve80_HFJEC", "HLT_Diphoton30_18_PVrealAND_R9Id_AND_IsoCaloId_AND_HE_R9Id_NoPixelVeto_Mass55", "HLT_Diphoton30_18_PVrealAND_R9Id_AND_IsoCaloId_AND_HE_R9Id_PixelVeto_Mass55", "HLT_Diphoton30_22_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", "HLT_Diphoton30_22_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass95", "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_NoPixelVeto_Mass55", "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_PixelVeto_Mass55", "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_NoPixelVeto_Mass55", "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_PixelVeto_Mass55", "HLT_DiSC30_18_EIso_AND_HE_Mass70", "HLT_DoubleEle24_eta2p1_WPTight_Gsf", "HLT_DoubleEle25_CaloIdL_MW", "HLT_DoubleEle27_CaloIdL_MW", "HLT_DoubleEle33_CaloIdL_MW", "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_DZ_PFHT350", "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT350", "HLT_DoubleIsoMu20_eta2p1", "HLT_DoubleIsoMu24_eta2p1", "HLT_DoubleL2Mu50", "HLT_DoubleLooseChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMu20_7_Mass0to30_L1_DM4", "HLT_DoubleMu20_7_Mass0to30_L1_DM4EG", "HLT_DoubleMu20_7_Mass0to30_Photon23", "HLT_DoubleMu2_Jpsi_DoubleTkMu0_Phi", "HLT_DoubleMu2_Jpsi_DoubleTrk1_Phi", "HLT_DoubleMu3_DCA_PFMET50_PFMHT60", "HLT_DoubleMu3_DoubleEle7p5_CaloIdL_TrackIdL_Upsilon", "HLT_DoubleMu3_DZ_PFMET50_PFMHT60", "HLT_DoubleMu3_DZ_PFMET70_PFMHT70", "HLT_DoubleMu3_DZ_PFMET90_PFMHT90", "HLT_DoubleMu3_TkMu_DsTau3Mu", "HLT_DoubleMu3_Trk_Tau3mu", "HLT_DoubleMu3_Trk_Tau3mu_NoL1Mass", "HLT_DoubleMu43NoFiltersNoVtx", "HLT_DoubleMu48NoFiltersNoVtx", "HLT_DoubleMu4_3_Bs", "HLT_DoubleMu4_3_Jpsi_Displaced", "HLT_DoubleMu4_Jpsi_Displaced", "HLT_DoubleMu4_Jpsi_NoVertexing", "HLT_DoubleMu4_JpsiTrk_Displaced", "HLT_DoubleMu4_JpsiTrkTrk_Displaced", "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", "HLT_DoubleMu4_Mass8_DZ_PFHT350", "HLT_DoubleMu4_PsiPrimeTrk_Displaced", "HLT_DoubleMu5_Upsilon_DoubleEle3_CaloIdL_TrackIdL", "HLT_DoubleMu8_Mass8_PFHT350", "HLT_DoublePFJets100_CaloBTagCSV_p33", "HLT_DoublePFJets100MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_DoublePFJets116MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_DoublePFJets128MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_DoublePFJets200_CaloBTagCSV_p33", "HLT_DoublePFJets350_CaloBTagCSV_p33", "HLT_DoublePFJets40_CaloBTagCSV_p33", "HLT_DoublePhoton33_CaloIdL", "HLT_DoublePhoton70", "HLT_DoublePhoton85", "HLT_DoubleTightChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_EcalCalibration", "HLT_ECALHT800", "HLT_Ele115_CaloIdVT_GsfTrkIdT", "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele135_CaloIdVT_GsfTrkIdT", "HLT_Ele145_CaloIdVT_GsfTrkIdT", "HLT_Ele15_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele15_Ele8_CaloIdL_TrackIdL_IsoVL", "HLT_Ele15_IsoVVVL_PFHT450", "HLT_Ele15_IsoVVVL_PFHT450_CaloBTagCSV_4p5", "HLT_Ele15_IsoVVVL_PFHT450_PFMET50", "HLT_Ele15_IsoVVVL_PFHT600", "HLT_Ele15_WPLoose_Gsf", "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", "HLT_Ele17_WPLoose_Gsf", "HLT_Ele200_CaloIdVT_GsfTrkIdT", "HLT_Ele20_eta2p1_WPLoose_Gsf", "HLT_Ele20_WPLoose_Gsf", "HLT_Ele20_WPTight_Gsf", "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Ele24_eta2p1_WPTight_Gsf_LooseChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_LooseChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_MediumChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_MediumChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_TightChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_TightChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele250_CaloIdVT_GsfTrkIdT", "HLT_Ele27_Ele37_CaloIdL_MW", "HLT_Ele27_WPTight_Gsf", "HLT_Ele28_eta2p1_WPTight_Gsf_HT150", "HLT_Ele28_HighEta_SC20_Mass55", "HLT_Ele300_CaloIdVT_GsfTrkIdT", "HLT_Ele30_eta2p1_WPTight_Gsf_CentralPFJet35_EleCleaned", "HLT_Ele32_WPTight_Gsf", "HLT_Ele32_WPTight_Gsf_L1DoubleEG", "HLT_Ele35_WPTight_Gsf", "HLT_Ele35_WPTight_Gsf_L1EGMT", "HLT_Ele38_WPTight_Gsf", "HLT_Ele40_WPTight_Gsf", "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", "HLT_Ele50_IsoVVVL_PFHT450", "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", "HLT_FullTrack_Multiplicity100", "HLT_FullTrack_Multiplicity130", "HLT_FullTrack_Multiplicity155", "HLT_FullTrack_Multiplicity85", "HLT_HcalCalibration", "HLT_HcalIsolatedbunch", "HLT_HcalNZS", "HLT_HcalPhiSym", "HLT_HISinglePhoton10_Eta3p1ForPPRef", "HLT_HISinglePhoton20_Eta3p1ForPPRef", "HLT_HISinglePhoton30_Eta3p1ForPPRef", "HLT_HISinglePhoton40_Eta3p1ForPPRef", "HLT_HISinglePhoton50_Eta3p1ForPPRef", "HLT_HISinglePhoton60_Eta3p1ForPPRef", "HLT_HT300_Beamspot", "HLT_HT400_DisplacedDijet40_DisplacedTrack", "HLT_HT425", "HLT_HT430_DisplacedDijet40_DisplacedTrack", "HLT_HT430_DisplacedDijet60_DisplacedTrack", "HLT_HT430_DisplacedDijet80_DisplacedTrack", "HLT_HT450_Beamspot", "HLT_HT550_DisplacedDijet60_Inclusive", "HLT_HT550_DisplacedDijet80_Inclusive", "HLT_HT650_DisplacedDijet60_Inclusive", "HLT_HT650_DisplacedDijet80_Inclusive", "HLT_HT750_DisplacedDijet80_Inclusive", "HLT_IsoMu20", "HLT_IsoMu20_eta2p1_LooseChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_LooseChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu20_eta2p1_MediumChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_MediumChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu20_eta2p1_TightChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_TightChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu24", "HLT_IsoMu24_eta2p1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau40_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau40_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu27", "HLT_IsoMu27_LooseChargedIsoPFTau20_SingleL1", "HLT_IsoMu27_MediumChargedIsoPFTau20_SingleL1", "HLT_IsoMu27_TightChargedIsoPFTau20_SingleL1", "HLT_IsoMu30", "HLT_IsoTrackHB", "HLT_IsoTrackHE", "HLT_L1_CDC_SingleMu_3_er1p2_TOP120_DPHI2p618_3p142", "HLT_L1_DoubleJet30_Mass_Min400_Mu10", "HLT_L1ETMHadSeeds", "HLT_L1MinimumBiasHF0OR", "HLT_L1MinimumBiasHF_OR", "HLT_L1NotBptxOR", "HLT_L1SingleMu18", "HLT_L1SingleMu25", "HLT_L1UnpairedBunchBptxMinus", "HLT_L1UnpairedBunchBptxPlus", "HLT_L2Mu10", "HLT_L2Mu10_NoVertex_NoBPTX", "HLT_L2Mu10_NoVertex_NoBPTX3BX", "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX", "HLT_L2Mu50", "HLT_MediumChargedIsoPFTau180HighPtRelaxedIso_Trk50_eta2p1", "HLT_MediumChargedIsoPFTau180HighPtRelaxedIso_Trk50_eta2p1_1pr", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET100", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET110", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET120", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET130", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET90", "HLT_MET105_IsoTrk50", "HLT_MET120_IsoTrk50", "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu130_PFMHTNoMu130_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu140_PFMHTNoMu140_IDTight", "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", "HLT_Mu12", "HLT_Mu12_DoublePFJets100_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets200_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets350_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets40_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets40MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_Mu12_DoublePFJets54MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_Mu12_DoublePFJets62MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_Mu12_DoublePhoton20", "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Mu15", "HLT_Mu15_IsoVVVL_PFHT450", "HLT_Mu15_IsoVVVL_PFHT450_CaloBTagCSV_4p5", "HLT_Mu15_IsoVVVL_PFHT450_PFMET50", "HLT_Mu15_IsoVVVL_PFHT600", "HLT_Mu17", "HLT_Mu17_Photon30_IsoCaloId", "HLT_Mu17_TrkIsoVVL", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ_Mass3p8", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ_Mass8", "HLT_Mu18_Mu9", "HLT_Mu18_Mu9_DZ", "HLT_Mu18_Mu9_SameSign", "HLT_Mu18_Mu9_SameSign_DZ", "HLT_Mu19", "HLT_Mu19_TrkIsoVVL", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL_DZ", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL_DZ_Mass3p8", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL_DZ_Mass8", "HLT_Mu20", "HLT_Mu20_Mu10", "HLT_Mu20_Mu10_DZ", "HLT_Mu20_Mu10_SameSign", "HLT_Mu20_Mu10_SameSign_DZ", "HLT_Mu20_TkMu0_Phi", "HLT_Mu23_Mu12", "HLT_Mu23_Mu12_DZ", "HLT_Mu23_Mu12_SameSign", "HLT_Mu23_Mu12_SameSign_DZ", "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Mu25_TkMu0_Onia", "HLT_Mu25_TkMu0_Phi", "HLT_Mu27", "HLT_Mu27_Ele37_CaloIdL_MW", "HLT_Mu30_TkMu0_Onia", "HLT_Mu37_Ele27_CaloIdL_MW", "HLT_Mu37_TkMu27", "HLT_Mu3_PFJet40", "HLT_Mu43NoFiltersNoVtx_Photon43_CaloIdL", "HLT_Mu48NoFiltersNoVtx_Photon48_CaloIdL", "HLT_Mu50", "HLT_Mu50_IsoVVVL_PFHT450", "HLT_Mu55", "HLT_Mu7p5_L2Mu2_Jpsi", "HLT_Mu7p5_L2Mu2_Upsilon", "HLT_Mu7p5_Track2_Jpsi", "HLT_Mu7p5_Track2_Upsilon", "HLT_Mu7p5_Track3p5_Jpsi", "HLT_Mu7p5_Track3p5_Upsilon", "HLT_Mu7p5_Track7_Jpsi", "HLT_Mu7p5_Track7_Upsilon", "HLT_Mu8", "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", "HLT_Mu8_DiEle12_CaloIdL_TrackIdL_DZ", "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT350", "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT350_DZ", "HLT_Mu8_TrkIsoVVL", "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_OldMu100", "HLT_PFHT1050", "HLT_PFHT180", "HLT_PFHT250", "HLT_PFHT300PT30_QuadPFJet_75_60_45_40", "HLT_PFHT300PT30_QuadPFJet_75_60_45_40_TriplePFBTagCSV_3p0", "HLT_PFHT350", "HLT_PFHT350MinPFJet15", "HLT_PFHT370", "HLT_PFHT380_SixPFJet32", "HLT_PFHT380_SixPFJet32_DoublePFBTagCSV_2p2", "HLT_PFHT380_SixPFJet32_DoublePFBTagDeepCSV_2p2", "HLT_PFHT430", "HLT_PFHT430_SixPFJet40", "HLT_PFHT430_SixPFJet40_PFBTagCSV_1p5", "HLT_PFHT500_PFMET100_PFMHT100_IDTight", "HLT_PFHT500_PFMET110_PFMHT110_IDTight", "HLT_PFHT510", "HLT_PFHT590", "HLT_PFHT680", "HLT_PFHT700_PFMET85_PFMHT85_IDTight", "HLT_PFHT700_PFMET95_PFMHT95_IDTight", "HLT_PFHT780", "HLT_PFHT800_PFMET75_PFMHT75_IDTight", "HLT_PFHT800_PFMET85_PFMHT85_IDTight", "HLT_PFHT890", "HLT_PFJet140", "HLT_PFJet200", "HLT_PFJet260", "HLT_PFJet320", "HLT_PFJet40", "HLT_PFJet400", "HLT_PFJet450", "HLT_PFJet500", "HLT_PFJet550", "HLT_PFJet60", "HLT_PFJet80", "HLT_PFJetFwd140", "HLT_PFJetFwd200", "HLT_PFJetFwd260", "HLT_PFJetFwd320", "HLT_PFJetFwd40", "HLT_PFJetFwd400", "HLT_PFJetFwd450", "HLT_PFJetFwd500", "HLT_PFJetFwd60", "HLT_PFJetFwd80", "HLT_PFMET100_PFMHT100_IDTight_CaloBTagCSV_3p1", "HLT_PFMET100_PFMHT100_IDTight_PFHT60", "HLT_PFMET110_PFMHT110_IDTight", "HLT_PFMET110_PFMHT110_IDTight_CaloBTagCSV_3p1", "HLT_PFMET120_PFMHT120_IDTight", "HLT_PFMET120_PFMHT120_IDTight_CaloBTagCSV_3p1", "HLT_PFMET120_PFMHT120_IDTight_PFHT60", "HLT_PFMET130_PFMHT130_IDTight", "HLT_PFMET130_PFMHT130_IDTight_CaloBTagCSV_3p1", "HLT_PFMET140_PFMHT140_IDTight", "HLT_PFMET140_PFMHT140_IDTight_CaloBTagCSV_3p1", "HLT_PFMET200_HBHE_BeamHaloCleaned", "HLT_PFMET200_HBHECleaned", "HLT_PFMET200_NotCleaned", "HLT_PFMET250_HBHECleaned", "HLT_PFMET300_HBHECleaned", "HLT_PFMETNoMu100_PFMHTNoMu100_IDTight_PFHT60", "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight_PFHT60", "HLT_PFMETNoMu130_PFMHTNoMu130_IDTight", "HLT_PFMETNoMu140_PFMHTNoMu140_IDTight", "HLT_PFMETTypeOne100_PFMHT100_IDTight_PFHT60", "HLT_PFMETTypeOne110_PFMHT110_IDTight", "HLT_PFMETTypeOne120_PFMHT120_IDTight", "HLT_PFMETTypeOne120_PFMHT120_IDTight_PFHT60", "HLT_PFMETTypeOne130_PFMHT130_IDTight", "HLT_PFMETTypeOne140_PFMHT140_IDTight", "HLT_PFMETTypeOne200_HBHE_BeamHaloCleaned", "HLT_Photon120", "HLT_Photon120_R9Id90_HE10_IsoM", "HLT_Photon150", "HLT_Photon165_R9Id90_HE10_IsoM", "HLT_Photon175", "HLT_Photon20", "HLT_Photon200", "HLT_Photon20_HoverELoose", "HLT_Photon25", "HLT_Photon300_NoHE", "HLT_Photon30_HoverELoose", "HLT_Photon33", "HLT_Photon40_HoverELoose", "HLT_Photon50", "HLT_Photon50_HoverELoose", "HLT_Photon50_R9Id90_HE10_IsoM", "HLT_Photon50_R9Id90_HE10_IsoM_EBOnly_PFJetsMJJ300DEta3_PFMET50", "HLT_Photon60_HoverELoose", "HLT_Photon60_R9Id90_CaloIdL_IsoL", "HLT_Photon60_R9Id90_CaloIdL_IsoL_DisplacedIdL", "HLT_Photon60_R9Id90_CaloIdL_IsoL_DisplacedIdL_PFHT350MinPFJet15", "HLT_Photon75", "HLT_Photon75_R9Id90_HE10_IsoM", "HLT_Photon75_R9Id90_HE10_IsoM_EBOnly_PFJetsMJJ300DEta3", "HLT_Photon75_R9Id90_HE10_IsoM_EBOnly_PFJetsMJJ600DEta3", "HLT_Photon90", "HLT_Photon90_R9Id90_HE10_IsoM", "HLT_Physics", "HLT_Physics_part0", "HLT_Physics_part1", "HLT_Physics_part2", "HLT_Physics_part3", "HLT_Physics_part4", "HLT_Physics_part5", "HLT_Physics_part6", "HLT_Physics_part7", "HLT_QuadPFJet103_88_75_15", "HLT_QuadPFJet103_88_75_15_BTagCSV_p013_VBF2", "HLT_QuadPFJet103_88_75_15_DoubleBTagCSV_p013_p08_VBF1", "HLT_QuadPFJet105_88_76_15", "HLT_QuadPFJet105_88_76_15_BTagCSV_p013_VBF2", "HLT_QuadPFJet105_90_76_15_DoubleBTagCSV_p013_p08_VBF1", "HLT_QuadPFJet111_90_80_15", "HLT_QuadPFJet111_90_80_15_BTagCSV_p013_VBF2", "HLT_QuadPFJet111_90_80_15_DoubleBTagCSV_p013_p08_VBF1", "HLT_QuadPFJet98_83_71_15", "HLT_QuadPFJet98_83_71_15_BTagCSV_p013_VBF2", "HLT_QuadPFJet98_83_71_15_DoubleBTagCSV_p013_p08_VBF1", "HLT_Random", "HLT_Rsq0p35", "HLT_Rsq0p40", "HLT_RsqMR300_Rsq0p09_MR200", "HLT_RsqMR300_Rsq0p09_MR200_4jet", "HLT_RsqMR320_Rsq0p09_MR200", "HLT_RsqMR320_Rsq0p09_MR200_4jet", "HLT_SingleJet30_Mu12_SinglePFJet40", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_IsoTau15", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_IsoTau15_Charge1", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_Tau15", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_Tau15_Charge1", "HLT_TkMu100", "HLT_Trimuon5_3p5_2_Upsilon_Muon", "HLT_TrimuonOpen_5_3p5_2_Upsilon_Muon", "HLT_TripleJet110_35_35_Mjj650_PFMET110", "HLT_TripleJet110_35_35_Mjj650_PFMET120", "HLT_TripleJet110_35_35_Mjj650_PFMET130", "HLT_TripleMu_10_5_5_DZ", "HLT_TripleMu_12_10_5", "HLT_TripleMu_5_3_3_Mass3p8to60_DCA", "HLT_TripleMu_5_3_3_Mass3p8to60_DZ", "HLT_TriplePhoton_20_20_20_CaloIdLV2", "HLT_TriplePhoton_20_20_20_CaloIdLV2_R9IdVL", "HLT_TriplePhoton_30_30_10_CaloIdLV2", "HLT_TriplePhoton_30_30_10_CaloIdLV2_R9IdVL", "HLT_TriplePhoton_35_35_5_CaloIdLV2_R9IdVL", "HLT_TrkMu12_DoubleTrkMu5NoFiltersNoVtx", "HLT_TrkMu16_DoubleTrkMu6NoFiltersNoVtx", "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", "HLT_UncorrectedJetE30_NoBPTX", "HLT_UncorrectedJetE30_NoBPTX3BX", "HLT_UncorrectedJetE60_NoBPTX3BX", "HLT_UncorrectedJetE70_NoBPTX3BX", "HLT_VBF_DoubleLooseChargedIsoPFTau20_Trk1_eta2p1_Reg", "HLT_VBF_DoubleMediumChargedIsoPFTau20_Trk1_eta2p1_Reg", "HLT_VBF_DoubleTightChargedIsoPFTau20_Trk1_eta2p1_Reg", "HLT_ZeroBias", "HLT_ZeroBias_Beamspot", "HLT_ZeroBias_FirstBXAfterTrain", "HLT_ZeroBias_FirstCollisionAfterAbortGap", "HLT_ZeroBias_FirstCollisionInTrain", "HLT_ZeroBias_IsolatedBunches", "HLT_ZeroBias_LastCollisionInTrain", "HLT_ZeroBias_part0", "HLT_ZeroBias_part1", "HLT_ZeroBias_part2", "HLT_ZeroBias_part3", "HLT_ZeroBias_part4", "HLT_ZeroBias_part5", "HLT_ZeroBias_part6", "HLT_ZeroBias_part7", ]), ]) samples_2017["/MuonEG/Run2017B-31Mar2018-v1/MINIAOD"] = OD([ ("type", "data"), ("sample_category", "data_obs"), ("process_name_specific", "MuonEG_Run2017B_31Mar2018_v1"), ("nof_files", 3), ("nof_db_files", 48), ("nof_events", { }), ("nof_tree_events", 4153318), ("nof_db_events", 4453465), ("fsize_local", 2643309990), # 2.64GB, avg file size 881.10MB ("fsize_db", 151287246815), # 151.29GB, avg file size 3.15GB ("use_it", True), ("triggers", ['1e1mu', '2e1mu', '1e2mu']), ("has_LHE", False), ("nof_PSweights", 0), ("LHE_set", ""), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2020Dec27_woPresel_nom_all_hh_multilepton/ntuples/MuonEG_Run2017B_31Mar2018_v1"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ ]), ("missing_from_superset", [ ]), ("missing_hlt_paths", [ "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", "HLT_Ele32_WPTight_Gsf", "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ_Mass3p8", "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", "HLT_Mu3_PFJet40", ]), ("hlt_paths", [ "HLT_AK4CaloJet100", "HLT_AK4CaloJet120", "HLT_AK4CaloJet30", "HLT_AK4CaloJet40", "HLT_AK4CaloJet50", "HLT_AK4CaloJet80", "HLT_AK4PFJet100", "HLT_AK4PFJet120", "HLT_AK4PFJet30", "HLT_AK4PFJet50", "HLT_AK4PFJet80", "HLT_AK8PFJet140", "HLT_AK8PFJet200", "HLT_AK8PFJet260", "HLT_AK8PFJet320", "HLT_AK8PFJet40", "HLT_AK8PFJet400", "HLT_AK8PFJet450", "HLT_AK8PFJet500", "HLT_AK8PFJet550", "HLT_AK8PFJet60", "HLT_AK8PFJet80", "HLT_BTagMu_AK4DiJet110_Mu5", "HLT_BTagMu_AK4DiJet170_Mu5", "HLT_BTagMu_AK4DiJet20_Mu5", "HLT_BTagMu_AK4DiJet40_Mu5", "HLT_BTagMu_AK4DiJet70_Mu5", "HLT_BTagMu_AK4Jet300_Mu5", "HLT_BTagMu_AK8DiJet170_Mu5", "HLT_BTagMu_AK8Jet300_Mu5", "HLT_CaloJet500_NoJetID", "HLT_CaloJet550_NoJetID", "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", "HLT_DiMu9_Ele9_CaloIdL_TrackIdL_DZ", "HLT_Dimuon0_LowMass_L1_0er1p5R", "HLT_Dimuon0_LowMass_L1_4R", "HLT_Dimuon10_PsiPrime_Barrel_Seagulls", "HLT_Dimuon12_Upsilon_eta1p5", "HLT_Dimuon14_Phi_Barrel_Seagulls", "HLT_Dimuon18_PsiPrime", "HLT_Dimuon20_Jpsi_Barrel_Seagulls", "HLT_Dimuon25_Jpsi", "HLT_DiPFJet15_FBEta3_NoCaloMatched", "HLT_DiPFJet15_NoCaloMatched", "HLT_DiPFJet25_FBEta3_NoCaloMatched", "HLT_DiPFJet25_NoCaloMatched", "HLT_DiPFJetAve15_HFJEC", "HLT_DiPFJetAve25_HFJEC", "HLT_DiPFJetAve35_HFJEC", "HLT_Diphoton30_22_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", "HLT_Diphoton30_22_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass95", "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_NoPixelVeto_Mass55", "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_PixelVeto_Mass55", "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_NoPixelVeto_Mass55", "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_PixelVeto_Mass55", "HLT_DiSC30_18_EIso_AND_HE_Mass70", "HLT_DoubleEle33_CaloIdL_MW", "HLT_DoubleLooseChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMu20_7_Mass0to30_L1_DM4EG", "HLT_DoubleMu20_7_Mass0to30_Photon23", "HLT_DoubleMu3_Trk_Tau3mu", "HLT_DoubleMu4_3_Bs", "HLT_DoubleMu4_3_Jpsi_Displaced", "HLT_DoubleMu4_Jpsi_Displaced", "HLT_DoubleMu4_Jpsi_NoVertexing", "HLT_DoubleMu4_JpsiTrk_Displaced", "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", "HLT_DoubleMu4_PsiPrimeTrk_Displaced", "HLT_DoublePhoton33_CaloIdL", "HLT_DoublePhoton70", "HLT_DoublePhoton85", "HLT_DoubleTightChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_EcalCalibration", "HLT_ECALHT800", "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Ele24_eta2p1_WPTight_Gsf_LooseChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_LooseChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_MediumChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_MediumChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_TightChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_TightChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele27_WPTight_Gsf", "HLT_Ele28_eta2p1_WPTight_Gsf_HT150", "HLT_Ele30_eta2p1_WPTight_Gsf_CentralPFJet35_EleCleaned", "HLT_Ele32_WPTight_Gsf_L1DoubleEG", "HLT_Ele35_WPTight_Gsf", "HLT_Ele38_WPTight_Gsf", "HLT_Ele40_WPTight_Gsf", "HLT_FullTrack_Multiplicity105", "HLT_FullTrack_Multiplicity135", "HLT_FullTrack_Multiplicity155", "HLT_FullTrack_Multiplicity85", "HLT_HcalCalibration", "HLT_HcalIsolatedbunch", "HLT_HcalNZS", "HLT_HcalPhiSym", "HLT_HISinglePhoton10_Eta3p1ForPPRef", "HLT_HISinglePhoton20_Eta3p1ForPPRef", "HLT_HISinglePhoton30_Eta3p1ForPPRef", "HLT_HISinglePhoton40_Eta3p1ForPPRef", "HLT_HISinglePhoton50_Eta3p1ForPPRef", "HLT_HISinglePhoton60_Eta3p1ForPPRef", "HLT_HT300_Beamspot", "HLT_HT300PT30_QuadJet_75_60_45_40", "HLT_HT300PT30_QuadJet_75_60_45_40_TripeCSV_p07", "HLT_HT450_Beamspot", "HLT_IsoMu20", "HLT_IsoMu20_eta2p1_LooseChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_LooseChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu20_eta2p1_MediumChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_MediumChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu20_eta2p1_TightChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_TightChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu24", "HLT_IsoMu24_eta2p1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu27", "HLT_L1FatEvents", "HLT_L1MinimumBiasHF0OR", "HLT_L1MinimumBiasHF_OR", "HLT_L1NotBptxOR", "HLT_L1SingleMu18", "HLT_L1SingleMu25", "HLT_L1UnpairedBunchBptxMinus", "HLT_L1UnpairedBunchBptxPlus", "HLT_L2Mu10", "HLT_L2Mu10_NoVertex_NoBPTX", "HLT_L2Mu10_NoVertex_NoBPTX3BX", "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX", "HLT_MediumChargedIsoPFTau100HighPtRelaxedIso_Trk50_eta2p1_1pr", "HLT_MediumChargedIsoPFTau180HighPtRelaxedIso_Trk50_eta2p1", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET100", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET90", "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Mu17", "HLT_Mu17_TrkIsoVVL", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ_Mass8", "HLT_Mu20", "HLT_Mu20_TkMu0_Phi", "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Mu27", "HLT_Mu30_TkMu0_Onia", "HLT_Mu50", "HLT_Mu7p5_Track2_Jpsi", "HLT_Mu7p5_Track2_Upsilon", "HLT_Mu7p5_Track3p5_Jpsi", "HLT_Mu7p5_Track3p5_Upsilon", "HLT_Mu7p5_Track7_Jpsi", "HLT_Mu7p5_Track7_Upsilon", "HLT_Mu8", "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", "HLT_Mu8_DiEle12_CaloIdL_TrackIdL_DZ", "HLT_Mu8_TrkIsoVVL", "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_PFHT1050", "HLT_PFHT180", "HLT_PFHT250", "HLT_PFHT350", "HLT_PFHT370", "HLT_PFHT380_SixJet32_DoubleBTagCSV_p075", "HLT_PFHT430", "HLT_PFHT430_SixJet40_BTagCSV_p080", "HLT_PFHT500_PFMET100_PFMHT100_IDTight", "HLT_PFHT500_PFMET110_PFMHT110_IDTight", "HLT_PFHT510", "HLT_PFHT590", "HLT_PFHT680", "HLT_PFHT700_PFMET85_PFMHT85_IDTight", "HLT_PFHT700_PFMET95_PFMHT95_IDTight", "HLT_PFHT780", "HLT_PFHT800_PFMET75_PFMHT75_IDTight", "HLT_PFHT800_PFMET85_PFMHT85_IDTight", "HLT_PFHT890", "HLT_PFJet140", "HLT_PFJet200", "HLT_PFJet260", "HLT_PFJet320", "HLT_PFJet40", "HLT_PFJet400", "HLT_PFJet450", "HLT_PFJet500", "HLT_PFJet550", "HLT_PFJet60", "HLT_PFJet80", "HLT_PFMET110_PFMHT110_IDTight", "HLT_PFMET120_PFMHT120_IDTight", "HLT_PFMET130_PFMHT130_IDTight", "HLT_PFMET140_PFMHT140_IDTight", "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", "HLT_PFMETTypeOne110_PFMHT110_IDTight", "HLT_PFMETTypeOne120_PFMHT120_IDTight", "HLT_PFMETTypeOne130_PFMHT130_IDTight", "HLT_PFMETTypeOne140_PFMHT140_IDTight", "HLT_Photon120", "HLT_Photon120_R9Id90_HE10_IsoM", "HLT_Photon150", "HLT_Photon165_R9Id90_HE10_IsoM", "HLT_Photon175", "HLT_Photon200", "HLT_Photon20_HoverELoose", "HLT_Photon300_NoHE", "HLT_Photon30_HoverELoose", "HLT_Photon33", "HLT_Photon40_HoverELoose", "HLT_Photon50", "HLT_Photon50_HoverELoose", "HLT_Photon50_R9Id90_HE10_IsoM", "HLT_Photon60_HoverELoose", "HLT_Photon60_R9Id90_CaloIdL_IsoL_DisplacedIdL_PFHT350MinPFJet15", "HLT_Photon75", "HLT_Photon75_R9Id90_HE10_IsoM", "HLT_Photon90", "HLT_Photon90_R9Id90_HE10_IsoM", "HLT_Physics", "HLT_Random", "HLT_Trimuon2_Upsilon5_Muon", "HLT_TripleMu_10_5_5_DZ", "HLT_TripleMu_12_10_5", "HLT_UncorrectedJetE30_NoBPTX", "HLT_UncorrectedJetE30_NoBPTX3BX", "HLT_UncorrectedJetE60_NoBPTX3BX", "HLT_UncorrectedJetE70_NoBPTX3BX", "HLT_ZeroBias", "HLT_ZeroBias_FirstBXAfterTrain", "HLT_ZeroBias_FirstCollisionAfterAbortGap", "HLT_ZeroBias_FirstCollisionInTrain", "HLT_ZeroBias_IsolatedBunches", "HLT_ZeroBias_LastCollisionInTrain", "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_ZeroBias_part8", "HLT_ZeroBias_part9", ]), ]) samples_2017["/MuonEG/Run2017C-31Mar2018-v1/MINIAOD"] = OD([ ("type", "data"), ("sample_category", "data_obs"), ("process_name_specific", "MuonEG_Run2017C_31Mar2018_v1"), ("nof_files", 8), ("nof_db_files", 158), ("nof_events", { }), ("nof_tree_events", 14579589), ("nof_db_events", 15595214), ("fsize_local", 10358190593), # 10.36GB, avg file size 1.29GB ("fsize_db", 545138938415), # 545.14GB, avg file size 3.45GB ("use_it", True), ("triggers", ['1e1mu', '2e1mu', '1e2mu']), ("has_LHE", False), ("nof_PSweights", 0), ("LHE_set", ""), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2020Dec27_woPresel_nom_all_hh_multilepton/ntuples/MuonEG_Run2017C_31Mar2018_v1"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ ]), ("missing_from_superset", [ ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ "HLT_AK4CaloJet100", "HLT_AK4CaloJet120", "HLT_AK4CaloJet30", "HLT_AK4CaloJet40", "HLT_AK4CaloJet50", "HLT_AK4CaloJet80", "HLT_AK4PFJet100", "HLT_AK4PFJet120", "HLT_AK4PFJet30", "HLT_AK4PFJet50", "HLT_AK4PFJet80", "HLT_AK8PFHT750_TrimMass50", "HLT_AK8PFHT800_TrimMass50", "HLT_AK8PFHT850_TrimMass50", "HLT_AK8PFHT900_TrimMass50", "HLT_AK8PFJet140", "HLT_AK8PFJet200", "HLT_AK8PFJet260", "HLT_AK8PFJet320", "HLT_AK8PFJet360_TrimMass30", "HLT_AK8PFJet380_TrimMass30", "HLT_AK8PFJet40", "HLT_AK8PFJet400", "HLT_AK8PFJet400_TrimMass30", "HLT_AK8PFJet420_TrimMass30", "HLT_AK8PFJet450", "HLT_AK8PFJet500", "HLT_AK8PFJet550", "HLT_AK8PFJet60", "HLT_AK8PFJet80", "HLT_AK8PFJetFwd140", "HLT_AK8PFJetFwd200", "HLT_AK8PFJetFwd260", "HLT_AK8PFJetFwd320", "HLT_AK8PFJetFwd40", "HLT_AK8PFJetFwd400", "HLT_AK8PFJetFwd450", "HLT_AK8PFJetFwd500", "HLT_AK8PFJetFwd60", "HLT_AK8PFJetFwd80", "HLT_BTagMu_AK4DiJet110_Mu5", "HLT_BTagMu_AK4DiJet170_Mu5", "HLT_BTagMu_AK4DiJet20_Mu5", "HLT_BTagMu_AK4DiJet40_Mu5", "HLT_BTagMu_AK4DiJet70_Mu5", "HLT_BTagMu_AK4Jet300_Mu5", "HLT_BTagMu_AK8DiJet170_Mu5", "HLT_BTagMu_AK8Jet300_Mu5", "HLT_CaloJet500_NoJetID", "HLT_CaloJet550_NoJetID", "HLT_CaloMET100_HBHECleaned", "HLT_CaloMET100_NotCleaned", "HLT_CaloMET110_NotCleaned", "HLT_CaloMET250_HBHECleaned", "HLT_CaloMET250_NotCleaned", "HLT_CaloMET300_HBHECleaned", "HLT_CaloMET350_HBHECleaned", "HLT_CaloMET70_HBHECleaned", "HLT_CaloMET80_HBHECleaned", "HLT_CaloMET80_NotCleaned", "HLT_CaloMET90_HBHECleaned", "HLT_CaloMET90_NotCleaned", "HLT_CaloMHT90", "HLT_DiEle27_WPTightCaloOnly_L1DoubleEG", "HLT_DiJet110_35_Mjj650_PFMET110", "HLT_DiJet110_35_Mjj650_PFMET120", "HLT_DiJet110_35_Mjj650_PFMET130", "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", "HLT_DiMu9_Ele9_CaloIdL_TrackIdL_DZ", "HLT_Dimuon0_Jpsi", "HLT_Dimuon0_Jpsi3p5_Muon2", "HLT_Dimuon0_Jpsi_L1_4R_0er1p5R", "HLT_Dimuon0_Jpsi_L1_NoOS", "HLT_Dimuon0_Jpsi_NoVertexing", "HLT_Dimuon0_Jpsi_NoVertexing_L1_4R_0er1p5R", "HLT_Dimuon0_Jpsi_NoVertexing_NoOS", "HLT_Dimuon0_LowMass", "HLT_Dimuon0_LowMass_L1_0er1p5", "HLT_Dimuon0_LowMass_L1_0er1p5R", "HLT_Dimuon0_LowMass_L1_4", "HLT_Dimuon0_LowMass_L1_4R", "HLT_Dimuon0_LowMass_L1_TM530", "HLT_Dimuon0_Upsilon_L1_4p5", "HLT_Dimuon0_Upsilon_L1_4p5er2p0", "HLT_Dimuon0_Upsilon_L1_4p5er2p0M", "HLT_Dimuon0_Upsilon_L1_4p5NoOS", "HLT_Dimuon0_Upsilon_L1_5", "HLT_Dimuon0_Upsilon_L1_5M", "HLT_Dimuon0_Upsilon_Muon_L1_TM0", "HLT_Dimuon0_Upsilon_Muon_NoL1Mass", "HLT_Dimuon0_Upsilon_NoVertexing", "HLT_Dimuon10_PsiPrime_Barrel_Seagulls", "HLT_Dimuon10_Upsilon_Barrel_Seagulls", "HLT_Dimuon12_Upsilon_eta1p5", "HLT_Dimuon14_Phi_Barrel_Seagulls", "HLT_Dimuon18_PsiPrime", "HLT_Dimuon18_PsiPrime_noCorrL1", "HLT_Dimuon20_Jpsi_Barrel_Seagulls", "HLT_Dimuon24_Phi_noCorrL1", "HLT_Dimuon24_Upsilon_noCorrL1", "HLT_Dimuon25_Jpsi", "HLT_Dimuon25_Jpsi_noCorrL1", "HLT_DiPFJet15_FBEta3_NoCaloMatched", "HLT_DiPFJet15_NoCaloMatched", "HLT_DiPFJet25_FBEta3_NoCaloMatched", "HLT_DiPFJet25_NoCaloMatched", "HLT_DiPFJetAve100_HFJEC", "HLT_DiPFJetAve140", "HLT_DiPFJetAve15_HFJEC", "HLT_DiPFJetAve160_HFJEC", "HLT_DiPFJetAve200", "HLT_DiPFJetAve220_HFJEC", "HLT_DiPFJetAve25_HFJEC", "HLT_DiPFJetAve260", "HLT_DiPFJetAve300_HFJEC", "HLT_DiPFJetAve320", "HLT_DiPFJetAve35_HFJEC", "HLT_DiPFJetAve40", "HLT_DiPFJetAve400", "HLT_DiPFJetAve500", "HLT_DiPFJetAve60", "HLT_DiPFJetAve60_HFJEC", "HLT_DiPFJetAve80", "HLT_DiPFJetAve80_HFJEC", "HLT_Diphoton30_22_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", "HLT_Diphoton30_22_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass95", "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_NoPixelVeto_Mass55", "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_PixelVeto_Mass55", "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_NoPixelVeto_Mass55", "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_PixelVeto_Mass55", "HLT_DiSC30_18_EIso_AND_HE_Mass70", "HLT_DoubleEle24_eta2p1_WPTight_Gsf", "HLT_DoubleEle25_CaloIdL_MW", "HLT_DoubleEle27_CaloIdL_MW", "HLT_DoubleEle33_CaloIdL_MW", "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_DZ_PFHT350", "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT350", "HLT_DoubleIsoMu20_eta2p1", "HLT_DoubleIsoMu24_eta2p1", "HLT_DoubleL2Mu50", "HLT_DoubleLooseChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMu20_7_Mass0to30_L1_DM4", "HLT_DoubleMu20_7_Mass0to30_L1_DM4EG", "HLT_DoubleMu20_7_Mass0to30_Photon23", "HLT_DoubleMu3_DZ_PFMET50_PFMHT60", "HLT_DoubleMu3_DZ_PFMET70_PFMHT70", "HLT_DoubleMu3_DZ_PFMET90_PFMHT90", "HLT_DoubleMu3_Trk_Tau3mu", "HLT_DoubleMu3_Trk_Tau3mu_NoL1Mass", "HLT_DoubleMu43NoFiltersNoVtx", "HLT_DoubleMu48NoFiltersNoVtx", "HLT_DoubleMu4_3_Bs", "HLT_DoubleMu4_3_Jpsi_Displaced", "HLT_DoubleMu4_Jpsi_Displaced", "HLT_DoubleMu4_Jpsi_NoVertexing", "HLT_DoubleMu4_JpsiTrk_Displaced", "HLT_DoubleMu4_JpsiTrkTrk_Displaced", "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", "HLT_DoubleMu4_Mass8_DZ_PFHT350", "HLT_DoubleMu4_PsiPrimeTrk_Displaced", "HLT_DoubleMu8_Mass8_PFHT350", "HLT_DoublePFJets100_CaloBTagCSV_p33", "HLT_DoublePFJets100MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_DoublePFJets116MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_DoublePFJets128MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_DoublePFJets200_CaloBTagCSV_p33", "HLT_DoublePFJets350_CaloBTagCSV_p33", "HLT_DoublePFJets40_CaloBTagCSV_p33", "HLT_DoublePhoton33_CaloIdL", "HLT_DoublePhoton70", "HLT_DoublePhoton85", "HLT_DoubleTightChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_EcalCalibration", "HLT_ECALHT800", "HLT_Ele115_CaloIdVT_GsfTrkIdT", "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele135_CaloIdVT_GsfTrkIdT", "HLT_Ele145_CaloIdVT_GsfTrkIdT", "HLT_Ele15_IsoVVVL_PFHT450", "HLT_Ele15_IsoVVVL_PFHT450_CaloBTagCSV_4p5", "HLT_Ele15_IsoVVVL_PFHT450_PFMET50", "HLT_Ele15_IsoVVVL_PFHT600", "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", "HLT_Ele200_CaloIdVT_GsfTrkIdT", "HLT_Ele20_eta2p1_WPLoose_Gsf", "HLT_Ele20_WPLoose_Gsf", "HLT_Ele20_WPTight_Gsf", "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Ele24_eta2p1_WPTight_Gsf_LooseChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_LooseChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_MediumChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_MediumChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_TightChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_TightChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele250_CaloIdVT_GsfTrkIdT", "HLT_Ele27_Ele37_CaloIdL_MW", "HLT_Ele27_WPTight_Gsf", "HLT_Ele28_eta2p1_WPTight_Gsf_HT150", "HLT_Ele28_HighEta_SC20_Mass55", "HLT_Ele300_CaloIdVT_GsfTrkIdT", "HLT_Ele30_eta2p1_WPTight_Gsf_CentralPFJet35_EleCleaned", "HLT_Ele32_WPTight_Gsf", "HLT_Ele32_WPTight_Gsf_L1DoubleEG", "HLT_Ele35_WPTight_Gsf", "HLT_Ele35_WPTight_Gsf_L1EGMT", "HLT_Ele38_WPTight_Gsf", "HLT_Ele40_WPTight_Gsf", "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", "HLT_Ele50_IsoVVVL_PFHT450", "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", "HLT_FullTrack_Multiplicity100", "HLT_FullTrack_Multiplicity130", "HLT_FullTrack_Multiplicity155", "HLT_FullTrack_Multiplicity85", "HLT_HcalCalibration", "HLT_HcalIsolatedbunch", "HLT_HcalNZS", "HLT_HcalPhiSym", "HLT_HISinglePhoton10_Eta3p1ForPPRef", "HLT_HISinglePhoton20_Eta3p1ForPPRef", "HLT_HISinglePhoton30_Eta3p1ForPPRef", "HLT_HISinglePhoton40_Eta3p1ForPPRef", "HLT_HISinglePhoton50_Eta3p1ForPPRef", "HLT_HISinglePhoton60_Eta3p1ForPPRef", "HLT_HT300_Beamspot", "HLT_HT400_DisplacedDijet40_DisplacedTrack", "HLT_HT425", "HLT_HT430_DisplacedDijet40_DisplacedTrack", "HLT_HT430_DisplacedDijet60_DisplacedTrack", "HLT_HT430_DisplacedDijet80_DisplacedTrack", "HLT_HT450_Beamspot", "HLT_HT550_DisplacedDijet60_Inclusive", "HLT_HT550_DisplacedDijet80_Inclusive", "HLT_HT650_DisplacedDijet60_Inclusive", "HLT_HT650_DisplacedDijet80_Inclusive", "HLT_HT750_DisplacedDijet80_Inclusive", "HLT_IsoMu20", "HLT_IsoMu20_eta2p1_LooseChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_LooseChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu20_eta2p1_MediumChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_MediumChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu20_eta2p1_TightChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_TightChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu24", "HLT_IsoMu24_eta2p1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau40_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau40_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu27", "HLT_IsoMu30", "HLT_IsoTrackHB", "HLT_IsoTrackHE", "HLT_L1_CDC_SingleMu_3_er1p2_TOP120_DPHI2p618_3p142", "HLT_L1ETMHadSeeds", "HLT_L1MinimumBiasHF0OR", "HLT_L1MinimumBiasHF_OR", "HLT_L1NotBptxOR", "HLT_L1SingleMu18", "HLT_L1SingleMu25", "HLT_L1UnpairedBunchBptxMinus", "HLT_L1UnpairedBunchBptxPlus", "HLT_L2Mu10", "HLT_L2Mu10_NoVertex_NoBPTX", "HLT_L2Mu10_NoVertex_NoBPTX3BX", "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX", "HLT_L2Mu50", "HLT_MediumChargedIsoPFTau180HighPtRelaxedIso_Trk50_eta2p1", "HLT_MediumChargedIsoPFTau180HighPtRelaxedIso_Trk50_eta2p1_1pr", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET100", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET110", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET120", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET130", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET90", "HLT_MET105_IsoTrk50", "HLT_MET120_IsoTrk50", "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu130_PFMHTNoMu130_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu140_PFMHTNoMu140_IDTight", "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", "HLT_Mu12_DoublePFJets100_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets200_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets350_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets40_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets40MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_Mu12_DoublePFJets54MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_Mu12_DoublePFJets62MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_Mu12_DoublePhoton20", "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Mu15_IsoVVVL_PFHT450", "HLT_Mu15_IsoVVVL_PFHT450_CaloBTagCSV_4p5", "HLT_Mu15_IsoVVVL_PFHT450_PFMET50", "HLT_Mu15_IsoVVVL_PFHT600", "HLT_Mu17", "HLT_Mu17_Photon30_IsoCaloId", "HLT_Mu17_TrkIsoVVL", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ_Mass3p8", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ_Mass8", "HLT_Mu19", "HLT_Mu19_TrkIsoVVL", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL_DZ", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL_DZ_Mass3p8", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL_DZ_Mass8", "HLT_Mu20", "HLT_Mu20_TkMu0_Phi", "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Mu25_TkMu0_Onia", "HLT_Mu25_TkMu0_Phi", "HLT_Mu27", "HLT_Mu27_Ele37_CaloIdL_MW", "HLT_Mu30_TkMu0_Onia", "HLT_Mu37_Ele27_CaloIdL_MW", "HLT_Mu37_TkMu27", "HLT_Mu3_PFJet40", "HLT_Mu43NoFiltersNoVtx_Photon43_CaloIdL", "HLT_Mu48NoFiltersNoVtx_Photon48_CaloIdL", "HLT_Mu50", "HLT_Mu50_IsoVVVL_PFHT450", "HLT_Mu55", "HLT_Mu7p5_L2Mu2_Jpsi", "HLT_Mu7p5_L2Mu2_Upsilon", "HLT_Mu7p5_Track2_Jpsi", "HLT_Mu7p5_Track2_Upsilon", "HLT_Mu7p5_Track3p5_Jpsi", "HLT_Mu7p5_Track3p5_Upsilon", "HLT_Mu7p5_Track7_Jpsi", "HLT_Mu7p5_Track7_Upsilon", "HLT_Mu8", "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", "HLT_Mu8_DiEle12_CaloIdL_TrackIdL_DZ", "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT350", "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT350_DZ", "HLT_Mu8_TrkIsoVVL", "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_OldMu100", "HLT_PFHT1050", "HLT_PFHT180", "HLT_PFHT250", "HLT_PFHT300PT30_QuadPFJet_75_60_45_40", "HLT_PFHT300PT30_QuadPFJet_75_60_45_40_TriplePFBTagCSV_3p0", "HLT_PFHT350", "HLT_PFHT350MinPFJet15", "HLT_PFHT370", "HLT_PFHT380_SixPFJet32", "HLT_PFHT380_SixPFJet32_DoublePFBTagCSV_2p2", "HLT_PFHT380_SixPFJet32_DoublePFBTagDeepCSV_2p2", "HLT_PFHT430", "HLT_PFHT430_SixPFJet40", "HLT_PFHT430_SixPFJet40_PFBTagCSV_1p5", "HLT_PFHT500_PFMET100_PFMHT100_IDTight", "HLT_PFHT500_PFMET110_PFMHT110_IDTight", "HLT_PFHT510", "HLT_PFHT590", "HLT_PFHT680", "HLT_PFHT700_PFMET85_PFMHT85_IDTight", "HLT_PFHT700_PFMET95_PFMHT95_IDTight", "HLT_PFHT780", "HLT_PFHT800_PFMET75_PFMHT75_IDTight", "HLT_PFHT800_PFMET85_PFMHT85_IDTight", "HLT_PFHT890", "HLT_PFJet140", "HLT_PFJet200", "HLT_PFJet260", "HLT_PFJet320", "HLT_PFJet40", "HLT_PFJet400", "HLT_PFJet450", "HLT_PFJet500", "HLT_PFJet550", "HLT_PFJet60", "HLT_PFJet80", "HLT_PFJetFwd140", "HLT_PFJetFwd200", "HLT_PFJetFwd260", "HLT_PFJetFwd320", "HLT_PFJetFwd40", "HLT_PFJetFwd400", "HLT_PFJetFwd450", "HLT_PFJetFwd500", "HLT_PFJetFwd60", "HLT_PFJetFwd80", "HLT_PFMET100_PFMHT100_IDTight_CaloBTagCSV_3p1", "HLT_PFMET110_PFMHT110_IDTight", "HLT_PFMET110_PFMHT110_IDTight_CaloBTagCSV_3p1", "HLT_PFMET120_PFMHT120_IDTight", "HLT_PFMET120_PFMHT120_IDTight_CaloBTagCSV_3p1", "HLT_PFMET120_PFMHT120_IDTight_HFCleaned", "HLT_PFMET120_PFMHT120_IDTight_PFHT60", "HLT_PFMET120_PFMHT120_IDTight_PFHT60_HFCleaned", "HLT_PFMET130_PFMHT130_IDTight", "HLT_PFMET130_PFMHT130_IDTight_CaloBTagCSV_3p1", "HLT_PFMET140_PFMHT140_IDTight", "HLT_PFMET140_PFMHT140_IDTight_CaloBTagCSV_3p1", "HLT_PFMET200_HBHE_BeamHaloCleaned", "HLT_PFMET200_HBHECleaned", "HLT_PFMET200_NotCleaned", "HLT_PFMET250_HBHECleaned", "HLT_PFMET300_HBHECleaned", "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight_HFCleaned", "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight_PFHT60", "HLT_PFMETNoMu130_PFMHTNoMu130_IDTight", "HLT_PFMETNoMu140_PFMHTNoMu140_IDTight", "HLT_PFMETTypeOne110_PFMHT110_IDTight", "HLT_PFMETTypeOne120_PFMHT120_IDTight", "HLT_PFMETTypeOne120_PFMHT120_IDTight_HFCleaned", "HLT_PFMETTypeOne120_PFMHT120_IDTight_PFHT60", "HLT_PFMETTypeOne130_PFMHT130_IDTight", "HLT_PFMETTypeOne140_PFMHT140_IDTight", "HLT_PFMETTypeOne200_HBHE_BeamHaloCleaned", "HLT_Photon120", "HLT_Photon120_R9Id90_HE10_IsoM", "HLT_Photon150", "HLT_Photon165_R9Id90_HE10_IsoM", "HLT_Photon175", "HLT_Photon200", "HLT_Photon20_HoverELoose", "HLT_Photon25", "HLT_Photon300_NoHE", "HLT_Photon30_HoverELoose", "HLT_Photon33", "HLT_Photon40_HoverELoose", "HLT_Photon50", "HLT_Photon50_HoverELoose", "HLT_Photon50_R9Id90_HE10_IsoM", "HLT_Photon60_HoverELoose", "HLT_Photon60_R9Id90_CaloIdL_IsoL", "HLT_Photon60_R9Id90_CaloIdL_IsoL_DisplacedIdL", "HLT_Photon60_R9Id90_CaloIdL_IsoL_DisplacedIdL_PFHT350MinPFJet15", "HLT_Photon75", "HLT_Photon75_R9Id90_HE10_IsoM", "HLT_Photon90", "HLT_Photon90_R9Id90_HE10_IsoM", "HLT_Physics", "HLT_Physics_part0", "HLT_Physics_part1", "HLT_Physics_part2", "HLT_Physics_part3", "HLT_Physics_part4", "HLT_Physics_part5", "HLT_Physics_part6", "HLT_Physics_part7", "HLT_Random", "HLT_Rsq0p35", "HLT_Rsq0p40", "HLT_RsqMR300_Rsq0p09_MR200", "HLT_RsqMR300_Rsq0p09_MR200_4jet", "HLT_RsqMR320_Rsq0p09_MR200", "HLT_RsqMR320_Rsq0p09_MR200_4jet", "HLT_SingleJet30_Mu12_SinglePFJet40", "HLT_Tau3Mu_Mu5_Mu1_TkMu1_IsoTau10", "HLT_Tau3Mu_Mu5_Mu1_TkMu1_IsoTau10_Charge1", "HLT_Tau3Mu_Mu5_Mu1_TkMu1_Tau10", "HLT_Tau3Mu_Mu5_Mu1_TkMu1_Tau10_Charge1", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_IsoTau15", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_IsoTau15_Charge1", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_Tau15", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_Tau15_Charge1", "HLT_TkMu100", "HLT_Trimuon5_3p5_2_Upsilon_Muon", "HLT_TripleJet110_35_35_Mjj650_PFMET110", "HLT_TripleJet110_35_35_Mjj650_PFMET120", "HLT_TripleJet110_35_35_Mjj650_PFMET130", "HLT_TripleMu_10_5_5_DZ", "HLT_TripleMu_12_10_5", "HLT_TriplePhoton_20_20_20_CaloIdLV2", "HLT_TriplePhoton_20_20_20_CaloIdLV2_R9IdVL", "HLT_TriplePhoton_30_30_10_CaloIdLV2", "HLT_TriplePhoton_30_30_10_CaloIdLV2_R9IdVL", "HLT_TriplePhoton_35_35_5_CaloIdLV2_R9IdVL", "HLT_TrkMu12_DoubleTrkMu5NoFiltersNoVtx", "HLT_TrkMu16_DoubleTrkMu6NoFiltersNoVtx", "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", "HLT_UncorrectedJetE30_NoBPTX", "HLT_UncorrectedJetE30_NoBPTX3BX", "HLT_UncorrectedJetE60_NoBPTX3BX", "HLT_UncorrectedJetE70_NoBPTX3BX", "HLT_VBF_DoubleLooseChargedIsoPFTau20_Trk1_eta2p1_Reg", "HLT_VBF_DoubleMediumChargedIsoPFTau20_Trk1_eta2p1_Reg", "HLT_VBF_DoubleTightChargedIsoPFTau20_Trk1_eta2p1_Reg", "HLT_ZeroBias", "HLT_ZeroBias_FirstBXAfterTrain", "HLT_ZeroBias_FirstCollisionAfterAbortGap", "HLT_ZeroBias_FirstCollisionInTrain", "HLT_ZeroBias_IsolatedBunches", "HLT_ZeroBias_LastCollisionInTrain", "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_ZeroBias_part8", "HLT_ZeroBias_part9", ]), ]) samples_2017["/MuonEG/Run2017D-31Mar2018-v1/MINIAOD"] = OD([ ("type", "data"), ("sample_category", "data_obs"), ("process_name_specific", "MuonEG_Run2017D_31Mar2018_v1"), ("nof_files", 5), ("nof_db_files", 92), ("nof_events", { }), ("nof_tree_events", 9012928), ("nof_db_events", 9164365), ("fsize_local", 6443838149), # 6.44GB, avg file size 1.29GB ("fsize_db", 316739663431), # 316.74GB, avg file size 3.44GB ("use_it", True), ("triggers", ['1e1mu', '2e1mu', '1e2mu']), ("has_LHE", False), ("nof_PSweights", 0), ("LHE_set", ""), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2020Dec27_woPresel_nom_all_hh_multilepton/ntuples/MuonEG_Run2017D_31Mar2018_v1"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ ]), ("missing_from_superset", [ ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ "HLT_AK4CaloJet100", "HLT_AK4CaloJet120", "HLT_AK4CaloJet30", "HLT_AK4CaloJet40", "HLT_AK4CaloJet50", "HLT_AK4CaloJet80", "HLT_AK4PFJet100", "HLT_AK4PFJet120", "HLT_AK4PFJet30", "HLT_AK4PFJet50", "HLT_AK4PFJet80", "HLT_AK8PFHT750_TrimMass50", "HLT_AK8PFHT800_TrimMass50", "HLT_AK8PFHT850_TrimMass50", "HLT_AK8PFHT900_TrimMass50", "HLT_AK8PFJet140", "HLT_AK8PFJet200", "HLT_AK8PFJet260", "HLT_AK8PFJet320", "HLT_AK8PFJet360_TrimMass30", "HLT_AK8PFJet380_TrimMass30", "HLT_AK8PFJet40", "HLT_AK8PFJet400", "HLT_AK8PFJet400_TrimMass30", "HLT_AK8PFJet420_TrimMass30", "HLT_AK8PFJet450", "HLT_AK8PFJet500", "HLT_AK8PFJet550", "HLT_AK8PFJet60", "HLT_AK8PFJet80", "HLT_AK8PFJetFwd140", "HLT_AK8PFJetFwd200", "HLT_AK8PFJetFwd260", "HLT_AK8PFJetFwd320", "HLT_AK8PFJetFwd40", "HLT_AK8PFJetFwd400", "HLT_AK8PFJetFwd450", "HLT_AK8PFJetFwd500", "HLT_AK8PFJetFwd60", "HLT_AK8PFJetFwd80", "HLT_BTagMu_AK4DiJet110_Mu5", "HLT_BTagMu_AK4DiJet170_Mu5", "HLT_BTagMu_AK4DiJet20_Mu5", "HLT_BTagMu_AK4DiJet40_Mu5", "HLT_BTagMu_AK4DiJet70_Mu5", "HLT_BTagMu_AK4Jet300_Mu5", "HLT_BTagMu_AK8DiJet170_Mu5", "HLT_BTagMu_AK8Jet300_Mu5", "HLT_CaloJet500_NoJetID", "HLT_CaloJet550_NoJetID", "HLT_CaloMET100_HBHECleaned", "HLT_CaloMET100_NotCleaned", "HLT_CaloMET110_NotCleaned", "HLT_CaloMET250_HBHECleaned", "HLT_CaloMET250_NotCleaned", "HLT_CaloMET300_HBHECleaned", "HLT_CaloMET350_HBHECleaned", "HLT_CaloMET70_HBHECleaned", "HLT_CaloMET80_HBHECleaned", "HLT_CaloMET80_NotCleaned", "HLT_CaloMET90_HBHECleaned", "HLT_CaloMET90_NotCleaned", "HLT_CaloMHT90", "HLT_DiEle27_WPTightCaloOnly_L1DoubleEG", "HLT_DiJet110_35_Mjj650_PFMET110", "HLT_DiJet110_35_Mjj650_PFMET120", "HLT_DiJet110_35_Mjj650_PFMET130", "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", "HLT_DiMu9_Ele9_CaloIdL_TrackIdL_DZ", "HLT_Dimuon0_Jpsi", "HLT_Dimuon0_Jpsi3p5_Muon2", "HLT_Dimuon0_Jpsi_L1_4R_0er1p5R", "HLT_Dimuon0_Jpsi_L1_NoOS", "HLT_Dimuon0_Jpsi_NoVertexing", "HLT_Dimuon0_Jpsi_NoVertexing_L1_4R_0er1p5R", "HLT_Dimuon0_Jpsi_NoVertexing_NoOS", "HLT_Dimuon0_LowMass", "HLT_Dimuon0_LowMass_L1_0er1p5", "HLT_Dimuon0_LowMass_L1_0er1p5R", "HLT_Dimuon0_LowMass_L1_4", "HLT_Dimuon0_LowMass_L1_4R", "HLT_Dimuon0_LowMass_L1_TM530", "HLT_Dimuon0_Upsilon_L1_4p5", "HLT_Dimuon0_Upsilon_L1_4p5er2p0", "HLT_Dimuon0_Upsilon_L1_4p5er2p0M", "HLT_Dimuon0_Upsilon_L1_4p5NoOS", "HLT_Dimuon0_Upsilon_L1_5", "HLT_Dimuon0_Upsilon_L1_5M", "HLT_Dimuon0_Upsilon_Muon_L1_TM0", "HLT_Dimuon0_Upsilon_Muon_NoL1Mass", "HLT_Dimuon0_Upsilon_NoVertexing", "HLT_Dimuon10_PsiPrime_Barrel_Seagulls", "HLT_Dimuon10_Upsilon_Barrel_Seagulls", "HLT_Dimuon12_Upsilon_eta1p5", "HLT_Dimuon14_Phi_Barrel_Seagulls", "HLT_Dimuon18_PsiPrime", "HLT_Dimuon18_PsiPrime_noCorrL1", "HLT_Dimuon20_Jpsi_Barrel_Seagulls", "HLT_Dimuon24_Phi_noCorrL1", "HLT_Dimuon24_Upsilon_noCorrL1", "HLT_Dimuon25_Jpsi", "HLT_Dimuon25_Jpsi_noCorrL1", "HLT_DiPFJet15_FBEta3_NoCaloMatched", "HLT_DiPFJet15_NoCaloMatched", "HLT_DiPFJet25_FBEta3_NoCaloMatched", "HLT_DiPFJet25_NoCaloMatched", "HLT_DiPFJetAve100_HFJEC", "HLT_DiPFJetAve140", "HLT_DiPFJetAve15_HFJEC", "HLT_DiPFJetAve160_HFJEC", "HLT_DiPFJetAve200", "HLT_DiPFJetAve220_HFJEC", "HLT_DiPFJetAve25_HFJEC", "HLT_DiPFJetAve260", "HLT_DiPFJetAve300_HFJEC", "HLT_DiPFJetAve320", "HLT_DiPFJetAve35_HFJEC", "HLT_DiPFJetAve40", "HLT_DiPFJetAve400", "HLT_DiPFJetAve500", "HLT_DiPFJetAve60", "HLT_DiPFJetAve60_HFJEC", "HLT_DiPFJetAve80", "HLT_DiPFJetAve80_HFJEC", "HLT_Diphoton30_22_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", "HLT_Diphoton30_22_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass95", "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_NoPixelVeto_Mass55", "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_PixelVeto_Mass55", "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_NoPixelVeto_Mass55", "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_PixelVeto_Mass55", "HLT_DiSC30_18_EIso_AND_HE_Mass70", "HLT_DoubleEle24_eta2p1_WPTight_Gsf", "HLT_DoubleEle25_CaloIdL_MW", "HLT_DoubleEle27_CaloIdL_MW", "HLT_DoubleEle33_CaloIdL_MW", "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_DZ_PFHT350", "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT350", "HLT_DoubleIsoMu20_eta2p1", "HLT_DoubleIsoMu24_eta2p1", "HLT_DoubleL2Mu50", "HLT_DoubleLooseChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMu20_7_Mass0to30_L1_DM4", "HLT_DoubleMu20_7_Mass0to30_L1_DM4EG", "HLT_DoubleMu20_7_Mass0to30_Photon23", "HLT_DoubleMu3_DZ_PFMET50_PFMHT60", "HLT_DoubleMu3_DZ_PFMET70_PFMHT70", "HLT_DoubleMu3_DZ_PFMET90_PFMHT90", "HLT_DoubleMu3_Trk_Tau3mu", "HLT_DoubleMu3_Trk_Tau3mu_NoL1Mass", "HLT_DoubleMu43NoFiltersNoVtx", "HLT_DoubleMu48NoFiltersNoVtx", "HLT_DoubleMu4_3_Bs", "HLT_DoubleMu4_3_Jpsi_Displaced", "HLT_DoubleMu4_Jpsi_Displaced", "HLT_DoubleMu4_Jpsi_NoVertexing", "HLT_DoubleMu4_JpsiTrk_Displaced", "HLT_DoubleMu4_JpsiTrkTrk_Displaced", "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", "HLT_DoubleMu4_Mass8_DZ_PFHT350", "HLT_DoubleMu4_PsiPrimeTrk_Displaced", "HLT_DoubleMu8_Mass8_PFHT350", "HLT_DoublePFJets100_CaloBTagCSV_p33", "HLT_DoublePFJets100MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_DoublePFJets116MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_DoublePFJets128MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_DoublePFJets200_CaloBTagCSV_p33", "HLT_DoublePFJets350_CaloBTagCSV_p33", "HLT_DoublePFJets40_CaloBTagCSV_p33", "HLT_DoublePhoton33_CaloIdL", "HLT_DoublePhoton70", "HLT_DoublePhoton85", "HLT_DoubleTightChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_EcalCalibration", "HLT_ECALHT800", "HLT_Ele115_CaloIdVT_GsfTrkIdT", "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele135_CaloIdVT_GsfTrkIdT", "HLT_Ele145_CaloIdVT_GsfTrkIdT", "HLT_Ele15_IsoVVVL_PFHT450", "HLT_Ele15_IsoVVVL_PFHT450_CaloBTagCSV_4p5", "HLT_Ele15_IsoVVVL_PFHT450_PFMET50", "HLT_Ele15_IsoVVVL_PFHT600", "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", "HLT_Ele200_CaloIdVT_GsfTrkIdT", "HLT_Ele20_eta2p1_WPLoose_Gsf", "HLT_Ele20_WPLoose_Gsf", "HLT_Ele20_WPTight_Gsf", "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Ele24_eta2p1_WPTight_Gsf_LooseChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_LooseChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_MediumChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_MediumChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_TightChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_TightChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele250_CaloIdVT_GsfTrkIdT", "HLT_Ele27_Ele37_CaloIdL_MW", "HLT_Ele27_WPTight_Gsf", "HLT_Ele28_eta2p1_WPTight_Gsf_HT150", "HLT_Ele28_HighEta_SC20_Mass55", "HLT_Ele300_CaloIdVT_GsfTrkIdT", "HLT_Ele30_eta2p1_WPTight_Gsf_CentralPFJet35_EleCleaned", "HLT_Ele32_WPTight_Gsf", "HLT_Ele32_WPTight_Gsf_L1DoubleEG", "HLT_Ele35_WPTight_Gsf", "HLT_Ele35_WPTight_Gsf_L1EGMT", "HLT_Ele38_WPTight_Gsf", "HLT_Ele40_WPTight_Gsf", "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", "HLT_Ele50_IsoVVVL_PFHT450", "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", "HLT_FullTrack_Multiplicity100", "HLT_FullTrack_Multiplicity130", "HLT_FullTrack_Multiplicity155", "HLT_FullTrack_Multiplicity85", "HLT_HcalCalibration", "HLT_HcalIsolatedbunch", "HLT_HcalNZS", "HLT_HcalPhiSym", "HLT_HISinglePhoton10_Eta3p1ForPPRef", "HLT_HISinglePhoton20_Eta3p1ForPPRef", "HLT_HISinglePhoton30_Eta3p1ForPPRef", "HLT_HISinglePhoton40_Eta3p1ForPPRef", "HLT_HISinglePhoton50_Eta3p1ForPPRef", "HLT_HISinglePhoton60_Eta3p1ForPPRef", "HLT_HT300_Beamspot", "HLT_HT400_DisplacedDijet40_DisplacedTrack", "HLT_HT425", "HLT_HT430_DisplacedDijet40_DisplacedTrack", "HLT_HT430_DisplacedDijet60_DisplacedTrack", "HLT_HT430_DisplacedDijet80_DisplacedTrack", "HLT_HT450_Beamspot", "HLT_HT550_DisplacedDijet60_Inclusive", "HLT_HT550_DisplacedDijet80_Inclusive", "HLT_HT650_DisplacedDijet60_Inclusive", "HLT_HT650_DisplacedDijet80_Inclusive", "HLT_HT750_DisplacedDijet80_Inclusive", "HLT_IsoMu20", "HLT_IsoMu20_eta2p1_LooseChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_LooseChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu20_eta2p1_MediumChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_MediumChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu20_eta2p1_TightChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_TightChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu24", "HLT_IsoMu24_eta2p1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau40_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau40_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu27", "HLT_IsoMu30", "HLT_IsoTrackHB", "HLT_IsoTrackHE", "HLT_L1_CDC_SingleMu_3_er1p2_TOP120_DPHI2p618_3p142", "HLT_L1ETMHadSeeds", "HLT_L1MinimumBiasHF0OR", "HLT_L1MinimumBiasHF_OR", "HLT_L1NotBptxOR", "HLT_L1SingleMu18", "HLT_L1SingleMu25", "HLT_L1UnpairedBunchBptxMinus", "HLT_L1UnpairedBunchBptxPlus", "HLT_L2Mu10", "HLT_L2Mu10_NoVertex_NoBPTX", "HLT_L2Mu10_NoVertex_NoBPTX3BX", "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX", "HLT_L2Mu50", "HLT_MediumChargedIsoPFTau180HighPtRelaxedIso_Trk50_eta2p1", "HLT_MediumChargedIsoPFTau180HighPtRelaxedIso_Trk50_eta2p1_1pr", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET100", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET110", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET120", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET130", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET90", "HLT_MET105_IsoTrk50", "HLT_MET120_IsoTrk50", "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu130_PFMHTNoMu130_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu140_PFMHTNoMu140_IDTight", "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", "HLT_Mu12_DoublePFJets100_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets200_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets350_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets40_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets40MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_Mu12_DoublePFJets54MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_Mu12_DoublePFJets62MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_Mu12_DoublePhoton20", "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Mu15_IsoVVVL_PFHT450", "HLT_Mu15_IsoVVVL_PFHT450_CaloBTagCSV_4p5", "HLT_Mu15_IsoVVVL_PFHT450_PFMET50", "HLT_Mu15_IsoVVVL_PFHT600", "HLT_Mu17", "HLT_Mu17_Photon30_IsoCaloId", "HLT_Mu17_TrkIsoVVL", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ_Mass3p8", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ_Mass8", "HLT_Mu19", "HLT_Mu19_TrkIsoVVL", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL_DZ", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL_DZ_Mass3p8", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL_DZ_Mass8", "HLT_Mu20", "HLT_Mu20_TkMu0_Phi", "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Mu25_TkMu0_Onia", "HLT_Mu25_TkMu0_Phi", "HLT_Mu27", "HLT_Mu27_Ele37_CaloIdL_MW", "HLT_Mu30_TkMu0_Onia", "HLT_Mu37_Ele27_CaloIdL_MW", "HLT_Mu37_TkMu27", "HLT_Mu3_PFJet40", "HLT_Mu43NoFiltersNoVtx_Photon43_CaloIdL", "HLT_Mu48NoFiltersNoVtx_Photon48_CaloIdL", "HLT_Mu50", "HLT_Mu50_IsoVVVL_PFHT450", "HLT_Mu55", "HLT_Mu7p5_L2Mu2_Jpsi", "HLT_Mu7p5_L2Mu2_Upsilon", "HLT_Mu7p5_Track2_Jpsi", "HLT_Mu7p5_Track2_Upsilon", "HLT_Mu7p5_Track3p5_Jpsi", "HLT_Mu7p5_Track3p5_Upsilon", "HLT_Mu7p5_Track7_Jpsi", "HLT_Mu7p5_Track7_Upsilon", "HLT_Mu8", "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", "HLT_Mu8_DiEle12_CaloIdL_TrackIdL_DZ", "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT350", "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT350_DZ", "HLT_Mu8_TrkIsoVVL", "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_OldMu100", "HLT_PFHT1050", "HLT_PFHT180", "HLT_PFHT250", "HLT_PFHT300PT30_QuadPFJet_75_60_45_40", "HLT_PFHT300PT30_QuadPFJet_75_60_45_40_TriplePFBTagCSV_3p0", "HLT_PFHT350", "HLT_PFHT350MinPFJet15", "HLT_PFHT370", "HLT_PFHT380_SixPFJet32", "HLT_PFHT380_SixPFJet32_DoublePFBTagCSV_2p2", "HLT_PFHT380_SixPFJet32_DoublePFBTagDeepCSV_2p2", "HLT_PFHT430", "HLT_PFHT430_SixPFJet40", "HLT_PFHT430_SixPFJet40_PFBTagCSV_1p5", "HLT_PFHT500_PFMET100_PFMHT100_IDTight", "HLT_PFHT500_PFMET110_PFMHT110_IDTight", "HLT_PFHT510", "HLT_PFHT590", "HLT_PFHT680", "HLT_PFHT700_PFMET85_PFMHT85_IDTight", "HLT_PFHT700_PFMET95_PFMHT95_IDTight", "HLT_PFHT780", "HLT_PFHT800_PFMET75_PFMHT75_IDTight", "HLT_PFHT800_PFMET85_PFMHT85_IDTight", "HLT_PFHT890", "HLT_PFJet140", "HLT_PFJet200", "HLT_PFJet260", "HLT_PFJet320", "HLT_PFJet40", "HLT_PFJet400", "HLT_PFJet450", "HLT_PFJet500", "HLT_PFJet550", "HLT_PFJet60", "HLT_PFJet80", "HLT_PFJetFwd140", "HLT_PFJetFwd200", "HLT_PFJetFwd260", "HLT_PFJetFwd320", "HLT_PFJetFwd40", "HLT_PFJetFwd400", "HLT_PFJetFwd450", "HLT_PFJetFwd500", "HLT_PFJetFwd60", "HLT_PFJetFwd80", "HLT_PFMET100_PFMHT100_IDTight_CaloBTagCSV_3p1", "HLT_PFMET110_PFMHT110_IDTight", "HLT_PFMET110_PFMHT110_IDTight_CaloBTagCSV_3p1", "HLT_PFMET120_PFMHT120_IDTight", "HLT_PFMET120_PFMHT120_IDTight_CaloBTagCSV_3p1", "HLT_PFMET120_PFMHT120_IDTight_PFHT60", "HLT_PFMET130_PFMHT130_IDTight", "HLT_PFMET130_PFMHT130_IDTight_CaloBTagCSV_3p1", "HLT_PFMET140_PFMHT140_IDTight", "HLT_PFMET140_PFMHT140_IDTight_CaloBTagCSV_3p1", "HLT_PFMET200_HBHE_BeamHaloCleaned", "HLT_PFMET200_HBHECleaned", "HLT_PFMET200_NotCleaned", "HLT_PFMET250_HBHECleaned", "HLT_PFMET300_HBHECleaned", "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight_PFHT60", "HLT_PFMETNoMu130_PFMHTNoMu130_IDTight", "HLT_PFMETNoMu140_PFMHTNoMu140_IDTight", "HLT_PFMETTypeOne110_PFMHT110_IDTight", "HLT_PFMETTypeOne120_PFMHT120_IDTight", "HLT_PFMETTypeOne120_PFMHT120_IDTight_PFHT60", "HLT_PFMETTypeOne130_PFMHT130_IDTight", "HLT_PFMETTypeOne140_PFMHT140_IDTight", "HLT_PFMETTypeOne200_HBHE_BeamHaloCleaned", "HLT_Photon120", "HLT_Photon120_R9Id90_HE10_IsoM", "HLT_Photon150", "HLT_Photon165_R9Id90_HE10_IsoM", "HLT_Photon175", "HLT_Photon200", "HLT_Photon20_HoverELoose", "HLT_Photon25", "HLT_Photon300_NoHE", "HLT_Photon30_HoverELoose", "HLT_Photon33", "HLT_Photon40_HoverELoose", "HLT_Photon50", "HLT_Photon50_HoverELoose", "HLT_Photon50_R9Id90_HE10_IsoM", "HLT_Photon60_HoverELoose", "HLT_Photon60_R9Id90_CaloIdL_IsoL", "HLT_Photon60_R9Id90_CaloIdL_IsoL_DisplacedIdL", "HLT_Photon60_R9Id90_CaloIdL_IsoL_DisplacedIdL_PFHT350MinPFJet15", "HLT_Photon75", "HLT_Photon75_R9Id90_HE10_IsoM", "HLT_Photon90", "HLT_Photon90_R9Id90_HE10_IsoM", "HLT_Physics", "HLT_Physics_part0", "HLT_Physics_part1", "HLT_Physics_part2", "HLT_Physics_part3", "HLT_Physics_part4", "HLT_Physics_part5", "HLT_Physics_part6", "HLT_Physics_part7", "HLT_Random", "HLT_Rsq0p35", "HLT_Rsq0p40", "HLT_RsqMR300_Rsq0p09_MR200", "HLT_RsqMR300_Rsq0p09_MR200_4jet", "HLT_RsqMR320_Rsq0p09_MR200", "HLT_RsqMR320_Rsq0p09_MR200_4jet", "HLT_SingleJet30_Mu12_SinglePFJet40", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_IsoTau15", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_IsoTau15_Charge1", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_Tau15", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_Tau15_Charge1", "HLT_TkMu100", "HLT_Trimuon5_3p5_2_Upsilon_Muon", "HLT_TripleJet110_35_35_Mjj650_PFMET110", "HLT_TripleJet110_35_35_Mjj650_PFMET120", "HLT_TripleJet110_35_35_Mjj650_PFMET130", "HLT_TripleMu_10_5_5_DZ", "HLT_TripleMu_12_10_5", "HLT_TripleMu_5_3_3_Mass3p8to60_DZ", "HLT_TriplePhoton_20_20_20_CaloIdLV2", "HLT_TriplePhoton_20_20_20_CaloIdLV2_R9IdVL", "HLT_TriplePhoton_30_30_10_CaloIdLV2", "HLT_TriplePhoton_30_30_10_CaloIdLV2_R9IdVL", "HLT_TriplePhoton_35_35_5_CaloIdLV2_R9IdVL", "HLT_TrkMu12_DoubleTrkMu5NoFiltersNoVtx", "HLT_TrkMu16_DoubleTrkMu6NoFiltersNoVtx", "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", "HLT_UncorrectedJetE30_NoBPTX", "HLT_UncorrectedJetE30_NoBPTX3BX", "HLT_UncorrectedJetE60_NoBPTX3BX", "HLT_UncorrectedJetE70_NoBPTX3BX", "HLT_VBF_DoubleLooseChargedIsoPFTau20_Trk1_eta2p1_Reg", "HLT_VBF_DoubleMediumChargedIsoPFTau20_Trk1_eta2p1_Reg", "HLT_VBF_DoubleTightChargedIsoPFTau20_Trk1_eta2p1_Reg", "HLT_ZeroBias", "HLT_ZeroBias_FirstBXAfterTrain", "HLT_ZeroBias_FirstCollisionAfterAbortGap", "HLT_ZeroBias_FirstCollisionInTrain", "HLT_ZeroBias_IsolatedBunches", "HLT_ZeroBias_LastCollisionInTrain", "HLT_ZeroBias_part0", "HLT_ZeroBias_part1", "HLT_ZeroBias_part2", "HLT_ZeroBias_part3", "HLT_ZeroBias_part4", "HLT_ZeroBias_part5", "HLT_ZeroBias_part6", "HLT_ZeroBias_part7", ]), ]) samples_2017["/MuonEG/Run2017E-31Mar2018-v1/MINIAOD"] = OD([ ("type", "data"), ("sample_category", "data_obs"), ("process_name_specific", "MuonEG_Run2017E_31Mar2018_v1"), ("nof_files", 10), ("nof_db_files", 242), ("nof_events", { }), ("nof_tree_events", 18703362), ("nof_db_events", 19043421), ("fsize_local", 13482663890), # 13.48GB, avg file size 1.35GB ("fsize_db", 739577492849), # 739.58GB, avg file size 3.06GB ("use_it", True), ("triggers", ['1e1mu', '2e1mu', '1e2mu']), ("has_LHE", False), ("nof_PSweights", 0), ("LHE_set", ""), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2020Dec27_woPresel_nom_all_hh_multilepton/ntuples/MuonEG_Run2017E_31Mar2018_v1"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ ]), ("missing_from_superset", [ ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ "HLT_AK4CaloJet100", "HLT_AK4CaloJet120", "HLT_AK4CaloJet30", "HLT_AK4CaloJet40", "HLT_AK4CaloJet50", "HLT_AK4CaloJet80", "HLT_AK4PFJet100", "HLT_AK4PFJet120", "HLT_AK4PFJet30", "HLT_AK4PFJet50", "HLT_AK4PFJet80", "HLT_AK8PFHT750_TrimMass50", "HLT_AK8PFHT800_TrimMass50", "HLT_AK8PFHT850_TrimMass50", "HLT_AK8PFHT900_TrimMass50", "HLT_AK8PFJet140", "HLT_AK8PFJet200", "HLT_AK8PFJet260", "HLT_AK8PFJet320", "HLT_AK8PFJet360_TrimMass30", "HLT_AK8PFJet380_TrimMass30", "HLT_AK8PFJet40", "HLT_AK8PFJet400", "HLT_AK8PFJet400_TrimMass30", "HLT_AK8PFJet420_TrimMass30", "HLT_AK8PFJet450", "HLT_AK8PFJet500", "HLT_AK8PFJet550", "HLT_AK8PFJet60", "HLT_AK8PFJet80", "HLT_AK8PFJetFwd140", "HLT_AK8PFJetFwd200", "HLT_AK8PFJetFwd260", "HLT_AK8PFJetFwd320", "HLT_AK8PFJetFwd40", "HLT_AK8PFJetFwd400", "HLT_AK8PFJetFwd450", "HLT_AK8PFJetFwd500", "HLT_AK8PFJetFwd60", "HLT_AK8PFJetFwd80", "HLT_BTagMu_AK4DiJet110_Mu5", "HLT_BTagMu_AK4DiJet170_Mu5", "HLT_BTagMu_AK4DiJet20_Mu5", "HLT_BTagMu_AK4DiJet40_Mu5", "HLT_BTagMu_AK4DiJet70_Mu5", "HLT_BTagMu_AK4Jet300_Mu5", "HLT_BTagMu_AK8DiJet170_Mu5", "HLT_BTagMu_AK8Jet300_Mu5", "HLT_CaloJet500_NoJetID", "HLT_CaloJet550_NoJetID", "HLT_CaloMET100_HBHECleaned", "HLT_CaloMET100_NotCleaned", "HLT_CaloMET110_NotCleaned", "HLT_CaloMET250_HBHECleaned", "HLT_CaloMET250_NotCleaned", "HLT_CaloMET300_HBHECleaned", "HLT_CaloMET350_HBHECleaned", "HLT_CaloMET70_HBHECleaned", "HLT_CaloMET80_HBHECleaned", "HLT_CaloMET80_NotCleaned", "HLT_CaloMET90_HBHECleaned", "HLT_CaloMET90_NotCleaned", "HLT_CaloMHT90", "HLT_DiEle27_WPTightCaloOnly_L1DoubleEG", "HLT_DiJet110_35_Mjj650_PFMET110", "HLT_DiJet110_35_Mjj650_PFMET120", "HLT_DiJet110_35_Mjj650_PFMET130", "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", "HLT_DiMu9_Ele9_CaloIdL_TrackIdL_DZ", "HLT_Dimuon0_Jpsi", "HLT_Dimuon0_Jpsi3p5_Muon2", "HLT_Dimuon0_Jpsi_L1_4R_0er1p5R", "HLT_Dimuon0_Jpsi_L1_NoOS", "HLT_Dimuon0_Jpsi_NoVertexing", "HLT_Dimuon0_Jpsi_NoVertexing_L1_4R_0er1p5R", "HLT_Dimuon0_Jpsi_NoVertexing_NoOS", "HLT_Dimuon0_LowMass", "HLT_Dimuon0_LowMass_L1_0er1p5", "HLT_Dimuon0_LowMass_L1_0er1p5R", "HLT_Dimuon0_LowMass_L1_4", "HLT_Dimuon0_LowMass_L1_4R", "HLT_Dimuon0_LowMass_L1_TM530", "HLT_Dimuon0_Upsilon_L1_4p5", "HLT_Dimuon0_Upsilon_L1_4p5er2p0", "HLT_Dimuon0_Upsilon_L1_4p5er2p0M", "HLT_Dimuon0_Upsilon_L1_4p5NoOS", "HLT_Dimuon0_Upsilon_L1_5", "HLT_Dimuon0_Upsilon_L1_5M", "HLT_Dimuon0_Upsilon_Muon_L1_TM0", "HLT_Dimuon0_Upsilon_Muon_NoL1Mass", "HLT_Dimuon0_Upsilon_NoVertexing", "HLT_Dimuon10_PsiPrime_Barrel_Seagulls", "HLT_Dimuon10_Upsilon_Barrel_Seagulls", "HLT_Dimuon12_Upsilon_eta1p5", "HLT_Dimuon14_Phi_Barrel_Seagulls", "HLT_Dimuon18_PsiPrime", "HLT_Dimuon18_PsiPrime_noCorrL1", "HLT_Dimuon20_Jpsi_Barrel_Seagulls", "HLT_Dimuon24_Phi_noCorrL1", "HLT_Dimuon24_Upsilon_noCorrL1", "HLT_Dimuon25_Jpsi", "HLT_Dimuon25_Jpsi_noCorrL1", "HLT_DiPFJet15_FBEta3_NoCaloMatched", "HLT_DiPFJet15_NoCaloMatched", "HLT_DiPFJet25_FBEta3_NoCaloMatched", "HLT_DiPFJet25_NoCaloMatched", "HLT_DiPFJetAve100_HFJEC", "HLT_DiPFJetAve140", "HLT_DiPFJetAve15_HFJEC", "HLT_DiPFJetAve160_HFJEC", "HLT_DiPFJetAve200", "HLT_DiPFJetAve220_HFJEC", "HLT_DiPFJetAve25_HFJEC", "HLT_DiPFJetAve260", "HLT_DiPFJetAve300_HFJEC", "HLT_DiPFJetAve320", "HLT_DiPFJetAve35_HFJEC", "HLT_DiPFJetAve40", "HLT_DiPFJetAve400", "HLT_DiPFJetAve500", "HLT_DiPFJetAve60", "HLT_DiPFJetAve60_HFJEC", "HLT_DiPFJetAve80", "HLT_DiPFJetAve80_HFJEC", "HLT_Diphoton30_22_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", "HLT_Diphoton30_22_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass95", "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_NoPixelVeto_Mass55", "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_PixelVeto_Mass55", "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_NoPixelVeto_Mass55", "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_PixelVeto_Mass55", "HLT_DiSC30_18_EIso_AND_HE_Mass70", "HLT_DoubleEle24_eta2p1_WPTight_Gsf", "HLT_DoubleEle25_CaloIdL_MW", "HLT_DoubleEle27_CaloIdL_MW", "HLT_DoubleEle33_CaloIdL_MW", "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_DZ_PFHT350", "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT350", "HLT_DoubleIsoMu20_eta2p1", "HLT_DoubleIsoMu24_eta2p1", "HLT_DoubleL2Mu50", "HLT_DoubleLooseChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMu20_7_Mass0to30_L1_DM4", "HLT_DoubleMu20_7_Mass0to30_L1_DM4EG", "HLT_DoubleMu20_7_Mass0to30_Photon23", "HLT_DoubleMu3_DZ_PFMET50_PFMHT60", "HLT_DoubleMu3_DZ_PFMET70_PFMHT70", "HLT_DoubleMu3_DZ_PFMET90_PFMHT90", "HLT_DoubleMu3_Trk_Tau3mu", "HLT_DoubleMu3_Trk_Tau3mu_NoL1Mass", "HLT_DoubleMu43NoFiltersNoVtx", "HLT_DoubleMu48NoFiltersNoVtx", "HLT_DoubleMu4_3_Bs", "HLT_DoubleMu4_3_Jpsi_Displaced", "HLT_DoubleMu4_Jpsi_Displaced", "HLT_DoubleMu4_Jpsi_NoVertexing", "HLT_DoubleMu4_JpsiTrk_Displaced", "HLT_DoubleMu4_JpsiTrkTrk_Displaced", "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", "HLT_DoubleMu4_Mass8_DZ_PFHT350", "HLT_DoubleMu4_PsiPrimeTrk_Displaced", "HLT_DoubleMu8_Mass8_PFHT350", "HLT_DoublePFJets100_CaloBTagCSV_p33", "HLT_DoublePFJets100MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_DoublePFJets116MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_DoublePFJets128MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_DoublePFJets200_CaloBTagCSV_p33", "HLT_DoublePFJets350_CaloBTagCSV_p33", "HLT_DoublePFJets40_CaloBTagCSV_p33", "HLT_DoublePhoton33_CaloIdL", "HLT_DoublePhoton70", "HLT_DoublePhoton85", "HLT_DoubleTightChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_EcalCalibration", "HLT_ECALHT800", "HLT_Ele115_CaloIdVT_GsfTrkIdT", "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele135_CaloIdVT_GsfTrkIdT", "HLT_Ele145_CaloIdVT_GsfTrkIdT", "HLT_Ele15_IsoVVVL_PFHT450", "HLT_Ele15_IsoVVVL_PFHT450_CaloBTagCSV_4p5", "HLT_Ele15_IsoVVVL_PFHT450_PFMET50", "HLT_Ele15_IsoVVVL_PFHT600", "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", "HLT_Ele200_CaloIdVT_GsfTrkIdT", "HLT_Ele20_eta2p1_WPLoose_Gsf", "HLT_Ele20_WPLoose_Gsf", "HLT_Ele20_WPTight_Gsf", "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Ele24_eta2p1_WPTight_Gsf_LooseChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_LooseChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_MediumChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_MediumChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_TightChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_TightChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele250_CaloIdVT_GsfTrkIdT", "HLT_Ele27_Ele37_CaloIdL_MW", "HLT_Ele27_WPTight_Gsf", "HLT_Ele28_eta2p1_WPTight_Gsf_HT150", "HLT_Ele28_HighEta_SC20_Mass55", "HLT_Ele300_CaloIdVT_GsfTrkIdT", "HLT_Ele30_eta2p1_WPTight_Gsf_CentralPFJet35_EleCleaned", "HLT_Ele32_WPTight_Gsf", "HLT_Ele32_WPTight_Gsf_L1DoubleEG", "HLT_Ele35_WPTight_Gsf", "HLT_Ele35_WPTight_Gsf_L1EGMT", "HLT_Ele38_WPTight_Gsf", "HLT_Ele40_WPTight_Gsf", "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", "HLT_Ele50_IsoVVVL_PFHT450", "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", "HLT_FullTrack_Multiplicity100", "HLT_FullTrack_Multiplicity130", "HLT_FullTrack_Multiplicity155", "HLT_FullTrack_Multiplicity85", "HLT_HcalCalibration", "HLT_HcalIsolatedbunch", "HLT_HcalNZS", "HLT_HcalPhiSym", "HLT_HISinglePhoton10_Eta3p1ForPPRef", "HLT_HISinglePhoton20_Eta3p1ForPPRef", "HLT_HISinglePhoton30_Eta3p1ForPPRef", "HLT_HISinglePhoton40_Eta3p1ForPPRef", "HLT_HISinglePhoton50_Eta3p1ForPPRef", "HLT_HISinglePhoton60_Eta3p1ForPPRef", "HLT_HT300_Beamspot", "HLT_HT400_DisplacedDijet40_DisplacedTrack", "HLT_HT425", "HLT_HT430_DisplacedDijet40_DisplacedTrack", "HLT_HT430_DisplacedDijet60_DisplacedTrack", "HLT_HT430_DisplacedDijet80_DisplacedTrack", "HLT_HT450_Beamspot", "HLT_HT550_DisplacedDijet60_Inclusive", "HLT_HT550_DisplacedDijet80_Inclusive", "HLT_HT650_DisplacedDijet60_Inclusive", "HLT_HT650_DisplacedDijet80_Inclusive", "HLT_HT750_DisplacedDijet80_Inclusive", "HLT_IsoMu20", "HLT_IsoMu20_eta2p1_LooseChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_LooseChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu20_eta2p1_MediumChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_MediumChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu20_eta2p1_TightChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_TightChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu24", "HLT_IsoMu24_eta2p1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau40_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau40_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu27", "HLT_IsoMu30", "HLT_IsoTrackHB", "HLT_IsoTrackHE", "HLT_L1_CDC_SingleMu_3_er1p2_TOP120_DPHI2p618_3p142", "HLT_L1ETMHadSeeds", "HLT_L1MinimumBiasHF0OR", "HLT_L1MinimumBiasHF_OR", "HLT_L1NotBptxOR", "HLT_L1SingleMu18", "HLT_L1SingleMu25", "HLT_L1UnpairedBunchBptxMinus", "HLT_L1UnpairedBunchBptxPlus", "HLT_L2Mu10", "HLT_L2Mu10_NoVertex_NoBPTX", "HLT_L2Mu10_NoVertex_NoBPTX3BX", "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX", "HLT_L2Mu50", "HLT_MediumChargedIsoPFTau180HighPtRelaxedIso_Trk50_eta2p1", "HLT_MediumChargedIsoPFTau180HighPtRelaxedIso_Trk50_eta2p1_1pr", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET100", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET110", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET120", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET130", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET90", "HLT_MET105_IsoTrk50", "HLT_MET120_IsoTrk50", "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu130_PFMHTNoMu130_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu140_PFMHTNoMu140_IDTight", "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", "HLT_Mu12_DoublePFJets100_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets200_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets350_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets40_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets40MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_Mu12_DoublePFJets54MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_Mu12_DoublePFJets62MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_Mu12_DoublePhoton20", "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Mu15_IsoVVVL_PFHT450", "HLT_Mu15_IsoVVVL_PFHT450_CaloBTagCSV_4p5", "HLT_Mu15_IsoVVVL_PFHT450_PFMET50", "HLT_Mu15_IsoVVVL_PFHT600", "HLT_Mu17", "HLT_Mu17_Photon30_IsoCaloId", "HLT_Mu17_TrkIsoVVL", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ_Mass3p8", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ_Mass8", "HLT_Mu19", "HLT_Mu19_TrkIsoVVL", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL_DZ", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL_DZ_Mass3p8", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL_DZ_Mass8", "HLT_Mu20", "HLT_Mu20_TkMu0_Phi", "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Mu25_TkMu0_Onia", "HLT_Mu25_TkMu0_Phi", "HLT_Mu27", "HLT_Mu27_Ele37_CaloIdL_MW", "HLT_Mu30_TkMu0_Onia", "HLT_Mu37_Ele27_CaloIdL_MW", "HLT_Mu37_TkMu27", "HLT_Mu3_PFJet40", "HLT_Mu43NoFiltersNoVtx_Photon43_CaloIdL", "HLT_Mu48NoFiltersNoVtx_Photon48_CaloIdL", "HLT_Mu50", "HLT_Mu50_IsoVVVL_PFHT450", "HLT_Mu55", "HLT_Mu7p5_L2Mu2_Jpsi", "HLT_Mu7p5_L2Mu2_Upsilon", "HLT_Mu7p5_Track2_Jpsi", "HLT_Mu7p5_Track2_Upsilon", "HLT_Mu7p5_Track3p5_Jpsi", "HLT_Mu7p5_Track3p5_Upsilon", "HLT_Mu7p5_Track7_Jpsi", "HLT_Mu7p5_Track7_Upsilon", "HLT_Mu8", "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", "HLT_Mu8_DiEle12_CaloIdL_TrackIdL_DZ", "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT350", "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT350_DZ", "HLT_Mu8_TrkIsoVVL", "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_OldMu100", "HLT_PFHT1050", "HLT_PFHT180", "HLT_PFHT250", "HLT_PFHT300PT30_QuadPFJet_75_60_45_40", "HLT_PFHT300PT30_QuadPFJet_75_60_45_40_TriplePFBTagCSV_3p0", "HLT_PFHT350", "HLT_PFHT350MinPFJet15", "HLT_PFHT370", "HLT_PFHT380_SixPFJet32", "HLT_PFHT380_SixPFJet32_DoublePFBTagCSV_2p2", "HLT_PFHT380_SixPFJet32_DoublePFBTagDeepCSV_2p2", "HLT_PFHT430", "HLT_PFHT430_SixPFJet40", "HLT_PFHT430_SixPFJet40_PFBTagCSV_1p5", "HLT_PFHT500_PFMET100_PFMHT100_IDTight", "HLT_PFHT500_PFMET110_PFMHT110_IDTight", "HLT_PFHT510", "HLT_PFHT590", "HLT_PFHT680", "HLT_PFHT700_PFMET85_PFMHT85_IDTight", "HLT_PFHT700_PFMET95_PFMHT95_IDTight", "HLT_PFHT780", "HLT_PFHT800_PFMET75_PFMHT75_IDTight", "HLT_PFHT800_PFMET85_PFMHT85_IDTight", "HLT_PFHT890", "HLT_PFJet140", "HLT_PFJet200", "HLT_PFJet260", "HLT_PFJet320", "HLT_PFJet40", "HLT_PFJet400", "HLT_PFJet450", "HLT_PFJet500", "HLT_PFJet550", "HLT_PFJet60", "HLT_PFJet80", "HLT_PFJetFwd140", "HLT_PFJetFwd200", "HLT_PFJetFwd260", "HLT_PFJetFwd320", "HLT_PFJetFwd40", "HLT_PFJetFwd400", "HLT_PFJetFwd450", "HLT_PFJetFwd500", "HLT_PFJetFwd60", "HLT_PFJetFwd80", "HLT_PFMET100_PFMHT100_IDTight_CaloBTagCSV_3p1", "HLT_PFMET110_PFMHT110_IDTight", "HLT_PFMET110_PFMHT110_IDTight_CaloBTagCSV_3p1", "HLT_PFMET120_PFMHT120_IDTight", "HLT_PFMET120_PFMHT120_IDTight_CaloBTagCSV_3p1", "HLT_PFMET120_PFMHT120_IDTight_PFHT60", "HLT_PFMET130_PFMHT130_IDTight", "HLT_PFMET130_PFMHT130_IDTight_CaloBTagCSV_3p1", "HLT_PFMET140_PFMHT140_IDTight", "HLT_PFMET140_PFMHT140_IDTight_CaloBTagCSV_3p1", "HLT_PFMET200_HBHE_BeamHaloCleaned", "HLT_PFMET200_HBHECleaned", "HLT_PFMET200_NotCleaned", "HLT_PFMET250_HBHECleaned", "HLT_PFMET300_HBHECleaned", "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight_PFHT60", "HLT_PFMETNoMu130_PFMHTNoMu130_IDTight", "HLT_PFMETNoMu140_PFMHTNoMu140_IDTight", "HLT_PFMETTypeOne110_PFMHT110_IDTight", "HLT_PFMETTypeOne120_PFMHT120_IDTight", "HLT_PFMETTypeOne120_PFMHT120_IDTight_PFHT60", "HLT_PFMETTypeOne130_PFMHT130_IDTight", "HLT_PFMETTypeOne140_PFMHT140_IDTight", "HLT_PFMETTypeOne200_HBHE_BeamHaloCleaned", "HLT_Photon120", "HLT_Photon120_R9Id90_HE10_IsoM", "HLT_Photon150", "HLT_Photon165_R9Id90_HE10_IsoM", "HLT_Photon175", "HLT_Photon200", "HLT_Photon20_HoverELoose", "HLT_Photon25", "HLT_Photon300_NoHE", "HLT_Photon30_HoverELoose", "HLT_Photon33", "HLT_Photon40_HoverELoose", "HLT_Photon50", "HLT_Photon50_HoverELoose", "HLT_Photon50_R9Id90_HE10_IsoM", "HLT_Photon60_HoverELoose", "HLT_Photon60_R9Id90_CaloIdL_IsoL", "HLT_Photon60_R9Id90_CaloIdL_IsoL_DisplacedIdL", "HLT_Photon60_R9Id90_CaloIdL_IsoL_DisplacedIdL_PFHT350MinPFJet15", "HLT_Photon75", "HLT_Photon75_R9Id90_HE10_IsoM", "HLT_Photon90", "HLT_Photon90_R9Id90_HE10_IsoM", "HLT_Physics", "HLT_Physics_part0", "HLT_Physics_part1", "HLT_Physics_part2", "HLT_Physics_part3", "HLT_Physics_part4", "HLT_Physics_part5", "HLT_Physics_part6", "HLT_Physics_part7", "HLT_Random", "HLT_Rsq0p35", "HLT_Rsq0p40", "HLT_RsqMR300_Rsq0p09_MR200", "HLT_RsqMR300_Rsq0p09_MR200_4jet", "HLT_RsqMR320_Rsq0p09_MR200", "HLT_RsqMR320_Rsq0p09_MR200_4jet", "HLT_SingleJet30_Mu12_SinglePFJet40", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_IsoTau15", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_IsoTau15_Charge1", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_Tau15", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_Tau15_Charge1", "HLT_TkMu100", "HLT_Trimuon5_3p5_2_Upsilon_Muon", "HLT_TripleJet110_35_35_Mjj650_PFMET110", "HLT_TripleJet110_35_35_Mjj650_PFMET120", "HLT_TripleJet110_35_35_Mjj650_PFMET130", "HLT_TripleMu_10_5_5_DZ", "HLT_TripleMu_12_10_5", "HLT_TripleMu_5_3_3_Mass3p8to60_DZ", "HLT_TriplePhoton_20_20_20_CaloIdLV2", "HLT_TriplePhoton_20_20_20_CaloIdLV2_R9IdVL", "HLT_TriplePhoton_30_30_10_CaloIdLV2", "HLT_TriplePhoton_30_30_10_CaloIdLV2_R9IdVL", "HLT_TriplePhoton_35_35_5_CaloIdLV2_R9IdVL", "HLT_TrkMu12_DoubleTrkMu5NoFiltersNoVtx", "HLT_TrkMu16_DoubleTrkMu6NoFiltersNoVtx", "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", "HLT_UncorrectedJetE30_NoBPTX", "HLT_UncorrectedJetE30_NoBPTX3BX", "HLT_UncorrectedJetE60_NoBPTX3BX", "HLT_UncorrectedJetE70_NoBPTX3BX", "HLT_VBF_DoubleLooseChargedIsoPFTau20_Trk1_eta2p1_Reg", "HLT_VBF_DoubleMediumChargedIsoPFTau20_Trk1_eta2p1_Reg", "HLT_VBF_DoubleTightChargedIsoPFTau20_Trk1_eta2p1_Reg", "HLT_ZeroBias", "HLT_ZeroBias_FirstBXAfterTrain", "HLT_ZeroBias_FirstCollisionAfterAbortGap", "HLT_ZeroBias_FirstCollisionInTrain", "HLT_ZeroBias_IsolatedBunches", "HLT_ZeroBias_LastCollisionInTrain", "HLT_ZeroBias_part0", "HLT_ZeroBias_part1", "HLT_ZeroBias_part2", "HLT_ZeroBias_part3", "HLT_ZeroBias_part4", "HLT_ZeroBias_part5", "HLT_ZeroBias_part6", "HLT_ZeroBias_part7", ]), ]) samples_2017["/MuonEG/Run2017F-31Mar2018-v1/MINIAOD"] = OD([ ("type", "data"), ("sample_category", "data_obs"), ("process_name_specific", "MuonEG_Run2017F_31Mar2018_v1"), ("nof_files", 13), ("nof_db_files", 315), ("nof_events", { }), ("nof_tree_events", 25342217), ("nof_db_events", 25776363), ("fsize_local", 18321785022), # 18.32GB, avg file size 1.41GB ("fsize_db", 1017624289576), # 1.02TB, avg file size 3.23GB ("use_it", True), ("triggers", ['1e1mu', '2e1mu', '1e2mu']), ("has_LHE", False), ("nof_PSweights", 0), ("LHE_set", ""), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2020Dec27_woPresel_nom_all_hh_multilepton/ntuples/MuonEG_Run2017F_31Mar2018_v1"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ ]), ("missing_from_superset", [ ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ "HLT_AK4CaloJet100", "HLT_AK4CaloJet120", "HLT_AK4CaloJet30", "HLT_AK4CaloJet40", "HLT_AK4CaloJet50", "HLT_AK4CaloJet80", "HLT_AK4PFJet100", "HLT_AK4PFJet120", "HLT_AK4PFJet30", "HLT_AK4PFJet50", "HLT_AK4PFJet80", "HLT_AK8PFHT750_TrimMass50", "HLT_AK8PFHT800_TrimMass50", "HLT_AK8PFHT850_TrimMass50", "HLT_AK8PFHT900_TrimMass50", "HLT_AK8PFJet140", "HLT_AK8PFJet200", "HLT_AK8PFJet260", "HLT_AK8PFJet320", "HLT_AK8PFJet330_PFAK8BTagCSV_p1", "HLT_AK8PFJet330_PFAK8BTagCSV_p17", "HLT_AK8PFJet360_TrimMass30", "HLT_AK8PFJet380_TrimMass30", "HLT_AK8PFJet40", "HLT_AK8PFJet400", "HLT_AK8PFJet400_TrimMass30", "HLT_AK8PFJet420_TrimMass30", "HLT_AK8PFJet450", "HLT_AK8PFJet500", "HLT_AK8PFJet550", "HLT_AK8PFJet60", "HLT_AK8PFJet80", "HLT_AK8PFJetFwd140", "HLT_AK8PFJetFwd200", "HLT_AK8PFJetFwd260", "HLT_AK8PFJetFwd320", "HLT_AK8PFJetFwd40", "HLT_AK8PFJetFwd400", "HLT_AK8PFJetFwd450", "HLT_AK8PFJetFwd500", "HLT_AK8PFJetFwd60", "HLT_AK8PFJetFwd80", "HLT_BTagMu_AK4DiJet110_Mu5", "HLT_BTagMu_AK4DiJet170_Mu5", "HLT_BTagMu_AK4DiJet20_Mu5", "HLT_BTagMu_AK4DiJet40_Mu5", "HLT_BTagMu_AK4DiJet70_Mu5", "HLT_BTagMu_AK4Jet300_Mu5", "HLT_BTagMu_AK8DiJet170_Mu5", "HLT_BTagMu_AK8Jet300_Mu5", "HLT_CaloJet500_NoJetID", "HLT_CaloJet550_NoJetID", "HLT_CaloMET100_HBHECleaned", "HLT_CaloMET100_NotCleaned", "HLT_CaloMET110_NotCleaned", "HLT_CaloMET250_HBHECleaned", "HLT_CaloMET250_NotCleaned", "HLT_CaloMET300_HBHECleaned", "HLT_CaloMET350_HBHECleaned", "HLT_CaloMET70_HBHECleaned", "HLT_CaloMET80_HBHECleaned", "HLT_CaloMET80_NotCleaned", "HLT_CaloMET90_HBHECleaned", "HLT_CaloMET90_NotCleaned", "HLT_CaloMHT90", "HLT_DiEle27_WPTightCaloOnly_L1DoubleEG", "HLT_DiJet110_35_Mjj650_PFMET110", "HLT_DiJet110_35_Mjj650_PFMET120", "HLT_DiJet110_35_Mjj650_PFMET130", "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", "HLT_DiMu9_Ele9_CaloIdL_TrackIdL_DZ", "HLT_Dimuon0_Jpsi", "HLT_Dimuon0_Jpsi3p5_Muon2", "HLT_Dimuon0_Jpsi_L1_4R_0er1p5R", "HLT_Dimuon0_Jpsi_L1_NoOS", "HLT_Dimuon0_Jpsi_NoVertexing", "HLT_Dimuon0_Jpsi_NoVertexing_L1_4R_0er1p5R", "HLT_Dimuon0_Jpsi_NoVertexing_NoOS", "HLT_Dimuon0_LowMass", "HLT_Dimuon0_LowMass_L1_0er1p5", "HLT_Dimuon0_LowMass_L1_0er1p5R", "HLT_Dimuon0_LowMass_L1_4", "HLT_Dimuon0_LowMass_L1_4R", "HLT_Dimuon0_LowMass_L1_TM530", "HLT_Dimuon0_Upsilon_L1_4p5", "HLT_Dimuon0_Upsilon_L1_4p5er2p0", "HLT_Dimuon0_Upsilon_L1_4p5er2p0M", "HLT_Dimuon0_Upsilon_L1_4p5NoOS", "HLT_Dimuon0_Upsilon_L1_5", "HLT_Dimuon0_Upsilon_L1_5M", "HLT_Dimuon0_Upsilon_Muon_L1_TM0", "HLT_Dimuon0_Upsilon_Muon_NoL1Mass", "HLT_Dimuon0_Upsilon_NoVertexing", "HLT_Dimuon10_PsiPrime_Barrel_Seagulls", "HLT_Dimuon10_Upsilon_Barrel_Seagulls", "HLT_Dimuon12_Upsilon_eta1p5", "HLT_Dimuon14_Phi_Barrel_Seagulls", "HLT_Dimuon18_PsiPrime", "HLT_Dimuon18_PsiPrime_noCorrL1", "HLT_Dimuon20_Jpsi_Barrel_Seagulls", "HLT_Dimuon24_Phi_noCorrL1", "HLT_Dimuon24_Upsilon_noCorrL1", "HLT_Dimuon25_Jpsi", "HLT_Dimuon25_Jpsi_noCorrL1", "HLT_DiPFJet15_FBEta3_NoCaloMatched", "HLT_DiPFJet15_NoCaloMatched", "HLT_DiPFJet25_FBEta3_NoCaloMatched", "HLT_DiPFJet25_NoCaloMatched", "HLT_DiPFJetAve100_HFJEC", "HLT_DiPFJetAve140", "HLT_DiPFJetAve15_HFJEC", "HLT_DiPFJetAve160_HFJEC", "HLT_DiPFJetAve200", "HLT_DiPFJetAve220_HFJEC", "HLT_DiPFJetAve25_HFJEC", "HLT_DiPFJetAve260", "HLT_DiPFJetAve300_HFJEC", "HLT_DiPFJetAve320", "HLT_DiPFJetAve35_HFJEC", "HLT_DiPFJetAve40", "HLT_DiPFJetAve400", "HLT_DiPFJetAve500", "HLT_DiPFJetAve60", "HLT_DiPFJetAve60_HFJEC", "HLT_DiPFJetAve80", "HLT_DiPFJetAve80_HFJEC", "HLT_Diphoton30_18_PVrealAND_R9Id_AND_IsoCaloId_AND_HE_R9Id_NoPixelVeto_Mass55", "HLT_Diphoton30_18_PVrealAND_R9Id_AND_IsoCaloId_AND_HE_R9Id_PixelVeto_Mass55", "HLT_Diphoton30_22_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", "HLT_Diphoton30_22_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass95", "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_NoPixelVeto_Mass55", "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_PixelVeto_Mass55", "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_NoPixelVeto_Mass55", "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_PixelVeto_Mass55", "HLT_DiSC30_18_EIso_AND_HE_Mass70", "HLT_DoubleEle24_eta2p1_WPTight_Gsf", "HLT_DoubleEle25_CaloIdL_MW", "HLT_DoubleEle27_CaloIdL_MW", "HLT_DoubleEle33_CaloIdL_MW", "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_DZ_PFHT350", "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT350", "HLT_DoubleIsoMu20_eta2p1", "HLT_DoubleIsoMu24_eta2p1", "HLT_DoubleL2Mu50", "HLT_DoubleLooseChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMu20_7_Mass0to30_L1_DM4", "HLT_DoubleMu20_7_Mass0to30_L1_DM4EG", "HLT_DoubleMu20_7_Mass0to30_Photon23", "HLT_DoubleMu2_Jpsi_DoubleTkMu0_Phi", "HLT_DoubleMu2_Jpsi_DoubleTrk1_Phi", "HLT_DoubleMu3_DCA_PFMET50_PFMHT60", "HLT_DoubleMu3_DoubleEle7p5_CaloIdL_TrackIdL_Upsilon", "HLT_DoubleMu3_DZ_PFMET50_PFMHT60", "HLT_DoubleMu3_DZ_PFMET70_PFMHT70", "HLT_DoubleMu3_DZ_PFMET90_PFMHT90", "HLT_DoubleMu3_TkMu_DsTau3Mu", "HLT_DoubleMu3_Trk_Tau3mu", "HLT_DoubleMu3_Trk_Tau3mu_NoL1Mass", "HLT_DoubleMu43NoFiltersNoVtx", "HLT_DoubleMu48NoFiltersNoVtx", "HLT_DoubleMu4_3_Bs", "HLT_DoubleMu4_3_Jpsi_Displaced", "HLT_DoubleMu4_Jpsi_Displaced", "HLT_DoubleMu4_Jpsi_NoVertexing", "HLT_DoubleMu4_JpsiTrk_Displaced", "HLT_DoubleMu4_JpsiTrkTrk_Displaced", "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", "HLT_DoubleMu4_Mass8_DZ_PFHT350", "HLT_DoubleMu4_PsiPrimeTrk_Displaced", "HLT_DoubleMu5_Upsilon_DoubleEle3_CaloIdL_TrackIdL", "HLT_DoubleMu8_Mass8_PFHT350", "HLT_DoublePFJets100_CaloBTagCSV_p33", "HLT_DoublePFJets100MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_DoublePFJets116MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_DoublePFJets128MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_DoublePFJets200_CaloBTagCSV_p33", "HLT_DoublePFJets350_CaloBTagCSV_p33", "HLT_DoublePFJets40_CaloBTagCSV_p33", "HLT_DoublePhoton33_CaloIdL", "HLT_DoublePhoton70", "HLT_DoublePhoton85", "HLT_DoubleTightChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_EcalCalibration", "HLT_ECALHT800", "HLT_Ele115_CaloIdVT_GsfTrkIdT", "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele135_CaloIdVT_GsfTrkIdT", "HLT_Ele145_CaloIdVT_GsfTrkIdT", "HLT_Ele15_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele15_Ele8_CaloIdL_TrackIdL_IsoVL", "HLT_Ele15_IsoVVVL_PFHT450", "HLT_Ele15_IsoVVVL_PFHT450_CaloBTagCSV_4p5", "HLT_Ele15_IsoVVVL_PFHT450_PFMET50", "HLT_Ele15_IsoVVVL_PFHT600", "HLT_Ele15_WPLoose_Gsf", "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", "HLT_Ele17_WPLoose_Gsf", "HLT_Ele200_CaloIdVT_GsfTrkIdT", "HLT_Ele20_eta2p1_WPLoose_Gsf", "HLT_Ele20_WPLoose_Gsf", "HLT_Ele20_WPTight_Gsf", "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Ele24_eta2p1_WPTight_Gsf_LooseChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_LooseChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_MediumChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_MediumChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_TightChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_TightChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele250_CaloIdVT_GsfTrkIdT", "HLT_Ele27_Ele37_CaloIdL_MW", "HLT_Ele27_WPTight_Gsf", "HLT_Ele28_eta2p1_WPTight_Gsf_HT150", "HLT_Ele28_HighEta_SC20_Mass55", "HLT_Ele300_CaloIdVT_GsfTrkIdT", "HLT_Ele30_eta2p1_WPTight_Gsf_CentralPFJet35_EleCleaned", "HLT_Ele32_WPTight_Gsf", "HLT_Ele32_WPTight_Gsf_L1DoubleEG", "HLT_Ele35_WPTight_Gsf", "HLT_Ele35_WPTight_Gsf_L1EGMT", "HLT_Ele38_WPTight_Gsf", "HLT_Ele40_WPTight_Gsf", "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", "HLT_Ele50_IsoVVVL_PFHT450", "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", "HLT_FullTrack_Multiplicity100", "HLT_FullTrack_Multiplicity130", "HLT_FullTrack_Multiplicity155", "HLT_FullTrack_Multiplicity85", "HLT_HcalCalibration", "HLT_HcalIsolatedbunch", "HLT_HcalNZS", "HLT_HcalPhiSym", "HLT_HISinglePhoton10_Eta3p1ForPPRef", "HLT_HISinglePhoton20_Eta3p1ForPPRef", "HLT_HISinglePhoton30_Eta3p1ForPPRef", "HLT_HISinglePhoton40_Eta3p1ForPPRef", "HLT_HISinglePhoton50_Eta3p1ForPPRef", "HLT_HISinglePhoton60_Eta3p1ForPPRef", "HLT_HT300_Beamspot", "HLT_HT400_DisplacedDijet40_DisplacedTrack", "HLT_HT425", "HLT_HT430_DisplacedDijet40_DisplacedTrack", "HLT_HT430_DisplacedDijet60_DisplacedTrack", "HLT_HT430_DisplacedDijet80_DisplacedTrack", "HLT_HT450_Beamspot", "HLT_HT550_DisplacedDijet60_Inclusive", "HLT_HT550_DisplacedDijet80_Inclusive", "HLT_HT650_DisplacedDijet60_Inclusive", "HLT_HT650_DisplacedDijet80_Inclusive", "HLT_HT750_DisplacedDijet80_Inclusive", "HLT_IsoMu20", "HLT_IsoMu20_eta2p1_LooseChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_LooseChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu20_eta2p1_MediumChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_MediumChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu20_eta2p1_TightChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_TightChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu24", "HLT_IsoMu24_eta2p1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau40_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau40_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu27", "HLT_IsoMu27_LooseChargedIsoPFTau20_SingleL1", "HLT_IsoMu27_MediumChargedIsoPFTau20_SingleL1", "HLT_IsoMu27_TightChargedIsoPFTau20_SingleL1", "HLT_IsoMu30", "HLT_IsoTrackHB", "HLT_IsoTrackHE", "HLT_L1_CDC_SingleMu_3_er1p2_TOP120_DPHI2p618_3p142", "HLT_L1_DoubleJet30_Mass_Min400_Mu10", "HLT_L1ETMHadSeeds", "HLT_L1MinimumBiasHF0OR", "HLT_L1MinimumBiasHF_OR", "HLT_L1NotBptxOR", "HLT_L1SingleMu18", "HLT_L1SingleMu25", "HLT_L1UnpairedBunchBptxMinus", "HLT_L1UnpairedBunchBptxPlus", "HLT_L2Mu10", "HLT_L2Mu10_NoVertex_NoBPTX", "HLT_L2Mu10_NoVertex_NoBPTX3BX", "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX", "HLT_L2Mu50", "HLT_MediumChargedIsoPFTau180HighPtRelaxedIso_Trk50_eta2p1", "HLT_MediumChargedIsoPFTau180HighPtRelaxedIso_Trk50_eta2p1_1pr", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET100", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET110", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET120", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET130", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET90", "HLT_MET105_IsoTrk50", "HLT_MET120_IsoTrk50", "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu130_PFMHTNoMu130_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu140_PFMHTNoMu140_IDTight", "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", "HLT_Mu12", "HLT_Mu12_DoublePFJets100_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets200_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets350_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets40_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets40MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_Mu12_DoublePFJets54MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_Mu12_DoublePFJets62MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_Mu12_DoublePhoton20", "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Mu15", "HLT_Mu15_IsoVVVL_PFHT450", "HLT_Mu15_IsoVVVL_PFHT450_CaloBTagCSV_4p5", "HLT_Mu15_IsoVVVL_PFHT450_PFMET50", "HLT_Mu15_IsoVVVL_PFHT600", "HLT_Mu17", "HLT_Mu17_Photon30_IsoCaloId", "HLT_Mu17_TrkIsoVVL", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ_Mass3p8", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ_Mass8", "HLT_Mu18_Mu9", "HLT_Mu18_Mu9_DZ", "HLT_Mu18_Mu9_SameSign", "HLT_Mu18_Mu9_SameSign_DZ", "HLT_Mu19", "HLT_Mu19_TrkIsoVVL", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL_DZ", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL_DZ_Mass3p8", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL_DZ_Mass8", "HLT_Mu20", "HLT_Mu20_Mu10", "HLT_Mu20_Mu10_DZ", "HLT_Mu20_Mu10_SameSign", "HLT_Mu20_Mu10_SameSign_DZ", "HLT_Mu20_TkMu0_Phi", "HLT_Mu23_Mu12", "HLT_Mu23_Mu12_DZ", "HLT_Mu23_Mu12_SameSign", "HLT_Mu23_Mu12_SameSign_DZ", "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Mu25_TkMu0_Onia", "HLT_Mu25_TkMu0_Phi", "HLT_Mu27", "HLT_Mu27_Ele37_CaloIdL_MW", "HLT_Mu30_TkMu0_Onia", "HLT_Mu37_Ele27_CaloIdL_MW", "HLT_Mu37_TkMu27", "HLT_Mu3_PFJet40", "HLT_Mu43NoFiltersNoVtx_Photon43_CaloIdL", "HLT_Mu48NoFiltersNoVtx_Photon48_CaloIdL", "HLT_Mu50", "HLT_Mu50_IsoVVVL_PFHT450", "HLT_Mu55", "HLT_Mu7p5_L2Mu2_Jpsi", "HLT_Mu7p5_L2Mu2_Upsilon", "HLT_Mu7p5_Track2_Jpsi", "HLT_Mu7p5_Track2_Upsilon", "HLT_Mu7p5_Track3p5_Jpsi", "HLT_Mu7p5_Track3p5_Upsilon", "HLT_Mu7p5_Track7_Jpsi", "HLT_Mu7p5_Track7_Upsilon", "HLT_Mu8", "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", "HLT_Mu8_DiEle12_CaloIdL_TrackIdL_DZ", "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT350", "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT350_DZ", "HLT_Mu8_TrkIsoVVL", "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_OldMu100", "HLT_PFHT1050", "HLT_PFHT180", "HLT_PFHT250", "HLT_PFHT300PT30_QuadPFJet_75_60_45_40", "HLT_PFHT300PT30_QuadPFJet_75_60_45_40_TriplePFBTagCSV_3p0", "HLT_PFHT350", "HLT_PFHT350MinPFJet15", "HLT_PFHT370", "HLT_PFHT380_SixPFJet32", "HLT_PFHT380_SixPFJet32_DoublePFBTagCSV_2p2", "HLT_PFHT380_SixPFJet32_DoublePFBTagDeepCSV_2p2", "HLT_PFHT430", "HLT_PFHT430_SixPFJet40", "HLT_PFHT430_SixPFJet40_PFBTagCSV_1p5", "HLT_PFHT500_PFMET100_PFMHT100_IDTight", "HLT_PFHT500_PFMET110_PFMHT110_IDTight", "HLT_PFHT510", "HLT_PFHT590", "HLT_PFHT680", "HLT_PFHT700_PFMET85_PFMHT85_IDTight", "HLT_PFHT700_PFMET95_PFMHT95_IDTight", "HLT_PFHT780", "HLT_PFHT800_PFMET75_PFMHT75_IDTight", "HLT_PFHT800_PFMET85_PFMHT85_IDTight", "HLT_PFHT890", "HLT_PFJet140", "HLT_PFJet200", "HLT_PFJet260", "HLT_PFJet320", "HLT_PFJet40", "HLT_PFJet400", "HLT_PFJet450", "HLT_PFJet500", "HLT_PFJet550", "HLT_PFJet60", "HLT_PFJet80", "HLT_PFJetFwd140", "HLT_PFJetFwd200", "HLT_PFJetFwd260", "HLT_PFJetFwd320", "HLT_PFJetFwd40", "HLT_PFJetFwd400", "HLT_PFJetFwd450", "HLT_PFJetFwd500", "HLT_PFJetFwd60", "HLT_PFJetFwd80", "HLT_PFMET100_PFMHT100_IDTight_CaloBTagCSV_3p1", "HLT_PFMET100_PFMHT100_IDTight_PFHT60", "HLT_PFMET110_PFMHT110_IDTight", "HLT_PFMET110_PFMHT110_IDTight_CaloBTagCSV_3p1", "HLT_PFMET120_PFMHT120_IDTight", "HLT_PFMET120_PFMHT120_IDTight_CaloBTagCSV_3p1", "HLT_PFMET120_PFMHT120_IDTight_PFHT60", "HLT_PFMET130_PFMHT130_IDTight", "HLT_PFMET130_PFMHT130_IDTight_CaloBTagCSV_3p1", "HLT_PFMET140_PFMHT140_IDTight", "HLT_PFMET140_PFMHT140_IDTight_CaloBTagCSV_3p1", "HLT_PFMET200_HBHE_BeamHaloCleaned", "HLT_PFMET200_HBHECleaned", "HLT_PFMET200_NotCleaned", "HLT_PFMET250_HBHECleaned", "HLT_PFMET300_HBHECleaned", "HLT_PFMETNoMu100_PFMHTNoMu100_IDTight_PFHT60", "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight_PFHT60", "HLT_PFMETNoMu130_PFMHTNoMu130_IDTight", "HLT_PFMETNoMu140_PFMHTNoMu140_IDTight", "HLT_PFMETTypeOne100_PFMHT100_IDTight_PFHT60", "HLT_PFMETTypeOne110_PFMHT110_IDTight", "HLT_PFMETTypeOne120_PFMHT120_IDTight", "HLT_PFMETTypeOne120_PFMHT120_IDTight_PFHT60", "HLT_PFMETTypeOne130_PFMHT130_IDTight", "HLT_PFMETTypeOne140_PFMHT140_IDTight", "HLT_PFMETTypeOne200_HBHE_BeamHaloCleaned", "HLT_Photon120", "HLT_Photon120_R9Id90_HE10_IsoM", "HLT_Photon150", "HLT_Photon165_R9Id90_HE10_IsoM", "HLT_Photon175", "HLT_Photon20", "HLT_Photon200", "HLT_Photon20_HoverELoose", "HLT_Photon25", "HLT_Photon300_NoHE", "HLT_Photon30_HoverELoose", "HLT_Photon33", "HLT_Photon40_HoverELoose", "HLT_Photon50", "HLT_Photon50_HoverELoose", "HLT_Photon50_R9Id90_HE10_IsoM", "HLT_Photon50_R9Id90_HE10_IsoM_EBOnly_PFJetsMJJ300DEta3_PFMET50", "HLT_Photon60_HoverELoose", "HLT_Photon60_R9Id90_CaloIdL_IsoL", "HLT_Photon60_R9Id90_CaloIdL_IsoL_DisplacedIdL", "HLT_Photon60_R9Id90_CaloIdL_IsoL_DisplacedIdL_PFHT350MinPFJet15", "HLT_Photon75", "HLT_Photon75_R9Id90_HE10_IsoM", "HLT_Photon75_R9Id90_HE10_IsoM_EBOnly_PFJetsMJJ300DEta3", "HLT_Photon75_R9Id90_HE10_IsoM_EBOnly_PFJetsMJJ600DEta3", "HLT_Photon90", "HLT_Photon90_R9Id90_HE10_IsoM", "HLT_Physics", "HLT_Physics_part0", "HLT_Physics_part1", "HLT_Physics_part2", "HLT_Physics_part3", "HLT_Physics_part4", "HLT_Physics_part5", "HLT_Physics_part6", "HLT_Physics_part7", "HLT_QuadPFJet103_88_75_15", "HLT_QuadPFJet103_88_75_15_BTagCSV_p013_VBF2", "HLT_QuadPFJet103_88_75_15_DoubleBTagCSV_p013_p08_VBF1", "HLT_QuadPFJet105_88_76_15", "HLT_QuadPFJet105_88_76_15_BTagCSV_p013_VBF2", "HLT_QuadPFJet105_90_76_15_DoubleBTagCSV_p013_p08_VBF1", "HLT_QuadPFJet111_90_80_15", "HLT_QuadPFJet111_90_80_15_BTagCSV_p013_VBF2", "HLT_QuadPFJet111_90_80_15_DoubleBTagCSV_p013_p08_VBF1", "HLT_QuadPFJet98_83_71_15", "HLT_QuadPFJet98_83_71_15_BTagCSV_p013_VBF2", "HLT_QuadPFJet98_83_71_15_DoubleBTagCSV_p013_p08_VBF1", "HLT_Random", "HLT_Rsq0p35", "HLT_Rsq0p40", "HLT_RsqMR300_Rsq0p09_MR200", "HLT_RsqMR300_Rsq0p09_MR200_4jet", "HLT_RsqMR320_Rsq0p09_MR200", "HLT_RsqMR320_Rsq0p09_MR200_4jet", "HLT_SingleJet30_Mu12_SinglePFJet40", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_IsoTau15", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_IsoTau15_Charge1", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_Tau15", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_Tau15_Charge1", "HLT_TkMu100", "HLT_Trimuon5_3p5_2_Upsilon_Muon", "HLT_TrimuonOpen_5_3p5_2_Upsilon_Muon", "HLT_TripleJet110_35_35_Mjj650_PFMET110", "HLT_TripleJet110_35_35_Mjj650_PFMET120", "HLT_TripleJet110_35_35_Mjj650_PFMET130", "HLT_TripleMu_10_5_5_DZ", "HLT_TripleMu_12_10_5", "HLT_TripleMu_5_3_3_Mass3p8to60_DCA", "HLT_TripleMu_5_3_3_Mass3p8to60_DZ", "HLT_TriplePhoton_20_20_20_CaloIdLV2", "HLT_TriplePhoton_20_20_20_CaloIdLV2_R9IdVL", "HLT_TriplePhoton_30_30_10_CaloIdLV2", "HLT_TriplePhoton_30_30_10_CaloIdLV2_R9IdVL", "HLT_TriplePhoton_35_35_5_CaloIdLV2_R9IdVL", "HLT_TrkMu12_DoubleTrkMu5NoFiltersNoVtx", "HLT_TrkMu16_DoubleTrkMu6NoFiltersNoVtx", "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", "HLT_UncorrectedJetE30_NoBPTX", "HLT_UncorrectedJetE30_NoBPTX3BX", "HLT_UncorrectedJetE60_NoBPTX3BX", "HLT_UncorrectedJetE70_NoBPTX3BX", "HLT_VBF_DoubleLooseChargedIsoPFTau20_Trk1_eta2p1_Reg", "HLT_VBF_DoubleMediumChargedIsoPFTau20_Trk1_eta2p1_Reg", "HLT_VBF_DoubleTightChargedIsoPFTau20_Trk1_eta2p1_Reg", "HLT_ZeroBias", "HLT_ZeroBias_Beamspot", "HLT_ZeroBias_FirstBXAfterTrain", "HLT_ZeroBias_FirstCollisionAfterAbortGap", "HLT_ZeroBias_FirstCollisionInTrain", "HLT_ZeroBias_IsolatedBunches", "HLT_ZeroBias_LastCollisionInTrain", "HLT_ZeroBias_part0", "HLT_ZeroBias_part1", "HLT_ZeroBias_part2", "HLT_ZeroBias_part3", "HLT_ZeroBias_part4", "HLT_ZeroBias_part5", "HLT_ZeroBias_part6", "HLT_ZeroBias_part7", ]), ]) samples_2017["/Tau/Run2017B-31Mar2018-v1/MINIAOD"] = OD([ ("type", "data"), ("sample_category", "data_obs"), ("process_name_specific", "Tau_Run2017B_31Mar2018_v1"), ("nof_files", 18), ("nof_db_files", 321), ("nof_events", { }), ("nof_tree_events", 35638453), ("nof_db_events", 38158216), ("fsize_local", 26872762623), # 26.87GB, avg file size 1.49GB ("fsize_db", 1187014116504), # 1.19TB, avg file size 3.70GB ("use_it", True), ("triggers", ['1e1tau', '1mu1tau', '2tau']), ("has_LHE", False), ("nof_PSweights", 0), ("LHE_set", ""), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2020Dec27_woPresel_nom_all_hh_multilepton/ntuples/Tau_Run2017B_31Mar2018_v1"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ ]), ("missing_from_superset", [ ]), ("missing_hlt_paths", [ "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", "HLT_Ele32_WPTight_Gsf", "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ_Mass3p8", "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", "HLT_Mu3_PFJet40", ]), ("hlt_paths", [ "HLT_AK4CaloJet100", "HLT_AK4CaloJet120", "HLT_AK4CaloJet30", "HLT_AK4CaloJet40", "HLT_AK4CaloJet50", "HLT_AK4CaloJet80", "HLT_AK4PFJet100", "HLT_AK4PFJet120", "HLT_AK4PFJet30", "HLT_AK4PFJet50", "HLT_AK4PFJet80", "HLT_AK8PFJet140", "HLT_AK8PFJet200", "HLT_AK8PFJet260", "HLT_AK8PFJet320", "HLT_AK8PFJet40", "HLT_AK8PFJet400", "HLT_AK8PFJet450", "HLT_AK8PFJet500", "HLT_AK8PFJet550", "HLT_AK8PFJet60", "HLT_AK8PFJet80", "HLT_BTagMu_AK4DiJet110_Mu5", "HLT_BTagMu_AK4DiJet170_Mu5", "HLT_BTagMu_AK4DiJet20_Mu5", "HLT_BTagMu_AK4DiJet40_Mu5", "HLT_BTagMu_AK4DiJet70_Mu5", "HLT_BTagMu_AK4Jet300_Mu5", "HLT_BTagMu_AK8DiJet170_Mu5", "HLT_BTagMu_AK8Jet300_Mu5", "HLT_CaloJet500_NoJetID", "HLT_CaloJet550_NoJetID", "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", "HLT_DiMu9_Ele9_CaloIdL_TrackIdL_DZ", "HLT_Dimuon0_LowMass_L1_0er1p5R", "HLT_Dimuon0_LowMass_L1_4R", "HLT_Dimuon10_PsiPrime_Barrel_Seagulls", "HLT_Dimuon12_Upsilon_eta1p5", "HLT_Dimuon14_Phi_Barrel_Seagulls", "HLT_Dimuon18_PsiPrime", "HLT_Dimuon20_Jpsi_Barrel_Seagulls", "HLT_Dimuon25_Jpsi", "HLT_DiPFJet15_FBEta3_NoCaloMatched", "HLT_DiPFJet15_NoCaloMatched", "HLT_DiPFJet25_FBEta3_NoCaloMatched", "HLT_DiPFJet25_NoCaloMatched", "HLT_DiPFJetAve15_HFJEC", "HLT_DiPFJetAve25_HFJEC", "HLT_DiPFJetAve35_HFJEC", "HLT_Diphoton30_22_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", "HLT_Diphoton30_22_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass95", "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_NoPixelVeto_Mass55", "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_PixelVeto_Mass55", "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_NoPixelVeto_Mass55", "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_PixelVeto_Mass55", "HLT_DiSC30_18_EIso_AND_HE_Mass70", "HLT_DoubleEle33_CaloIdL_MW", "HLT_DoubleLooseChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMu20_7_Mass0to30_L1_DM4EG", "HLT_DoubleMu20_7_Mass0to30_Photon23", "HLT_DoubleMu3_Trk_Tau3mu", "HLT_DoubleMu4_3_Bs", "HLT_DoubleMu4_3_Jpsi_Displaced", "HLT_DoubleMu4_Jpsi_Displaced", "HLT_DoubleMu4_Jpsi_NoVertexing", "HLT_DoubleMu4_JpsiTrk_Displaced", "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", "HLT_DoubleMu4_PsiPrimeTrk_Displaced", "HLT_DoublePhoton33_CaloIdL", "HLT_DoublePhoton70", "HLT_DoublePhoton85", "HLT_DoubleTightChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_EcalCalibration", "HLT_ECALHT800", "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Ele24_eta2p1_WPTight_Gsf_LooseChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_LooseChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_MediumChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_MediumChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_TightChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_TightChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele27_WPTight_Gsf", "HLT_Ele28_eta2p1_WPTight_Gsf_HT150", "HLT_Ele30_eta2p1_WPTight_Gsf_CentralPFJet35_EleCleaned", "HLT_Ele32_WPTight_Gsf_L1DoubleEG", "HLT_Ele35_WPTight_Gsf", "HLT_Ele38_WPTight_Gsf", "HLT_Ele40_WPTight_Gsf", "HLT_FullTrack_Multiplicity105", "HLT_FullTrack_Multiplicity135", "HLT_FullTrack_Multiplicity155", "HLT_FullTrack_Multiplicity85", "HLT_HcalCalibration", "HLT_HcalIsolatedbunch", "HLT_HcalNZS", "HLT_HcalPhiSym", "HLT_HISinglePhoton10_Eta3p1ForPPRef", "HLT_HISinglePhoton20_Eta3p1ForPPRef", "HLT_HISinglePhoton30_Eta3p1ForPPRef", "HLT_HISinglePhoton40_Eta3p1ForPPRef", "HLT_HISinglePhoton50_Eta3p1ForPPRef", "HLT_HISinglePhoton60_Eta3p1ForPPRef", "HLT_HT300_Beamspot", "HLT_HT300PT30_QuadJet_75_60_45_40", "HLT_HT300PT30_QuadJet_75_60_45_40_TripeCSV_p07", "HLT_HT450_Beamspot", "HLT_IsoMu20", "HLT_IsoMu20_eta2p1_LooseChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_LooseChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu20_eta2p1_MediumChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_MediumChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu20_eta2p1_TightChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_TightChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu24", "HLT_IsoMu24_eta2p1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu27", "HLT_L1FatEvents", "HLT_L1MinimumBiasHF0OR", "HLT_L1MinimumBiasHF_OR", "HLT_L1NotBptxOR", "HLT_L1SingleMu18", "HLT_L1SingleMu25", "HLT_L1UnpairedBunchBptxMinus", "HLT_L1UnpairedBunchBptxPlus", "HLT_L2Mu10", "HLT_L2Mu10_NoVertex_NoBPTX", "HLT_L2Mu10_NoVertex_NoBPTX3BX", "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX", "HLT_MediumChargedIsoPFTau100HighPtRelaxedIso_Trk50_eta2p1_1pr", "HLT_MediumChargedIsoPFTau180HighPtRelaxedIso_Trk50_eta2p1", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET100", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET90", "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Mu17", "HLT_Mu17_TrkIsoVVL", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ_Mass8", "HLT_Mu20", "HLT_Mu20_TkMu0_Phi", "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Mu27", "HLT_Mu30_TkMu0_Onia", "HLT_Mu50", "HLT_Mu7p5_Track2_Jpsi", "HLT_Mu7p5_Track2_Upsilon", "HLT_Mu7p5_Track3p5_Jpsi", "HLT_Mu7p5_Track3p5_Upsilon", "HLT_Mu7p5_Track7_Jpsi", "HLT_Mu7p5_Track7_Upsilon", "HLT_Mu8", "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", "HLT_Mu8_DiEle12_CaloIdL_TrackIdL_DZ", "HLT_Mu8_TrkIsoVVL", "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_PFHT1050", "HLT_PFHT180", "HLT_PFHT250", "HLT_PFHT350", "HLT_PFHT370", "HLT_PFHT380_SixJet32_DoubleBTagCSV_p075", "HLT_PFHT430", "HLT_PFHT430_SixJet40_BTagCSV_p080", "HLT_PFHT500_PFMET100_PFMHT100_IDTight", "HLT_PFHT500_PFMET110_PFMHT110_IDTight", "HLT_PFHT510", "HLT_PFHT590", "HLT_PFHT680", "HLT_PFHT700_PFMET85_PFMHT85_IDTight", "HLT_PFHT700_PFMET95_PFMHT95_IDTight", "HLT_PFHT780", "HLT_PFHT800_PFMET75_PFMHT75_IDTight", "HLT_PFHT800_PFMET85_PFMHT85_IDTight", "HLT_PFHT890", "HLT_PFJet140", "HLT_PFJet200", "HLT_PFJet260", "HLT_PFJet320", "HLT_PFJet40", "HLT_PFJet400", "HLT_PFJet450", "HLT_PFJet500", "HLT_PFJet550", "HLT_PFJet60", "HLT_PFJet80", "HLT_PFMET110_PFMHT110_IDTight", "HLT_PFMET120_PFMHT120_IDTight", "HLT_PFMET130_PFMHT130_IDTight", "HLT_PFMET140_PFMHT140_IDTight", "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", "HLT_PFMETTypeOne110_PFMHT110_IDTight", "HLT_PFMETTypeOne120_PFMHT120_IDTight", "HLT_PFMETTypeOne130_PFMHT130_IDTight", "HLT_PFMETTypeOne140_PFMHT140_IDTight", "HLT_Photon120", "HLT_Photon120_R9Id90_HE10_IsoM", "HLT_Photon150", "HLT_Photon165_R9Id90_HE10_IsoM", "HLT_Photon175", "HLT_Photon200", "HLT_Photon20_HoverELoose", "HLT_Photon300_NoHE", "HLT_Photon30_HoverELoose", "HLT_Photon33", "HLT_Photon40_HoverELoose", "HLT_Photon50", "HLT_Photon50_HoverELoose", "HLT_Photon50_R9Id90_HE10_IsoM", "HLT_Photon60_HoverELoose", "HLT_Photon60_R9Id90_CaloIdL_IsoL_DisplacedIdL_PFHT350MinPFJet15", "HLT_Photon75", "HLT_Photon75_R9Id90_HE10_IsoM", "HLT_Photon90", "HLT_Photon90_R9Id90_HE10_IsoM", "HLT_Physics", "HLT_Random", "HLT_Trimuon2_Upsilon5_Muon", "HLT_TripleMu_10_5_5_DZ", "HLT_TripleMu_12_10_5", "HLT_UncorrectedJetE30_NoBPTX", "HLT_UncorrectedJetE30_NoBPTX3BX", "HLT_UncorrectedJetE60_NoBPTX3BX", "HLT_UncorrectedJetE70_NoBPTX3BX", "HLT_ZeroBias", "HLT_ZeroBias_FirstBXAfterTrain", "HLT_ZeroBias_FirstCollisionAfterAbortGap", "HLT_ZeroBias_FirstCollisionInTrain", "HLT_ZeroBias_IsolatedBunches", "HLT_ZeroBias_LastCollisionInTrain", "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_ZeroBias_part8", "HLT_ZeroBias_part9", ]), ]) samples_2017["/Tau/Run2017C-31Mar2018-v1/MINIAOD"] = OD([ ("type", "data"), ("sample_category", "data_obs"), ("process_name_specific", "Tau_Run2017C_31Mar2018_v1"), ("nof_files", 26), ("nof_db_files", 477), ("nof_events", { }), ("nof_tree_events", 51498406), ("nof_db_events", 55416425), ("fsize_local", 39029143249), # 39.03GB, avg file size 1.50GB ("fsize_db", 1688592326507), # 1.69TB, avg file size 3.54GB ("use_it", True), ("triggers", ['1e1tau', '1mu1tau', '2tau']), ("has_LHE", False), ("nof_PSweights", 0), ("LHE_set", ""), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2020Dec27_woPresel_nom_all_hh_multilepton/ntuples/Tau_Run2017C_31Mar2018_v1"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ ]), ("missing_from_superset", [ ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ "HLT_AK4CaloJet100", "HLT_AK4CaloJet120", "HLT_AK4CaloJet30", "HLT_AK4CaloJet40", "HLT_AK4CaloJet50", "HLT_AK4CaloJet80", "HLT_AK4PFJet100", "HLT_AK4PFJet120", "HLT_AK4PFJet30", "HLT_AK4PFJet50", "HLT_AK4PFJet80", "HLT_AK8PFHT750_TrimMass50", "HLT_AK8PFHT800_TrimMass50", "HLT_AK8PFHT850_TrimMass50", "HLT_AK8PFHT900_TrimMass50", "HLT_AK8PFJet140", "HLT_AK8PFJet200", "HLT_AK8PFJet260", "HLT_AK8PFJet320", "HLT_AK8PFJet360_TrimMass30", "HLT_AK8PFJet380_TrimMass30", "HLT_AK8PFJet40", "HLT_AK8PFJet400", "HLT_AK8PFJet400_TrimMass30", "HLT_AK8PFJet420_TrimMass30", "HLT_AK8PFJet450", "HLT_AK8PFJet500", "HLT_AK8PFJet550", "HLT_AK8PFJet60", "HLT_AK8PFJet80", "HLT_AK8PFJetFwd140", "HLT_AK8PFJetFwd200", "HLT_AK8PFJetFwd260", "HLT_AK8PFJetFwd320", "HLT_AK8PFJetFwd40", "HLT_AK8PFJetFwd400", "HLT_AK8PFJetFwd450", "HLT_AK8PFJetFwd500", "HLT_AK8PFJetFwd60", "HLT_AK8PFJetFwd80", "HLT_BTagMu_AK4DiJet110_Mu5", "HLT_BTagMu_AK4DiJet170_Mu5", "HLT_BTagMu_AK4DiJet20_Mu5", "HLT_BTagMu_AK4DiJet40_Mu5", "HLT_BTagMu_AK4DiJet70_Mu5", "HLT_BTagMu_AK4Jet300_Mu5", "HLT_BTagMu_AK8DiJet170_Mu5", "HLT_BTagMu_AK8Jet300_Mu5", "HLT_CaloJet500_NoJetID", "HLT_CaloJet550_NoJetID", "HLT_CaloMET100_HBHECleaned", "HLT_CaloMET100_NotCleaned", "HLT_CaloMET110_NotCleaned", "HLT_CaloMET250_HBHECleaned", "HLT_CaloMET250_NotCleaned", "HLT_CaloMET300_HBHECleaned", "HLT_CaloMET350_HBHECleaned", "HLT_CaloMET70_HBHECleaned", "HLT_CaloMET80_HBHECleaned", "HLT_CaloMET80_NotCleaned", "HLT_CaloMET90_HBHECleaned", "HLT_CaloMET90_NotCleaned", "HLT_CaloMHT90", "HLT_DiEle27_WPTightCaloOnly_L1DoubleEG", "HLT_DiJet110_35_Mjj650_PFMET110", "HLT_DiJet110_35_Mjj650_PFMET120", "HLT_DiJet110_35_Mjj650_PFMET130", "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", "HLT_DiMu9_Ele9_CaloIdL_TrackIdL_DZ", "HLT_Dimuon0_Jpsi", "HLT_Dimuon0_Jpsi3p5_Muon2", "HLT_Dimuon0_Jpsi_L1_4R_0er1p5R", "HLT_Dimuon0_Jpsi_L1_NoOS", "HLT_Dimuon0_Jpsi_NoVertexing", "HLT_Dimuon0_Jpsi_NoVertexing_L1_4R_0er1p5R", "HLT_Dimuon0_Jpsi_NoVertexing_NoOS", "HLT_Dimuon0_LowMass", "HLT_Dimuon0_LowMass_L1_0er1p5", "HLT_Dimuon0_LowMass_L1_0er1p5R", "HLT_Dimuon0_LowMass_L1_4", "HLT_Dimuon0_LowMass_L1_4R", "HLT_Dimuon0_LowMass_L1_TM530", "HLT_Dimuon0_Upsilon_L1_4p5", "HLT_Dimuon0_Upsilon_L1_4p5er2p0", "HLT_Dimuon0_Upsilon_L1_4p5er2p0M", "HLT_Dimuon0_Upsilon_L1_4p5NoOS", "HLT_Dimuon0_Upsilon_L1_5", "HLT_Dimuon0_Upsilon_L1_5M", "HLT_Dimuon0_Upsilon_Muon_L1_TM0", "HLT_Dimuon0_Upsilon_Muon_NoL1Mass", "HLT_Dimuon0_Upsilon_NoVertexing", "HLT_Dimuon10_PsiPrime_Barrel_Seagulls", "HLT_Dimuon10_Upsilon_Barrel_Seagulls", "HLT_Dimuon12_Upsilon_eta1p5", "HLT_Dimuon14_Phi_Barrel_Seagulls", "HLT_Dimuon18_PsiPrime", "HLT_Dimuon18_PsiPrime_noCorrL1", "HLT_Dimuon20_Jpsi_Barrel_Seagulls", "HLT_Dimuon24_Phi_noCorrL1", "HLT_Dimuon24_Upsilon_noCorrL1", "HLT_Dimuon25_Jpsi", "HLT_Dimuon25_Jpsi_noCorrL1", "HLT_DiPFJet15_FBEta3_NoCaloMatched", "HLT_DiPFJet15_NoCaloMatched", "HLT_DiPFJet25_FBEta3_NoCaloMatched", "HLT_DiPFJet25_NoCaloMatched", "HLT_DiPFJetAve100_HFJEC", "HLT_DiPFJetAve140", "HLT_DiPFJetAve15_HFJEC", "HLT_DiPFJetAve160_HFJEC", "HLT_DiPFJetAve200", "HLT_DiPFJetAve220_HFJEC", "HLT_DiPFJetAve25_HFJEC", "HLT_DiPFJetAve260", "HLT_DiPFJetAve300_HFJEC", "HLT_DiPFJetAve320", "HLT_DiPFJetAve35_HFJEC", "HLT_DiPFJetAve40", "HLT_DiPFJetAve400", "HLT_DiPFJetAve500", "HLT_DiPFJetAve60", "HLT_DiPFJetAve60_HFJEC", "HLT_DiPFJetAve80", "HLT_DiPFJetAve80_HFJEC", "HLT_Diphoton30_22_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", "HLT_Diphoton30_22_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass95", "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_NoPixelVeto_Mass55", "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_PixelVeto_Mass55", "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_NoPixelVeto_Mass55", "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_PixelVeto_Mass55", "HLT_DiSC30_18_EIso_AND_HE_Mass70", "HLT_DoubleEle24_eta2p1_WPTight_Gsf", "HLT_DoubleEle25_CaloIdL_MW", "HLT_DoubleEle27_CaloIdL_MW", "HLT_DoubleEle33_CaloIdL_MW", "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_DZ_PFHT350", "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT350", "HLT_DoubleIsoMu20_eta2p1", "HLT_DoubleIsoMu24_eta2p1", "HLT_DoubleL2Mu50", "HLT_DoubleLooseChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMu20_7_Mass0to30_L1_DM4", "HLT_DoubleMu20_7_Mass0to30_L1_DM4EG", "HLT_DoubleMu20_7_Mass0to30_Photon23", "HLT_DoubleMu3_DZ_PFMET50_PFMHT60", "HLT_DoubleMu3_DZ_PFMET70_PFMHT70", "HLT_DoubleMu3_DZ_PFMET90_PFMHT90", "HLT_DoubleMu3_Trk_Tau3mu", "HLT_DoubleMu3_Trk_Tau3mu_NoL1Mass", "HLT_DoubleMu43NoFiltersNoVtx", "HLT_DoubleMu48NoFiltersNoVtx", "HLT_DoubleMu4_3_Bs", "HLT_DoubleMu4_3_Jpsi_Displaced", "HLT_DoubleMu4_Jpsi_Displaced", "HLT_DoubleMu4_Jpsi_NoVertexing", "HLT_DoubleMu4_JpsiTrk_Displaced", "HLT_DoubleMu4_JpsiTrkTrk_Displaced", "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", "HLT_DoubleMu4_Mass8_DZ_PFHT350", "HLT_DoubleMu4_PsiPrimeTrk_Displaced", "HLT_DoubleMu8_Mass8_PFHT350", "HLT_DoublePFJets100_CaloBTagCSV_p33", "HLT_DoublePFJets100MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_DoublePFJets116MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_DoublePFJets128MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_DoublePFJets200_CaloBTagCSV_p33", "HLT_DoublePFJets350_CaloBTagCSV_p33", "HLT_DoublePFJets40_CaloBTagCSV_p33", "HLT_DoublePhoton33_CaloIdL", "HLT_DoublePhoton70", "HLT_DoublePhoton85", "HLT_DoubleTightChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_EcalCalibration", "HLT_ECALHT800", "HLT_Ele115_CaloIdVT_GsfTrkIdT", "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele135_CaloIdVT_GsfTrkIdT", "HLT_Ele145_CaloIdVT_GsfTrkIdT", "HLT_Ele15_IsoVVVL_PFHT450", "HLT_Ele15_IsoVVVL_PFHT450_CaloBTagCSV_4p5", "HLT_Ele15_IsoVVVL_PFHT450_PFMET50", "HLT_Ele15_IsoVVVL_PFHT600", "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", "HLT_Ele200_CaloIdVT_GsfTrkIdT", "HLT_Ele20_eta2p1_WPLoose_Gsf", "HLT_Ele20_WPLoose_Gsf", "HLT_Ele20_WPTight_Gsf", "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Ele24_eta2p1_WPTight_Gsf_LooseChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_LooseChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_MediumChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_MediumChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_TightChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_TightChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele250_CaloIdVT_GsfTrkIdT", "HLT_Ele27_Ele37_CaloIdL_MW", "HLT_Ele27_WPTight_Gsf", "HLT_Ele28_eta2p1_WPTight_Gsf_HT150", "HLT_Ele28_HighEta_SC20_Mass55", "HLT_Ele300_CaloIdVT_GsfTrkIdT", "HLT_Ele30_eta2p1_WPTight_Gsf_CentralPFJet35_EleCleaned", "HLT_Ele32_WPTight_Gsf", "HLT_Ele32_WPTight_Gsf_L1DoubleEG", "HLT_Ele35_WPTight_Gsf", "HLT_Ele35_WPTight_Gsf_L1EGMT", "HLT_Ele38_WPTight_Gsf", "HLT_Ele40_WPTight_Gsf", "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", "HLT_Ele50_IsoVVVL_PFHT450", "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", "HLT_FullTrack_Multiplicity100", "HLT_FullTrack_Multiplicity130", "HLT_FullTrack_Multiplicity155", "HLT_FullTrack_Multiplicity85", "HLT_HcalCalibration", "HLT_HcalIsolatedbunch", "HLT_HcalNZS", "HLT_HcalPhiSym", "HLT_HISinglePhoton10_Eta3p1ForPPRef", "HLT_HISinglePhoton20_Eta3p1ForPPRef", "HLT_HISinglePhoton30_Eta3p1ForPPRef", "HLT_HISinglePhoton40_Eta3p1ForPPRef", "HLT_HISinglePhoton50_Eta3p1ForPPRef", "HLT_HISinglePhoton60_Eta3p1ForPPRef", "HLT_HT300_Beamspot", "HLT_HT400_DisplacedDijet40_DisplacedTrack", "HLT_HT425", "HLT_HT430_DisplacedDijet40_DisplacedTrack", "HLT_HT430_DisplacedDijet60_DisplacedTrack", "HLT_HT430_DisplacedDijet80_DisplacedTrack", "HLT_HT450_Beamspot", "HLT_HT550_DisplacedDijet60_Inclusive", "HLT_HT550_DisplacedDijet80_Inclusive", "HLT_HT650_DisplacedDijet60_Inclusive", "HLT_HT650_DisplacedDijet80_Inclusive", "HLT_HT750_DisplacedDijet80_Inclusive", "HLT_IsoMu20", "HLT_IsoMu20_eta2p1_LooseChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_LooseChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu20_eta2p1_MediumChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_MediumChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu20_eta2p1_TightChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_TightChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu24", "HLT_IsoMu24_eta2p1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau40_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau40_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu27", "HLT_IsoMu30", "HLT_IsoTrackHB", "HLT_IsoTrackHE", "HLT_L1_CDC_SingleMu_3_er1p2_TOP120_DPHI2p618_3p142", "HLT_L1ETMHadSeeds", "HLT_L1MinimumBiasHF0OR", "HLT_L1MinimumBiasHF_OR", "HLT_L1NotBptxOR", "HLT_L1SingleMu18", "HLT_L1SingleMu25", "HLT_L1UnpairedBunchBptxMinus", "HLT_L1UnpairedBunchBptxPlus", "HLT_L2Mu10", "HLT_L2Mu10_NoVertex_NoBPTX", "HLT_L2Mu10_NoVertex_NoBPTX3BX", "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX", "HLT_L2Mu50", "HLT_MediumChargedIsoPFTau180HighPtRelaxedIso_Trk50_eta2p1", "HLT_MediumChargedIsoPFTau180HighPtRelaxedIso_Trk50_eta2p1_1pr", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET100", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET110", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET120", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET130", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET90", "HLT_MET105_IsoTrk50", "HLT_MET120_IsoTrk50", "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu130_PFMHTNoMu130_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu140_PFMHTNoMu140_IDTight", "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", "HLT_Mu12_DoublePFJets100_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets200_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets350_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets40_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets40MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_Mu12_DoublePFJets54MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_Mu12_DoublePFJets62MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_Mu12_DoublePhoton20", "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Mu15_IsoVVVL_PFHT450", "HLT_Mu15_IsoVVVL_PFHT450_CaloBTagCSV_4p5", "HLT_Mu15_IsoVVVL_PFHT450_PFMET50", "HLT_Mu15_IsoVVVL_PFHT600", "HLT_Mu17", "HLT_Mu17_Photon30_IsoCaloId", "HLT_Mu17_TrkIsoVVL", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ_Mass3p8", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ_Mass8", "HLT_Mu19", "HLT_Mu19_TrkIsoVVL", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL_DZ", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL_DZ_Mass3p8", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL_DZ_Mass8", "HLT_Mu20", "HLT_Mu20_TkMu0_Phi", "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Mu25_TkMu0_Onia", "HLT_Mu25_TkMu0_Phi", "HLT_Mu27", "HLT_Mu27_Ele37_CaloIdL_MW", "HLT_Mu30_TkMu0_Onia", "HLT_Mu37_Ele27_CaloIdL_MW", "HLT_Mu37_TkMu27", "HLT_Mu3_PFJet40", "HLT_Mu43NoFiltersNoVtx_Photon43_CaloIdL", "HLT_Mu48NoFiltersNoVtx_Photon48_CaloIdL", "HLT_Mu50", "HLT_Mu50_IsoVVVL_PFHT450", "HLT_Mu55", "HLT_Mu7p5_L2Mu2_Jpsi", "HLT_Mu7p5_L2Mu2_Upsilon", "HLT_Mu7p5_Track2_Jpsi", "HLT_Mu7p5_Track2_Upsilon", "HLT_Mu7p5_Track3p5_Jpsi", "HLT_Mu7p5_Track3p5_Upsilon", "HLT_Mu7p5_Track7_Jpsi", "HLT_Mu7p5_Track7_Upsilon", "HLT_Mu8", "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", "HLT_Mu8_DiEle12_CaloIdL_TrackIdL_DZ", "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT350", "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT350_DZ", "HLT_Mu8_TrkIsoVVL", "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_OldMu100", "HLT_PFHT1050", "HLT_PFHT180", "HLT_PFHT250", "HLT_PFHT300PT30_QuadPFJet_75_60_45_40", "HLT_PFHT300PT30_QuadPFJet_75_60_45_40_TriplePFBTagCSV_3p0", "HLT_PFHT350", "HLT_PFHT350MinPFJet15", "HLT_PFHT370", "HLT_PFHT380_SixPFJet32", "HLT_PFHT380_SixPFJet32_DoublePFBTagCSV_2p2", "HLT_PFHT380_SixPFJet32_DoublePFBTagDeepCSV_2p2", "HLT_PFHT430", "HLT_PFHT430_SixPFJet40", "HLT_PFHT430_SixPFJet40_PFBTagCSV_1p5", "HLT_PFHT500_PFMET100_PFMHT100_IDTight", "HLT_PFHT500_PFMET110_PFMHT110_IDTight", "HLT_PFHT510", "HLT_PFHT590", "HLT_PFHT680", "HLT_PFHT700_PFMET85_PFMHT85_IDTight", "HLT_PFHT700_PFMET95_PFMHT95_IDTight", "HLT_PFHT780", "HLT_PFHT800_PFMET75_PFMHT75_IDTight", "HLT_PFHT800_PFMET85_PFMHT85_IDTight", "HLT_PFHT890", "HLT_PFJet140", "HLT_PFJet200", "HLT_PFJet260", "HLT_PFJet320", "HLT_PFJet40", "HLT_PFJet400", "HLT_PFJet450", "HLT_PFJet500", "HLT_PFJet550", "HLT_PFJet60", "HLT_PFJet80", "HLT_PFJetFwd140", "HLT_PFJetFwd200", "HLT_PFJetFwd260", "HLT_PFJetFwd320", "HLT_PFJetFwd40", "HLT_PFJetFwd400", "HLT_PFJetFwd450", "HLT_PFJetFwd500", "HLT_PFJetFwd60", "HLT_PFJetFwd80", "HLT_PFMET100_PFMHT100_IDTight_CaloBTagCSV_3p1", "HLT_PFMET110_PFMHT110_IDTight", "HLT_PFMET110_PFMHT110_IDTight_CaloBTagCSV_3p1", "HLT_PFMET120_PFMHT120_IDTight", "HLT_PFMET120_PFMHT120_IDTight_CaloBTagCSV_3p1", "HLT_PFMET120_PFMHT120_IDTight_HFCleaned", "HLT_PFMET120_PFMHT120_IDTight_PFHT60", "HLT_PFMET120_PFMHT120_IDTight_PFHT60_HFCleaned", "HLT_PFMET130_PFMHT130_IDTight", "HLT_PFMET130_PFMHT130_IDTight_CaloBTagCSV_3p1", "HLT_PFMET140_PFMHT140_IDTight", "HLT_PFMET140_PFMHT140_IDTight_CaloBTagCSV_3p1", "HLT_PFMET200_HBHE_BeamHaloCleaned", "HLT_PFMET200_HBHECleaned", "HLT_PFMET200_NotCleaned", "HLT_PFMET250_HBHECleaned", "HLT_PFMET300_HBHECleaned", "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight_HFCleaned", "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight_PFHT60", "HLT_PFMETNoMu130_PFMHTNoMu130_IDTight", "HLT_PFMETNoMu140_PFMHTNoMu140_IDTight", "HLT_PFMETTypeOne110_PFMHT110_IDTight", "HLT_PFMETTypeOne120_PFMHT120_IDTight", "HLT_PFMETTypeOne120_PFMHT120_IDTight_HFCleaned", "HLT_PFMETTypeOne120_PFMHT120_IDTight_PFHT60", "HLT_PFMETTypeOne130_PFMHT130_IDTight", "HLT_PFMETTypeOne140_PFMHT140_IDTight", "HLT_PFMETTypeOne200_HBHE_BeamHaloCleaned", "HLT_Photon120", "HLT_Photon120_R9Id90_HE10_IsoM", "HLT_Photon150", "HLT_Photon165_R9Id90_HE10_IsoM", "HLT_Photon175", "HLT_Photon200", "HLT_Photon20_HoverELoose", "HLT_Photon25", "HLT_Photon300_NoHE", "HLT_Photon30_HoverELoose", "HLT_Photon33", "HLT_Photon40_HoverELoose", "HLT_Photon50", "HLT_Photon50_HoverELoose", "HLT_Photon50_R9Id90_HE10_IsoM", "HLT_Photon60_HoverELoose", "HLT_Photon60_R9Id90_CaloIdL_IsoL", "HLT_Photon60_R9Id90_CaloIdL_IsoL_DisplacedIdL", "HLT_Photon60_R9Id90_CaloIdL_IsoL_DisplacedIdL_PFHT350MinPFJet15", "HLT_Photon75", "HLT_Photon75_R9Id90_HE10_IsoM", "HLT_Photon90", "HLT_Photon90_R9Id90_HE10_IsoM", "HLT_Physics", "HLT_Physics_part0", "HLT_Physics_part1", "HLT_Physics_part2", "HLT_Physics_part3", "HLT_Physics_part4", "HLT_Physics_part5", "HLT_Physics_part6", "HLT_Physics_part7", "HLT_Random", "HLT_Rsq0p35", "HLT_Rsq0p40", "HLT_RsqMR300_Rsq0p09_MR200", "HLT_RsqMR300_Rsq0p09_MR200_4jet", "HLT_RsqMR320_Rsq0p09_MR200", "HLT_RsqMR320_Rsq0p09_MR200_4jet", "HLT_SingleJet30_Mu12_SinglePFJet40", "HLT_Tau3Mu_Mu5_Mu1_TkMu1_IsoTau10", "HLT_Tau3Mu_Mu5_Mu1_TkMu1_IsoTau10_Charge1", "HLT_Tau3Mu_Mu5_Mu1_TkMu1_Tau10", "HLT_Tau3Mu_Mu5_Mu1_TkMu1_Tau10_Charge1", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_IsoTau15", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_IsoTau15_Charge1", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_Tau15", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_Tau15_Charge1", "HLT_TkMu100", "HLT_Trimuon5_3p5_2_Upsilon_Muon", "HLT_TripleJet110_35_35_Mjj650_PFMET110", "HLT_TripleJet110_35_35_Mjj650_PFMET120", "HLT_TripleJet110_35_35_Mjj650_PFMET130", "HLT_TripleMu_10_5_5_DZ", "HLT_TripleMu_12_10_5", "HLT_TriplePhoton_20_20_20_CaloIdLV2", "HLT_TriplePhoton_20_20_20_CaloIdLV2_R9IdVL", "HLT_TriplePhoton_30_30_10_CaloIdLV2", "HLT_TriplePhoton_30_30_10_CaloIdLV2_R9IdVL", "HLT_TriplePhoton_35_35_5_CaloIdLV2_R9IdVL", "HLT_TrkMu12_DoubleTrkMu5NoFiltersNoVtx", "HLT_TrkMu16_DoubleTrkMu6NoFiltersNoVtx", "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", "HLT_UncorrectedJetE30_NoBPTX", "HLT_UncorrectedJetE30_NoBPTX3BX", "HLT_UncorrectedJetE60_NoBPTX3BX", "HLT_UncorrectedJetE70_NoBPTX3BX", "HLT_VBF_DoubleLooseChargedIsoPFTau20_Trk1_eta2p1_Reg", "HLT_VBF_DoubleMediumChargedIsoPFTau20_Trk1_eta2p1_Reg", "HLT_VBF_DoubleTightChargedIsoPFTau20_Trk1_eta2p1_Reg", "HLT_ZeroBias", "HLT_ZeroBias_FirstBXAfterTrain", "HLT_ZeroBias_FirstCollisionAfterAbortGap", "HLT_ZeroBias_FirstCollisionInTrain", "HLT_ZeroBias_IsolatedBunches", "HLT_ZeroBias_LastCollisionInTrain", "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_ZeroBias_part8", "HLT_ZeroBias_part9", ]), ]) samples_2017["/Tau/Run2017D-31Mar2018-v1/MINIAOD"] = OD([ ("type", "data"), ("sample_category", "data_obs"), ("process_name_specific", "Tau_Run2017D_31Mar2018_v1"), ("nof_files", 10), ("nof_db_files", 182), ("nof_events", { }), ("nof_tree_events", 20147369), ("nof_db_events", 20530776), ("fsize_local", 15625089707), # 15.63GB, avg file size 1.56GB ("fsize_db", 619178562765), # 619.18GB, avg file size 3.40GB ("use_it", True), ("triggers", ['1e1tau', '1mu1tau', '2tau']), ("has_LHE", False), ("nof_PSweights", 0), ("LHE_set", ""), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2020Dec27_woPresel_nom_all_hh_multilepton/ntuples/Tau_Run2017D_31Mar2018_v1"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ ]), ("missing_from_superset", [ ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ "HLT_AK4CaloJet100", "HLT_AK4CaloJet120", "HLT_AK4CaloJet30", "HLT_AK4CaloJet40", "HLT_AK4CaloJet50", "HLT_AK4CaloJet80", "HLT_AK4PFJet100", "HLT_AK4PFJet120", "HLT_AK4PFJet30", "HLT_AK4PFJet50", "HLT_AK4PFJet80", "HLT_AK8PFHT750_TrimMass50", "HLT_AK8PFHT800_TrimMass50", "HLT_AK8PFHT850_TrimMass50", "HLT_AK8PFHT900_TrimMass50", "HLT_AK8PFJet140", "HLT_AK8PFJet200", "HLT_AK8PFJet260", "HLT_AK8PFJet320", "HLT_AK8PFJet360_TrimMass30", "HLT_AK8PFJet380_TrimMass30", "HLT_AK8PFJet40", "HLT_AK8PFJet400", "HLT_AK8PFJet400_TrimMass30", "HLT_AK8PFJet420_TrimMass30", "HLT_AK8PFJet450", "HLT_AK8PFJet500", "HLT_AK8PFJet550", "HLT_AK8PFJet60", "HLT_AK8PFJet80", "HLT_AK8PFJetFwd140", "HLT_AK8PFJetFwd200", "HLT_AK8PFJetFwd260", "HLT_AK8PFJetFwd320", "HLT_AK8PFJetFwd40", "HLT_AK8PFJetFwd400", "HLT_AK8PFJetFwd450", "HLT_AK8PFJetFwd500", "HLT_AK8PFJetFwd60", "HLT_AK8PFJetFwd80", "HLT_BTagMu_AK4DiJet110_Mu5", "HLT_BTagMu_AK4DiJet170_Mu5", "HLT_BTagMu_AK4DiJet20_Mu5", "HLT_BTagMu_AK4DiJet40_Mu5", "HLT_BTagMu_AK4DiJet70_Mu5", "HLT_BTagMu_AK4Jet300_Mu5", "HLT_BTagMu_AK8DiJet170_Mu5", "HLT_BTagMu_AK8Jet300_Mu5", "HLT_CaloJet500_NoJetID", "HLT_CaloJet550_NoJetID", "HLT_CaloMET100_HBHECleaned", "HLT_CaloMET100_NotCleaned", "HLT_CaloMET110_NotCleaned", "HLT_CaloMET250_HBHECleaned", "HLT_CaloMET250_NotCleaned", "HLT_CaloMET300_HBHECleaned", "HLT_CaloMET350_HBHECleaned", "HLT_CaloMET70_HBHECleaned", "HLT_CaloMET80_HBHECleaned", "HLT_CaloMET80_NotCleaned", "HLT_CaloMET90_HBHECleaned", "HLT_CaloMET90_NotCleaned", "HLT_CaloMHT90", "HLT_DiEle27_WPTightCaloOnly_L1DoubleEG", "HLT_DiJet110_35_Mjj650_PFMET110", "HLT_DiJet110_35_Mjj650_PFMET120", "HLT_DiJet110_35_Mjj650_PFMET130", "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", "HLT_DiMu9_Ele9_CaloIdL_TrackIdL_DZ", "HLT_Dimuon0_Jpsi", "HLT_Dimuon0_Jpsi3p5_Muon2", "HLT_Dimuon0_Jpsi_L1_4R_0er1p5R", "HLT_Dimuon0_Jpsi_L1_NoOS", "HLT_Dimuon0_Jpsi_NoVertexing", "HLT_Dimuon0_Jpsi_NoVertexing_L1_4R_0er1p5R", "HLT_Dimuon0_Jpsi_NoVertexing_NoOS", "HLT_Dimuon0_LowMass", "HLT_Dimuon0_LowMass_L1_0er1p5", "HLT_Dimuon0_LowMass_L1_0er1p5R", "HLT_Dimuon0_LowMass_L1_4", "HLT_Dimuon0_LowMass_L1_4R", "HLT_Dimuon0_LowMass_L1_TM530", "HLT_Dimuon0_Upsilon_L1_4p5", "HLT_Dimuon0_Upsilon_L1_4p5er2p0", "HLT_Dimuon0_Upsilon_L1_4p5er2p0M", "HLT_Dimuon0_Upsilon_L1_4p5NoOS", "HLT_Dimuon0_Upsilon_L1_5", "HLT_Dimuon0_Upsilon_L1_5M", "HLT_Dimuon0_Upsilon_Muon_L1_TM0", "HLT_Dimuon0_Upsilon_Muon_NoL1Mass", "HLT_Dimuon0_Upsilon_NoVertexing", "HLT_Dimuon10_PsiPrime_Barrel_Seagulls", "HLT_Dimuon10_Upsilon_Barrel_Seagulls", "HLT_Dimuon12_Upsilon_eta1p5", "HLT_Dimuon14_Phi_Barrel_Seagulls", "HLT_Dimuon18_PsiPrime", "HLT_Dimuon18_PsiPrime_noCorrL1", "HLT_Dimuon20_Jpsi_Barrel_Seagulls", "HLT_Dimuon24_Phi_noCorrL1", "HLT_Dimuon24_Upsilon_noCorrL1", "HLT_Dimuon25_Jpsi", "HLT_Dimuon25_Jpsi_noCorrL1", "HLT_DiPFJet15_FBEta3_NoCaloMatched", "HLT_DiPFJet15_NoCaloMatched", "HLT_DiPFJet25_FBEta3_NoCaloMatched", "HLT_DiPFJet25_NoCaloMatched", "HLT_DiPFJetAve100_HFJEC", "HLT_DiPFJetAve140", "HLT_DiPFJetAve15_HFJEC", "HLT_DiPFJetAve160_HFJEC", "HLT_DiPFJetAve200", "HLT_DiPFJetAve220_HFJEC", "HLT_DiPFJetAve25_HFJEC", "HLT_DiPFJetAve260", "HLT_DiPFJetAve300_HFJEC", "HLT_DiPFJetAve320", "HLT_DiPFJetAve35_HFJEC", "HLT_DiPFJetAve40", "HLT_DiPFJetAve400", "HLT_DiPFJetAve500", "HLT_DiPFJetAve60", "HLT_DiPFJetAve60_HFJEC", "HLT_DiPFJetAve80", "HLT_DiPFJetAve80_HFJEC", "HLT_Diphoton30_22_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", "HLT_Diphoton30_22_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass95", "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_NoPixelVeto_Mass55", "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_PixelVeto_Mass55", "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_NoPixelVeto_Mass55", "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_PixelVeto_Mass55", "HLT_DiSC30_18_EIso_AND_HE_Mass70", "HLT_DoubleEle24_eta2p1_WPTight_Gsf", "HLT_DoubleEle25_CaloIdL_MW", "HLT_DoubleEle27_CaloIdL_MW", "HLT_DoubleEle33_CaloIdL_MW", "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_DZ_PFHT350", "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT350", "HLT_DoubleIsoMu20_eta2p1", "HLT_DoubleIsoMu24_eta2p1", "HLT_DoubleL2Mu50", "HLT_DoubleLooseChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMu20_7_Mass0to30_L1_DM4", "HLT_DoubleMu20_7_Mass0to30_L1_DM4EG", "HLT_DoubleMu20_7_Mass0to30_Photon23", "HLT_DoubleMu3_DZ_PFMET50_PFMHT60", "HLT_DoubleMu3_DZ_PFMET70_PFMHT70", "HLT_DoubleMu3_DZ_PFMET90_PFMHT90", "HLT_DoubleMu3_Trk_Tau3mu", "HLT_DoubleMu3_Trk_Tau3mu_NoL1Mass", "HLT_DoubleMu43NoFiltersNoVtx", "HLT_DoubleMu48NoFiltersNoVtx", "HLT_DoubleMu4_3_Bs", "HLT_DoubleMu4_3_Jpsi_Displaced", "HLT_DoubleMu4_Jpsi_Displaced", "HLT_DoubleMu4_Jpsi_NoVertexing", "HLT_DoubleMu4_JpsiTrk_Displaced", "HLT_DoubleMu4_JpsiTrkTrk_Displaced", "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", "HLT_DoubleMu4_Mass8_DZ_PFHT350", "HLT_DoubleMu4_PsiPrimeTrk_Displaced", "HLT_DoubleMu8_Mass8_PFHT350", "HLT_DoublePFJets100_CaloBTagCSV_p33", "HLT_DoublePFJets100MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_DoublePFJets116MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_DoublePFJets128MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_DoublePFJets200_CaloBTagCSV_p33", "HLT_DoublePFJets350_CaloBTagCSV_p33", "HLT_DoublePFJets40_CaloBTagCSV_p33", "HLT_DoublePhoton33_CaloIdL", "HLT_DoublePhoton70", "HLT_DoublePhoton85", "HLT_DoubleTightChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_EcalCalibration", "HLT_ECALHT800", "HLT_Ele115_CaloIdVT_GsfTrkIdT", "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele135_CaloIdVT_GsfTrkIdT", "HLT_Ele145_CaloIdVT_GsfTrkIdT", "HLT_Ele15_IsoVVVL_PFHT450", "HLT_Ele15_IsoVVVL_PFHT450_CaloBTagCSV_4p5", "HLT_Ele15_IsoVVVL_PFHT450_PFMET50", "HLT_Ele15_IsoVVVL_PFHT600", "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", "HLT_Ele200_CaloIdVT_GsfTrkIdT", "HLT_Ele20_eta2p1_WPLoose_Gsf", "HLT_Ele20_WPLoose_Gsf", "HLT_Ele20_WPTight_Gsf", "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Ele24_eta2p1_WPTight_Gsf_LooseChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_LooseChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_MediumChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_MediumChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_TightChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_TightChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele250_CaloIdVT_GsfTrkIdT", "HLT_Ele27_Ele37_CaloIdL_MW", "HLT_Ele27_WPTight_Gsf", "HLT_Ele28_eta2p1_WPTight_Gsf_HT150", "HLT_Ele28_HighEta_SC20_Mass55", "HLT_Ele300_CaloIdVT_GsfTrkIdT", "HLT_Ele30_eta2p1_WPTight_Gsf_CentralPFJet35_EleCleaned", "HLT_Ele32_WPTight_Gsf", "HLT_Ele32_WPTight_Gsf_L1DoubleEG", "HLT_Ele35_WPTight_Gsf", "HLT_Ele35_WPTight_Gsf_L1EGMT", "HLT_Ele38_WPTight_Gsf", "HLT_Ele40_WPTight_Gsf", "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", "HLT_Ele50_IsoVVVL_PFHT450", "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", "HLT_FullTrack_Multiplicity100", "HLT_FullTrack_Multiplicity130", "HLT_FullTrack_Multiplicity155", "HLT_FullTrack_Multiplicity85", "HLT_HcalCalibration", "HLT_HcalIsolatedbunch", "HLT_HcalNZS", "HLT_HcalPhiSym", "HLT_HISinglePhoton10_Eta3p1ForPPRef", "HLT_HISinglePhoton20_Eta3p1ForPPRef", "HLT_HISinglePhoton30_Eta3p1ForPPRef", "HLT_HISinglePhoton40_Eta3p1ForPPRef", "HLT_HISinglePhoton50_Eta3p1ForPPRef", "HLT_HISinglePhoton60_Eta3p1ForPPRef", "HLT_HT300_Beamspot", "HLT_HT400_DisplacedDijet40_DisplacedTrack", "HLT_HT425", "HLT_HT430_DisplacedDijet40_DisplacedTrack", "HLT_HT430_DisplacedDijet60_DisplacedTrack", "HLT_HT430_DisplacedDijet80_DisplacedTrack", "HLT_HT450_Beamspot", "HLT_HT550_DisplacedDijet60_Inclusive", "HLT_HT550_DisplacedDijet80_Inclusive", "HLT_HT650_DisplacedDijet60_Inclusive", "HLT_HT650_DisplacedDijet80_Inclusive", "HLT_HT750_DisplacedDijet80_Inclusive", "HLT_IsoMu20", "HLT_IsoMu20_eta2p1_LooseChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_LooseChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu20_eta2p1_MediumChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_MediumChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu20_eta2p1_TightChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_TightChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu24", "HLT_IsoMu24_eta2p1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau40_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau40_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu27", "HLT_IsoMu30", "HLT_IsoTrackHB", "HLT_IsoTrackHE", "HLT_L1_CDC_SingleMu_3_er1p2_TOP120_DPHI2p618_3p142", "HLT_L1ETMHadSeeds", "HLT_L1MinimumBiasHF0OR", "HLT_L1MinimumBiasHF_OR", "HLT_L1NotBptxOR", "HLT_L1SingleMu18", "HLT_L1SingleMu25", "HLT_L1UnpairedBunchBptxMinus", "HLT_L1UnpairedBunchBptxPlus", "HLT_L2Mu10", "HLT_L2Mu10_NoVertex_NoBPTX", "HLT_L2Mu10_NoVertex_NoBPTX3BX", "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX", "HLT_L2Mu50", "HLT_MediumChargedIsoPFTau180HighPtRelaxedIso_Trk50_eta2p1", "HLT_MediumChargedIsoPFTau180HighPtRelaxedIso_Trk50_eta2p1_1pr", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET100", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET110", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET120", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET130", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET90", "HLT_MET105_IsoTrk50", "HLT_MET120_IsoTrk50", "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu130_PFMHTNoMu130_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu140_PFMHTNoMu140_IDTight", "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", "HLT_Mu12_DoublePFJets100_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets200_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets350_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets40_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets40MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_Mu12_DoublePFJets54MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_Mu12_DoublePFJets62MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_Mu12_DoublePhoton20", "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Mu15_IsoVVVL_PFHT450", "HLT_Mu15_IsoVVVL_PFHT450_CaloBTagCSV_4p5", "HLT_Mu15_IsoVVVL_PFHT450_PFMET50", "HLT_Mu15_IsoVVVL_PFHT600", "HLT_Mu17", "HLT_Mu17_Photon30_IsoCaloId", "HLT_Mu17_TrkIsoVVL", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ_Mass3p8", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ_Mass8", "HLT_Mu19", "HLT_Mu19_TrkIsoVVL", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL_DZ", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL_DZ_Mass3p8", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL_DZ_Mass8", "HLT_Mu20", "HLT_Mu20_TkMu0_Phi", "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Mu25_TkMu0_Onia", "HLT_Mu25_TkMu0_Phi", "HLT_Mu27", "HLT_Mu27_Ele37_CaloIdL_MW", "HLT_Mu30_TkMu0_Onia", "HLT_Mu37_Ele27_CaloIdL_MW", "HLT_Mu37_TkMu27", "HLT_Mu3_PFJet40", "HLT_Mu43NoFiltersNoVtx_Photon43_CaloIdL", "HLT_Mu48NoFiltersNoVtx_Photon48_CaloIdL", "HLT_Mu50", "HLT_Mu50_IsoVVVL_PFHT450", "HLT_Mu55", "HLT_Mu7p5_L2Mu2_Jpsi", "HLT_Mu7p5_L2Mu2_Upsilon", "HLT_Mu7p5_Track2_Jpsi", "HLT_Mu7p5_Track2_Upsilon", "HLT_Mu7p5_Track3p5_Jpsi", "HLT_Mu7p5_Track3p5_Upsilon", "HLT_Mu7p5_Track7_Jpsi", "HLT_Mu7p5_Track7_Upsilon", "HLT_Mu8", "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", "HLT_Mu8_DiEle12_CaloIdL_TrackIdL_DZ", "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT350", "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT350_DZ", "HLT_Mu8_TrkIsoVVL", "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_OldMu100", "HLT_PFHT1050", "HLT_PFHT180", "HLT_PFHT250", "HLT_PFHT300PT30_QuadPFJet_75_60_45_40", "HLT_PFHT300PT30_QuadPFJet_75_60_45_40_TriplePFBTagCSV_3p0", "HLT_PFHT350", "HLT_PFHT350MinPFJet15", "HLT_PFHT370", "HLT_PFHT380_SixPFJet32", "HLT_PFHT380_SixPFJet32_DoublePFBTagCSV_2p2", "HLT_PFHT380_SixPFJet32_DoublePFBTagDeepCSV_2p2", "HLT_PFHT430", "HLT_PFHT430_SixPFJet40", "HLT_PFHT430_SixPFJet40_PFBTagCSV_1p5", "HLT_PFHT500_PFMET100_PFMHT100_IDTight", "HLT_PFHT500_PFMET110_PFMHT110_IDTight", "HLT_PFHT510", "HLT_PFHT590", "HLT_PFHT680", "HLT_PFHT700_PFMET85_PFMHT85_IDTight", "HLT_PFHT700_PFMET95_PFMHT95_IDTight", "HLT_PFHT780", "HLT_PFHT800_PFMET75_PFMHT75_IDTight", "HLT_PFHT800_PFMET85_PFMHT85_IDTight", "HLT_PFHT890", "HLT_PFJet140", "HLT_PFJet200", "HLT_PFJet260", "HLT_PFJet320", "HLT_PFJet40", "HLT_PFJet400", "HLT_PFJet450", "HLT_PFJet500", "HLT_PFJet550", "HLT_PFJet60", "HLT_PFJet80", "HLT_PFJetFwd140", "HLT_PFJetFwd200", "HLT_PFJetFwd260", "HLT_PFJetFwd320", "HLT_PFJetFwd40", "HLT_PFJetFwd400", "HLT_PFJetFwd450", "HLT_PFJetFwd500", "HLT_PFJetFwd60", "HLT_PFJetFwd80", "HLT_PFMET100_PFMHT100_IDTight_CaloBTagCSV_3p1", "HLT_PFMET110_PFMHT110_IDTight", "HLT_PFMET110_PFMHT110_IDTight_CaloBTagCSV_3p1", "HLT_PFMET120_PFMHT120_IDTight", "HLT_PFMET120_PFMHT120_IDTight_CaloBTagCSV_3p1", "HLT_PFMET120_PFMHT120_IDTight_PFHT60", "HLT_PFMET130_PFMHT130_IDTight", "HLT_PFMET130_PFMHT130_IDTight_CaloBTagCSV_3p1", "HLT_PFMET140_PFMHT140_IDTight", "HLT_PFMET140_PFMHT140_IDTight_CaloBTagCSV_3p1", "HLT_PFMET200_HBHE_BeamHaloCleaned", "HLT_PFMET200_HBHECleaned", "HLT_PFMET200_NotCleaned", "HLT_PFMET250_HBHECleaned", "HLT_PFMET300_HBHECleaned", "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight_PFHT60", "HLT_PFMETNoMu130_PFMHTNoMu130_IDTight", "HLT_PFMETNoMu140_PFMHTNoMu140_IDTight", "HLT_PFMETTypeOne110_PFMHT110_IDTight", "HLT_PFMETTypeOne120_PFMHT120_IDTight", "HLT_PFMETTypeOne120_PFMHT120_IDTight_PFHT60", "HLT_PFMETTypeOne130_PFMHT130_IDTight", "HLT_PFMETTypeOne140_PFMHT140_IDTight", "HLT_PFMETTypeOne200_HBHE_BeamHaloCleaned", "HLT_Photon120", "HLT_Photon120_R9Id90_HE10_IsoM", "HLT_Photon150", "HLT_Photon165_R9Id90_HE10_IsoM", "HLT_Photon175", "HLT_Photon200", "HLT_Photon20_HoverELoose", "HLT_Photon25", "HLT_Photon300_NoHE", "HLT_Photon30_HoverELoose", "HLT_Photon33", "HLT_Photon40_HoverELoose", "HLT_Photon50", "HLT_Photon50_HoverELoose", "HLT_Photon50_R9Id90_HE10_IsoM", "HLT_Photon60_HoverELoose", "HLT_Photon60_R9Id90_CaloIdL_IsoL", "HLT_Photon60_R9Id90_CaloIdL_IsoL_DisplacedIdL", "HLT_Photon60_R9Id90_CaloIdL_IsoL_DisplacedIdL_PFHT350MinPFJet15", "HLT_Photon75", "HLT_Photon75_R9Id90_HE10_IsoM", "HLT_Photon90", "HLT_Photon90_R9Id90_HE10_IsoM", "HLT_Physics", "HLT_Physics_part0", "HLT_Physics_part1", "HLT_Physics_part2", "HLT_Physics_part3", "HLT_Physics_part4", "HLT_Physics_part5", "HLT_Physics_part6", "HLT_Physics_part7", "HLT_Random", "HLT_Rsq0p35", "HLT_Rsq0p40", "HLT_RsqMR300_Rsq0p09_MR200", "HLT_RsqMR300_Rsq0p09_MR200_4jet", "HLT_RsqMR320_Rsq0p09_MR200", "HLT_RsqMR320_Rsq0p09_MR200_4jet", "HLT_SingleJet30_Mu12_SinglePFJet40", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_IsoTau15", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_IsoTau15_Charge1", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_Tau15", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_Tau15_Charge1", "HLT_TkMu100", "HLT_Trimuon5_3p5_2_Upsilon_Muon", "HLT_TripleJet110_35_35_Mjj650_PFMET110", "HLT_TripleJet110_35_35_Mjj650_PFMET120", "HLT_TripleJet110_35_35_Mjj650_PFMET130", "HLT_TripleMu_10_5_5_DZ", "HLT_TripleMu_12_10_5", "HLT_TripleMu_5_3_3_Mass3p8to60_DZ", "HLT_TriplePhoton_20_20_20_CaloIdLV2", "HLT_TriplePhoton_20_20_20_CaloIdLV2_R9IdVL", "HLT_TriplePhoton_30_30_10_CaloIdLV2", "HLT_TriplePhoton_30_30_10_CaloIdLV2_R9IdVL", "HLT_TriplePhoton_35_35_5_CaloIdLV2_R9IdVL", "HLT_TrkMu12_DoubleTrkMu5NoFiltersNoVtx", "HLT_TrkMu16_DoubleTrkMu6NoFiltersNoVtx", "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", "HLT_UncorrectedJetE30_NoBPTX", "HLT_UncorrectedJetE30_NoBPTX3BX", "HLT_UncorrectedJetE60_NoBPTX3BX", "HLT_UncorrectedJetE70_NoBPTX3BX", "HLT_VBF_DoubleLooseChargedIsoPFTau20_Trk1_eta2p1_Reg", "HLT_VBF_DoubleMediumChargedIsoPFTau20_Trk1_eta2p1_Reg", "HLT_VBF_DoubleTightChargedIsoPFTau20_Trk1_eta2p1_Reg", "HLT_ZeroBias", "HLT_ZeroBias_FirstBXAfterTrain", "HLT_ZeroBias_FirstCollisionAfterAbortGap", "HLT_ZeroBias_FirstCollisionInTrain", "HLT_ZeroBias_IsolatedBunches", "HLT_ZeroBias_LastCollisionInTrain", "HLT_ZeroBias_part0", "HLT_ZeroBias_part1", "HLT_ZeroBias_part2", "HLT_ZeroBias_part3", "HLT_ZeroBias_part4", "HLT_ZeroBias_part5", "HLT_ZeroBias_part6", "HLT_ZeroBias_part7", ]), ]) samples_2017["/Tau/Run2017E-31Mar2018-v1/MINIAOD"] = OD([ ("type", "data"), ("sample_category", "data_obs"), ("process_name_specific", "Tau_Run2017E_31Mar2018_v1"), ("nof_files", 22), ("nof_db_files", 490), ("nof_events", { }), ("nof_tree_events", 43518053), ("nof_db_events", 44318231), ("fsize_local", 34620963532), # 34.62GB, avg file size 1.57GB ("fsize_db", 1530408104522), # 1.53TB, avg file size 3.12GB ("use_it", True), ("triggers", ['1e1tau', '1mu1tau', '2tau']), ("has_LHE", False), ("nof_PSweights", 0), ("LHE_set", ""), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2020Dec27_woPresel_nom_all_hh_multilepton/ntuples/Tau_Run2017E_31Mar2018_v1"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ ]), ("missing_from_superset", [ ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ "HLT_AK4CaloJet100", "HLT_AK4CaloJet120", "HLT_AK4CaloJet30", "HLT_AK4CaloJet40", "HLT_AK4CaloJet50", "HLT_AK4CaloJet80", "HLT_AK4PFJet100", "HLT_AK4PFJet120", "HLT_AK4PFJet30", "HLT_AK4PFJet50", "HLT_AK4PFJet80", "HLT_AK8PFHT750_TrimMass50", "HLT_AK8PFHT800_TrimMass50", "HLT_AK8PFHT850_TrimMass50", "HLT_AK8PFHT900_TrimMass50", "HLT_AK8PFJet140", "HLT_AK8PFJet200", "HLT_AK8PFJet260", "HLT_AK8PFJet320", "HLT_AK8PFJet360_TrimMass30", "HLT_AK8PFJet380_TrimMass30", "HLT_AK8PFJet40", "HLT_AK8PFJet400", "HLT_AK8PFJet400_TrimMass30", "HLT_AK8PFJet420_TrimMass30", "HLT_AK8PFJet450", "HLT_AK8PFJet500", "HLT_AK8PFJet550", "HLT_AK8PFJet60", "HLT_AK8PFJet80", "HLT_AK8PFJetFwd140", "HLT_AK8PFJetFwd200", "HLT_AK8PFJetFwd260", "HLT_AK8PFJetFwd320", "HLT_AK8PFJetFwd40", "HLT_AK8PFJetFwd400", "HLT_AK8PFJetFwd450", "HLT_AK8PFJetFwd500", "HLT_AK8PFJetFwd60", "HLT_AK8PFJetFwd80", "HLT_BTagMu_AK4DiJet110_Mu5", "HLT_BTagMu_AK4DiJet170_Mu5", "HLT_BTagMu_AK4DiJet20_Mu5", "HLT_BTagMu_AK4DiJet40_Mu5", "HLT_BTagMu_AK4DiJet70_Mu5", "HLT_BTagMu_AK4Jet300_Mu5", "HLT_BTagMu_AK8DiJet170_Mu5", "HLT_BTagMu_AK8Jet300_Mu5", "HLT_CaloJet500_NoJetID", "HLT_CaloJet550_NoJetID", "HLT_CaloMET100_HBHECleaned", "HLT_CaloMET100_NotCleaned", "HLT_CaloMET110_NotCleaned", "HLT_CaloMET250_HBHECleaned", "HLT_CaloMET250_NotCleaned", "HLT_CaloMET300_HBHECleaned", "HLT_CaloMET350_HBHECleaned", "HLT_CaloMET70_HBHECleaned", "HLT_CaloMET80_HBHECleaned", "HLT_CaloMET80_NotCleaned", "HLT_CaloMET90_HBHECleaned", "HLT_CaloMET90_NotCleaned", "HLT_CaloMHT90", "HLT_DiEle27_WPTightCaloOnly_L1DoubleEG", "HLT_DiJet110_35_Mjj650_PFMET110", "HLT_DiJet110_35_Mjj650_PFMET120", "HLT_DiJet110_35_Mjj650_PFMET130", "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", "HLT_DiMu9_Ele9_CaloIdL_TrackIdL_DZ", "HLT_Dimuon0_Jpsi", "HLT_Dimuon0_Jpsi3p5_Muon2", "HLT_Dimuon0_Jpsi_L1_4R_0er1p5R", "HLT_Dimuon0_Jpsi_L1_NoOS", "HLT_Dimuon0_Jpsi_NoVertexing", "HLT_Dimuon0_Jpsi_NoVertexing_L1_4R_0er1p5R", "HLT_Dimuon0_Jpsi_NoVertexing_NoOS", "HLT_Dimuon0_LowMass", "HLT_Dimuon0_LowMass_L1_0er1p5", "HLT_Dimuon0_LowMass_L1_0er1p5R", "HLT_Dimuon0_LowMass_L1_4", "HLT_Dimuon0_LowMass_L1_4R", "HLT_Dimuon0_LowMass_L1_TM530", "HLT_Dimuon0_Upsilon_L1_4p5", "HLT_Dimuon0_Upsilon_L1_4p5er2p0", "HLT_Dimuon0_Upsilon_L1_4p5er2p0M", "HLT_Dimuon0_Upsilon_L1_4p5NoOS", "HLT_Dimuon0_Upsilon_L1_5", "HLT_Dimuon0_Upsilon_L1_5M", "HLT_Dimuon0_Upsilon_Muon_L1_TM0", "HLT_Dimuon0_Upsilon_Muon_NoL1Mass", "HLT_Dimuon0_Upsilon_NoVertexing", "HLT_Dimuon10_PsiPrime_Barrel_Seagulls", "HLT_Dimuon10_Upsilon_Barrel_Seagulls", "HLT_Dimuon12_Upsilon_eta1p5", "HLT_Dimuon14_Phi_Barrel_Seagulls", "HLT_Dimuon18_PsiPrime", "HLT_Dimuon18_PsiPrime_noCorrL1", "HLT_Dimuon20_Jpsi_Barrel_Seagulls", "HLT_Dimuon24_Phi_noCorrL1", "HLT_Dimuon24_Upsilon_noCorrL1", "HLT_Dimuon25_Jpsi", "HLT_Dimuon25_Jpsi_noCorrL1", "HLT_DiPFJet15_FBEta3_NoCaloMatched", "HLT_DiPFJet15_NoCaloMatched", "HLT_DiPFJet25_FBEta3_NoCaloMatched", "HLT_DiPFJet25_NoCaloMatched", "HLT_DiPFJetAve100_HFJEC", "HLT_DiPFJetAve140", "HLT_DiPFJetAve15_HFJEC", "HLT_DiPFJetAve160_HFJEC", "HLT_DiPFJetAve200", "HLT_DiPFJetAve220_HFJEC", "HLT_DiPFJetAve25_HFJEC", "HLT_DiPFJetAve260", "HLT_DiPFJetAve300_HFJEC", "HLT_DiPFJetAve320", "HLT_DiPFJetAve35_HFJEC", "HLT_DiPFJetAve40", "HLT_DiPFJetAve400", "HLT_DiPFJetAve500", "HLT_DiPFJetAve60", "HLT_DiPFJetAve60_HFJEC", "HLT_DiPFJetAve80", "HLT_DiPFJetAve80_HFJEC", "HLT_Diphoton30_22_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", "HLT_Diphoton30_22_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass95", "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_NoPixelVeto_Mass55", "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_PixelVeto_Mass55", "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_NoPixelVeto_Mass55", "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_PixelVeto_Mass55", "HLT_DiSC30_18_EIso_AND_HE_Mass70", "HLT_DoubleEle24_eta2p1_WPTight_Gsf", "HLT_DoubleEle25_CaloIdL_MW", "HLT_DoubleEle27_CaloIdL_MW", "HLT_DoubleEle33_CaloIdL_MW", "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_DZ_PFHT350", "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT350", "HLT_DoubleIsoMu20_eta2p1", "HLT_DoubleIsoMu24_eta2p1", "HLT_DoubleL2Mu50", "HLT_DoubleLooseChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMu20_7_Mass0to30_L1_DM4", "HLT_DoubleMu20_7_Mass0to30_L1_DM4EG", "HLT_DoubleMu20_7_Mass0to30_Photon23", "HLT_DoubleMu3_DZ_PFMET50_PFMHT60", "HLT_DoubleMu3_DZ_PFMET70_PFMHT70", "HLT_DoubleMu3_DZ_PFMET90_PFMHT90", "HLT_DoubleMu3_Trk_Tau3mu", "HLT_DoubleMu3_Trk_Tau3mu_NoL1Mass", "HLT_DoubleMu43NoFiltersNoVtx", "HLT_DoubleMu48NoFiltersNoVtx", "HLT_DoubleMu4_3_Bs", "HLT_DoubleMu4_3_Jpsi_Displaced", "HLT_DoubleMu4_Jpsi_Displaced", "HLT_DoubleMu4_Jpsi_NoVertexing", "HLT_DoubleMu4_JpsiTrk_Displaced", "HLT_DoubleMu4_JpsiTrkTrk_Displaced", "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", "HLT_DoubleMu4_Mass8_DZ_PFHT350", "HLT_DoubleMu4_PsiPrimeTrk_Displaced", "HLT_DoubleMu8_Mass8_PFHT350", "HLT_DoublePFJets100_CaloBTagCSV_p33", "HLT_DoublePFJets100MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_DoublePFJets116MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_DoublePFJets128MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_DoublePFJets200_CaloBTagCSV_p33", "HLT_DoublePFJets350_CaloBTagCSV_p33", "HLT_DoublePFJets40_CaloBTagCSV_p33", "HLT_DoublePhoton33_CaloIdL", "HLT_DoublePhoton70", "HLT_DoublePhoton85", "HLT_DoubleTightChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_EcalCalibration", "HLT_ECALHT800", "HLT_Ele115_CaloIdVT_GsfTrkIdT", "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele135_CaloIdVT_GsfTrkIdT", "HLT_Ele145_CaloIdVT_GsfTrkIdT", "HLT_Ele15_IsoVVVL_PFHT450", "HLT_Ele15_IsoVVVL_PFHT450_CaloBTagCSV_4p5", "HLT_Ele15_IsoVVVL_PFHT450_PFMET50", "HLT_Ele15_IsoVVVL_PFHT600", "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", "HLT_Ele200_CaloIdVT_GsfTrkIdT", "HLT_Ele20_eta2p1_WPLoose_Gsf", "HLT_Ele20_WPLoose_Gsf", "HLT_Ele20_WPTight_Gsf", "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Ele24_eta2p1_WPTight_Gsf_LooseChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_LooseChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_MediumChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_MediumChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_TightChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_TightChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele250_CaloIdVT_GsfTrkIdT", "HLT_Ele27_Ele37_CaloIdL_MW", "HLT_Ele27_WPTight_Gsf", "HLT_Ele28_eta2p1_WPTight_Gsf_HT150", "HLT_Ele28_HighEta_SC20_Mass55", "HLT_Ele300_CaloIdVT_GsfTrkIdT", "HLT_Ele30_eta2p1_WPTight_Gsf_CentralPFJet35_EleCleaned", "HLT_Ele32_WPTight_Gsf", "HLT_Ele32_WPTight_Gsf_L1DoubleEG", "HLT_Ele35_WPTight_Gsf", "HLT_Ele35_WPTight_Gsf_L1EGMT", "HLT_Ele38_WPTight_Gsf", "HLT_Ele40_WPTight_Gsf", "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", "HLT_Ele50_IsoVVVL_PFHT450", "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", "HLT_FullTrack_Multiplicity100", "HLT_FullTrack_Multiplicity130", "HLT_FullTrack_Multiplicity155", "HLT_FullTrack_Multiplicity85", "HLT_HcalCalibration", "HLT_HcalIsolatedbunch", "HLT_HcalNZS", "HLT_HcalPhiSym", "HLT_HISinglePhoton10_Eta3p1ForPPRef", "HLT_HISinglePhoton20_Eta3p1ForPPRef", "HLT_HISinglePhoton30_Eta3p1ForPPRef", "HLT_HISinglePhoton40_Eta3p1ForPPRef", "HLT_HISinglePhoton50_Eta3p1ForPPRef", "HLT_HISinglePhoton60_Eta3p1ForPPRef", "HLT_HT300_Beamspot", "HLT_HT400_DisplacedDijet40_DisplacedTrack", "HLT_HT425", "HLT_HT430_DisplacedDijet40_DisplacedTrack", "HLT_HT430_DisplacedDijet60_DisplacedTrack", "HLT_HT430_DisplacedDijet80_DisplacedTrack", "HLT_HT450_Beamspot", "HLT_HT550_DisplacedDijet60_Inclusive", "HLT_HT550_DisplacedDijet80_Inclusive", "HLT_HT650_DisplacedDijet60_Inclusive", "HLT_HT650_DisplacedDijet80_Inclusive", "HLT_HT750_DisplacedDijet80_Inclusive", "HLT_IsoMu20", "HLT_IsoMu20_eta2p1_LooseChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_LooseChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu20_eta2p1_MediumChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_MediumChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu20_eta2p1_TightChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_TightChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu24", "HLT_IsoMu24_eta2p1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau40_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau40_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu27", "HLT_IsoMu30", "HLT_IsoTrackHB", "HLT_IsoTrackHE", "HLT_L1_CDC_SingleMu_3_er1p2_TOP120_DPHI2p618_3p142", "HLT_L1ETMHadSeeds", "HLT_L1MinimumBiasHF0OR", "HLT_L1MinimumBiasHF_OR", "HLT_L1NotBptxOR", "HLT_L1SingleMu18", "HLT_L1SingleMu25", "HLT_L1UnpairedBunchBptxMinus", "HLT_L1UnpairedBunchBptxPlus", "HLT_L2Mu10", "HLT_L2Mu10_NoVertex_NoBPTX", "HLT_L2Mu10_NoVertex_NoBPTX3BX", "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX", "HLT_L2Mu50", "HLT_MediumChargedIsoPFTau180HighPtRelaxedIso_Trk50_eta2p1", "HLT_MediumChargedIsoPFTau180HighPtRelaxedIso_Trk50_eta2p1_1pr", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET100", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET110", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET120", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET130", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET90", "HLT_MET105_IsoTrk50", "HLT_MET120_IsoTrk50", "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu130_PFMHTNoMu130_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu140_PFMHTNoMu140_IDTight", "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", "HLT_Mu12_DoublePFJets100_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets200_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets350_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets40_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets40MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_Mu12_DoublePFJets54MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_Mu12_DoublePFJets62MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_Mu12_DoublePhoton20", "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Mu15_IsoVVVL_PFHT450", "HLT_Mu15_IsoVVVL_PFHT450_CaloBTagCSV_4p5", "HLT_Mu15_IsoVVVL_PFHT450_PFMET50", "HLT_Mu15_IsoVVVL_PFHT600", "HLT_Mu17", "HLT_Mu17_Photon30_IsoCaloId", "HLT_Mu17_TrkIsoVVL", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ_Mass3p8", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ_Mass8", "HLT_Mu19", "HLT_Mu19_TrkIsoVVL", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL_DZ", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL_DZ_Mass3p8", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL_DZ_Mass8", "HLT_Mu20", "HLT_Mu20_TkMu0_Phi", "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Mu25_TkMu0_Onia", "HLT_Mu25_TkMu0_Phi", "HLT_Mu27", "HLT_Mu27_Ele37_CaloIdL_MW", "HLT_Mu30_TkMu0_Onia", "HLT_Mu37_Ele27_CaloIdL_MW", "HLT_Mu37_TkMu27", "HLT_Mu3_PFJet40", "HLT_Mu43NoFiltersNoVtx_Photon43_CaloIdL", "HLT_Mu48NoFiltersNoVtx_Photon48_CaloIdL", "HLT_Mu50", "HLT_Mu50_IsoVVVL_PFHT450", "HLT_Mu55", "HLT_Mu7p5_L2Mu2_Jpsi", "HLT_Mu7p5_L2Mu2_Upsilon", "HLT_Mu7p5_Track2_Jpsi", "HLT_Mu7p5_Track2_Upsilon", "HLT_Mu7p5_Track3p5_Jpsi", "HLT_Mu7p5_Track3p5_Upsilon", "HLT_Mu7p5_Track7_Jpsi", "HLT_Mu7p5_Track7_Upsilon", "HLT_Mu8", "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", "HLT_Mu8_DiEle12_CaloIdL_TrackIdL_DZ", "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT350", "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT350_DZ", "HLT_Mu8_TrkIsoVVL", "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_OldMu100", "HLT_PFHT1050", "HLT_PFHT180", "HLT_PFHT250", "HLT_PFHT300PT30_QuadPFJet_75_60_45_40", "HLT_PFHT300PT30_QuadPFJet_75_60_45_40_TriplePFBTagCSV_3p0", "HLT_PFHT350", "HLT_PFHT350MinPFJet15", "HLT_PFHT370", "HLT_PFHT380_SixPFJet32", "HLT_PFHT380_SixPFJet32_DoublePFBTagCSV_2p2", "HLT_PFHT380_SixPFJet32_DoublePFBTagDeepCSV_2p2", "HLT_PFHT430", "HLT_PFHT430_SixPFJet40", "HLT_PFHT430_SixPFJet40_PFBTagCSV_1p5", "HLT_PFHT500_PFMET100_PFMHT100_IDTight", "HLT_PFHT500_PFMET110_PFMHT110_IDTight", "HLT_PFHT510", "HLT_PFHT590", "HLT_PFHT680", "HLT_PFHT700_PFMET85_PFMHT85_IDTight", "HLT_PFHT700_PFMET95_PFMHT95_IDTight", "HLT_PFHT780", "HLT_PFHT800_PFMET75_PFMHT75_IDTight", "HLT_PFHT800_PFMET85_PFMHT85_IDTight", "HLT_PFHT890", "HLT_PFJet140", "HLT_PFJet200", "HLT_PFJet260", "HLT_PFJet320", "HLT_PFJet40", "HLT_PFJet400", "HLT_PFJet450", "HLT_PFJet500", "HLT_PFJet550", "HLT_PFJet60", "HLT_PFJet80", "HLT_PFJetFwd140", "HLT_PFJetFwd200", "HLT_PFJetFwd260", "HLT_PFJetFwd320", "HLT_PFJetFwd40", "HLT_PFJetFwd400", "HLT_PFJetFwd450", "HLT_PFJetFwd500", "HLT_PFJetFwd60", "HLT_PFJetFwd80", "HLT_PFMET100_PFMHT100_IDTight_CaloBTagCSV_3p1", "HLT_PFMET110_PFMHT110_IDTight", "HLT_PFMET110_PFMHT110_IDTight_CaloBTagCSV_3p1", "HLT_PFMET120_PFMHT120_IDTight", "HLT_PFMET120_PFMHT120_IDTight_CaloBTagCSV_3p1", "HLT_PFMET120_PFMHT120_IDTight_PFHT60", "HLT_PFMET130_PFMHT130_IDTight", "HLT_PFMET130_PFMHT130_IDTight_CaloBTagCSV_3p1", "HLT_PFMET140_PFMHT140_IDTight", "HLT_PFMET140_PFMHT140_IDTight_CaloBTagCSV_3p1", "HLT_PFMET200_HBHE_BeamHaloCleaned", "HLT_PFMET200_HBHECleaned", "HLT_PFMET200_NotCleaned", "HLT_PFMET250_HBHECleaned", "HLT_PFMET300_HBHECleaned", "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight_PFHT60", "HLT_PFMETNoMu130_PFMHTNoMu130_IDTight", "HLT_PFMETNoMu140_PFMHTNoMu140_IDTight", "HLT_PFMETTypeOne110_PFMHT110_IDTight", "HLT_PFMETTypeOne120_PFMHT120_IDTight", "HLT_PFMETTypeOne120_PFMHT120_IDTight_PFHT60", "HLT_PFMETTypeOne130_PFMHT130_IDTight", "HLT_PFMETTypeOne140_PFMHT140_IDTight", "HLT_PFMETTypeOne200_HBHE_BeamHaloCleaned", "HLT_Photon120", "HLT_Photon120_R9Id90_HE10_IsoM", "HLT_Photon150", "HLT_Photon165_R9Id90_HE10_IsoM", "HLT_Photon175", "HLT_Photon200", "HLT_Photon20_HoverELoose", "HLT_Photon25", "HLT_Photon300_NoHE", "HLT_Photon30_HoverELoose", "HLT_Photon33", "HLT_Photon40_HoverELoose", "HLT_Photon50", "HLT_Photon50_HoverELoose", "HLT_Photon50_R9Id90_HE10_IsoM", "HLT_Photon60_HoverELoose", "HLT_Photon60_R9Id90_CaloIdL_IsoL", "HLT_Photon60_R9Id90_CaloIdL_IsoL_DisplacedIdL", "HLT_Photon60_R9Id90_CaloIdL_IsoL_DisplacedIdL_PFHT350MinPFJet15", "HLT_Photon75", "HLT_Photon75_R9Id90_HE10_IsoM", "HLT_Photon90", "HLT_Photon90_R9Id90_HE10_IsoM", "HLT_Physics", "HLT_Physics_part0", "HLT_Physics_part1", "HLT_Physics_part2", "HLT_Physics_part3", "HLT_Physics_part4", "HLT_Physics_part5", "HLT_Physics_part6", "HLT_Physics_part7", "HLT_Random", "HLT_Rsq0p35", "HLT_Rsq0p40", "HLT_RsqMR300_Rsq0p09_MR200", "HLT_RsqMR300_Rsq0p09_MR200_4jet", "HLT_RsqMR320_Rsq0p09_MR200", "HLT_RsqMR320_Rsq0p09_MR200_4jet", "HLT_SingleJet30_Mu12_SinglePFJet40", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_IsoTau15", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_IsoTau15_Charge1", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_Tau15", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_Tau15_Charge1", "HLT_TkMu100", "HLT_Trimuon5_3p5_2_Upsilon_Muon", "HLT_TripleJet110_35_35_Mjj650_PFMET110", "HLT_TripleJet110_35_35_Mjj650_PFMET120", "HLT_TripleJet110_35_35_Mjj650_PFMET130", "HLT_TripleMu_10_5_5_DZ", "HLT_TripleMu_12_10_5", "HLT_TripleMu_5_3_3_Mass3p8to60_DZ", "HLT_TriplePhoton_20_20_20_CaloIdLV2", "HLT_TriplePhoton_20_20_20_CaloIdLV2_R9IdVL", "HLT_TriplePhoton_30_30_10_CaloIdLV2", "HLT_TriplePhoton_30_30_10_CaloIdLV2_R9IdVL", "HLT_TriplePhoton_35_35_5_CaloIdLV2_R9IdVL", "HLT_TrkMu12_DoubleTrkMu5NoFiltersNoVtx", "HLT_TrkMu16_DoubleTrkMu6NoFiltersNoVtx", "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", "HLT_UncorrectedJetE30_NoBPTX", "HLT_UncorrectedJetE30_NoBPTX3BX", "HLT_UncorrectedJetE60_NoBPTX3BX", "HLT_UncorrectedJetE70_NoBPTX3BX", "HLT_VBF_DoubleLooseChargedIsoPFTau20_Trk1_eta2p1_Reg", "HLT_VBF_DoubleMediumChargedIsoPFTau20_Trk1_eta2p1_Reg", "HLT_VBF_DoubleTightChargedIsoPFTau20_Trk1_eta2p1_Reg", "HLT_ZeroBias", "HLT_ZeroBias_FirstBXAfterTrain", "HLT_ZeroBias_FirstCollisionAfterAbortGap", "HLT_ZeroBias_FirstCollisionInTrain", "HLT_ZeroBias_IsolatedBunches", "HLT_ZeroBias_LastCollisionInTrain", "HLT_ZeroBias_part0", "HLT_ZeroBias_part1", "HLT_ZeroBias_part2", "HLT_ZeroBias_part3", "HLT_ZeroBias_part4", "HLT_ZeroBias_part5", "HLT_ZeroBias_part6", "HLT_ZeroBias_part7", ]), ]) samples_2017["/Tau/Run2017F-31Mar2018-v1/MINIAOD"] = OD([ ("type", "data"), ("sample_category", "data_obs"), ("process_name_specific", "Tau_Run2017F_31Mar2018_v1"), ("nof_files", 43), ("nof_db_files", 914), ("nof_events", { }), ("nof_tree_events", 86842621), ("nof_db_events", 88506372), ("fsize_local", 69464013664), # 69.46GB, avg file size 1.62GB ("fsize_db", 3105005600619), # 3.11TB, avg file size 3.40GB ("use_it", True), ("triggers", ['1e1tau', '1mu1tau', '2tau']), ("has_LHE", False), ("nof_PSweights", 0), ("LHE_set", ""), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2020Dec27_woPresel_nom_all_hh_multilepton/ntuples/Tau_Run2017F_31Mar2018_v1"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ ]), ("missing_from_superset", [ ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ "HLT_AK4CaloJet100", "HLT_AK4CaloJet120", "HLT_AK4CaloJet30", "HLT_AK4CaloJet40", "HLT_AK4CaloJet50", "HLT_AK4CaloJet80", "HLT_AK4PFJet100", "HLT_AK4PFJet120", "HLT_AK4PFJet30", "HLT_AK4PFJet50", "HLT_AK4PFJet80", "HLT_AK8PFHT750_TrimMass50", "HLT_AK8PFHT800_TrimMass50", "HLT_AK8PFHT850_TrimMass50", "HLT_AK8PFHT900_TrimMass50", "HLT_AK8PFJet140", "HLT_AK8PFJet200", "HLT_AK8PFJet260", "HLT_AK8PFJet320", "HLT_AK8PFJet330_PFAK8BTagCSV_p1", "HLT_AK8PFJet330_PFAK8BTagCSV_p17", "HLT_AK8PFJet360_TrimMass30", "HLT_AK8PFJet380_TrimMass30", "HLT_AK8PFJet40", "HLT_AK8PFJet400", "HLT_AK8PFJet400_TrimMass30", "HLT_AK8PFJet420_TrimMass30", "HLT_AK8PFJet450", "HLT_AK8PFJet500", "HLT_AK8PFJet550", "HLT_AK8PFJet60", "HLT_AK8PFJet80", "HLT_AK8PFJetFwd140", "HLT_AK8PFJetFwd200", "HLT_AK8PFJetFwd260", "HLT_AK8PFJetFwd320", "HLT_AK8PFJetFwd40", "HLT_AK8PFJetFwd400", "HLT_AK8PFJetFwd450", "HLT_AK8PFJetFwd500", "HLT_AK8PFJetFwd60", "HLT_AK8PFJetFwd80", "HLT_BTagMu_AK4DiJet110_Mu5", "HLT_BTagMu_AK4DiJet170_Mu5", "HLT_BTagMu_AK4DiJet20_Mu5", "HLT_BTagMu_AK4DiJet40_Mu5", "HLT_BTagMu_AK4DiJet70_Mu5", "HLT_BTagMu_AK4Jet300_Mu5", "HLT_BTagMu_AK8DiJet170_Mu5", "HLT_BTagMu_AK8Jet300_Mu5", "HLT_CaloJet500_NoJetID", "HLT_CaloJet550_NoJetID", "HLT_CaloMET100_HBHECleaned", "HLT_CaloMET100_NotCleaned", "HLT_CaloMET110_NotCleaned", "HLT_CaloMET250_HBHECleaned", "HLT_CaloMET250_NotCleaned", "HLT_CaloMET300_HBHECleaned", "HLT_CaloMET350_HBHECleaned", "HLT_CaloMET70_HBHECleaned", "HLT_CaloMET80_HBHECleaned", "HLT_CaloMET80_NotCleaned", "HLT_CaloMET90_HBHECleaned", "HLT_CaloMET90_NotCleaned", "HLT_CaloMHT90", "HLT_DiEle27_WPTightCaloOnly_L1DoubleEG", "HLT_DiJet110_35_Mjj650_PFMET110", "HLT_DiJet110_35_Mjj650_PFMET120", "HLT_DiJet110_35_Mjj650_PFMET130", "HLT_DiMu9_Ele9_CaloIdL_TrackIdL", "HLT_DiMu9_Ele9_CaloIdL_TrackIdL_DZ", "HLT_Dimuon0_Jpsi", "HLT_Dimuon0_Jpsi3p5_Muon2", "HLT_Dimuon0_Jpsi_L1_4R_0er1p5R", "HLT_Dimuon0_Jpsi_L1_NoOS", "HLT_Dimuon0_Jpsi_NoVertexing", "HLT_Dimuon0_Jpsi_NoVertexing_L1_4R_0er1p5R", "HLT_Dimuon0_Jpsi_NoVertexing_NoOS", "HLT_Dimuon0_LowMass", "HLT_Dimuon0_LowMass_L1_0er1p5", "HLT_Dimuon0_LowMass_L1_0er1p5R", "HLT_Dimuon0_LowMass_L1_4", "HLT_Dimuon0_LowMass_L1_4R", "HLT_Dimuon0_LowMass_L1_TM530", "HLT_Dimuon0_Upsilon_L1_4p5", "HLT_Dimuon0_Upsilon_L1_4p5er2p0", "HLT_Dimuon0_Upsilon_L1_4p5er2p0M", "HLT_Dimuon0_Upsilon_L1_4p5NoOS", "HLT_Dimuon0_Upsilon_L1_5", "HLT_Dimuon0_Upsilon_L1_5M", "HLT_Dimuon0_Upsilon_Muon_L1_TM0", "HLT_Dimuon0_Upsilon_Muon_NoL1Mass", "HLT_Dimuon0_Upsilon_NoVertexing", "HLT_Dimuon10_PsiPrime_Barrel_Seagulls", "HLT_Dimuon10_Upsilon_Barrel_Seagulls", "HLT_Dimuon12_Upsilon_eta1p5", "HLT_Dimuon14_Phi_Barrel_Seagulls", "HLT_Dimuon18_PsiPrime", "HLT_Dimuon18_PsiPrime_noCorrL1", "HLT_Dimuon20_Jpsi_Barrel_Seagulls", "HLT_Dimuon24_Phi_noCorrL1", "HLT_Dimuon24_Upsilon_noCorrL1", "HLT_Dimuon25_Jpsi", "HLT_Dimuon25_Jpsi_noCorrL1", "HLT_DiPFJet15_FBEta3_NoCaloMatched", "HLT_DiPFJet15_NoCaloMatched", "HLT_DiPFJet25_FBEta3_NoCaloMatched", "HLT_DiPFJet25_NoCaloMatched", "HLT_DiPFJetAve100_HFJEC", "HLT_DiPFJetAve140", "HLT_DiPFJetAve15_HFJEC", "HLT_DiPFJetAve160_HFJEC", "HLT_DiPFJetAve200", "HLT_DiPFJetAve220_HFJEC", "HLT_DiPFJetAve25_HFJEC", "HLT_DiPFJetAve260", "HLT_DiPFJetAve300_HFJEC", "HLT_DiPFJetAve320", "HLT_DiPFJetAve35_HFJEC", "HLT_DiPFJetAve40", "HLT_DiPFJetAve400", "HLT_DiPFJetAve500", "HLT_DiPFJetAve60", "HLT_DiPFJetAve60_HFJEC", "HLT_DiPFJetAve80", "HLT_DiPFJetAve80_HFJEC", "HLT_Diphoton30_18_PVrealAND_R9Id_AND_IsoCaloId_AND_HE_R9Id_NoPixelVeto_Mass55", "HLT_Diphoton30_18_PVrealAND_R9Id_AND_IsoCaloId_AND_HE_R9Id_PixelVeto_Mass55", "HLT_Diphoton30_22_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass90", "HLT_Diphoton30_22_R9Id_OR_IsoCaloId_AND_HE_R9Id_Mass95", "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_NoPixelVeto_Mass55", "HLT_Diphoton30EB_18EB_R9Id_OR_IsoCaloId_AND_HE_R9Id_PixelVeto_Mass55", "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_NoPixelVeto_Mass55", "HLT_Diphoton30PV_18PV_R9Id_AND_IsoCaloId_AND_HE_R9Id_PixelVeto_Mass55", "HLT_DiSC30_18_EIso_AND_HE_Mass70", "HLT_DoubleEle24_eta2p1_WPTight_Gsf", "HLT_DoubleEle25_CaloIdL_MW", "HLT_DoubleEle27_CaloIdL_MW", "HLT_DoubleEle33_CaloIdL_MW", "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_DZ_PFHT350", "HLT_DoubleEle8_CaloIdM_TrackIdM_Mass8_PFHT350", "HLT_DoubleIsoMu20_eta2p1", "HLT_DoubleIsoMu24_eta2p1", "HLT_DoubleL2Mu50", "HLT_DoubleLooseChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleLooseChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleMediumChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_DoubleMu20_7_Mass0to30_L1_DM4", "HLT_DoubleMu20_7_Mass0to30_L1_DM4EG", "HLT_DoubleMu20_7_Mass0to30_Photon23", "HLT_DoubleMu2_Jpsi_DoubleTkMu0_Phi", "HLT_DoubleMu2_Jpsi_DoubleTrk1_Phi", "HLT_DoubleMu3_DCA_PFMET50_PFMHT60", "HLT_DoubleMu3_DoubleEle7p5_CaloIdL_TrackIdL_Upsilon", "HLT_DoubleMu3_DZ_PFMET50_PFMHT60", "HLT_DoubleMu3_DZ_PFMET70_PFMHT70", "HLT_DoubleMu3_DZ_PFMET90_PFMHT90", "HLT_DoubleMu3_TkMu_DsTau3Mu", "HLT_DoubleMu3_Trk_Tau3mu", "HLT_DoubleMu3_Trk_Tau3mu_NoL1Mass", "HLT_DoubleMu43NoFiltersNoVtx", "HLT_DoubleMu48NoFiltersNoVtx", "HLT_DoubleMu4_3_Bs", "HLT_DoubleMu4_3_Jpsi_Displaced", "HLT_DoubleMu4_Jpsi_Displaced", "HLT_DoubleMu4_Jpsi_NoVertexing", "HLT_DoubleMu4_JpsiTrk_Displaced", "HLT_DoubleMu4_JpsiTrkTrk_Displaced", "HLT_DoubleMu4_LowMassNonResonantTrk_Displaced", "HLT_DoubleMu4_Mass8_DZ_PFHT350", "HLT_DoubleMu4_PsiPrimeTrk_Displaced", "HLT_DoubleMu5_Upsilon_DoubleEle3_CaloIdL_TrackIdL", "HLT_DoubleMu8_Mass8_PFHT350", "HLT_DoublePFJets100_CaloBTagCSV_p33", "HLT_DoublePFJets100MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_DoublePFJets116MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_DoublePFJets128MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_DoublePFJets200_CaloBTagCSV_p33", "HLT_DoublePFJets350_CaloBTagCSV_p33", "HLT_DoublePFJets40_CaloBTagCSV_p33", "HLT_DoublePhoton33_CaloIdL", "HLT_DoublePhoton70", "HLT_DoublePhoton85", "HLT_DoubleTightChargedIsoPFTau35_Trk1_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau40_Trk1_eta2p1_Reg", "HLT_DoubleTightChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg", "HLT_EcalCalibration", "HLT_ECALHT800", "HLT_Ele115_CaloIdVT_GsfTrkIdT", "HLT_Ele12_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele135_CaloIdVT_GsfTrkIdT", "HLT_Ele145_CaloIdVT_GsfTrkIdT", "HLT_Ele15_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele15_Ele8_CaloIdL_TrackIdL_IsoVL", "HLT_Ele15_IsoVVVL_PFHT450", "HLT_Ele15_IsoVVVL_PFHT450_CaloBTagCSV_4p5", "HLT_Ele15_IsoVVVL_PFHT450_PFMET50", "HLT_Ele15_IsoVVVL_PFHT600", "HLT_Ele15_WPLoose_Gsf", "HLT_Ele16_Ele12_Ele8_CaloIdL_TrackIdL", "HLT_Ele17_CaloIdM_TrackIdM_PFJet30", "HLT_Ele17_WPLoose_Gsf", "HLT_Ele200_CaloIdVT_GsfTrkIdT", "HLT_Ele20_eta2p1_WPLoose_Gsf", "HLT_Ele20_WPLoose_Gsf", "HLT_Ele20_WPTight_Gsf", "HLT_Ele23_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele23_CaloIdM_TrackIdM_PFJet30", "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL", "HLT_Ele23_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Ele24_eta2p1_WPTight_Gsf_LooseChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_LooseChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_MediumChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_MediumChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_TightChargedIsoPFTau30_eta2p1_CrossL1", "HLT_Ele24_eta2p1_WPTight_Gsf_TightChargedIsoPFTau30_eta2p1_TightID_CrossL1", "HLT_Ele250_CaloIdVT_GsfTrkIdT", "HLT_Ele27_Ele37_CaloIdL_MW", "HLT_Ele27_WPTight_Gsf", "HLT_Ele28_eta2p1_WPTight_Gsf_HT150", "HLT_Ele28_HighEta_SC20_Mass55", "HLT_Ele300_CaloIdVT_GsfTrkIdT", "HLT_Ele30_eta2p1_WPTight_Gsf_CentralPFJet35_EleCleaned", "HLT_Ele32_WPTight_Gsf", "HLT_Ele32_WPTight_Gsf_L1DoubleEG", "HLT_Ele35_WPTight_Gsf", "HLT_Ele35_WPTight_Gsf_L1EGMT", "HLT_Ele38_WPTight_Gsf", "HLT_Ele40_WPTight_Gsf", "HLT_Ele50_CaloIdVT_GsfTrkIdT_PFJet165", "HLT_Ele50_IsoVVVL_PFHT450", "HLT_Ele8_CaloIdL_TrackIdL_IsoVL_PFJet30", "HLT_Ele8_CaloIdM_TrackIdM_PFJet30", "HLT_FullTrack_Multiplicity100", "HLT_FullTrack_Multiplicity130", "HLT_FullTrack_Multiplicity155", "HLT_FullTrack_Multiplicity85", "HLT_HcalCalibration", "HLT_HcalIsolatedbunch", "HLT_HcalNZS", "HLT_HcalPhiSym", "HLT_HISinglePhoton10_Eta3p1ForPPRef", "HLT_HISinglePhoton20_Eta3p1ForPPRef", "HLT_HISinglePhoton30_Eta3p1ForPPRef", "HLT_HISinglePhoton40_Eta3p1ForPPRef", "HLT_HISinglePhoton50_Eta3p1ForPPRef", "HLT_HISinglePhoton60_Eta3p1ForPPRef", "HLT_HT300_Beamspot", "HLT_HT400_DisplacedDijet40_DisplacedTrack", "HLT_HT425", "HLT_HT430_DisplacedDijet40_DisplacedTrack", "HLT_HT430_DisplacedDijet60_DisplacedTrack", "HLT_HT430_DisplacedDijet80_DisplacedTrack", "HLT_HT450_Beamspot", "HLT_HT550_DisplacedDijet60_Inclusive", "HLT_HT550_DisplacedDijet80_Inclusive", "HLT_HT650_DisplacedDijet60_Inclusive", "HLT_HT650_DisplacedDijet80_Inclusive", "HLT_HT750_DisplacedDijet80_Inclusive", "HLT_IsoMu20", "HLT_IsoMu20_eta2p1_LooseChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_LooseChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu20_eta2p1_MediumChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_MediumChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu20_eta2p1_TightChargedIsoPFTau27_eta2p1_CrossL1", "HLT_IsoMu20_eta2p1_TightChargedIsoPFTau27_eta2p1_TightID_CrossL1", "HLT_IsoMu24", "HLT_IsoMu24_eta2p1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_LooseChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau40_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau20_SingleL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau20_TightID_SingleL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau35_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau35_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau40_Trk1_eta2p1_Reg_CrossL1", "HLT_IsoMu24_eta2p1_TightChargedIsoPFTau40_Trk1_TightID_eta2p1_Reg_CrossL1", "HLT_IsoMu27", "HLT_IsoMu27_LooseChargedIsoPFTau20_SingleL1", "HLT_IsoMu27_MediumChargedIsoPFTau20_SingleL1", "HLT_IsoMu27_TightChargedIsoPFTau20_SingleL1", "HLT_IsoMu30", "HLT_IsoTrackHB", "HLT_IsoTrackHE", "HLT_L1_CDC_SingleMu_3_er1p2_TOP120_DPHI2p618_3p142", "HLT_L1_DoubleJet30_Mass_Min400_Mu10", "HLT_L1ETMHadSeeds", "HLT_L1MinimumBiasHF0OR", "HLT_L1MinimumBiasHF_OR", "HLT_L1NotBptxOR", "HLT_L1SingleMu18", "HLT_L1SingleMu25", "HLT_L1UnpairedBunchBptxMinus", "HLT_L1UnpairedBunchBptxPlus", "HLT_L2Mu10", "HLT_L2Mu10_NoVertex_NoBPTX", "HLT_L2Mu10_NoVertex_NoBPTX3BX", "HLT_L2Mu40_NoVertex_3Sta_NoBPTX3BX", "HLT_L2Mu45_NoVertex_3Sta_NoBPTX3BX", "HLT_L2Mu50", "HLT_MediumChargedIsoPFTau180HighPtRelaxedIso_Trk50_eta2p1", "HLT_MediumChargedIsoPFTau180HighPtRelaxedIso_Trk50_eta2p1_1pr", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET100", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET110", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET120", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET130", "HLT_MediumChargedIsoPFTau50_Trk30_eta2p1_1pr_MET90", "HLT_MET105_IsoTrk50", "HLT_MET120_IsoTrk50", "HLT_MonoCentralPFJet80_PFMETNoMu110_PFMHTNoMu110_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu120_PFMHTNoMu120_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu130_PFMHTNoMu130_IDTight", "HLT_MonoCentralPFJet80_PFMETNoMu140_PFMHTNoMu140_IDTight", "HLT_Mu10_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT350_PFMETNoMu60", "HLT_Mu12", "HLT_Mu12_DoublePFJets100_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets200_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets350_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets40_CaloBTagCSV_p33", "HLT_Mu12_DoublePFJets40MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_Mu12_DoublePFJets54MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_Mu12_DoublePFJets62MaxDeta1p6_DoubleCaloBTagCSV_p33", "HLT_Mu12_DoublePhoton20", "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", "HLT_Mu12_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Mu15", "HLT_Mu15_IsoVVVL_PFHT450", "HLT_Mu15_IsoVVVL_PFHT450_CaloBTagCSV_4p5", "HLT_Mu15_IsoVVVL_PFHT450_PFMET50", "HLT_Mu15_IsoVVVL_PFHT600", "HLT_Mu17", "HLT_Mu17_Photon30_IsoCaloId", "HLT_Mu17_TrkIsoVVL", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ_Mass3p8", "HLT_Mu17_TrkIsoVVL_Mu8_TrkIsoVVL_DZ_Mass8", "HLT_Mu18_Mu9", "HLT_Mu18_Mu9_DZ", "HLT_Mu18_Mu9_SameSign", "HLT_Mu18_Mu9_SameSign_DZ", "HLT_Mu19", "HLT_Mu19_TrkIsoVVL", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL_DZ", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL_DZ_Mass3p8", "HLT_Mu19_TrkIsoVVL_Mu9_TrkIsoVVL_DZ_Mass8", "HLT_Mu20", "HLT_Mu20_Mu10", "HLT_Mu20_Mu10_DZ", "HLT_Mu20_Mu10_SameSign", "HLT_Mu20_Mu10_SameSign_DZ", "HLT_Mu20_TkMu0_Phi", "HLT_Mu23_Mu12", "HLT_Mu23_Mu12_DZ", "HLT_Mu23_Mu12_SameSign", "HLT_Mu23_Mu12_SameSign_DZ", "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL", "HLT_Mu23_TrkIsoVVL_Ele12_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_Mu25_TkMu0_Onia", "HLT_Mu25_TkMu0_Phi", "HLT_Mu27", "HLT_Mu27_Ele37_CaloIdL_MW", "HLT_Mu30_TkMu0_Onia", "HLT_Mu37_Ele27_CaloIdL_MW", "HLT_Mu37_TkMu27", "HLT_Mu3_PFJet40", "HLT_Mu43NoFiltersNoVtx_Photon43_CaloIdL", "HLT_Mu48NoFiltersNoVtx_Photon48_CaloIdL", "HLT_Mu50", "HLT_Mu50_IsoVVVL_PFHT450", "HLT_Mu55", "HLT_Mu7p5_L2Mu2_Jpsi", "HLT_Mu7p5_L2Mu2_Upsilon", "HLT_Mu7p5_Track2_Jpsi", "HLT_Mu7p5_Track2_Upsilon", "HLT_Mu7p5_Track3p5_Jpsi", "HLT_Mu7p5_Track3p5_Upsilon", "HLT_Mu7p5_Track7_Jpsi", "HLT_Mu7p5_Track7_Upsilon", "HLT_Mu8", "HLT_Mu8_DiEle12_CaloIdL_TrackIdL", "HLT_Mu8_DiEle12_CaloIdL_TrackIdL_DZ", "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT350", "HLT_Mu8_Ele8_CaloIdM_TrackIdM_Mass8_PFHT350_DZ", "HLT_Mu8_TrkIsoVVL", "HLT_Mu8_TrkIsoVVL_DiPFJet40_DEta3p5_MJJ750_HTT300_PFMETNoMu60", "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL", "HLT_Mu8_TrkIsoVVL_Ele23_CaloIdL_TrackIdL_IsoVL_DZ", "HLT_OldMu100", "HLT_PFHT1050", "HLT_PFHT180", "HLT_PFHT250", "HLT_PFHT300PT30_QuadPFJet_75_60_45_40", "HLT_PFHT300PT30_QuadPFJet_75_60_45_40_TriplePFBTagCSV_3p0", "HLT_PFHT350", "HLT_PFHT350MinPFJet15", "HLT_PFHT370", "HLT_PFHT380_SixPFJet32", "HLT_PFHT380_SixPFJet32_DoublePFBTagCSV_2p2", "HLT_PFHT380_SixPFJet32_DoublePFBTagDeepCSV_2p2", "HLT_PFHT430", "HLT_PFHT430_SixPFJet40", "HLT_PFHT430_SixPFJet40_PFBTagCSV_1p5", "HLT_PFHT500_PFMET100_PFMHT100_IDTight", "HLT_PFHT500_PFMET110_PFMHT110_IDTight", "HLT_PFHT510", "HLT_PFHT590", "HLT_PFHT680", "HLT_PFHT700_PFMET85_PFMHT85_IDTight", "HLT_PFHT700_PFMET95_PFMHT95_IDTight", "HLT_PFHT780", "HLT_PFHT800_PFMET75_PFMHT75_IDTight", "HLT_PFHT800_PFMET85_PFMHT85_IDTight", "HLT_PFHT890", "HLT_PFJet140", "HLT_PFJet200", "HLT_PFJet260", "HLT_PFJet320", "HLT_PFJet40", "HLT_PFJet400", "HLT_PFJet450", "HLT_PFJet500", "HLT_PFJet550", "HLT_PFJet60", "HLT_PFJet80", "HLT_PFJetFwd140", "HLT_PFJetFwd200", "HLT_PFJetFwd260", "HLT_PFJetFwd320", "HLT_PFJetFwd40", "HLT_PFJetFwd400", "HLT_PFJetFwd450", "HLT_PFJetFwd500", "HLT_PFJetFwd60", "HLT_PFJetFwd80", "HLT_PFMET100_PFMHT100_IDTight_CaloBTagCSV_3p1", "HLT_PFMET100_PFMHT100_IDTight_PFHT60", "HLT_PFMET110_PFMHT110_IDTight", "HLT_PFMET110_PFMHT110_IDTight_CaloBTagCSV_3p1", "HLT_PFMET120_PFMHT120_IDTight", "HLT_PFMET120_PFMHT120_IDTight_CaloBTagCSV_3p1", "HLT_PFMET120_PFMHT120_IDTight_PFHT60", "HLT_PFMET130_PFMHT130_IDTight", "HLT_PFMET130_PFMHT130_IDTight_CaloBTagCSV_3p1", "HLT_PFMET140_PFMHT140_IDTight", "HLT_PFMET140_PFMHT140_IDTight_CaloBTagCSV_3p1", "HLT_PFMET200_HBHE_BeamHaloCleaned", "HLT_PFMET200_HBHECleaned", "HLT_PFMET200_NotCleaned", "HLT_PFMET250_HBHECleaned", "HLT_PFMET300_HBHECleaned", "HLT_PFMETNoMu100_PFMHTNoMu100_IDTight_PFHT60", "HLT_PFMETNoMu110_PFMHTNoMu110_IDTight", "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight", "HLT_PFMETNoMu120_PFMHTNoMu120_IDTight_PFHT60", "HLT_PFMETNoMu130_PFMHTNoMu130_IDTight", "HLT_PFMETNoMu140_PFMHTNoMu140_IDTight", "HLT_PFMETTypeOne100_PFMHT100_IDTight_PFHT60", "HLT_PFMETTypeOne110_PFMHT110_IDTight", "HLT_PFMETTypeOne120_PFMHT120_IDTight", "HLT_PFMETTypeOne120_PFMHT120_IDTight_PFHT60", "HLT_PFMETTypeOne130_PFMHT130_IDTight", "HLT_PFMETTypeOne140_PFMHT140_IDTight", "HLT_PFMETTypeOne200_HBHE_BeamHaloCleaned", "HLT_Photon120", "HLT_Photon120_R9Id90_HE10_IsoM", "HLT_Photon150", "HLT_Photon165_R9Id90_HE10_IsoM", "HLT_Photon175", "HLT_Photon20", "HLT_Photon200", "HLT_Photon20_HoverELoose", "HLT_Photon25", "HLT_Photon300_NoHE", "HLT_Photon30_HoverELoose", "HLT_Photon33", "HLT_Photon40_HoverELoose", "HLT_Photon50", "HLT_Photon50_HoverELoose", "HLT_Photon50_R9Id90_HE10_IsoM", "HLT_Photon50_R9Id90_HE10_IsoM_EBOnly_PFJetsMJJ300DEta3_PFMET50", "HLT_Photon60_HoverELoose", "HLT_Photon60_R9Id90_CaloIdL_IsoL", "HLT_Photon60_R9Id90_CaloIdL_IsoL_DisplacedIdL", "HLT_Photon60_R9Id90_CaloIdL_IsoL_DisplacedIdL_PFHT350MinPFJet15", "HLT_Photon75", "HLT_Photon75_R9Id90_HE10_IsoM", "HLT_Photon75_R9Id90_HE10_IsoM_EBOnly_PFJetsMJJ300DEta3", "HLT_Photon75_R9Id90_HE10_IsoM_EBOnly_PFJetsMJJ600DEta3", "HLT_Photon90", "HLT_Photon90_R9Id90_HE10_IsoM", "HLT_Physics", "HLT_Physics_part0", "HLT_Physics_part1", "HLT_Physics_part2", "HLT_Physics_part3", "HLT_Physics_part4", "HLT_Physics_part5", "HLT_Physics_part6", "HLT_Physics_part7", "HLT_QuadPFJet103_88_75_15", "HLT_QuadPFJet103_88_75_15_BTagCSV_p013_VBF2", "HLT_QuadPFJet103_88_75_15_DoubleBTagCSV_p013_p08_VBF1", "HLT_QuadPFJet105_88_76_15", "HLT_QuadPFJet105_88_76_15_BTagCSV_p013_VBF2", "HLT_QuadPFJet105_90_76_15_DoubleBTagCSV_p013_p08_VBF1", "HLT_QuadPFJet111_90_80_15", "HLT_QuadPFJet111_90_80_15_BTagCSV_p013_VBF2", "HLT_QuadPFJet111_90_80_15_DoubleBTagCSV_p013_p08_VBF1", "HLT_QuadPFJet98_83_71_15", "HLT_QuadPFJet98_83_71_15_BTagCSV_p013_VBF2", "HLT_QuadPFJet98_83_71_15_DoubleBTagCSV_p013_p08_VBF1", "HLT_Random", "HLT_Rsq0p35", "HLT_Rsq0p40", "HLT_RsqMR300_Rsq0p09_MR200", "HLT_RsqMR300_Rsq0p09_MR200_4jet", "HLT_RsqMR320_Rsq0p09_MR200", "HLT_RsqMR320_Rsq0p09_MR200_4jet", "HLT_SingleJet30_Mu12_SinglePFJet40", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_IsoTau15", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_IsoTau15_Charge1", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_Tau15", "HLT_Tau3Mu_Mu7_Mu1_TkMu1_Tau15_Charge1", "HLT_TkMu100", "HLT_Trimuon5_3p5_2_Upsilon_Muon", "HLT_TrimuonOpen_5_3p5_2_Upsilon_Muon", "HLT_TripleJet110_35_35_Mjj650_PFMET110", "HLT_TripleJet110_35_35_Mjj650_PFMET120", "HLT_TripleJet110_35_35_Mjj650_PFMET130", "HLT_TripleMu_10_5_5_DZ", "HLT_TripleMu_12_10_5", "HLT_TripleMu_5_3_3_Mass3p8to60_DCA", "HLT_TripleMu_5_3_3_Mass3p8to60_DZ", "HLT_TriplePhoton_20_20_20_CaloIdLV2", "HLT_TriplePhoton_20_20_20_CaloIdLV2_R9IdVL", "HLT_TriplePhoton_30_30_10_CaloIdLV2", "HLT_TriplePhoton_30_30_10_CaloIdLV2_R9IdVL", "HLT_TriplePhoton_35_35_5_CaloIdLV2_R9IdVL", "HLT_TrkMu12_DoubleTrkMu5NoFiltersNoVtx", "HLT_TrkMu16_DoubleTrkMu6NoFiltersNoVtx", "HLT_TrkMu17_DoubleTrkMu8NoFiltersNoVtx", "HLT_UncorrectedJetE30_NoBPTX", "HLT_UncorrectedJetE30_NoBPTX3BX", "HLT_UncorrectedJetE60_NoBPTX3BX", "HLT_UncorrectedJetE70_NoBPTX3BX", "HLT_VBF_DoubleLooseChargedIsoPFTau20_Trk1_eta2p1_Reg", "HLT_VBF_DoubleMediumChargedIsoPFTau20_Trk1_eta2p1_Reg", "HLT_VBF_DoubleTightChargedIsoPFTau20_Trk1_eta2p1_Reg", "HLT_ZeroBias", "HLT_ZeroBias_Beamspot", "HLT_ZeroBias_FirstBXAfterTrain", "HLT_ZeroBias_FirstCollisionAfterAbortGap", "HLT_ZeroBias_FirstCollisionInTrain", "HLT_ZeroBias_IsolatedBunches", "HLT_ZeroBias_LastCollisionInTrain", "HLT_ZeroBias_part0", "HLT_ZeroBias_part1", "HLT_ZeroBias_part2", "HLT_ZeroBias_part3", "HLT_ZeroBias_part4", "HLT_ZeroBias_part5", "HLT_ZeroBias_part6", "HLT_ZeroBias_part7", ]), ]) samples_2017["/ttHJetToNonbb_M125_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_new_pmx_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "ttH"), ("process_name_specific", "ttHJetToNonbb_M125_amcatnlo"), ("nof_files", 40), ("nof_db_files", 208), ("nof_events", { 'Count' : [ 9779592, ], 'CountWeighted' : [ 3.36594398e+06, 3.36592183e+06, 3.36594464e+06, ], 'CountWeightedLHEWeightScale' : [ 3.43234123e+06, 3.49701036e+06, 3.55863942e+06, 3.41453693e+06, 3.36589464e+06, 3.32704202e+06, 3.20228751e+06, 3.10044083e+06, 3.01465588e+06, ], 'CountWeightedLHEEnvelope' : [ 3.97500205e+06, 2.64957750e+06, ], 'CountWeightedFull' : [ 9.67320453e+06, 9.67279843e+06, 9.67328707e+06, ], 'CountWeightedFullLHEWeightScale' : [ 9.86398355e+06, 1.00498293e+07, 1.02269430e+07, 9.81281190e+06, 9.67304341e+06, 9.56136692e+06, 9.20284712e+06, 8.91016071e+06, 8.66362331e+06, ], 'CountWeightedFullLHEEnvelope' : [ 1.14235081e+07, 7.61444992e+06, ], 'CountWeightedL1PrefireNom' : [ 3.24626187e+06, 3.24603843e+06, 3.24639081e+06, ], 'CountWeightedL1Prefire' : [ 3.24626187e+06, 3.21730695e+06, 3.27453628e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 3.30549685e+06, 3.36946904e+06, 3.43065545e+06, 3.29140153e+06, 3.24620716e+06, 3.21029216e+06, 3.08860028e+06, 2.99201391e+06, 2.91067447e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 3.82916608e+06, 2.55825922e+06, ], 'CountWeightedFullL1PrefireNom' : [ 9.32925735e+06, 9.32843030e+06, 9.32969705e+06, ], 'CountWeightedFullL1Prefire' : [ 9.32925735e+06, 9.24603170e+06, 9.41048484e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 9.49945263e+06, 9.68329833e+06, 9.85913717e+06, 9.45894591e+06, 9.32907555e+06, 9.22585043e+06, 8.87613159e+06, 8.59855773e+06, 8.36480003e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 1.10043937e+07, 7.35201477e+06, ], 'Count_fwd' : [ 115283, ], 'CountWeighted_fwd' : [ 4.38486810e+04, 4.37545627e+04, 4.39809960e+04, ], 'CountWeightedLHEWeightScale_fwd' : [ 4.50775049e+04, 4.57718801e+04, 4.63297534e+04, 4.46102196e+04, 4.38476697e+04, 4.31819640e+04, 4.19532588e+04, 4.04913788e+04, 3.92432139e+04, ], 'CountWeightedLHEEnvelope_fwd' : [ 5.26905960e+04, 3.41926216e+04, ], 'CountWeightedFull_fwd' : [ 1.26013894e+05, 1.25743411e+05, 1.26394190e+05, ], 'CountWeightedFullLHEWeightScale_fwd' : [ 1.29545323e+05, 1.31540828e+05, 1.33144078e+05, 1.28202416e+05, 1.26010998e+05, 1.24097848e+05, 1.20566746e+05, 1.16365550e+05, 1.12778523e+05, ], 'CountWeightedFullLHEEnvelope_fwd' : [ 1.51424078e+05, 9.82639537e+04, ], 'CountWeightedL1PrefireNom_fwd' : [ 3.81008689e+04, 3.80276198e+04, 3.82088469e+04, ], 'CountWeightedL1Prefire_fwd' : [ 3.81008689e+04, 3.68083715e+04, 3.94012309e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_fwd' : [ 3.90843981e+04, 3.97260500e+04, 4.02451313e+04, 3.87328435e+04, 3.80999994e+04, 3.75490197e+04, 3.64509080e+04, 3.52051835e+04, 3.41441700e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_fwd' : [ 4.57235435e+04, 2.97268358e+04, ], 'CountWeightedFullL1PrefireNom_fwd' : [ 1.09495617e+05, 1.09285110e+05, 1.09805930e+05, ], 'CountWeightedFullL1Prefire_fwd' : [ 1.09495617e+05, 1.05781193e+05, 1.13232640e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_fwd' : [ 1.12322123e+05, 1.14166112e+05, 1.15657878e+05, 1.11311797e+05, 1.09493113e+05, 1.07909684e+05, 1.04753891e+05, 1.01173894e+05, 9.81247162e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_fwd' : [ 1.31401921e+05, 8.54300237e+04, ], 'Count_pt0to60' : [ 2099680, ], 'CountWeighted_pt0to60' : [ 7.54809336e+05, 7.54679678e+05, 7.54837799e+05, ], 'CountWeightedLHEWeightScale_pt0to60' : [ 7.81015696e+05, 7.88753451e+05, 7.98200096e+05, 7.67313488e+05, 7.54789518e+05, 7.45351094e+05, 7.15241199e+05, 6.93405663e+05, 6.75348067e+05, ], 'CountWeightedLHEEnvelope_pt0to60' : [ 8.93609998e+05, 5.99902559e+05, ], 'CountWeightedFull_pt0to60' : [ 2.16917829e+06, 2.16882539e+06, 2.16926116e+06, ], 'CountWeightedFullLHEWeightScale_pt0to60' : [ 2.24451071e+06, 2.26674715e+06, 2.29389547e+06, 2.20513250e+06, 2.16913384e+06, 2.14201616e+06, 2.05548451e+06, 1.99273334e+06, 1.94083874e+06, ], 'CountWeightedFullLHEEnvelope_pt0to60' : [ 2.56808813e+06, 1.72402084e+06, ], 'CountWeightedL1PrefireNom_pt0to60' : [ 7.32724321e+05, 7.32593353e+05, 7.32750068e+05, ], 'CountWeightedL1Prefire_pt0to60' : [ 7.32724321e+05, 7.27160304e+05, 7.38080767e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_pt0to60' : [ 7.57517732e+05, 7.65201152e+05, 7.74577632e+05, 7.44634934e+05, 7.32706487e+05, 7.23761187e+05, 6.94373025e+05, 6.73417448e+05, 6.56095074e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_pt0to60' : [ 8.66877280e+05, 5.82786736e+05, ], 'CountWeightedFullL1PrefireNom_pt0to60' : [ 2.10571700e+06, 2.10535239e+06, 2.10579151e+06, ], 'CountWeightedFullL1Prefire_pt0to60' : [ 2.10571700e+06, 2.08972832e+06, 2.12111091e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_pt0to60' : [ 2.17698154e+06, 2.19906204e+06, 2.22600890e+06, 2.13995803e+06, 2.10567309e+06, 2.07997048e+06, 1.99551349e+06, 1.93529098e+06, 1.88550898e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_pt0to60' : [ 2.49126256e+06, 1.67483280e+06, ], 'Count_pt60to120' : [ 3405036, ], 'CountWeighted_pt60to120' : [ 1.18156760e+06, 1.18159471e+06, 1.18160220e+06, ], 'CountWeightedLHEWeightScale_pt60to120' : [ 1.20633671e+06, 1.22723213e+06, 1.24912780e+06, 1.19782599e+06, 1.18153549e+06, 1.16932812e+06, 1.12182077e+06, 1.08816966e+06, 1.06010114e+06, ], 'CountWeightedLHEEnvelope_pt60to120' : [ 1.39698261e+06, 9.31610155e+05, ], 'CountWeightedFull_pt60to120' : [ 3.39561876e+06, 3.39572639e+06, 3.39568443e+06, ], 'CountWeightedFullLHEWeightScale_pt60to120' : [ 3.46681274e+06, 3.52686293e+06, 3.58978856e+06, 3.44235333e+06, 3.39554371e+06, 3.36045564e+06, 3.22392741e+06, 3.12722010e+06, 3.04655597e+06, ], 'CountWeightedFullLHEEnvelope_pt60to120' : [ 4.01469650e+06, 2.67729354e+06, ], 'CountWeightedL1PrefireNom_pt60to120' : [ 1.14304041e+06, 1.14302654e+06, 1.14309247e+06, ], 'CountWeightedL1Prefire_pt60to120' : [ 1.14304041e+06, 1.13355987e+06, 1.15224451e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_pt60to120' : [ 1.16547077e+06, 1.18618505e+06, 1.20791827e+06, 1.15824526e+06, 1.14301166e+06, 1.13169068e+06, 1.08534769e+06, 1.05329550e+06, 1.02657415e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_pt60to120' : [ 1.35012825e+06, 9.02061636e+05, ], 'CountWeightedFullL1PrefireNom_pt60to120' : [ 3.28490359e+06, 3.28487803e+06, 3.28503222e+06, ], 'CountWeightedFullL1Prefire_pt60to120' : [ 3.28490359e+06, 3.25766014e+06, 3.31135405e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_pt60to120' : [ 3.34937149e+06, 3.40890054e+06, 3.47135717e+06, 3.32860554e+06, 3.28483109e+06, 3.25229238e+06, 3.11911037e+06, 3.02699743e+06, 2.95020558e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_pt60to120' : [ 3.88004564e+06, 2.59237641e+06, ], 'Count_pt120to200' : [ 2554199, ], 'CountWeighted_pt120to200' : [ 8.59051517e+05, 8.58961016e+05, 8.58993385e+05, ], 'CountWeightedLHEWeightScale_pt120to200' : [ 8.68078310e+05, 8.88845162e+05, 9.07779981e+05, 8.69914267e+05, 8.59028359e+05, 8.50212486e+05, 8.18471125e+05, 7.92591154e+05, 7.70742793e+05, ], 'CountWeightedLHEEnvelope_pt120to200' : [ 1.01215312e+06, 6.73385257e+05, ], 'CountWeightedFull_pt120to200' : [ 2.46875456e+06, 2.46851331e+06, 2.46858052e+06, ], 'CountWeightedFullLHEWeightScale_pt120to200' : [ 2.49471407e+06, 2.55439478e+06, 2.60881011e+06, 2.49999029e+06, 2.46870321e+06, 2.44337132e+06, 2.35215141e+06, 2.27777686e+06, 2.21498749e+06, ], 'CountWeightedFullLHEEnvelope_pt120to200' : [ 2.90876161e+06, 1.93519826e+06, ], 'CountWeightedL1PrefireNom_pt120to200' : [ 8.27499334e+05, 8.27367132e+05, 8.27477182e+05, ], 'CountWeightedL1Prefire_pt120to200' : [ 8.27499334e+05, 8.19930999e+05, 8.34906188e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_pt120to200' : [ 8.34896436e+05, 8.55330750e+05, 8.74038451e+05, 8.37520179e+05, 8.27478857e+05, 8.19401481e+05, 7.88488628e+05, 7.63981877e+05, 7.43295288e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_pt120to200' : [ 9.73782647e+05, 6.49421418e+05, ], 'CountWeightedFullL1PrefireNom_pt120to200' : [ 2.37808565e+06, 2.37771616e+06, 2.37801745e+06, ], 'CountWeightedFullL1Prefire_pt120to200' : [ 2.37808565e+06, 2.35633626e+06, 2.39937156e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_pt120to200' : [ 2.39935461e+06, 2.45807951e+06, 2.51184224e+06, 2.40689481e+06, 2.37803536e+06, 2.35482499e+06, 2.26598614e+06, 2.19555807e+06, 2.13610739e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_pt120to200' : [ 2.79849062e+06, 1.86632951e+06, ], 'Count_pt200to300' : [ 1089274, ], 'CountWeighted_pt200to300' : [ 3.60015712e+05, 3.60061425e+05, 3.59975506e+05, ], 'CountWeightedLHEWeightScale_pt200to300' : [ 3.63173717e+05, 3.72905275e+05, 3.80666547e+05, 3.65150013e+05, 3.60007538e+05, 3.55314053e+05, 3.44424569e+05, 3.32174611e+05, 3.21613326e+05, ], 'CountWeightedLHEEnvelope_pt200to300' : [ 4.23458929e+05, 2.81011707e+05, ], 'CountWeightedFull_pt200to300' : [ 1.03462173e+06, 1.03476239e+06, 1.03451252e+06, ], 'CountWeightedFullLHEWeightScale_pt200to300' : [ 1.04370148e+06, 1.07166817e+06, 1.09397288e+06, 1.04938117e+06, 1.03459922e+06, 1.02111409e+06, 9.89819463e+05, 9.54614972e+05, 9.24263726e+05, ], 'CountWeightedFullLHEEnvelope_pt200to300' : [ 1.21695142e+06, 8.07581241e+05, ], 'CountWeightedL1PrefireNom_pt200to300' : [ 3.45249505e+05, 3.45247804e+05, 3.45275192e+05, ], 'CountWeightedL1Prefire_pt200to300' : [ 3.45249505e+05, 3.41806695e+05, 3.48645982e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_pt200to300' : [ 3.47462768e+05, 3.57127078e+05, 3.64891167e+05, 3.49877969e+05, 3.45241770e+05, 3.41000829e+05, 3.30314979e+05, 3.18827985e+05, 3.08912366e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_pt200to300' : [ 4.05312611e+05, 2.69947796e+05, ], 'CountWeightedFullL1PrefireNom_pt200to300' : [ 9.92187960e+05, 9.92187816e+05, 9.92264909e+05, ], 'CountWeightedFullL1Prefire_pt200to300' : [ 9.92187960e+05, 9.82294215e+05, 1.00194859e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_pt200to300' : [ 9.98550690e+05, 1.02632430e+06, 1.04863705e+06, 1.00549172e+06, 9.92166256e+05, 9.79980036e+05, 9.49270869e+05, 9.16259116e+05, 8.87763392e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_pt200to300' : [ 1.16480174e+06, 7.75785580e+05, ], 'Count_ptGt300' : [ 516120, ], 'CountWeighted_ptGt300' : [ 1.66744922e+05, 1.66815038e+05, 1.66699631e+05, ], 'CountWeightedLHEWeightScale_ptGt300' : [ 1.68659773e+05, 1.73502876e+05, 1.76534795e+05, 1.69722257e+05, 1.66741443e+05, 1.63653741e+05, 1.60377153e+05, 1.53609149e+05, 1.47608449e+05, ], 'CountWeightedLHEEnvelope_ptGt300' : [ 1.96108853e+05, 1.29476038e+05, ], 'CountWeightedFull_ptGt300' : [ 4.79197942e+05, 4.79398469e+05, 4.79067418e+05, ], 'CountWeightedFullLHEWeightScale_ptGt300' : [ 4.84700362e+05, 4.98618689e+05, 5.07331949e+05, 4.87753777e+05, 4.79187317e+05, 4.70313850e+05, 4.60897502e+05, 4.41447379e+05, 4.24202371e+05, ], 'CountWeightedFullLHEEnvelope_ptGt300' : [ 5.63584500e+05, 3.72092764e+05, ], 'CountWeightedL1PrefireNom_ptGt300' : [ 1.59706028e+05, 1.59749222e+05, 1.59679048e+05, ], 'CountWeightedL1Prefire_ptGt300' : [ 1.59706028e+05, 1.58087296e+05, 1.61307398e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_ptGt300' : [ 1.61064710e+05, 1.65900084e+05, 1.68984430e+05, 1.62390583e+05, 1.59702626e+05, 1.56889382e+05, 1.53625985e+05, 1.47286148e+05, 1.41654348e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_ptGt300' : [ 1.87341212e+05, 1.24315571e+05, ], 'CountWeightedFullL1PrefireNom_ptGt300' : [ 4.58969115e+05, 4.59092751e+05, 4.58891369e+05, ], 'CountWeightedFullL1Prefire_ptGt300' : [ 4.58969115e+05, 4.54317160e+05, 4.63571261e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_ptGt300' : [ 4.62873469e+05, 4.76769496e+05, 4.85633445e+05, 4.66683779e+05, 4.58959079e+05, 4.50874258e+05, 4.41495830e+05, 4.23276152e+05, 4.07091280e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_ptGt300' : [ 5.38387773e+05, 3.57262442e+05, ], 'Count_pt300to450' : [ 400974, ], 'CountWeighted_pt300to450' : [ 1.30944650e+05, 1.30964581e+05, 1.30968422e+05, ], 'CountWeightedLHEWeightScale_pt300to450' : [ 1.32657613e+05, 1.36299461e+05, 1.38724745e+05, 1.33221385e+05, 1.30941850e+05, 1.28652435e+05, 1.25697682e+05, 1.20565240e+05, 1.16033227e+05, ], 'CountWeightedLHEEnvelope_pt300to450' : [ 1.54233686e+05, 1.01702343e+05, ], 'CountWeightedFull_pt300to450' : [ 3.76313718e+05, 3.76370686e+05, 3.76381808e+05, ], 'CountWeightedFullLHEWeightScale_pt300to450' : [ 3.81236133e+05, 3.91702145e+05, 3.98672074e+05, 3.82856279e+05, 3.76305585e+05, 3.69725893e+05, 3.61234396e+05, 3.46484651e+05, 3.33460360e+05, ], 'CountWeightedFullLHEEnvelope_pt300to450' : [ 4.43242167e+05, 2.92275732e+05, ], 'CountWeightedL1PrefireNom_pt300to450' : [ 1.25347962e+05, 1.25335842e+05, 1.25395095e+05, ], 'CountWeightedL1Prefire_pt300to450' : [ 1.25347962e+05, 1.24061273e+05, 1.26621824e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_pt300to450' : [ 1.26592584e+05, 1.30244844e+05, 1.32719370e+05, 1.27387558e+05, 1.25345247e+05, 1.23273119e+05, 1.20337527e+05, 1.15542400e+05, 1.11298611e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_pt300to450' : [ 1.47251873e+05, 9.75874958e+04, ], 'CountWeightedFullL1PrefireNom_pt300to450' : [ 3.60229605e+05, 3.60194583e+05, 3.60364926e+05, ], 'CountWeightedFullL1Prefire_pt300to450' : [ 3.60229605e+05, 3.56531861e+05, 3.63890508e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_pt300to450' : [ 3.63806269e+05, 3.74302152e+05, 3.81413597e+05, 3.66090820e+05, 3.60221755e+05, 3.54266633e+05, 3.45830207e+05, 3.32049791e+05, 3.19853850e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_pt300to450' : [ 4.23177628e+05, 2.80450348e+05, ], 'Count_ptGt450' : [ 115146, ], 'CountWeighted_ptGt450' : [ 3.58003318e+04, 3.58503227e+04, 3.57312335e+04, ], 'CountWeightedLHEWeightScale_ptGt450' : [ 3.60021488e+04, 3.72034233e+04, 3.78100543e+04, 3.65008782e+04, 3.57995472e+04, 3.50012950e+04, 3.46794757e+04, 3.30439066e+04, 3.15752293e+04, ], 'CountWeightedLHEEnvelope_ptGt450' : [ 4.18751766e+04, 2.77736949e+04, ], 'CountWeightedFull_ptGt450' : [ 1.02884252e+05, 1.03027901e+05, 1.02685712e+05, ], 'CountWeightedFullLHEWeightScale_ptGt450' : [ 1.03464241e+05, 1.06916507e+05, 1.08659859e+05, 1.04897505e+05, 1.02882037e+05, 1.00587948e+05, 9.96630961e+04, 9.49627365e+04, 9.07419994e+04, ], 'CountWeightedFullLHEEnvelope_ptGt450' : [ 1.20342350e+05, 7.98170194e+04, ], 'CountWeightedL1PrefireNom_ptGt450' : [ 3.43581051e+04, 3.44133241e+04, 3.42839691e+04, ], 'CountWeightedL1Prefire_ptGt450' : [ 3.43581051e+04, 3.40260643e+04, 3.46856185e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_ptGt450' : [ 3.44721251e+04, 3.56552532e+04, 3.62650644e+04, 3.50030368e+04, 3.43573571e+04, 3.36162573e+04, 3.32884767e+04, 3.17437641e+04, 3.03557389e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_ptGt450' : [ 4.00893445e+04, 2.67280759e+04, ], 'CountWeightedFullL1PrefireNom_ptGt450' : [ 9.87395302e+04, 9.88982072e+04, 9.85264948e+04, ], 'CountWeightedFullL1Prefire_ptGt450' : [ 9.87395302e+04, 9.77852914e+04, 9.96807468e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_ptGt450' : [ 9.90672017e+04, 1.02467316e+05, 1.04219820e+05, 1.00592961e+05, 9.87374006e+04, 9.66075767e+04, 9.56655898e+04, 9.12263405e+04, 8.72373821e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_ptGt450' : [ 1.15210168e+05, 7.68120759e+04, ], }), ("nof_tree_events", 9779592), ("nof_db_events", 9779592), ("fsize_local", 94273411753), # 94.27GB, avg file size 2.36GB ("fsize_db", 625507074411), # 625.51GB, avg file size 3.01GB ("use_it", True), ("xsection", 0.2118), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/ttHJetToNonbb_M125_amcatnlo"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/ttHToNonbb_M125_TuneCP5_13TeV-powheg-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_new_pmx_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "ttH"), ("process_name_specific", "ttHToNonbb_M125_powheg"), ("nof_files", 33), ("nof_db_files", 164), ("nof_events", { 'Count' : [ 7966779, ], 'CountWeighted' : [ 7.81465618e+06, 7.81537638e+06, 7.81512906e+06, ], 'CountWeightedLHEWeightScale' : [ 8.23725883e+06, 8.14285438e+06, 8.10428518e+06, 7.97071039e+06, 7.76684968e+06, 7.61886936e+06, 7.51661440e+06, 7.25535091e+06, 7.04888188e+06, ], 'CountWeightedLHEEnvelope' : [ 9.05449231e+06, 6.52595705e+06, ], 'CountWeightedFull' : [ 4.48373131e+06, 4.48391185e+06, 4.48440706e+06, ], 'CountWeightedFullLHEWeightScale' : [ 4.72652115e+06, 4.67235488e+06, 4.65022458e+06, 4.57358400e+06, 4.45630189e+06, 4.37168779e+06, 4.31301365e+06, 4.16310256e+06, 4.04463074e+06, ], 'CountWeightedFullLHEEnvelope' : [ 5.19544679e+06, 3.74457389e+06, ], 'CountWeightedL1PrefireNom' : [ 7.53279373e+06, 7.53285596e+06, 7.53346709e+06, ], 'CountWeightedL1Prefire' : [ 7.53279373e+06, 7.46459024e+06, 7.59934285e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 7.92973843e+06, 7.84310142e+06, 7.80983148e+06, 7.67938878e+06, 7.48671409e+06, 7.34743815e+06, 7.24554101e+06, 6.99717649e+06, 6.80104087e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 8.71949466e+06, 6.29592563e+06, ], 'CountWeightedFullL1PrefireNom' : [ 4.32213949e+06, 4.32206138e+06, 4.32275559e+06, ], 'CountWeightedFullL1Prefire' : [ 4.32213949e+06, 4.28304262e+06, 4.36032588e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 4.55006541e+06, 4.50035686e+06, 4.48126743e+06, 4.40642493e+06, 4.29570005e+06, 4.21594294e+06, 4.15747862e+06, 4.01496392e+06, 3.90242304e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 5.00322432e+06, 3.61258710e+06, ], 'Count_fwd' : [ 107070, ], 'CountWeighted_fwd' : [ 1.03994933e+05, 1.04006741e+05, 1.04011609e+05, ], 'CountWeightedLHEWeightScale_fwd' : [ 1.04730766e+05, 1.04742630e+05, 1.05229051e+05, 1.05769601e+05, 1.03406528e+05, 1.01718523e+05, 1.02267814e+05, 9.86051942e+04, 9.57366594e+04, ], 'CountWeightedLHEEnvelope_fwd' : [ 1.17609579e+05, 8.62106978e+04, ], 'CountWeightedFull_fwd' : [ 5.96721188e+04, 5.96789314e+04, 5.96815685e+04, ], 'CountWeightedFullLHEWeightScale_fwd' : [ 6.00943041e+04, 6.01011065e+04, 6.03802178e+04, 6.06903815e+04, 5.93344930e+04, 5.83658847e+04, 5.86810692e+04, 5.65794594e+04, 5.49335062e+04, ], 'CountWeightedFullLHEEnvelope_fwd' : [ 6.74841429e+04, 4.94675255e+04, ], 'CountWeightedL1PrefireNom_fwd' : [ 9.02830016e+04, 9.02814886e+04, 9.03044072e+04, ], 'CountWeightedL1Prefire_fwd' : [ 9.02830016e+04, 8.72075739e+04, 9.33791306e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_fwd' : [ 9.09061652e+04, 9.09297662e+04, 9.13678586e+04, 9.17891975e+04, 8.97676921e+04, 8.83287943e+04, 8.87303802e+04, 8.55919010e+04, 8.31343005e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_fwd' : [ 1.02059849e+05, 7.49199267e+04, ], 'CountWeightedFullL1PrefireNom_fwd' : [ 5.18042073e+04, 5.18033392e+04, 5.18164777e+04, ], 'CountWeightedFullL1Prefire_fwd' : [ 5.18042073e+04, 5.00395274e+04, 5.35807615e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_fwd' : [ 5.21617732e+04, 5.21753162e+04, 5.24266926e+04, 5.26684601e+04, 5.15085239e+04, 5.06828829e+04, 5.09133190e+04, 4.91124631e+04, 4.77022955e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_fwd' : [ 5.85617392e+04, 4.29889006e+04, ], 'Count_pt0to60' : [ 1845540, ], 'CountWeighted_pt0to60' : [ 1.82236024e+06, 1.82249801e+06, 1.82219066e+06, ], 'CountWeightedLHEWeightScale_pt0to60' : [ 1.91829003e+06, 1.90000194e+06, 1.89648924e+06, 1.85280123e+06, 1.81109602e+06, 1.78276429e+06, 1.74283389e+06, 1.68919468e+06, 1.64771014e+06, ], 'CountWeightedLHEEnvelope_pt0to60' : [ 2.10294240e+06, 1.53696338e+06, ], 'CountWeightedFull_pt0to60' : [ 1.04565021e+06, 1.04573158e+06, 1.04558587e+06, ], 'CountWeightedFullLHEWeightScale_pt0to60' : [ 1.10071120e+06, 1.09021746e+06, 1.08820121e+06, 1.06313391e+06, 1.03918694e+06, 1.02294636e+06, 1.00003452e+06, 9.69256783e+05, 9.45452393e+05, ], 'CountWeightedFullLHEEnvelope_pt0to60' : [ 1.20666394e+06, 8.81906368e+05, ], 'CountWeightedL1PrefireNom_pt0to60' : [ 1.76749307e+06, 1.76752489e+06, 1.76745372e+06, ], 'CountWeightedL1Prefire_pt0to60' : [ 1.76749307e+06, 1.75371328e+06, 1.78078183e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_pt0to60' : [ 1.85890651e+06, 1.84179940e+06, 1.83897538e+06, 1.79643336e+06, 1.75657157e+06, 1.72960945e+06, 1.69037551e+06, 1.63890125e+06, 1.59912925e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_pt0to60' : [ 2.03822897e+06, 1.49161606e+06, ], 'CountWeightedFullL1PrefireNom_pt0to60' : [ 1.01417374e+06, 1.01419408e+06, 1.01417149e+06, ], 'CountWeightedFullL1Prefire_pt0to60' : [ 1.01417374e+06, 1.00626884e+06, 1.02179835e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_pt0to60' : [ 1.06663690e+06, 1.05682083e+06, 1.05519994e+06, 1.03078987e+06, 1.00790710e+06, 9.92446537e+05, 9.69933915e+05, 9.40398244e+05, 9.17576885e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_pt0to60' : [ 1.16953192e+06, 8.55886075e+05, ], 'Count_pt60to120' : [ 2789917, ], 'CountWeighted_pt60to120' : [ 2.75057330e+06, 2.75020503e+06, 2.75082711e+06, ], 'CountWeightedLHEWeightScale_pt60to120' : [ 2.89665954e+06, 2.86689337e+06, 2.85809205e+06, 2.80043576e+06, 2.73384236e+06, 2.68712393e+06, 2.63759621e+06, 2.55202823e+06, 2.48514416e+06, ], 'CountWeightedLHEEnvelope_pt60to120' : [ 3.17882731e+06, 2.31030001e+06, ], 'CountWeightedFull_pt60to120' : [ 1.57827104e+06, 1.57803426e+06, 1.57847295e+06, ], 'CountWeightedFullLHEWeightScale_pt60to120' : [ 1.66209686e+06, 1.64501753e+06, 1.63996775e+06, 1.60688476e+06, 1.56867093e+06, 1.54186654e+06, 1.51344732e+06, 1.46434900e+06, 1.42597048e+06, ], 'CountWeightedFullLHEEnvelope_pt60to120' : [ 1.82400419e+06, 1.32564554e+06, ], 'CountWeightedL1PrefireNom_pt60to120' : [ 2.65934905e+06, 2.65888014e+06, 2.65972302e+06, ], 'CountWeightedL1Prefire_pt60to120' : [ 2.65934905e+06, 2.63688961e+06, 2.68116344e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_pt60to120' : [ 2.79748029e+06, 2.76994831e+06, 2.76256369e+06, 2.70644065e+06, 2.64317826e+06, 2.59895956e+06, 2.55016223e+06, 2.46843530e+06, 2.40460841e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_pt60to120' : [ 3.07075425e+06, 2.23534941e+06, ], 'CountWeightedFullL1PrefireNom_pt60to120' : [ 1.52592524e+06, 1.52564514e+06, 1.52618179e+06, ], 'CountWeightedFullL1Prefire_pt60to120' : [ 1.52592524e+06, 1.51303495e+06, 1.53844024e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_pt60to120' : [ 1.60518827e+06, 1.58939113e+06, 1.58515292e+06, 1.55295042e+06, 1.51664650e+06, 1.49127781e+06, 1.46327745e+06, 1.41638367e+06, 1.37975934e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_pt60to120' : [ 1.76199215e+06, 1.28263931e+06, ], 'Count_pt120to200' : [ 1988702, ], 'CountWeighted_pt120to200' : [ 1.95027189e+06, 1.95045779e+06, 1.95010064e+06, ], 'CountWeightedLHEWeightScale_pt120to200' : [ 2.05801992e+06, 2.03236973e+06, 2.02012596e+06, 1.99151837e+06, 1.93826946e+06, 1.89891359e+06, 1.87911682e+06, 1.81131617e+06, 1.75740626e+06, ], 'CountWeightedLHEEnvelope_pt120to200' : [ 2.26358395e+06, 1.62318149e+06, ], 'CountWeightedFull_pt120to200' : [ 1.11904540e+06, 1.11915264e+06, 1.11898587e+06, ], 'CountWeightedFullLHEWeightScale_pt120to200' : [ 1.18088741e+06, 1.16616988e+06, 1.15914428e+06, 1.14272889e+06, 1.11215852e+06, 1.08959299e+06, 1.07823314e+06, 1.03932943e+06, 1.00839609e+06, ], 'CountWeightedFullLHEEnvelope_pt120to200' : [ 1.29883973e+06, 9.31377979e+05, ], 'CountWeightedL1PrefireNom_pt120to200' : [ 1.87703430e+06, 1.87713715e+06, 1.87697211e+06, ], 'CountWeightedL1Prefire_pt120to200' : [ 1.87703430e+06, 1.85951395e+06, 1.89420159e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_pt120to200' : [ 1.97754473e+06, 1.95414828e+06, 1.94349944e+06, 1.91564707e+06, 1.86548368e+06, 1.82853291e+06, 1.80872197e+06, 1.74439798e+06, 1.69328117e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_pt120to200' : [ 2.17615262e+06, 1.56357598e+06, ], 'CountWeightedFullL1PrefireNom_pt120to200' : [ 1.07702844e+06, 1.07708911e+06, 1.07701613e+06, ], 'CountWeightedFullL1Prefire_pt120to200' : [ 1.07702844e+06, 1.06697725e+06, 1.08687834e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_pt120to200' : [ 1.13471119e+06, 1.12128640e+06, 1.11517636e+06, 1.09919430e+06, 1.07040077e+06, 1.04920854e+06, 1.03784095e+06, 1.00093199e+06, 9.71601453e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_pt120to200' : [ 1.24867168e+06, 8.97176873e+05, ], 'Count_pt200to300' : [ 835669, ], 'CountWeighted_pt200to300' : [ 8.11464878e+05, 8.11533624e+05, 8.11410976e+05, ], 'CountWeightedLHEWeightScale_pt200to300' : [ 8.60271012e+05, 8.46759978e+05, 8.38039101e+05, 8.32570987e+05, 8.06616478e+05, 7.86370725e+05, 7.86880562e+05, 7.54212695e+05, 7.27757491e+05, ], 'CountWeightedLHEEnvelope_pt200to300' : [ 9.48689734e+05, 6.66155247e+05, ], 'CountWeightedFull_pt200to300' : [ 4.65612088e+05, 4.65656173e+05, 4.65586091e+05, ], 'CountWeightedFullLHEWeightScale_pt200to300' : [ 4.93621849e+05, 4.85869209e+05, 4.80865123e+05, 4.77727542e+05, 4.62830112e+05, 4.51217802e+05, 4.51510538e+05, 4.32765785e+05, 4.17585721e+05, ], 'CountWeightedFullLHEEnvelope_pt200to300' : [ 5.44356079e+05, 3.82238450e+05, ], 'CountWeightedL1PrefireNom_pt200to300' : [ 7.78117561e+05, 7.78140834e+05, 7.78120551e+05, ], 'CountWeightedL1Prefire_pt200to300' : [ 7.78117561e+05, 7.70329824e+05, 7.85794568e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_pt200to300' : [ 8.23141894e+05, 8.10917607e+05, 8.03178748e+05, 7.97770130e+05, 7.73467195e+05, 7.54546895e+05, 7.54666406e+05, 7.23830634e+05, 6.98863907e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_pt200to300' : [ 9.08392927e+05, 6.39448008e+05, ], 'CountWeightedFullL1PrefireNom_pt200to300' : [ 4.46479713e+05, 4.46495562e+05, 4.46484379e+05, ], 'CountWeightedFullL1Prefire_pt200to300' : [ 4.46479713e+05, 4.42011576e+05, 4.50884646e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_pt200to300' : [ 4.72317211e+05, 4.65302917e+05, 4.60862299e+05, 4.57758888e+05, 4.43811356e+05, 4.32957390e+05, 4.33026061e+05, 4.15332522e+05, 4.01006714e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_pt200to300' : [ 5.21233915e+05, 3.66913944e+05, ], 'Count_ptGt300' : [ 399881, ], 'CountWeighted_ptGt300' : [ 3.75957842e+05, 3.75960039e+05, 3.75934851e+05, ], 'CountWeightedLHEWeightScale_ptGt300' : [ 3.99287155e+05, 3.92089346e+05, 3.86311854e+05, 3.87620903e+05, 3.73585653e+05, 3.61979963e+05, 3.67920942e+05, 3.49987638e+05, 3.35126239e+05, ], 'CountWeightedLHEEnvelope_ptGt300' : [ 4.42840948e+05, 3.03144133e+05, ], 'CountWeightedFull_ptGt300' : [ 2.15724197e+05, 2.15725579e+05, 2.15711377e+05, ], 'CountWeightedFullLHEWeightScale_ptGt300' : [ 2.29110149e+05, 2.24980071e+05, 2.21665036e+05, 2.22416122e+05, 2.14363039e+05, 2.07703399e+05, 2.11112313e+05, 2.00822209e+05, 1.92294790e+05, ], 'CountWeightedFullLHEEnvelope_ptGt300' : [ 2.54101264e+05, 1.73943521e+05, ], 'CountWeightedL1PrefireNom_ptGt300' : [ 3.60528828e+05, 3.60522176e+05, 3.60509028e+05, ], 'CountWeightedL1Prefire_ptGt300' : [ 3.60528828e+05, 3.56969066e+05, 3.64042371e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_ptGt300' : [ 3.81757418e+05, 3.75357075e+05, 3.70246263e+05, 3.71316809e+05, 3.58257536e+05, 3.47460146e+05, 3.52891522e+05, 3.36016822e+05, 3.22023947e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_ptGt300' : [ 4.23904196e+05, 2.91015877e+05, ], 'CountWeightedFullL1PrefireNom_ptGt300' : [ 2.06870899e+05, 2.06867245e+05, 2.06859752e+05, ], 'CountWeightedFullL1Prefire_ptGt300' : [ 2.06870899e+05, 2.04828286e+05, 2.08886982e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_ptGt300' : [ 2.19051606e+05, 2.15379135e+05, 2.12446591e+05, 2.13060848e+05, 2.05567635e+05, 1.99371910e+05, 2.02488446e+05, 1.92805778e+05, 1.84776710e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_ptGt300' : [ 2.43235386e+05, 1.66984317e+05, ], 'Count_pt300to450' : [ 308655, ], 'CountWeighted_pt300to450' : [ 2.94206304e+05, 2.94178899e+05, 2.94186855e+05, ], 'CountWeightedLHEWeightScale_pt300to450' : [ 3.12966870e+05, 3.07206444e+05, 3.02764964e+05, 3.03163444e+05, 2.92349189e+05, 2.83532005e+05, 2.87228584e+05, 2.73553746e+05, 2.62295469e+05, ], 'CountWeightedLHEEnvelope_pt300to450' : [ 3.46627400e+05, 2.37792650e+05, ], 'CountWeightedFull_pt300to450' : [ 1.68814932e+05, 1.68800137e+05, 1.68804027e+05, ], 'CountWeightedFullLHEWeightScale_pt300to450' : [ 1.79579760e+05, 1.76274442e+05, 1.73725944e+05, 1.73954587e+05, 1.67749324e+05, 1.62690113e+05, 1.64811194e+05, 1.56964586e+05, 1.50504633e+05, ], 'CountWeightedFullLHEEnvelope_pt300to450' : [ 1.98894095e+05, 1.36444963e+05, ], 'CountWeightedL1PrefireNom_pt300to450' : [ 2.81870201e+05, 2.81836027e+05, 2.81854232e+05, ], 'CountWeightedL1Prefire_pt300to450' : [ 2.81870201e+05, 2.79024784e+05, 2.84679688e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_pt300to450' : [ 2.98974782e+05, 2.93836600e+05, 2.89908470e+05, 2.90149375e+05, 2.80095109e+05, 2.71902179e+05, 2.75235265e+05, 2.62382933e+05, 2.51796911e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_pt300to450' : [ 3.31510614e+05, 2.28068011e+05, ], 'CountWeightedFullL1PrefireNom_pt300to450' : [ 1.61736493e+05, 1.61717504e+05, 1.61727505e+05, ], 'CountWeightedFullL1Prefire_pt300to450' : [ 1.61736493e+05, 1.60103798e+05, 1.63348613e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_pt300to450' : [ 1.71551103e+05, 1.68602837e+05, 1.66348888e+05, 1.66487116e+05, 1.60717951e+05, 1.56016939e+05, 1.57929452e+05, 1.50554798e+05, 1.44480569e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_pt300to450' : [ 1.90220108e+05, 1.30864962e+05, ], 'Count_ptGt450' : [ 91226, ], 'CountWeighted_ptGt450' : [ 8.17510182e+04, 8.17811206e+04, 8.17482903e+04, ], 'CountWeightedLHEWeightScale_ptGt450' : [ 8.63202762e+04, 8.48828658e+04, 8.35468849e+04, 8.44574425e+04, 8.12359477e+04, 7.84479923e+04, 8.06923671e+04, 7.64339031e+04, 7.28307803e+04, ], 'CountWeightedLHEEnvelope_ptGt450' : [ 9.62135536e+04, 6.53514988e+04, ], 'CountWeightedFull_ptGt450' : [ 4.69085629e+04, 4.69258502e+04, 4.69069735e+04, ], 'CountWeightedFullLHEWeightScale_ptGt450' : [ 4.95304003e+04, 4.87056166e+04, 4.79390353e+04, 4.84615149e+04, 4.66130164e+04, 4.50133036e+04, 4.63011164e+04, 4.38576181e+04, 4.17901536e+04, ], 'CountWeightedFullLHEEnvelope_ptGt450' : [ 5.52071449e+04, 3.74985575e+04, ], 'CountWeightedL1PrefireNom_ptGt450' : [ 7.86583439e+04, 7.86861569e+04, 7.86548915e+04, ], 'CountWeightedL1Prefire_ptGt450' : [ 7.86583439e+04, 7.79440370e+04, 7.93623976e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_ptGt450' : [ 8.27826187e+04, 8.15204753e+04, 8.03377863e+04, 8.11674216e+04, 7.81621440e+04, 7.55579328e+04, 7.76562386e+04, 7.36338886e+04, 7.02270452e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_ptGt450' : [ 9.23936029e+04, 6.29478692e+04, ], 'CountWeightedFullL1PrefireNom_ptGt450' : [ 4.51339948e+04, 4.51499579e+04, 4.51319986e+04, ], 'CountWeightedFullL1Prefire_ptGt450' : [ 4.51339948e+04, 4.47241253e+04, 4.55379790e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_ptGt450' : [ 4.75005001e+04, 4.67762886e+04, 4.60976611e+04, 4.65737079e+04, 4.48492761e+04, 4.33549917e+04, 4.45589917e+04, 4.22509769e+04, 4.02961362e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_ptGt450' : [ 5.30152699e+04, 3.61193597e+04, ], }), ("nof_tree_events", 7966779), ("nof_db_events", 7966779), ("fsize_local", 76011906077), # 76.01GB, avg file size 2.30GB ("fsize_db", 494872891344), # 494.87GB, avg file size 3.02GB ("use_it", False), ("xsection", 0.2118), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 260001 - 260100 -> NNPDF30_nlo_as_0118 PDF set, expecting 101 weights (counted 100 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/ttHToNonbb_M125_powheg"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/ttHToNonbb_M125_TuneCP5_13TeV-powheg-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14_ext1-v2/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "ttH"), ("process_name_specific", "ttHToNonbb_M125_powheg_ext1"), ("nof_files", 22), ("nof_db_files", 355), ("nof_events", { 'Count' : [ 5499293, ], 'CountWeighted' : [ 5.39430716e+06, 5.39426891e+06, 5.39396533e+06, ], 'CountWeightedLHEWeightScale' : [ 5.72369567e+06, 5.65756645e+06, 5.63042231e+06, 5.53642536e+06, 5.39430716e+06, 5.29070925e+06, 5.21873452e+06, 5.03634892e+06, 4.89221258e+06, ], 'CountWeightedLHEEnvelope' : [ 6.25932184e+06, 4.49532233e+06, ], 'CountWeightedFull' : [ 3.09490933e+06, 3.09508389e+06, 3.09526380e+06, ], 'CountWeightedFullLHEWeightScale' : [ 3.28424619e+06, 3.24630359e+06, 3.23072803e+06, 3.17679564e+06, 3.09490933e+06, 3.03579850e+06, 2.99449764e+06, 2.88984701e+06, 2.80713870e+06, ], 'CountWeightedFullLHEEnvelope' : [ 3.59158456e+06, 2.57940155e+06, ], 'CountWeightedL1PrefireNom' : [ 5.19976662e+06, 5.19956820e+06, 5.19977902e+06, ], 'CountWeightedL1Prefire' : [ 5.19976662e+06, 5.15268750e+06, 5.24567794e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 5.50996847e+06, 5.44933236e+06, 5.42595583e+06, 5.33413503e+06, 5.19976662e+06, 5.10237966e+06, 5.03064441e+06, 4.85729130e+06, 4.72038955e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 6.02775991e+06, 4.33698825e+06, ], 'CountWeightedFullL1PrefireNom' : [ 2.98342500e+06, 2.98344672e+06, 2.98372011e+06, ], 'CountWeightedFullL1Prefire' : [ 2.98342500e+06, 2.95645609e+06, 3.00978628e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 3.16160911e+06, 3.12681755e+06, 3.11340483e+06, 3.06072092e+06, 2.98342500e+06, 2.92773289e+06, 2.88657255e+06, 2.78710402e+06, 2.70854929e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 3.45871745e+06, 2.48855199e+06, ], 'Count_fwd' : [ 73963, ], 'CountWeighted_fwd' : [ 7.17228525e+04, 7.17876621e+04, 7.16803137e+04, ], 'CountWeightedLHEWeightScale_fwd' : [ 7.28199788e+04, 7.27560315e+04, 7.30180254e+04, 7.34024800e+04, 7.17228525e+04, 7.05150549e+04, 7.09011760e+04, 6.83179807e+04, 6.62908677e+04, ], 'CountWeightedLHEEnvelope_fwd' : [ 8.13440498e+04, 5.92676191e+04, ], 'CountWeightedFull_fwd' : [ 4.11544497e+04, 4.11916199e+04, 4.11299475e+04, ], 'CountWeightedFullLHEWeightScale_fwd' : [ 4.17839595e+04, 4.17472651e+04, 4.18975947e+04, 4.21181954e+04, 4.11544497e+04, 4.04613981e+04, 4.06829542e+04, 3.92007218e+04, 3.80375667e+04, ], 'CountWeightedFullLHEEnvelope_fwd' : [ 4.66750496e+04, 3.40076422e+04, ], 'CountWeightedL1PrefireNom_fwd' : [ 6.22346956e+04, 6.22796533e+04, 6.22000571e+04, ], 'CountWeightedL1Prefire_fwd' : [ 6.22346956e+04, 6.01059973e+04, 6.43774138e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_fwd' : [ 6.31537261e+04, 6.31090264e+04, 6.33538269e+04, 6.36729705e+04, 6.22346956e+04, 6.12056553e+04, 6.15004729e+04, 5.92879160e+04, 5.75533511e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_fwd' : [ 7.05400935e+04, 5.14819116e+04, ], 'CountWeightedFullL1PrefireNom_fwd' : [ 3.57101456e+04, 3.57359393e+04, 3.56902606e+04, ], 'CountWeightedFullL1Prefire_fwd' : [ 3.57101456e+04, 3.44887006e+04, 3.69396328e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_fwd' : [ 3.62374773e+04, 3.62118333e+04, 3.63522981e+04, 3.65354231e+04, 3.57101456e+04, 3.51196851e+04, 3.52888483e+04, 3.40192897e+04, 3.30239983e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_fwd' : [ 4.04757623e+04, 2.95402166e+04, ], 'Count_pt0to60' : [ 1274516, ], 'CountWeighted_pt0to60' : [ 1.25842005e+06, 1.25850811e+06, 1.25834260e+06, ], 'CountWeightedLHEWeightScale_pt0to60' : [ 1.33330091e+06, 1.32054822e+06, 1.31814331e+06, 1.28752673e+06, 1.25842005e+06, 1.23867674e+06, 1.21067023e+06, 1.17325209e+06, 1.14432270e+06, ], 'CountWeightedLHEEnvelope_pt0to60' : [ 1.45419680e+06, 1.05931856e+06, ], 'CountWeightedFull_pt0to60' : [ 7.22056127e+05, 7.22143986e+05, 7.22022693e+05, ], 'CountWeightedFullLHEWeightScale_pt0to60' : [ 7.65045344e+05, 7.57728000e+05, 7.56348051e+05, 7.38780203e+05, 7.22056127e+05, 7.10750322e+05, 6.94679971e+05, 6.73209777e+05, 6.56610137e+05, ], 'CountWeightedFullLHEEnvelope_pt0to60' : [ 8.34415320e+05, 6.07834834e+05, ], 'CountWeightedL1PrefireNom_pt0to60' : [ 1.22037453e+06, 1.22041500e+06, 1.22034405e+06, ], 'CountWeightedL1Prefire_pt0to60' : [ 1.22037453e+06, 1.21082042e+06, 1.22958631e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_pt0to60' : [ 1.29178798e+06, 1.27990191e+06, 1.27801312e+06, 1.24815454e+06, 1.22037453e+06, 1.20161596e+06, 1.17406623e+06, 1.13818872e+06, 1.11047572e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_pt0to60' : [ 1.40920697e+06, 1.02795742e+06, ], 'CountWeightedFullL1PrefireNom_pt0to60' : [ 7.00236012e+05, 7.00279359e+05, 7.00224635e+05, ], 'CountWeightedFullL1Prefire_pt0to60' : [ 7.00236012e+05, 6.94754777e+05, 7.05521336e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_pt0to60' : [ 7.41225438e+05, 7.34405281e+05, 7.33321328e+05, 7.16188453e+05, 7.00236012e+05, 6.89484996e+05, 6.73676756e+05, 6.53090400e+05, 6.37188744e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_pt0to60' : [ 8.08600227e+05, 5.89839781e+05, ], 'Count_pt60to120' : [ 1925694, ], 'CountWeighted_pt60to120' : [ 1.89796621e+06, 1.89787408e+06, 1.89812940e+06, ], 'CountWeightedLHEWeightScale_pt60to120' : [ 2.01207013e+06, 1.99122433e+06, 1.98499652e+06, 1.94442988e+06, 1.89796621e+06, 1.86533007e+06, 1.83049980e+06, 1.77081007e+06, 1.72414209e+06, ], 'CountWeightedLHEEnvelope_pt60to120' : [ 2.19662706e+06, 1.59112370e+06, ], 'CountWeightedFull_pt60to120' : [ 1.08902820e+06, 1.08904039e+06, 1.08910961e+06, ], 'CountWeightedFullLHEWeightScale_pt60to120' : [ 1.15452279e+06, 1.14256086e+06, 1.13898706e+06, 1.11570957e+06, 1.08902820e+06, 1.07032287e+06, 1.05033702e+06, 1.01608770e+06, 9.89308895e+05, ], 'CountWeightedFullLHEEnvelope_pt60to120' : [ 1.26041962e+06, 9.12983418e+05, ], 'CountWeightedL1PrefireNom_pt60to120' : [ 1.83528284e+06, 1.83513479e+06, 1.83548304e+06, ], 'CountWeightedL1Prefire_pt60to120' : [ 1.83528284e+06, 1.81984644e+06, 1.85027606e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_pt60to120' : [ 1.94345937e+06, 1.92416199e+06, 1.91891585e+06, 1.87945391e+06, 1.83528284e+06, 1.80438983e+06, 1.77009853e+06, 1.71306968e+06, 1.66851755e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_pt60to120' : [ 2.12227925e+06, 1.53970881e+06, ], 'CountWeightedFullL1PrefireNom_pt60to120' : [ 1.05306929e+06, 1.05301905e+06, 1.05317716e+06, ], 'CountWeightedFullL1Prefire_pt60to120' : [ 1.05306929e+06, 1.04421080e+06, 1.06167138e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_pt60to120' : [ 1.11515395e+06, 1.10408075e+06, 1.10107000e+06, 1.07842676e+06, 1.05306929e+06, 1.03535561e+06, 1.01567921e+06, 9.82955582e+05, 9.57391852e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_pt60to120' : [ 1.21775897e+06, 8.83481609e+05, ], 'Count_pt120to200' : [ 1373957, ], 'CountWeighted_pt120to200' : [ 1.34809719e+06, 1.34786506e+06, 1.34823417e+06, ], 'CountWeightedLHEWeightScale_pt120to200' : [ 1.43184041e+06, 1.41393779e+06, 1.40536484e+06, 1.38533433e+06, 1.34809719e+06, 1.32058274e+06, 1.30676130e+06, 1.25932448e+06, 1.22161325e+06, ], 'CountWeightedLHEEnvelope_pt120to200' : [ 1.56691009e+06, 1.11958637e+06, ], 'CountWeightedFull_pt120to200' : [ 7.73508613e+05, 7.73420418e+05, 7.73597879e+05, ], 'CountWeightedFullLHEWeightScale_pt120to200' : [ 8.21586867e+05, 8.11314848e+05, 8.06395359e+05, 7.94901973e+05, 7.73508613e+05, 7.57747801e+05, 7.49817285e+05, 7.22597938e+05, 7.00959098e+05, ], 'CountWeightedFullLHEEnvelope_pt120to200' : [ 8.99089809e+05, 6.42416535e+05, ], 'CountWeightedL1PrefireNom_pt120to200' : [ 1.29747805e+06, 1.29720700e+06, 1.29766381e+06, ], 'CountWeightedL1Prefire_pt120to200' : [ 1.29747805e+06, 1.28536397e+06, 1.30934651e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_pt120to200' : [ 1.37582414e+06, 1.35951228e+06, 1.35206798e+06, 1.33255073e+06, 1.29747805e+06, 1.27165046e+06, 1.25781318e+06, 1.21281041e+06, 1.17705585e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_pt120to200' : [ 1.50631145e+06, 1.07854913e+06, ], 'CountWeightedFullL1PrefireNom_pt120to200' : [ 7.44476082e+05, 7.44344215e+05, 7.44588348e+05, ], 'CountWeightedFullL1Prefire_pt120to200' : [ 7.44476082e+05, 7.37525520e+05, 7.51285520e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_pt120to200' : [ 7.89444910e+05, 7.80085418e+05, 7.75813719e+05, 7.64614938e+05, 7.44476082e+05, 7.29670512e+05, 7.21731014e+05, 6.95908283e+05, 6.75392352e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_pt120to200' : [ 8.64318309e+05, 6.18869404e+05, ], 'Count_pt200to300' : [ 575129, ], 'CountWeighted_pt200to300' : [ 5.57977176e+05, 5.58282000e+05, 5.57827441e+05, ], 'CountWeightedLHEWeightScale_pt200to300' : [ 5.95509742e+05, 5.86196703e+05, 5.80169896e+05, 5.75986805e+05, 5.57977176e+05, 5.43921672e+05, 5.43979041e+05, 5.21319807e+05, 5.02973500e+05, ], 'CountWeightedLHEEnvelope_pt200to300' : [ 6.53465557e+05, 4.56975715e+05, ], 'CountWeightedFull_pt200to300' : [ 3.20164775e+05, 3.20338645e+05, 3.20080503e+05, ], 'CountWeightedFullLHEWeightScale_pt200to300' : [ 3.41702312e+05, 3.36358486e+05, 3.32900372e+05, 3.30499977e+05, 3.20164775e+05, 3.12101149e+05, 3.12134055e+05, 2.99132300e+05, 2.88605163e+05, ], 'CountWeightedFullLHEEnvelope_pt200to300' : [ 3.74957268e+05, 2.62211742e+05, ], 'CountWeightedL1PrefireNom_pt200to300' : [ 5.35148301e+05, 5.35422645e+05, 5.35016230e+05, ], 'CountWeightedL1Prefire_pt200to300' : [ 5.35148301e+05, 5.29812611e+05, 5.40408369e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_pt200to300' : [ 5.69940553e+05, 5.61518453e+05, 5.56179529e+05, 5.52007223e+05, 5.35148301e+05, 5.22016041e+05, 5.21776998e+05, 5.00397396e+05, 4.83090533e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_pt200to300' : [ 6.25865260e+05, 4.38717006e+05, ], 'CountWeightedFullL1PrefireNom_pt200to300' : [ 3.07066282e+05, 3.07222997e+05, 3.06991274e+05, ], 'CountWeightedFullL1Prefire_pt200to300' : [ 3.07066282e+05, 3.04004652e+05, 3.10084362e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_pt200to300' : [ 3.27030768e+05, 3.22198105e+05, 3.19134789e+05, 3.16740583e+05, 3.07066282e+05, 2.99531769e+05, 2.99394576e+05, 2.87127043e+05, 2.77196334e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_pt200to300' : [ 3.59120268e+05, 2.51734951e+05, ], 'Count_ptGt300' : [ 276034, ], 'CountWeighted_ptGt300' : [ 2.59857717e+05, 2.59827675e+05, 2.59869781e+05, ], 'CountWeightedLHEWeightScale_ptGt300' : [ 2.78154823e+05, 2.72909803e+05, 2.68732465e+05, 2.69752088e+05, 2.59857717e+05, 2.51686969e+05, 2.55925402e+05, 2.43320750e+05, 2.32871237e+05, ], 'CountWeightedLHEEnvelope_ptGt300' : [ 3.06777004e+05, 2.09048033e+05, ], 'CountWeightedFull_ptGt300' : [ 1.49105737e+05, 1.49088506e+05, 1.49112632e+05, ], 'CountWeightedFullLHEWeightScale_ptGt300' : [ 1.59604687e+05, 1.56595101e+05, 1.54198165e+05, 1.54783200e+05, 1.49105737e+05, 1.44417479e+05, 1.46849476e+05, 1.39616930e+05, 1.33621050e+05, ], 'CountWeightedFullLHEEnvelope_ptGt300' : [ 1.76028043e+05, 1.19951357e+05, ], 'CountWeightedL1PrefireNom_ptGt300' : [ 2.49097800e+05, 2.49061108e+05, 2.49110554e+05, ], 'CountWeightedL1Prefire_ptGt300' : [ 2.49097800e+05, 2.46619381e+05, 2.51546823e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_ptGt300' : [ 2.65801646e+05, 2.61130945e+05, 2.57430387e+05, 2.58300952e+05, 2.49097800e+05, 2.41499293e+05, 2.45392314e+05, 2.33534792e+05, 2.23699249e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_ptGt300' : [ 2.93558958e+05, 2.00572762e+05, ], 'CountWeightedFullL1PrefireNom_ptGt300' : [ 1.42931770e+05, 1.42910742e+05, 1.42939103e+05, ], 'CountWeightedFullL1Prefire_ptGt300' : [ 1.42931770e+05, 1.41509660e+05, 1.44336997e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_ptGt300' : [ 1.52516474e+05, 1.49836405e+05, 1.47713059e+05, 1.48212562e+05, 1.42931770e+05, 1.38571801e+05, 1.40805630e+05, 1.34001784e+05, 1.28358187e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_ptGt300' : [ 1.68443541e+05, 1.15088263e+05, ], 'Count_pt300to450' : [ 213158, ], 'CountWeighted_pt300to450' : [ 2.03336927e+05, 2.03259301e+05, 2.03396578e+05, ], 'CountWeightedLHEWeightScale_pt300to450' : [ 2.17845727e+05, 2.13751165e+05, 2.10605754e+05, 2.10932502e+05, 2.03336927e+05, 1.97145602e+05, 1.99757103e+05, 1.90188744e+05, 1.82299748e+05, ], 'CountWeightedLHEEnvelope_pt300to450' : [ 2.39892177e+05, 1.64064730e+05, ], 'CountWeightedFull_pt300to450' : [ 1.16674194e+05, 1.16629844e+05, 1.16708738e+05, ], 'CountWeightedFullLHEWeightScale_pt300to450' : [ 1.24999458e+05, 1.22649984e+05, 1.20845172e+05, 1.21032648e+05, 1.16674194e+05, 1.13121757e+05, 1.14620221e+05, 1.09129895e+05, 1.04603242e+05, ], 'CountWeightedFullLHEEnvelope_pt300to450' : [ 1.37649658e+05, 9.41400278e+04, ], 'CountWeightedL1PrefireNom_pt300to450' : [ 1.94753986e+05, 1.94669722e+05, 1.94812711e+05, ], 'CountWeightedL1Prefire_pt300to450' : [ 1.94753986e+05, 1.92777263e+05, 1.96708016e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_pt300to450' : [ 2.08025267e+05, 2.04370691e+05, 2.01585117e+05, 2.01817834e+05, 1.94753986e+05, 1.88999873e+05, 1.91368342e+05, 1.82375286e+05, 1.74957924e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_pt300to450' : [ 2.29381716e+05, 1.57277898e+05, ], 'CountWeightedFullL1PrefireNom_pt300to450' : [ 1.11749353e+05, 1.11701151e+05, 1.11783258e+05, ], 'CountWeightedFullL1Prefire_pt300to450' : [ 1.11749353e+05, 1.10615130e+05, 1.12870575e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_pt300to450' : [ 1.19364501e+05, 1.17267491e+05, 1.15669142e+05, 1.15802662e+05, 1.11749353e+05, 1.08447752e+05, 1.09806770e+05, 1.04646567e+05, 1.00390516e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_pt300to450' : [ 1.31618778e+05, 9.02457522e+04, ], 'Count_ptGt450' : [ 62876, ], 'CountWeighted_ptGt450' : [ 5.65203933e+04, 5.65683540e+04, 5.64731628e+04, ], 'CountWeightedLHEWeightScale_ptGt450' : [ 6.03090881e+04, 5.91586724e+04, 5.81266980e+04, 5.88195928e+04, 5.65203933e+04, 5.45413542e+04, 5.61683052e+04, 5.31319941e+04, 5.05714946e+04, ], 'CountWeightedLHEEnvelope_ptGt450' : [ 6.68848450e+04, 4.49833110e+04, ], 'CountWeightedFull_ptGt450' : [ 3.24312795e+04, 3.24587798e+04, 3.24041493e+04, ], 'CountWeightedFullLHEWeightScale_ptGt450' : [ 3.46052341e+04, 3.39451281e+04, 3.33529849e+04, 3.37505660e+04, 3.24312795e+04, 3.12957228e+04, 3.22292596e+04, 3.04870339e+04, 2.90178206e+04, ], 'CountWeightedFullLHEEnvelope_ptGt450' : [ 3.83783899e+04, 2.58113326e+04, ], 'CountWeightedL1PrefireNom_ptGt450' : [ 5.43436465e+04, 5.43913811e+04, 5.42978679e+04, ], 'CountWeightedL1Prefire_ptGt450' : [ 5.43436465e+04, 5.38419175e+04, 5.48385994e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_ptGt450' : [ 5.77763748e+04, 5.67602466e+04, 5.58452786e+04, 5.64831189e+04, 5.43436465e+04, 5.24993867e+04, 5.40239839e+04, 5.11595027e+04, 4.87413142e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_ptGt450' : [ 6.41772302e+04, 4.32948718e+04, ], 'CountWeightedFullL1PrefireNom_ptGt450' : [ 3.11822706e+04, 3.12096476e+04, 3.11559860e+04, ], 'CountWeightedFullL1Prefire_ptGt450' : [ 3.11822706e+04, 3.08943781e+04, 3.14662716e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_ptGt450' : [ 3.31519683e+04, 3.25689147e+04, 3.20439089e+04, 3.24099038e+04, 3.11822706e+04, 3.01240455e+04, 3.09988540e+04, 2.93552228e+04, 2.79676681e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_ptGt450' : [ 3.68247664e+04, 2.48425100e+04, ], }), ("nof_tree_events", 5499293), ("nof_db_events", 8241489), ("fsize_local", 52491507008), # 52.49GB, avg file size 2.39GB ("fsize_db", 515822367934), # 515.82GB, avg file size 1.45GB ("use_it", False), ("xsection", 0.2118), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 260001 - 260100 -> NNPDF30_nlo_as_0118 PDF set, expecting 101 weights (counted 100 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/ttHToNonbb_M125_powheg_ext1"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/ttHJetTobb_M125_TuneCP5_13TeV_amcatnloFXFX_madspin_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_new_pmx_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "ttH"), ("process_name_specific", "ttHJetTobb_M125"), ("nof_files", 15), ("nof_db_files", 212), ("nof_events", { 'Count' : [ 7459151, ], 'CountWeighted' : [ 2.56709867e+06, 2.56735314e+06, 2.56667498e+06, ], 'CountWeightedLHEWeightScale' : [ 2.61593623e+06, 2.66633286e+06, 2.71387212e+06, 2.60362302e+06, 2.56707650e+06, 2.53774800e+06, 2.44246416e+06, 2.36490573e+06, 2.29976295e+06, ], 'CountWeightedLHEEnvelope' : [ 3.03102616e+06, 2.02046870e+06, ], 'CountWeightedFull' : [ 7.37767856e+06, 7.37836153e+06, 7.37620097e+06, ], 'CountWeightedFullLHEWeightScale' : [ 7.51776181e+06, 7.66259388e+06, 7.79921888e+06, 7.48238244e+06, 7.37761378e+06, 7.29305978e+06, 7.01923512e+06, 6.79635216e+06, 6.60913859e+06, ], 'CountWeightedFullLHEEnvelope' : [ 8.71066238e+06, 5.80649409e+06, ], 'CountWeightedL1PrefireNom' : [ 2.47450300e+06, 2.47452325e+06, 2.47433127e+06, ], 'CountWeightedL1Prefire' : [ 2.47450300e+06, 2.45217628e+06, 2.49629491e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 2.51799588e+06, 2.56764623e+06, 2.61468075e+06, 2.50854270e+06, 2.47446330e+06, 2.44734028e+06, 2.35468475e+06, 2.28106894e+06, 2.21927841e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 2.91816370e+06, 1.95000109e+06, ], 'CountWeightedFullL1PrefireNom' : [ 7.11142988e+06, 7.11152612e+06, 7.11081462e+06, ], 'CountWeightedFullL1Prefire' : [ 7.11142988e+06, 7.04728138e+06, 7.17406412e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 7.23630569e+06, 7.37898866e+06, 7.51416238e+06, 7.20913772e+06, 7.11131775e+06, 7.03323862e+06, 6.76697175e+06, 6.55542241e+06, 6.37783288e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 8.38631481e+06, 5.60397850e+06, ], 'Count_fwd' : [ 87513, ], 'CountWeighted_fwd' : [ 3.31997115e+04, 3.32892065e+04, 3.30796025e+04, ], 'CountWeightedLHEWeightScale_fwd' : [ 3.41286865e+04, 3.47185959e+04, 3.51797329e+04, 3.37659146e+04, 3.31988683e+04, 3.27043096e+04, 3.17202998e+04, 3.06175024e+04, 2.96780312e+04, ], 'CountWeightedLHEEnvelope_fwd' : [ 3.98969678e+04, 2.58465459e+04, ], 'CountWeightedFull_fwd' : [ 9.54104941e+04, 9.56676304e+04, 9.50652881e+04, ], 'CountWeightedFullLHEWeightScale_fwd' : [ 9.80802100e+04, 9.97755107e+04, 1.01100752e+05, 9.70376694e+04, 9.54080190e+04, 9.39868003e+04, 9.11589194e+04, 8.79896685e+04, 8.52897705e+04, ], 'CountWeightedFullLHEEnvelope_fwd' : [ 1.14657301e+05, 7.42787104e+04, ], 'CountWeightedL1PrefireNom_fwd' : [ 2.85246385e+04, 2.85731653e+04, 2.84522379e+04, ], 'CountWeightedL1Prefire_fwd' : [ 2.85246385e+04, 2.74851329e+04, 2.95736871e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_fwd' : [ 2.92980498e+04, 2.98208241e+04, 3.02363285e+04, 2.89929902e+04, 2.85239275e+04, 2.81157571e+04, 2.72406992e+04, 2.63129792e+04, 2.55213689e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_fwd' : [ 3.42507026e+04, 2.22295116e+04, ], 'CountWeightedFullL1PrefireNom_fwd' : [ 8.19751162e+04, 8.21145596e+04, 8.17670317e+04, ], 'CountWeightedFullL1Prefire_fwd' : [ 8.19751162e+04, 7.89877529e+04, 8.49898857e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_fwd' : [ 8.41977607e+04, 8.57001357e+04, 8.68942178e+04, 8.33210874e+04, 8.19730518e+04, 8.08000479e+04, 7.82852783e+04, 7.56191626e+04, 7.33442100e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_fwd' : [ 9.84308706e+04, 6.38839502e+04, ], 'Count_pt0to60' : [ 1602527, ], 'CountWeighted_pt0to60' : [ 5.74762062e+05, 5.75018078e+05, 5.74364051e+05, ], 'CountWeightedLHEWeightScale_pt0to60' : [ 5.92672637e+05, 5.99549984e+05, 6.07711863e+05, 5.83604270e+05, 5.74747180e+05, 5.68139027e+05, 5.44767484e+05, 5.28595238e+05, 5.15156012e+05, ], 'CountWeightedLHEEnvelope_pt0to60' : [ 6.79298277e+05, 4.57021990e+05, ], 'CountWeightedFull_pt0to60' : [ 1.65177226e+06, 1.65250000e+06, 1.65062469e+06, ], 'CountWeightedFullLHEWeightScale_pt0to60' : [ 1.70324316e+06, 1.72300767e+06, 1.74646448e+06, 1.67718211e+06, 1.65174052e+06, 1.63273747e+06, 1.56557306e+06, 1.51909462e+06, 1.48047447e+06, ], 'CountWeightedFullLHEEnvelope_pt0to60' : [ 1.95219103e+06, 1.31340676e+06, ], 'CountWeightedL1PrefireNom_pt0to60' : [ 5.57659461e+05, 5.57878211e+05, 5.57304871e+05, ], 'CountWeightedL1Prefire_pt0to60' : [ 5.57659461e+05, 5.53363656e+05, 5.61798352e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_pt0to60' : [ 5.74420449e+05, 5.81259793e+05, 5.89367555e+05, 5.66041309e+05, 5.57645266e+05, 5.51421633e+05, 5.28630812e+05, 5.13136996e+05, 5.00271486e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_pt0to60' : [ 6.58559871e+05, 4.43774451e+05, ], 'CountWeightedFullL1PrefireNom_pt0to60' : [ 1.60262254e+06, 1.60324506e+06, 1.60160273e+06, ], 'CountWeightedFullL1Prefire_pt0to60' : [ 1.60262254e+06, 1.59027714e+06, 1.61451687e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_pt0to60' : [ 1.65079030e+06, 1.67044448e+06, 1.69374609e+06, 1.62670964e+06, 1.60258798e+06, 1.58469445e+06, 1.51919884e+06, 1.47467020e+06, 1.43769898e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_pt0to60' : [ 1.89259277e+06, 1.27533523e+06, ], 'Count_pt60to120' : [ 2597048, ], 'CountWeighted_pt60to120' : [ 9.01589070e+05, 9.01576961e+05, 9.01456137e+05, ], 'CountWeightedLHEWeightScale_pt60to120' : [ 9.20371684e+05, 9.37149941e+05, 9.54301043e+05, 9.13523445e+05, 9.01569824e+05, 8.92655383e+05, 8.55385750e+05, 8.29957355e+05, 8.08874117e+05, ], 'CountWeightedLHEEnvelope_pt60to120' : [ 1.06636406e+06, 7.10455684e+05, ], 'CountWeightedFull_pt60to120' : [ 2.59100650e+06, 2.59100741e+06, 2.59057375e+06, ], 'CountWeightedFullLHEWeightScale_pt60to120' : [ 2.64499620e+06, 2.69321412e+06, 2.74250197e+06, 2.62531614e+06, 2.59097255e+06, 2.56534398e+06, 2.45823536e+06, 2.38516084e+06, 2.32457284e+06, ], 'CountWeightedFullLHEEnvelope_pt60to120' : [ 3.06455391e+06, 2.04173419e+06, ], 'CountWeightedL1PrefireNom_pt60to120' : [ 8.72098566e+05, 8.72054824e+05, 8.72003664e+05, ], 'CountWeightedL1Prefire_pt60to120' : [ 8.72098566e+05, 8.64853309e+05, 8.79139516e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_pt60to120' : [ 8.89269949e+05, 9.05772375e+05, 9.22685953e+05, 8.83315156e+05, 8.72078480e+05, 8.63773148e+05, 8.27519957e+05, 8.03249984e+05, 7.83143754e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_pt60to120' : [ 1.03055812e+06, 6.87873730e+05, ], 'CountWeightedFullL1PrefireNom_pt60to120' : [ 2.50626652e+06, 2.50614538e+06, 2.50595823e+06, ], 'CountWeightedFullL1Prefire_pt60to120' : [ 2.50626652e+06, 2.48544417e+06, 2.52649788e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_pt60to120' : [ 2.55561575e+06, 2.60304172e+06, 2.65164667e+06, 2.53850250e+06, 2.50622214e+06, 2.48234248e+06, 2.37815506e+06, 2.30840720e+06, 2.25062677e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_pt60to120' : [ 2.96165498e+06, 1.97683665e+06, ], 'Count_pt120to200' : [ 1947393, ], 'CountWeighted_pt120to200' : [ 6.54950824e+05, 6.54752191e+05, 6.55183543e+05, ], 'CountWeightedLHEWeightScale_pt120to200' : [ 6.61617730e+05, 6.77132211e+05, 6.91205625e+05, 6.63577621e+05, 6.54934508e+05, 6.47940348e+05, 6.24583297e+05, 6.04559156e+05, 5.87715684e+05, ], 'CountWeightedLHEEnvelope_pt120to200' : [ 7.71540637e+05, 5.13466715e+05, ], 'CountWeightedFull_pt120to200' : [ 1.88222360e+06, 1.88164309e+06, 1.88287319e+06, ], 'CountWeightedFullLHEWeightScale_pt120to200' : [ 1.90138059e+06, 1.94596597e+06, 1.98641143e+06, 1.90701345e+06, 1.88219223e+06, 1.86207339e+06, 1.79494850e+06, 1.73740291e+06, 1.68899828e+06, ], 'CountWeightedFullLHEEnvelope_pt120to200' : [ 2.21728069e+06, 1.47561912e+06, ], 'CountWeightedL1PrefireNom_pt120to200' : [ 6.30486152e+05, 6.30258152e+05, 6.30751562e+05, ], 'CountWeightedL1Prefire_pt120to200' : [ 6.30486152e+05, 6.24650508e+05, 6.36206301e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_pt120to200' : [ 6.35879031e+05, 6.51159938e+05, 6.65069914e+05, 6.38450848e+05, 6.30470305e+05, 6.24054582e+05, 6.01323090e+05, 5.82365676e+05, 5.66424426e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_pt120to200' : [ 7.41726164e+05, 4.94934463e+05, ], 'CountWeightedFullL1PrefireNom_pt120to200' : [ 1.81191639e+06, 1.81125168e+06, 1.81267009e+06, ], 'CountWeightedFullL1Prefire_pt120to200' : [ 1.81191639e+06, 1.79514720e+06, 1.82835413e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_pt120to200' : [ 1.82741139e+06, 1.87132590e+06, 1.91130162e+06, 1.83480354e+06, 1.81187974e+06, 1.79342963e+06, 1.72810322e+06, 1.67362144e+06, 1.62780991e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_pt120to200' : [ 2.13159767e+06, 1.42235986e+06, ], 'Count_pt200to300' : [ 831423, ], 'CountWeighted_pt200to300' : [ 2.74729682e+05, 2.74760500e+05, 2.74768201e+05, ], 'CountWeightedLHEWeightScale_pt200to300' : [ 2.77486779e+05, 2.84714109e+05, 2.90325227e+05, 2.78808260e+05, 2.74723418e+05, 2.70995730e+05, 2.62891678e+05, 2.53399551e+05, 2.45277828e+05, ], 'CountWeightedLHEEnvelope_pt200to300' : [ 3.23391945e+05, 2.14432101e+05, ], 'CountWeightedFull_pt200to300' : [ 7.89526031e+05, 7.89619691e+05, 7.89641543e+05, ], 'CountWeightedFullLHEWeightScale_pt200to300' : [ 7.97451297e+05, 8.18221219e+05, 8.34347062e+05, 8.01248512e+05, 7.89506836e+05, 7.78797090e+05, 7.55507406e+05, 7.28228695e+05, 7.04888297e+05, ], 'CountWeightedFullLHEEnvelope_pt200to300' : [ 9.29374531e+05, 6.16242574e+05, ], 'CountWeightedL1PrefireNom_pt200to300' : [ 2.63310156e+05, 2.63310207e+05, 2.63383055e+05, ], 'CountWeightedL1Prefire_pt200to300' : [ 2.63310156e+05, 2.60656551e+05, 2.65929250e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_pt200to300' : [ 2.65325289e+05, 2.72430109e+05, 2.77996512e+05, 2.67058945e+05, 2.63303955e+05, 2.59885434e+05, 2.52071336e+05, 2.43116853e+05, 2.35458455e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_pt200to300' : [ 3.09309713e+05, 2.05914135e+05, ], 'CountWeightedFullL1PrefireNom_pt200to300' : [ 7.56709441e+05, 7.56711926e+05, 7.56920316e+05, ], 'CountWeightedFullL1Prefire_pt200to300' : [ 7.56709441e+05, 7.49083750e+05, 7.64236027e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_pt200to300' : [ 7.62501059e+05, 7.82918887e+05, 7.98916660e+05, 7.67483277e+05, 7.56690824e+05, 7.46868070e+05, 7.24411707e+05, 6.98677574e+05, 6.76669152e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_pt200to300' : [ 8.88904668e+05, 5.91763504e+05, ], 'Count_ptGt300' : [ 393247, ], 'CountWeighted_ptGt300' : [ 1.27847116e+05, 1.27854228e+05, 1.27875232e+05, ], 'CountWeightedLHEWeightScale_ptGt300' : [ 1.29655855e+05, 1.33066639e+05, 1.35148319e+05, 1.30342731e+05, 1.27843978e+05, 1.25312405e+05, 1.23116839e+05, 1.17777715e+05, 1.13059705e+05, ], 'CountWeightedLHEEnvelope_ptGt300' : [ 1.50531798e+05, 9.92445264e+04, ], 'CountWeightedFull_ptGt300' : [ 3.67411754e+05, 3.67431191e+05, 3.67492842e+05, ], 'CountWeightedFullLHEWeightScale_ptGt300' : [ 3.72609602e+05, 3.82411496e+05, 3.88393990e+05, 3.74583527e+05, 3.67403170e+05, 3.60127223e+05, 3.53817672e+05, 3.38473691e+05, 3.24914980e+05, ], 'CountWeightedFullLHEEnvelope_ptGt300' : [ 4.32603578e+05, 2.85212473e+05, ], 'CountWeightedL1PrefireNom_ptGt300' : [ 1.22411358e+05, 1.22402618e+05, 1.22460018e+05, ], 'CountWeightedL1Prefire_ptGt300' : [ 1.22411358e+05, 1.21166170e+05, 1.23642957e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_ptGt300' : [ 1.23802594e+05, 1.27204660e+05, 1.29324521e+05, 1.24682594e+05, 1.22408343e+05, 1.20089000e+05, 1.17898704e+05, 1.12888488e+05, 1.08457376e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_ptGt300' : [ 1.43758186e+05, 9.52741411e+04, ], 'CountWeightedFullL1PrefireNom_ptGt300' : [ 3.51790094e+05, 3.51764662e+05, 3.51930250e+05, ], 'CountWeightedFullL1Prefire_ptGt300' : [ 3.51790094e+05, 3.48211613e+05, 3.55329535e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_ptGt300' : [ 3.55788352e+05, 3.65565156e+05, 3.71657383e+05, 3.58317262e+05, 3.51781666e+05, 3.45116084e+05, 3.38821406e+05, 3.24422820e+05, 3.11688574e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_ptGt300' : [ 4.13137525e+05, 2.73802195e+05, ], 'Count_pt300to450' : [ 306069, ], 'CountWeighted_pt300to450' : [ 1.00187308e+05, 1.00194489e+05, 1.00201127e+05, ], 'CountWeightedLHEWeightScale_pt300to450' : [ 1.01885967e+05, 1.04310204e+05, 1.05877508e+05, 1.02194285e+05, 1.00184716e+05, 9.82387461e+04, 9.63670522e+04, 9.22392222e+04, 8.86434800e+04, ], 'CountWeightedLHEEnvelope_pt300to450' : [ 1.18174471e+05, 7.78132510e+04, ], 'CountWeightedFull_pt300to450' : [ 2.87921439e+05, 2.87942092e+05, 2.87962348e+05, ], 'CountWeightedFullLHEWeightScale_pt300to450' : [ 2.92803527e+05, 2.99770357e+05, 3.04274430e+05, 2.93689486e+05, 2.87914715e+05, 2.82321918e+05, 2.76943062e+05, 2.65080195e+05, 2.54746773e+05, ], 'CountWeightedFullLHEEnvelope_pt300to450' : [ 3.39613961e+05, 2.23622467e+05, ], 'CountWeightedL1PrefireNom_pt300to450' : [ 9.58508433e+04, 9.58494038e+04, 9.58773066e+04, ], 'CountWeightedL1Prefire_pt300to450' : [ 9.58508433e+04, 9.48567988e+04, 9.68337251e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_pt300to450' : [ 9.71936250e+04, 9.96209771e+04, 1.01219473e+05, 9.76802832e+04, 9.58483916e+04, 9.40674453e+04, 9.22187158e+04, 8.83466177e+04, 8.49727808e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_pt300to450' : [ 1.12760424e+05, 7.46390630e+04, ], 'CountWeightedFullL1PrefireNom_pt300to450' : [ 2.75459238e+05, 2.75455225e+05, 2.75536137e+05, ], 'CountWeightedFullL1Prefire_pt300to450' : [ 2.75459238e+05, 2.72602578e+05, 2.78283943e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_pt300to450' : [ 2.79318523e+05, 2.86294238e+05, 2.90888043e+05, 2.80716959e+05, 2.75452658e+05, 2.70334312e+05, 2.65021334e+05, 2.53893556e+05, 2.44197734e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_pt300to450' : [ 3.24054932e+05, 2.14500344e+05, ], 'Count_ptGt450' : [ 87178, ], 'CountWeighted_ptGt450' : [ 2.76598594e+04, 2.76597457e+04, 2.76741497e+04, ], 'CountWeightedLHEWeightScale_ptGt450' : [ 2.77698844e+04, 2.87564009e+04, 2.92708250e+04, 2.81484653e+04, 2.76591783e+04, 2.70736624e+04, 2.67498060e+04, 2.55384869e+04, 2.44162264e+04, ], 'CountWeightedLHEEnvelope_ptGt450' : [ 3.23573279e+04, 2.14312919e+04, ], 'CountWeightedFull_ptGt450' : [ 7.94899028e+04, 7.94895278e+04, 7.95309199e+04, ], 'CountWeightedFullLHEWeightScale_ptGt450' : [ 7.98060786e+04, 8.26411660e+04, 8.41195254e+04, 8.08940337e+04, 7.94878823e+04, 7.78052339e+04, 7.68745264e+04, 7.33933931e+04, 7.01682109e+04, ], 'CountWeightedFullLHEEnvelope_ptGt450' : [ 9.29896377e+04, 6.15899951e+04, ], 'CountWeightedL1PrefireNom_ptGt450' : [ 2.65605341e+04, 2.65532263e+04, 2.65827422e+04, ], 'CountWeightedL1Prefire_ptGt450' : [ 2.65605341e+04, 2.63093990e+04, 2.68092549e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_ptGt450' : [ 2.66089690e+04, 2.75836891e+04, 2.81050559e+04, 2.70023330e+04, 2.65598806e+04, 2.60215767e+04, 2.56799845e+04, 2.45418457e+04, 2.34846013e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_ptGt450' : [ 3.09977649e+04, 2.06350850e+04, ], 'CountWeightedFullL1PrefireNom_ptGt450' : [ 7.63306089e+04, 7.63095854e+04, 7.63944131e+04, ], 'CountWeightedFullL1Prefire_ptGt450' : [ 7.63306089e+04, 7.56089009e+04, 7.70453940e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_ptGt450' : [ 7.64697866e+04, 7.92709824e+04, 8.07693008e+04, 7.76002412e+04, 7.63287075e+04, 7.47817212e+04, 7.38000435e+04, 7.05292080e+04, 6.74908638e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_ptGt450' : [ 8.90824688e+04, 5.93018311e+04, ], }), ("nof_tree_events", 7459151), ("nof_db_events", 10055168), ("fsize_local", 70632581084), # 70.63GB, avg file size 4.71GB ("fsize_db", 651382274350), # 651.38GB, avg file size 3.07GB ("use_it", False), ("xsection", 0.2953), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/ttHJetTobb_M125"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/TTH_4f_ctcvcp_TuneCP5_13TeV_madgraph_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "ttH_ctcvcp"), ("process_name_specific", "TTH_4f_ctcvcp"), ("nof_files", 97), ("nof_db_files", 257), ("nof_events", { 'Count' : [ 9618000, ], 'CountWeighted' : [ 9.61830195e+06, 9.61819631e+06, 9.61825452e+06, ], 'CountWeightedLHEWeightScale' : [ 1.26659214e+07, 1.17724783e+07, 1.09863050e+07, 1.03482022e+07, 9.61830195e+06, 8.97562053e+06, 8.61384461e+06, 8.00587122e+06, 7.47108478e+06, ], 'CountWeightedLHEEnvelope' : [ 1.26730037e+07, 7.46827658e+06, ], 'CountWeightedFull' : [ 9.61830195e+06, 9.61819631e+06, 9.61825452e+06, ], 'CountWeightedFullLHEWeightScale' : [ 1.26659214e+07, 1.17724783e+07, 1.09863050e+07, 1.03482022e+07, 9.61830195e+06, 8.97562053e+06, 8.61384461e+06, 8.00587122e+06, 7.47108478e+06, ], 'CountWeightedFullLHEEnvelope' : [ 1.26730037e+07, 7.46827658e+06, ], 'CountWeightedL1PrefireNom' : [ 9.30582646e+06, 9.30533659e+06, 9.30618920e+06, ], 'CountWeightedL1Prefire' : [ 9.30582646e+06, 9.22937247e+06, 9.38022506e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 1.22488519e+07, 1.13904591e+07, 1.06341266e+07, 1.00071724e+07, 9.30582646e+06, 8.68765449e+06, 8.32978067e+06, 7.74568529e+06, 7.23122381e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 1.22558597e+07, 7.22844376e+06, ], 'CountWeightedFullL1PrefireNom' : [ 9.30582646e+06, 9.30533659e+06, 9.30618920e+06, ], 'CountWeightedFullL1Prefire' : [ 9.30582646e+06, 9.22937247e+06, 9.38022506e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 1.22488519e+07, 1.13904591e+07, 1.06341266e+07, 1.00071724e+07, 9.30582646e+06, 8.68765449e+06, 8.32978067e+06, 7.74568529e+06, 7.23122381e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 1.22558597e+07, 7.22844376e+06, ], 'Count_fwd' : [ 142759, ], 'CountWeighted_fwd' : [ 1.42680667e+05, 1.42723877e+05, 1.42634857e+05, ], 'CountWeightedLHEWeightScale_fwd' : [ 1.89181897e+05, 1.74794387e+05, 1.62565130e+05, 1.54411579e+05, 1.42680667e+05, 1.32707916e+05, 1.28423774e+05, 1.18675694e+05, 1.10386879e+05, ], 'CountWeightedLHEEnvelope_fwd' : [ 1.89209151e+05, 1.10375153e+05, ], 'CountWeightedFull_fwd' : [ 1.42680667e+05, 1.42723877e+05, 1.42634857e+05, ], 'CountWeightedFullLHEWeightScale_fwd' : [ 1.89181897e+05, 1.74794387e+05, 1.62565130e+05, 1.54411579e+05, 1.42680667e+05, 1.32707916e+05, 1.28423774e+05, 1.18675694e+05, 1.10386879e+05, ], 'CountWeightedFullLHEEnvelope_fwd' : [ 1.89209151e+05, 1.10375153e+05, ], 'CountWeightedL1PrefireNom_fwd' : [ 1.22638135e+05, 1.22631684e+05, 1.22645385e+05, ], 'CountWeightedL1Prefire_fwd' : [ 1.22638135e+05, 1.18199512e+05, 1.27120816e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_fwd' : [ 1.62552608e+05, 1.50281724e+05, 1.39843231e+05, 1.32639610e+05, 1.22638135e+05, 1.14128425e+05, 1.10290731e+05, 1.01981974e+05, 9.49113099e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_fwd' : [ 1.62576420e+05, 9.49011188e+04, ], 'CountWeightedFullL1PrefireNom_fwd' : [ 1.22638135e+05, 1.22631684e+05, 1.22645385e+05, ], 'CountWeightedFullL1Prefire_fwd' : [ 1.22638135e+05, 1.18199512e+05, 1.27120816e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_fwd' : [ 1.62552608e+05, 1.50281724e+05, 1.39843231e+05, 1.32639610e+05, 1.22638135e+05, 1.14128425e+05, 1.10290731e+05, 1.01981974e+05, 9.49113099e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_fwd' : [ 1.62576420e+05, 9.49011188e+04, ], 'Count_pt0to60' : [ 2141614, ], 'CountWeighted_pt0to60' : [ 2.14151392e+06, 2.14163032e+06, 2.14141062e+06, ], 'CountWeightedLHEWeightScale_pt0to60' : [ 2.79844380e+06, 2.62518290e+06, 2.46884203e+06, 2.28300415e+06, 2.14151392e+06, 2.01386997e+06, 1.89803765e+06, 1.78030517e+06, 1.67411679e+06, ], 'CountWeightedLHEEnvelope_pt0to60' : [ 2.80102619e+06, 1.67310008e+06, ], 'CountWeightedFull_pt0to60' : [ 2.14151392e+06, 2.14163032e+06, 2.14141062e+06, ], 'CountWeightedFullLHEWeightScale_pt0to60' : [ 2.79844380e+06, 2.62518290e+06, 2.46884203e+06, 2.28300415e+06, 2.14151392e+06, 2.01386997e+06, 1.89803765e+06, 1.78030517e+06, 1.67411679e+06, ], 'CountWeightedFullLHEEnvelope_pt0to60' : [ 2.80102619e+06, 1.67310008e+06, ], 'CountWeightedL1PrefireNom_pt0to60' : [ 2.08355686e+06, 2.08359449e+06, 2.08354992e+06, ], 'CountWeightedL1Prefire_pt0to60' : [ 2.08355686e+06, 2.06874459e+06, 2.09776968e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_pt0to60' : [ 2.72177031e+06, 2.55421255e+06, 2.40284164e+06, 2.22038480e+06, 2.08355686e+06, 1.95997588e+06, 1.84593130e+06, 1.73208258e+06, 1.62927610e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_pt0to60' : [ 2.72432695e+06, 1.62826835e+06, ], 'CountWeightedFullL1PrefireNom_pt0to60' : [ 2.08355686e+06, 2.08359449e+06, 2.08354992e+06, ], 'CountWeightedFullL1Prefire_pt0to60' : [ 2.08355686e+06, 2.06874459e+06, 2.09776968e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_pt0to60' : [ 2.72177031e+06, 2.55421255e+06, 2.40284164e+06, 2.22038480e+06, 2.08355686e+06, 1.95997588e+06, 1.84593130e+06, 1.73208258e+06, 1.62927610e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_pt0to60' : [ 2.72432695e+06, 1.62826835e+06, ], 'Count_pt60to120' : [ 3397322, ], 'CountWeighted_pt60to120' : [ 3.39711404e+06, 3.39731944e+06, 3.39683797e+06, ], 'CountWeightedLHEWeightScale_pt60to120' : [ 4.46226686e+06, 4.16683909e+06, 3.90318250e+06, 3.63799933e+06, 3.39711404e+06, 3.18216202e+06, 3.02296507e+06, 2.82277478e+06, 2.64416436e+06, ], 'CountWeightedLHEEnvelope_pt60to120' : [ 4.46521434e+06, 2.64299966e+06, ], 'CountWeightedFull_pt60to120' : [ 3.39711404e+06, 3.39731944e+06, 3.39683797e+06, ], 'CountWeightedFullLHEWeightScale_pt60to120' : [ 4.46226686e+06, 4.16683909e+06, 3.90318250e+06, 3.63799933e+06, 3.39711404e+06, 3.18216202e+06, 3.02296507e+06, 2.82277478e+06, 2.64416436e+06, ], 'CountWeightedFullLHEEnvelope_pt60to120' : [ 4.46521434e+06, 2.64299966e+06, ], 'CountWeightedL1PrefireNom_pt60to120' : [ 3.29711935e+06, 3.29715549e+06, 3.29704666e+06, ], 'CountWeightedL1Prefire_pt60to120' : [ 3.29711935e+06, 3.27211248e+06, 3.32131019e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_pt60to120' : [ 4.32929952e+06, 4.04432523e+06, 3.78968335e+06, 3.52947104e+06, 3.29711935e+06, 3.08952538e+06, 2.93270009e+06, 2.73960612e+06, 2.56711731e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_pt60to120' : [ 4.33221652e+06, 2.56596358e+06, ], 'CountWeightedFullL1PrefireNom_pt60to120' : [ 3.29711935e+06, 3.29715549e+06, 3.29704666e+06, ], 'CountWeightedFullL1Prefire_pt60to120' : [ 3.29711935e+06, 3.27211248e+06, 3.32131019e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_pt60to120' : [ 4.32929952e+06, 4.04432523e+06, 3.78968335e+06, 3.52947104e+06, 3.29711935e+06, 3.08952538e+06, 2.93270009e+06, 2.73960612e+06, 2.56711731e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_pt60to120' : [ 4.33221652e+06, 2.56596358e+06, ], 'Count_pt120to200' : [ 2464389, ], 'CountWeighted_pt120to200' : [ 2.46464288e+06, 2.46457742e+06, 2.46463812e+06, ], 'CountWeightedLHEWeightScale_pt120to200' : [ 3.25459550e+06, 3.01608389e+06, 2.80751524e+06, 2.65943437e+06, 2.46464288e+06, 2.29430506e+06, 2.21396039e+06, 2.05185838e+06, 1.91012036e+06, ], 'CountWeightedLHEEnvelope_pt120to200' : [ 3.25584050e+06, 1.90961144e+06, ], 'CountWeightedFull_pt120to200' : [ 2.46464288e+06, 2.46457742e+06, 2.46463812e+06, ], 'CountWeightedFullLHEWeightScale_pt120to200' : [ 3.25459550e+06, 3.01608389e+06, 2.80751524e+06, 2.65943437e+06, 2.46464288e+06, 2.29430506e+06, 2.21396039e+06, 2.05185838e+06, 1.91012036e+06, ], 'CountWeightedFullLHEEnvelope_pt120to200' : [ 3.25584050e+06, 1.90961144e+06, ], 'CountWeightedL1PrefireNom_pt120to200' : [ 2.38283878e+06, 2.38270404e+06, 2.38292569e+06, ], 'CountWeightedL1Prefire_pt120to200' : [ 2.38283878e+06, 2.36301044e+06, 2.40221443e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_pt120to200' : [ 3.14512494e+06, 2.91603153e+06, 2.71545063e+06, 2.56993744e+06, 2.38283878e+06, 2.21903144e+06, 2.13942409e+06, 1.98372865e+06, 1.84742471e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_pt120to200' : [ 3.14635643e+06, 1.84692096e+06, ], 'CountWeightedFullL1PrefireNom_pt120to200' : [ 2.38283878e+06, 2.38270404e+06, 2.38292569e+06, ], 'CountWeightedFullL1Prefire_pt120to200' : [ 2.38283878e+06, 2.36301044e+06, 2.40221443e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_pt120to200' : [ 3.14512494e+06, 2.91603153e+06, 2.71545063e+06, 2.56993744e+06, 2.38283878e+06, 2.21903144e+06, 2.13942409e+06, 1.98372865e+06, 1.84742471e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_pt120to200' : [ 3.14635643e+06, 1.84692096e+06, ], 'Count_pt200to300' : [ 1012827, ], 'CountWeighted_pt200to300' : [ 1.01290464e+06, 1.01270117e+06, 1.01316676e+06, ], 'CountWeightedLHEWeightScale_pt200to300' : [ 1.34570308e+06, 1.23404841e+06, 1.13872277e+06, 1.10445906e+06, 1.01290464e+06, 9.34740948e+05, 9.22794148e+05, 8.46359636e+05, 7.81098560e+05, ], 'CountWeightedLHEEnvelope_pt200to300' : [ 1.34596129e+06, 7.81001521e+05, ], 'CountWeightedFull_pt200to300' : [ 1.01290464e+06, 1.01270117e+06, 1.01316676e+06, ], 'CountWeightedFullLHEWeightScale_pt200to300' : [ 1.34570308e+06, 1.23404841e+06, 1.13872277e+06, 1.10445906e+06, 1.01290464e+06, 9.34740948e+05, 9.22794148e+05, 8.46359636e+05, 7.81098560e+05, ], 'CountWeightedFullLHEEnvelope_pt200to300' : [ 1.34596129e+06, 7.81001521e+05, ], 'CountWeightedL1PrefireNom_pt200to300' : [ 9.76541350e+05, 9.76323549e+05, 9.76813362e+05, ], 'CountWeightedL1Prefire_pt200to300' : [ 9.76541350e+05, 9.67968355e+05, 9.84980119e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_pt200to300' : [ 1.29659278e+06, 1.18972588e+06, 1.09837596e+06, 1.06417092e+06, 9.76541350e+05, 9.01635601e+05, 8.89145278e+05, 8.15985788e+05, 7.53444728e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_pt200to300' : [ 1.29684799e+06, 7.53348867e+05, ], 'CountWeightedFullL1PrefireNom_pt200to300' : [ 9.76541350e+05, 9.76323549e+05, 9.76813362e+05, ], 'CountWeightedFullL1Prefire_pt200to300' : [ 9.76541350e+05, 9.67968355e+05, 9.84980119e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_pt200to300' : [ 1.29659278e+06, 1.18972588e+06, 1.09837596e+06, 1.06417092e+06, 9.76541350e+05, 9.01635601e+05, 8.89145278e+05, 8.15985788e+05, 7.53444728e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_pt200to300' : [ 1.29684799e+06, 7.53348867e+05, ], 'Count_ptGt300' : [ 459089, ], 'CountWeighted_ptGt300' : [ 4.59149008e+05, 4.59018567e+05, 4.59254932e+05, ], 'CountWeightedLHEWeightScale_ptGt300' : [ 6.15756253e+05, 5.55505714e+05, 5.05468003e+05, 5.08891769e+05, 4.59149008e+05, 4.17834249e+05, 4.27651618e+05, 3.85885889e+05, 3.51193231e+05, ], 'CountWeightedLHEEnvelope_ptGt300' : [ 6.15784504e+05, 3.51185300e+05, ], 'CountWeightedFull_ptGt300' : [ 4.59149008e+05, 4.59018567e+05, 4.59254932e+05, ], 'CountWeightedFullLHEWeightScale_ptGt300' : [ 6.15756253e+05, 5.55505714e+05, 5.05468003e+05, 5.08891769e+05, 4.59149008e+05, 4.17834249e+05, 4.27651618e+05, 3.85885889e+05, 3.51193231e+05, ], 'CountWeightedFullLHEEnvelope_ptGt300' : [ 6.15784504e+05, 3.51185300e+05, ], 'CountWeightedL1PrefireNom_ptGt300' : [ 4.42953199e+05, 4.42810985e+05, 4.43066321e+05, ], 'CountWeightedL1Prefire_ptGt300' : [ 4.42953199e+05, 4.39197081e+05, 4.46657796e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_ptGt300' : [ 5.93538437e+05, 5.35871715e+05, 4.87920616e+05, 4.90566544e+05, 4.42953199e+05, 4.03357966e+05, 4.12277546e+05, 3.72296914e+05, 3.39046067e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_ptGt300' : [ 5.93566165e+05, 3.39038339e+05, ], 'CountWeightedFullL1PrefireNom_ptGt300' : [ 4.42953199e+05, 4.42810985e+05, 4.43066321e+05, ], 'CountWeightedFullL1Prefire_ptGt300' : [ 4.42953199e+05, 4.39197081e+05, 4.46657796e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_ptGt300' : [ 5.93538437e+05, 5.35871715e+05, 4.87920616e+05, 4.90566544e+05, 4.42953199e+05, 4.03357966e+05, 4.12277546e+05, 3.72296914e+05, 3.39046067e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_ptGt300' : [ 5.93566165e+05, 3.39038339e+05, ], 'Count_pt300to450' : [ 361006, ], 'CountWeighted_pt300to450' : [ 3.61214218e+05, 3.61053032e+05, 3.61351784e+05, ], 'CountWeightedLHEWeightScale_pt300to450' : [ 4.83524077e+05, 4.37715058e+05, 3.99473052e+05, 3.98966659e+05, 3.61214218e+05, 3.29694599e+05, 3.34822417e+05, 3.03171643e+05, 2.76743406e+05, ], 'CountWeightedLHEEnvelope_pt300to450' : [ 4.83551642e+05, 2.76735701e+05, ], 'CountWeightedFull_pt300to450' : [ 3.61214218e+05, 3.61053032e+05, 3.61351784e+05, ], 'CountWeightedFullLHEWeightScale_pt300to450' : [ 4.83524077e+05, 4.37715058e+05, 3.99473052e+05, 3.98966659e+05, 3.61214218e+05, 3.29694599e+05, 3.34822417e+05, 3.03171643e+05, 2.76743406e+05, ], 'CountWeightedFullLHEEnvelope_pt300to450' : [ 4.83551642e+05, 2.76735701e+05, ], 'CountWeightedL1PrefireNom_pt300to450' : [ 3.48139798e+05, 3.47969709e+05, 3.48281377e+05, ], 'CountWeightedL1Prefire_pt300to450' : [ 3.48139798e+05, 3.45105904e+05, 3.51132814e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_pt300to450' : [ 4.65645102e+05, 4.21846975e+05, 3.85238026e+05, 3.84237299e+05, 3.48139798e+05, 3.17964240e+05, 3.22477241e+05, 2.92212230e+05, 2.66909682e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_pt300to450' : [ 4.65672143e+05, 2.66902176e+05, ], 'CountWeightedFullL1PrefireNom_pt300to450' : [ 3.48139798e+05, 3.47969709e+05, 3.48281377e+05, ], 'CountWeightedFullL1Prefire_pt300to450' : [ 3.48139798e+05, 3.45105904e+05, 3.51132814e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_pt300to450' : [ 4.65645102e+05, 4.21846975e+05, 3.85238026e+05, 3.84237299e+05, 3.48139798e+05, 3.17964240e+05, 3.22477241e+05, 2.92212230e+05, 2.66909682e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_pt300to450' : [ 4.65672143e+05, 2.66902176e+05, ], 'Count_ptGt450' : [ 98083, ], 'CountWeighted_ptGt450' : [ 9.79348319e+04, 9.79661089e+04, 9.79032464e+04, ], 'CountWeightedLHEWeightScale_ptGt450' : [ 1.32232148e+05, 1.17790682e+05, 1.05994957e+05, 1.09925145e+05, 9.79348319e+04, 8.81396170e+04, 9.28291945e+04, 8.27142578e+04, 7.44498051e+04, ], 'CountWeightedLHEEnvelope_ptGt450' : [ 1.32232842e+05, 7.44495772e+04, ], 'CountWeightedFull_ptGt450' : [ 9.79348319e+04, 9.79661089e+04, 9.79032464e+04, ], 'CountWeightedFullLHEWeightScale_ptGt450' : [ 1.32232148e+05, 1.17790682e+05, 1.05994957e+05, 1.09925145e+05, 9.79348319e+04, 8.81396170e+04, 9.28291945e+04, 8.27142578e+04, 7.44498051e+04, ], 'CountWeightedFullLHEEnvelope_ptGt450' : [ 1.32232842e+05, 7.44495772e+04, ], 'CountWeightedL1PrefireNom_ptGt450' : [ 9.48133592e+04, 9.48415652e+04, 9.47850145e+04, ], 'CountWeightedL1Prefire_ptGt450' : [ 9.48133592e+04, 9.40911374e+04, 9.55249860e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_ptGt450' : [ 1.27893318e+05, 1.14024783e+05, 1.02682553e+05, 1.06329246e+05, 9.48133592e+04, 8.53936913e+04, 8.98003112e+04, 8.00846761e+04, 7.21363738e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_ptGt450' : [ 1.27893994e+05, 7.21361540e+04, ], 'CountWeightedFullL1PrefireNom_ptGt450' : [ 9.48133592e+04, 9.48415652e+04, 9.47850145e+04, ], 'CountWeightedFullL1Prefire_ptGt450' : [ 9.48133592e+04, 9.40911374e+04, 9.55249860e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_ptGt450' : [ 1.27893318e+05, 1.14024783e+05, 1.02682553e+05, 1.06329246e+05, 9.48133592e+04, 8.53936913e+04, 8.98003112e+04, 8.00846761e+04, 7.21363738e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_ptGt450' : [ 1.27893994e+05, 7.21361540e+04, ], 'CountWeighted_rwgt0' : [ 8.65625510e+07, 8.65599245e+07, 8.65597467e+07, ], 'CountWeightedLHEWeightScale_rwgt0' : [ 1.13993564e+08, 1.05952012e+08, 9.88767908e+07, 9.31337999e+07, 8.65625510e+07, 8.07805223e+07, 7.75243184e+07, 7.20523911e+07, 6.72396426e+07, ], 'CountWeightedLHEEnvelope_rwgt0' : [ 1.14057377e+08, 6.72143605e+07, ], 'CountWeightedFull_rwgt0' : [ 8.65625510e+07, 8.65599245e+07, 8.65597467e+07, ], 'CountWeightedFullLHEWeightScale_rwgt0' : [ 1.13993564e+08, 1.05952012e+08, 9.88767908e+07, 9.31337999e+07, 8.65625510e+07, 8.07805223e+07, 7.75243184e+07, 7.20523911e+07, 6.72396426e+07, ], 'CountWeightedFullLHEEnvelope_rwgt0' : [ 1.14057377e+08, 6.72143605e+07, ], 'CountWeightedL1PrefireNom_rwgt0' : [ 8.37511969e+07, 8.37457481e+07, 8.37534598e+07, ], 'CountWeightedL1Prefire_rwgt0' : [ 8.37511969e+07, 8.30634901e+07, 8.44209941e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt0' : [ 1.10239942e+08, 1.02513965e+08, 9.57071545e+07, 9.00645419e+07, 8.37511969e+07, 7.81888212e+07, 7.49677906e+07, 6.97109760e+07, 6.50809155e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt0' : [ 1.10303061e+08, 6.50558901e+07, ], 'CountWeightedFullL1PrefireNom_rwgt0' : [ 8.37511969e+07, 8.37457481e+07, 8.37534598e+07, ], 'CountWeightedFullL1Prefire_rwgt0' : [ 8.37511969e+07, 8.30634901e+07, 8.44209941e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt0' : [ 1.10239942e+08, 1.02513965e+08, 9.57071545e+07, 9.00645419e+07, 8.37511969e+07, 7.81888212e+07, 7.49677906e+07, 6.97109760e+07, 6.50809155e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt0' : [ 1.10303061e+08, 6.50558901e+07, ], 'CountWeighted_rwgt0_fwd' : [ 1.28412743e+06, 1.28451141e+06, 1.28371458e+06, ], 'CountWeightedLHEWeightScale_rwgt0_fwd' : [ 1.70263698e+06, 1.57314935e+06, 1.46308632e+06, 1.38970431e+06, 1.28412743e+06, 1.19437120e+06, 1.15581392e+06, 1.06808139e+06, 9.93481924e+05, ], 'CountWeightedLHEEnvelope_rwgt0_fwd' : [ 1.70288228e+06, 9.93376392e+05, ], 'CountWeightedFull_rwgt0_fwd' : [ 1.28412743e+06, 1.28451141e+06, 1.28371458e+06, ], 'CountWeightedFullLHEWeightScale_rwgt0_fwd' : [ 1.70263698e+06, 1.57314935e+06, 1.46308632e+06, 1.38970431e+06, 1.28412743e+06, 1.19437120e+06, 1.15581392e+06, 1.06808139e+06, 9.93481924e+05, ], 'CountWeightedFullLHEEnvelope_rwgt0_fwd' : [ 1.70288228e+06, 9.93376392e+05, ], 'CountWeightedL1PrefireNom_rwgt0_fwd' : [ 1.10374328e+06, 1.10368499e+06, 1.10380845e+06, ], 'CountWeightedL1Prefire_rwgt0_fwd' : [ 1.10374328e+06, 1.06379566e+06, 1.14408732e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt0_fwd' : [ 1.46297341e+06, 1.35253551e+06, 1.25858911e+06, 1.19375647e+06, 1.10374328e+06, 1.02715587e+06, 9.92616550e+05, 9.17837737e+05, 8.54201745e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt0_fwd' : [ 1.46318771e+06, 8.54110025e+05, ], 'CountWeightedFullL1PrefireNom_rwgt0_fwd' : [ 1.10374328e+06, 1.10368499e+06, 1.10380845e+06, ], 'CountWeightedFullL1Prefire_rwgt0_fwd' : [ 1.10374328e+06, 1.06379566e+06, 1.14408732e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt0_fwd' : [ 1.46297341e+06, 1.35253551e+06, 1.25858911e+06, 1.19375647e+06, 1.10374328e+06, 1.02715587e+06, 9.92616550e+05, 9.17837737e+05, 8.54201745e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt0_fwd' : [ 1.46318771e+06, 8.54110025e+05, ], 'CountWeighted_rwgt0_pt0to60' : [ 1.92735489e+07, 1.92753050e+07, 1.92725341e+07, ], 'CountWeightedLHEWeightScale_rwgt0_pt0to60' : [ 2.51860028e+07, 2.36266373e+07, 2.22195796e+07, 2.05470362e+07, 1.92735489e+07, 1.81248245e+07, 1.70823390e+07, 1.60227440e+07, 1.50670505e+07, ], 'CountWeightedLHEEnvelope_rwgt0_pt0to60' : [ 2.52092422e+07, 1.50578991e+07, ], 'CountWeightedFull_rwgt0_pt0to60' : [ 1.92735489e+07, 1.92753050e+07, 1.92725341e+07, ], 'CountWeightedFullLHEWeightScale_rwgt0_pt0to60' : [ 2.51860028e+07, 2.36266373e+07, 2.22195796e+07, 2.05470362e+07, 1.92735489e+07, 1.81248245e+07, 1.70823390e+07, 1.60227440e+07, 1.50670505e+07, ], 'CountWeightedFullLHEEnvelope_rwgt0_pt0to60' : [ 2.52092422e+07, 1.50578991e+07, ], 'CountWeightedL1PrefireNom_rwgt0_pt0to60' : [ 1.87519505e+07, 1.87527367e+07, 1.87518436e+07, ], 'CountWeightedL1Prefire_rwgt0_pt0to60' : [ 1.87519505e+07, 1.86186760e+07, 1.88798786e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt0_pt0to60' : [ 2.44959306e+07, 2.29879121e+07, 2.16255758e+07, 1.99834602e+07, 1.87519505e+07, 1.76397792e+07, 1.66133803e+07, 1.55887395e+07, 1.46634829e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt0_pt0to60' : [ 2.45189404e+07, 1.46544117e+07, ], 'CountWeightedFullL1PrefireNom_rwgt0_pt0to60' : [ 1.87519505e+07, 1.87527367e+07, 1.87518436e+07, ], 'CountWeightedFullL1Prefire_rwgt0_pt0to60' : [ 1.87519505e+07, 1.86186760e+07, 1.88798786e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt0_pt0to60' : [ 2.44959306e+07, 2.29879121e+07, 2.16255758e+07, 1.99834602e+07, 1.87519505e+07, 1.76397792e+07, 1.66133803e+07, 1.55887395e+07, 1.46634829e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt0_pt0to60' : [ 2.45189404e+07, 1.46544117e+07, ], 'CountWeighted_rwgt0_pt60to120' : [ 3.05741277e+07, 3.05758859e+07, 3.05715970e+07, ], 'CountWeightedLHEWeightScale_rwgt0_pt60to120' : [ 4.01603797e+07, 3.75015438e+07, 3.51286358e+07, 3.27420047e+07, 3.05741277e+07, 2.86394511e+07, 2.72066838e+07, 2.54049637e+07, 2.37974609e+07, ], 'CountWeightedLHEEnvelope_rwgt0_pt60to120' : [ 4.01868974e+07, 2.37869779e+07, ], 'CountWeightedFull_rwgt0_pt60to120' : [ 3.05741277e+07, 3.05758859e+07, 3.05715970e+07, ], 'CountWeightedFullLHEWeightScale_rwgt0_pt60to120' : [ 4.01603797e+07, 3.75015438e+07, 3.51286358e+07, 3.27420047e+07, 3.05741277e+07, 2.86394511e+07, 2.72066838e+07, 2.54049637e+07, 2.37974609e+07, ], 'CountWeightedFullLHEEnvelope_rwgt0_pt60to120' : [ 4.01868974e+07, 2.37869779e+07, ], 'CountWeightedL1PrefireNom_rwgt0_pt60to120' : [ 2.96740684e+07, 2.96745817e+07, 2.96733907e+07, ], 'CountWeightedL1Prefire_rwgt0_pt60to120' : [ 2.96740684e+07, 2.94490633e+07, 2.98918577e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt0_pt60to120' : [ 3.89636927e+07, 3.63989145e+07, 3.41071396e+07, 3.17652496e+07, 2.96740684e+07, 2.78057112e+07, 2.63942925e+07, 2.46564573e+07, 2.31040446e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt0_pt60to120' : [ 3.89899379e+07, 2.30936596e+07, ], 'CountWeightedFullL1PrefireNom_rwgt0_pt60to120' : [ 2.96740684e+07, 2.96745817e+07, 2.96733907e+07, ], 'CountWeightedFullL1Prefire_rwgt0_pt60to120' : [ 2.96740684e+07, 2.94490633e+07, 2.98918577e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt0_pt60to120' : [ 3.89636927e+07, 3.63989145e+07, 3.41071396e+07, 3.17652496e+07, 2.96740684e+07, 2.78057112e+07, 2.63942925e+07, 2.46564573e+07, 2.31040446e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt0_pt60to120' : [ 3.89899379e+07, 2.30936596e+07, ], 'CountWeighted_rwgt0_pt120to200' : [ 2.21816910e+07, 2.21820452e+07, 2.21816586e+07, ], 'CountWeightedLHEWeightScale_rwgt0_pt120to200' : [ 2.92913600e+07, 2.71447628e+07, 2.52676304e+07, 2.39349106e+07, 2.21816910e+07, 2.06487431e+07, 1.99256415e+07, 1.84667219e+07, 1.71910846e+07, ], 'CountWeightedLHEEnvelope_rwgt0_pt120to200' : [ 2.93025650e+07, 1.71865041e+07, ], 'CountWeightedFull_rwgt0_pt120to200' : [ 2.21816910e+07, 2.21820452e+07, 2.21816586e+07, ], 'CountWeightedFullLHEWeightScale_rwgt0_pt120to200' : [ 2.92913600e+07, 2.71447628e+07, 2.52676304e+07, 2.39349106e+07, 2.21816910e+07, 2.06487431e+07, 1.99256415e+07, 1.84667219e+07, 1.71910846e+07, ], 'CountWeightedFullLHEEnvelope_rwgt0_pt120to200' : [ 2.93025650e+07, 1.71865041e+07, ], 'CountWeightedL1PrefireNom_rwgt0_pt120to200' : [ 2.14454673e+07, 2.14448661e+07, 2.14462645e+07, ], 'CountWeightedL1Prefire_rwgt0_pt120to200' : [ 2.14454673e+07, 2.12670622e+07, 2.16198807e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt0_pt120to200' : [ 2.83061233e+07, 2.62442868e+07, 2.44390558e+07, 2.31294315e+07, 2.14454673e+07, 1.99712774e+07, 1.92548153e+07, 1.78535541e+07, 1.66268224e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt0_pt120to200' : [ 2.83172069e+07, 1.66222890e+07, ], 'CountWeightedFullL1PrefireNom_rwgt0_pt120to200' : [ 2.14454673e+07, 2.14448661e+07, 2.14462645e+07, ], 'CountWeightedFullL1Prefire_rwgt0_pt120to200' : [ 2.14454673e+07, 2.12670622e+07, 2.16198807e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt0_pt120to200' : [ 2.83061233e+07, 2.62442868e+07, 2.44390558e+07, 2.31294315e+07, 2.14454673e+07, 1.99712774e+07, 1.92548153e+07, 1.78535541e+07, 1.66268224e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt0_pt120to200' : [ 2.83172069e+07, 1.66222890e+07, ], 'CountWeighted_rwgt0_pt200to300' : [ 9.11613288e+06, 9.11439079e+06, 9.11842493e+06, ], 'CountWeightedLHEWeightScale_rwgt0_pt200to300' : [ 1.21113290e+07, 1.11064353e+07, 1.02485049e+07, 9.94013111e+06, 9.11613288e+06, 8.41266798e+06, 8.30514583e+06, 7.61723792e+06, 7.02988621e+06, ], 'CountWeightedLHEEnvelope_rwgt0_pt200to300' : [ 1.21136528e+07, 7.02901273e+06, ], 'CountWeightedFull_rwgt0_pt200to300' : [ 9.11613288e+06, 9.11439079e+06, 9.11842493e+06, ], 'CountWeightedFullLHEWeightScale_rwgt0_pt200to300' : [ 1.21113290e+07, 1.11064353e+07, 1.02485049e+07, 9.94013111e+06, 9.11613288e+06, 8.41266798e+06, 8.30514583e+06, 7.61723792e+06, 7.02988621e+06, ], 'CountWeightedFullLHEEnvelope_rwgt0_pt200to300' : [ 1.21136528e+07, 7.02901273e+06, ], 'CountWeightedL1PrefireNom_rwgt0_pt200to300' : [ 8.78887327e+06, 8.78695596e+06, 8.79128057e+06, ], 'CountWeightedL1Prefire_rwgt0_pt200to300' : [ 8.78887327e+06, 8.71171632e+06, 8.86481600e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt0_pt200to300' : [ 1.16693352e+07, 1.07075313e+07, 9.88538475e+06, 9.57753720e+06, 8.78887327e+06, 8.11472201e+06, 8.00230790e+06, 7.34387343e+06, 6.78100170e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt0_pt200to300' : [ 1.16716318e+07, 6.78013897e+06, ], 'CountWeightedFullL1PrefireNom_rwgt0_pt200to300' : [ 8.78887327e+06, 8.78695596e+06, 8.79128057e+06, ], 'CountWeightedFullL1Prefire_rwgt0_pt200to300' : [ 8.78887327e+06, 8.71171632e+06, 8.86481600e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt0_pt200to300' : [ 1.16693352e+07, 1.07075313e+07, 9.88538475e+06, 9.57753720e+06, 8.78887327e+06, 8.11472201e+06, 8.00230790e+06, 7.34387343e+06, 6.78100170e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt0_pt200to300' : [ 1.16716318e+07, 6.78013897e+06, ], 'CountWeighted_rwgt0_ptGt300' : [ 4.13235256e+06, 4.13116759e+06, 4.13330672e+06, ], 'CountWeightedLHEWeightScale_rwgt0_ptGt300' : [ 5.54180530e+06, 4.99955201e+06, 4.54921166e+06, 4.58002619e+06, 4.13235256e+06, 3.76050729e+06, 3.84886499e+06, 3.47297400e+06, 3.16073881e+06, ], 'CountWeightedLHEEnvelope_rwgt0_ptGt300' : [ 5.54205962e+06, 3.16066744e+06, ], 'CountWeightedFull_rwgt0_ptGt300' : [ 4.13235256e+06, 4.13116759e+06, 4.13330672e+06, ], 'CountWeightedFullLHEWeightScale_rwgt0_ptGt300' : [ 5.54180530e+06, 4.99955201e+06, 4.54921166e+06, 4.58002619e+06, 4.13235256e+06, 3.76050729e+06, 3.84886499e+06, 3.47297400e+06, 3.16073881e+06, ], 'CountWeightedFullLHEEnvelope_rwgt0_ptGt300' : [ 5.54205962e+06, 3.16066744e+06, ], 'CountWeightedL1PrefireNom_rwgt0_ptGt300' : [ 3.98658509e+06, 3.98529887e+06, 3.98760431e+06, ], 'CountWeightedL1Prefire_rwgt0_ptGt300' : [ 3.98658509e+06, 3.95277968e+06, 4.01992732e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt0_ptGt300' : [ 5.34184533e+06, 4.82284620e+06, 4.39128494e+06, 4.41509882e+06, 3.98658509e+06, 3.63022118e+06, 3.71049813e+06, 3.35067289e+06, 3.05141440e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt0_ptGt300' : [ 5.34209487e+06, 3.05134482e+06, ], 'CountWeightedFullL1PrefireNom_rwgt0_ptGt300' : [ 3.98658509e+06, 3.98529887e+06, 3.98760431e+06, ], 'CountWeightedFullL1Prefire_rwgt0_ptGt300' : [ 3.98658509e+06, 3.95277968e+06, 4.01992732e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt0_ptGt300' : [ 5.34184533e+06, 4.82284620e+06, 4.39128494e+06, 4.41509882e+06, 3.98658509e+06, 3.63022118e+06, 3.71049813e+06, 3.35067289e+06, 3.05141440e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt0_ptGt300' : [ 5.34209487e+06, 3.05134482e+06, ], 'CountWeighted_rwgt0_pt300to450' : [ 3.25093278e+06, 3.24947512e+06, 3.25217426e+06, ], 'CountWeightedLHEWeightScale_rwgt0_pt300to450' : [ 4.35171633e+06, 3.93943601e+06, 3.59525691e+06, 3.59069971e+06, 3.25093278e+06, 2.96725122e+06, 3.01340200e+06, 2.72854558e+06, 2.49069042e+06, ], 'CountWeightedLHEEnvelope_rwgt0_pt300to450' : [ 4.35196445e+06, 2.49062108e+06, ], 'CountWeightedFull_rwgt0_pt300to450' : [ 3.25093278e+06, 3.24947512e+06, 3.25217426e+06, ], 'CountWeightedFullLHEWeightScale_rwgt0_pt300to450' : [ 4.35171633e+06, 3.93943601e+06, 3.59525691e+06, 3.59069971e+06, 3.25093278e+06, 2.96725122e+06, 3.01340200e+06, 2.72854558e+06, 2.49069042e+06, ], 'CountWeightedFullLHEEnvelope_rwgt0_pt300to450' : [ 4.35196445e+06, 2.49062108e+06, ], 'CountWeightedL1PrefireNom_rwgt0_pt300to450' : [ 3.13326091e+06, 3.13172654e+06, 3.13453718e+06, ], 'CountWeightedL1Prefire_rwgt0_pt300to450' : [ 3.13326091e+06, 3.10595547e+06, 3.16019809e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt0_pt300to450' : [ 4.19080568e+06, 3.79662309e+06, 3.46714218e+06, 3.45813539e+06, 3.13326091e+06, 2.86167814e+06, 2.90229536e+06, 2.62991066e+06, 2.40218697e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt0_pt300to450' : [ 4.19104913e+06, 2.40211938e+06, ], 'CountWeightedFullL1PrefireNom_rwgt0_pt300to450' : [ 3.13326091e+06, 3.13172654e+06, 3.13453718e+06, ], 'CountWeightedFullL1Prefire_rwgt0_pt300to450' : [ 3.13326091e+06, 3.10595547e+06, 3.16019809e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt0_pt300to450' : [ 4.19080568e+06, 3.79662309e+06, 3.46714218e+06, 3.45813539e+06, 3.13326091e+06, 2.86167814e+06, 2.90229536e+06, 2.62991066e+06, 2.40218697e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt0_pt300to450' : [ 4.19104913e+06, 2.40211938e+06, ], 'CountWeighted_rwgt0_ptGt450' : [ 8.81413836e+05, 8.81694142e+05, 8.81129929e+05, ], 'CountWeightedLHEWeightScale_rwgt0_ptGt450' : [ 1.19008931e+06, 1.06011617e+06, 9.53954642e+05, 9.89326307e+05, 8.81413836e+05, 7.93256580e+05, 8.35462785e+05, 7.44428373e+05, 6.70048209e+05, ], 'CountWeightedLHEEnvelope_rwgt0_ptGt450' : [ 1.19009557e+06, 6.70046159e+05, ], 'CountWeightedFull_rwgt0_ptGt450' : [ 8.81413836e+05, 8.81694142e+05, 8.81129929e+05, ], 'CountWeightedFullLHEWeightScale_rwgt0_ptGt450' : [ 1.19008931e+06, 1.06011617e+06, 9.53954642e+05, 9.89326307e+05, 8.81413836e+05, 7.93256580e+05, 8.35462785e+05, 7.44428373e+05, 6.70048209e+05, ], 'CountWeightedFullLHEEnvelope_rwgt0_ptGt450' : [ 1.19009557e+06, 6.70046159e+05, ], 'CountWeightedL1PrefireNom_rwgt0_ptGt450' : [ 8.53320513e+05, 8.53573651e+05, 8.53065564e+05, ], 'CountWeightedL1Prefire_rwgt0_ptGt450' : [ 8.53320513e+05, 8.46820497e+05, 8.59725144e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt0_ptGt450' : [ 1.15103988e+06, 1.02622302e+06, 9.24142989e+05, 9.56963243e+05, 8.53320513e+05, 7.68543251e+05, 8.08202825e+05, 7.20762139e+05, 6.49227353e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt0_ptGt450' : [ 1.15104597e+06, 6.49225376e+05, ], 'CountWeightedFullL1PrefireNom_rwgt0_ptGt450' : [ 8.53320513e+05, 8.53573651e+05, 8.53065564e+05, ], 'CountWeightedFullL1Prefire_rwgt0_ptGt450' : [ 8.53320513e+05, 8.46820497e+05, 8.59725144e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt0_ptGt450' : [ 1.15103988e+06, 1.02622302e+06, 9.24142989e+05, 9.56963243e+05, 8.53320513e+05, 7.68543251e+05, 8.08202825e+05, 7.20762139e+05, 6.49227353e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt0_ptGt450' : [ 1.15104597e+06, 6.49225376e+05, ], 'CountWeighted_rwgt1' : [ 3.84732078e+07, 3.84727852e+07, 3.84730181e+07, ], 'CountWeightedLHEWeightScale_rwgt1' : [ 5.06636858e+07, 4.70899131e+07, 4.39452202e+07, 4.13928089e+07, 3.84732078e+07, 3.59024821e+07, 3.44553784e+07, 3.20234849e+07, 2.98843391e+07, ], 'CountWeightedLHEEnvelope_rwgt1' : [ 5.06920147e+07, 2.98731063e+07, ], 'CountWeightedFull_rwgt1' : [ 3.84732078e+07, 3.84727852e+07, 3.84730181e+07, ], 'CountWeightedFullLHEWeightScale_rwgt1' : [ 5.06636858e+07, 4.70899131e+07, 4.39452202e+07, 4.13928089e+07, 3.84732078e+07, 3.59024821e+07, 3.44553784e+07, 3.20234849e+07, 2.98843391e+07, ], 'CountWeightedFullLHEEnvelope_rwgt1' : [ 5.06920147e+07, 2.98731063e+07, ], 'CountWeightedL1PrefireNom_rwgt1' : [ 3.72233058e+07, 3.72213464e+07, 3.72247568e+07, ], 'CountWeightedL1Prefire_rwgt1' : [ 3.72233058e+07, 3.69174899e+07, 3.75209003e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt1' : [ 4.89954076e+07, 4.55618362e+07, 4.25365064e+07, 4.00286897e+07, 3.72233058e+07, 3.47506180e+07, 3.33191227e+07, 3.09827412e+07, 2.89248952e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt1' : [ 4.90234389e+07, 2.89137751e+07, ], 'CountWeightedFullL1PrefireNom_rwgt1' : [ 3.72233058e+07, 3.72213464e+07, 3.72247568e+07, ], 'CountWeightedFullL1Prefire_rwgt1' : [ 3.72233058e+07, 3.69174899e+07, 3.75209003e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt1' : [ 4.89954076e+07, 4.55618362e+07, 4.25365064e+07, 4.00286897e+07, 3.72233058e+07, 3.47506180e+07, 3.33191227e+07, 3.09827412e+07, 2.89248952e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt1' : [ 4.90234389e+07, 2.89137751e+07, ], 'CountWeighted_rwgt1_fwd' : [ 5.70722669e+05, 5.70895506e+05, 5.70539428e+05, ], 'CountWeightedLHEWeightScale_rwgt1_fwd' : [ 7.56727588e+05, 6.99177546e+05, 6.50260520e+05, 6.17646316e+05, 5.70722669e+05, 5.30831663e+05, 5.13695097e+05, 4.74702778e+05, 4.41547516e+05, ], 'CountWeightedLHEEnvelope_rwgt1_fwd' : [ 7.56836604e+05, 4.41500614e+05, ], 'CountWeightedFull_rwgt1_fwd' : [ 5.70722669e+05, 5.70895506e+05, 5.70539428e+05, ], 'CountWeightedFullLHEWeightScale_rwgt1_fwd' : [ 7.56727588e+05, 6.99177546e+05, 6.50260520e+05, 6.17646316e+05, 5.70722669e+05, 5.30831663e+05, 5.13695097e+05, 4.74702778e+05, 4.41547516e+05, ], 'CountWeightedFullLHEEnvelope_rwgt1_fwd' : [ 7.56836604e+05, 4.41500614e+05, ], 'CountWeightedL1PrefireNom_rwgt1_fwd' : [ 4.90552540e+05, 4.90526735e+05, 4.90581538e+05, ], 'CountWeightedL1Prefire_rwgt1_fwd' : [ 4.90552540e+05, 4.72798046e+05, 5.08483262e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt1_fwd' : [ 6.50210433e+05, 6.01126894e+05, 5.59372922e+05, 5.30558440e+05, 4.90552540e+05, 4.56513701e+05, 4.41162922e+05, 4.07927897e+05, 3.79645240e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt1_fwd' : [ 6.50305681e+05, 3.79604475e+05, ], 'CountWeightedFullL1PrefireNom_rwgt1_fwd' : [ 4.90552540e+05, 4.90526735e+05, 4.90581538e+05, ], 'CountWeightedFullL1Prefire_rwgt1_fwd' : [ 4.90552540e+05, 4.72798046e+05, 5.08483262e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt1_fwd' : [ 6.50210433e+05, 6.01126894e+05, 5.59372922e+05, 5.30558440e+05, 4.90552540e+05, 4.56513701e+05, 4.41162922e+05, 4.07927897e+05, 3.79645240e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt1_fwd' : [ 6.50305681e+05, 3.79604475e+05, ], 'CountWeighted_rwgt1_pt0to60' : [ 8.56605569e+06, 8.56652128e+06, 8.56564247e+06, ], 'CountWeightedLHEWeightScale_rwgt1_pt0to60' : [ 1.11937752e+07, 1.05007316e+07, 9.87536811e+06, 9.13201659e+06, 8.56605569e+06, 8.05547988e+06, 7.59215061e+06, 7.12122068e+06, 6.69646717e+06, ], 'CountWeightedLHEEnvelope_rwgt1_pt0to60' : [ 1.12041048e+07, 6.69240032e+06, ], 'CountWeightedFull_rwgt1_pt0to60' : [ 8.56605569e+06, 8.56652128e+06, 8.56564247e+06, ], 'CountWeightedFullLHEWeightScale_rwgt1_pt0to60' : [ 1.11937752e+07, 1.05007316e+07, 9.87536811e+06, 9.13201659e+06, 8.56605569e+06, 8.05547988e+06, 7.59215061e+06, 7.12122068e+06, 6.69646717e+06, ], 'CountWeightedFullLHEEnvelope_rwgt1_pt0to60' : [ 1.12041048e+07, 6.69240032e+06, ], 'CountWeightedL1PrefireNom_rwgt1_pt0to60' : [ 8.33422746e+06, 8.33437795e+06, 8.33419967e+06, ], 'CountWeightedL1Prefire_rwgt1_pt0to60' : [ 8.33422746e+06, 8.27497835e+06, 8.39107872e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt1_pt0to60' : [ 1.08870812e+07, 1.02168502e+07, 9.61136655e+06, 8.88153921e+06, 8.33422746e+06, 7.83990351e+06, 7.38372521e+06, 6.92833032e+06, 6.51710442e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt1_pt0to60' : [ 1.08973078e+07, 6.51307341e+06, ], 'CountWeightedFullL1PrefireNom_rwgt1_pt0to60' : [ 8.33422746e+06, 8.33437795e+06, 8.33419967e+06, ], 'CountWeightedFullL1Prefire_rwgt1_pt0to60' : [ 8.33422746e+06, 8.27497835e+06, 8.39107872e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt1_pt0to60' : [ 1.08870812e+07, 1.02168502e+07, 9.61136655e+06, 8.88153921e+06, 8.33422746e+06, 7.83990351e+06, 7.38372521e+06, 6.92833032e+06, 6.51710442e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt1_pt0to60' : [ 1.08973078e+07, 6.51307341e+06, ], 'CountWeighted_rwgt1_pt60to120' : [ 1.35884562e+07, 1.35892778e+07, 1.35873519e+07, ], 'CountWeightedLHEWeightScale_rwgt1_pt60to120' : [ 1.78490675e+07, 1.66673563e+07, 1.56127300e+07, 1.45519973e+07, 1.35884562e+07, 1.27286481e+07, 1.20918603e+07, 1.12910991e+07, 1.05766575e+07, ], 'CountWeightedLHEEnvelope_rwgt1_pt60to120' : [ 1.78608573e+07, 1.05719986e+07, ], 'CountWeightedFull_rwgt1_pt60to120' : [ 1.35884562e+07, 1.35892778e+07, 1.35873519e+07, ], 'CountWeightedFullLHEWeightScale_rwgt1_pt60to120' : [ 1.78490675e+07, 1.66673563e+07, 1.56127300e+07, 1.45519973e+07, 1.35884562e+07, 1.27286481e+07, 1.20918603e+07, 1.12910991e+07, 1.05766575e+07, ], 'CountWeightedFullLHEEnvelope_rwgt1_pt60to120' : [ 1.78608573e+07, 1.05719986e+07, ], 'CountWeightedL1PrefireNom_rwgt1_pt60to120' : [ 1.31884774e+07, 1.31886220e+07, 1.31881866e+07, ], 'CountWeightedL1Prefire_rwgt1_pt60to120' : [ 1.31884774e+07, 1.30884499e+07, 1.32852408e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt1_pt60to120' : [ 1.73171981e+07, 1.61773009e+07, 1.51587334e+07, 1.41178841e+07, 1.31884774e+07, 1.23581015e+07, 1.17308003e+07, 1.09584245e+07, 1.02684692e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt1_pt60to120' : [ 1.73288661e+07, 1.02638543e+07, ], 'CountWeightedFullL1PrefireNom_rwgt1_pt60to120' : [ 1.31884774e+07, 1.31886220e+07, 1.31881866e+07, ], 'CountWeightedFullL1Prefire_rwgt1_pt60to120' : [ 1.31884774e+07, 1.30884499e+07, 1.32852408e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt1_pt60to120' : [ 1.73171981e+07, 1.61773009e+07, 1.51587334e+07, 1.41178841e+07, 1.31884774e+07, 1.23581015e+07, 1.17308003e+07, 1.09584245e+07, 1.02684692e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt1_pt60to120' : [ 1.73288661e+07, 1.02638543e+07, ], 'CountWeighted_rwgt1_pt120to200' : [ 9.85857154e+06, 9.85830967e+06, 9.85855249e+06, ], 'CountWeightedLHEWeightScale_rwgt1_pt120to200' : [ 1.30183820e+07, 1.20643356e+07, 1.12300610e+07, 1.06377375e+07, 9.85857154e+06, 9.17722025e+06, 8.85584157e+06, 8.20743350e+06, 7.64048145e+06, ], 'CountWeightedLHEEnvelope_rwgt1_pt120to200' : [ 1.30233620e+07, 7.63844575e+06, ], 'CountWeightedFull_rwgt1_pt120to200' : [ 9.85857154e+06, 9.85830967e+06, 9.85855249e+06, ], 'CountWeightedFullLHEWeightScale_rwgt1_pt120to200' : [ 1.30183820e+07, 1.20643356e+07, 1.12300610e+07, 1.06377375e+07, 9.85857154e+06, 9.17722025e+06, 8.85584157e+06, 8.20743350e+06, 7.64048145e+06, ], 'CountWeightedFullLHEEnvelope_rwgt1_pt120to200' : [ 1.30233620e+07, 7.63844575e+06, ], 'CountWeightedL1PrefireNom_rwgt1_pt120to200' : [ 9.53135511e+06, 9.53081615e+06, 9.53170277e+06, ], 'CountWeightedL1Prefire_rwgt1_pt120to200' : [ 9.53135511e+06, 9.45204176e+06, 9.60885772e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt1_pt120to200' : [ 1.25804997e+07, 1.16641261e+07, 1.08618025e+07, 1.02797498e+07, 9.53135511e+06, 8.87612575e+06, 8.55769636e+06, 7.93491459e+06, 7.38969884e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt1_pt120to200' : [ 1.25854257e+07, 7.38768382e+06, ], 'CountWeightedFullL1PrefireNom_rwgt1_pt120to200' : [ 9.53135511e+06, 9.53081615e+06, 9.53170277e+06, ], 'CountWeightedFullL1Prefire_rwgt1_pt120to200' : [ 9.53135511e+06, 9.45204176e+06, 9.60885772e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt1_pt120to200' : [ 1.25804997e+07, 1.16641261e+07, 1.08618025e+07, 1.02797498e+07, 9.53135511e+06, 8.87612575e+06, 8.55769636e+06, 7.93491459e+06, 7.38969884e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt1_pt120to200' : [ 1.25854257e+07, 7.38768382e+06, ], 'CountWeighted_rwgt1_pt200to300' : [ 4.05161857e+06, 4.05080469e+06, 4.05266705e+06, ], 'CountWeightedLHEWeightScale_rwgt1_pt200to300' : [ 5.38281231e+06, 4.93619364e+06, 4.55489108e+06, 4.41783623e+06, 4.05161857e+06, 3.73896379e+06, 3.69117659e+06, 3.38543854e+06, 3.12439424e+06, ], 'CountWeightedLHEEnvelope_rwgt1_pt200to300' : [ 5.38384518e+06, 3.12400608e+06, ], 'CountWeightedFull_rwgt1_pt200to300' : [ 4.05161857e+06, 4.05080469e+06, 4.05266705e+06, ], 'CountWeightedFullLHEWeightScale_rwgt1_pt200to300' : [ 5.38281231e+06, 4.93619364e+06, 4.55489108e+06, 4.41783623e+06, 4.05161857e+06, 3.73896379e+06, 3.69117659e+06, 3.38543854e+06, 3.12439424e+06, ], 'CountWeightedFullLHEEnvelope_rwgt1_pt200to300' : [ 5.38384518e+06, 3.12400608e+06, ], 'CountWeightedL1PrefireNom_rwgt1_pt200to300' : [ 3.90616540e+06, 3.90529420e+06, 3.90725345e+06, ], 'CountWeightedL1Prefire_rwgt1_pt200to300' : [ 3.90616540e+06, 3.87187342e+06, 3.93992048e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt1_pt200to300' : [ 5.18637111e+06, 4.75890352e+06, 4.39350383e+06, 4.25668370e+06, 3.90616540e+06, 3.60654240e+06, 3.55658111e+06, 3.26394315e+06, 3.01377891e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt1_pt200to300' : [ 5.18739196e+06, 3.01339547e+06, ], 'CountWeightedFullL1PrefireNom_rwgt1_pt200to300' : [ 3.90616540e+06, 3.90529420e+06, 3.90725345e+06, ], 'CountWeightedFullL1Prefire_rwgt1_pt200to300' : [ 3.90616540e+06, 3.87187342e+06, 3.93992048e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt1_pt200to300' : [ 5.18637111e+06, 4.75890352e+06, 4.39350383e+06, 4.25668370e+06, 3.90616540e+06, 3.60654240e+06, 3.55658111e+06, 3.26394315e+06, 3.01377891e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt1_pt200to300' : [ 5.18739196e+06, 3.01339547e+06, ], 'CountWeighted_rwgt1_ptGt300' : [ 1.83659603e+06, 1.83607427e+06, 1.83701973e+06, ], 'CountWeightedLHEWeightScale_rwgt1_ptGt300' : [ 2.46302501e+06, 2.22202286e+06, 2.02187201e+06, 2.03556708e+06, 1.83659603e+06, 1.67133699e+06, 1.71060647e+06, 1.54354356e+06, 1.40477292e+06, ], 'CountWeightedLHEEnvelope_rwgt1_ptGt300' : [ 2.46313802e+06, 1.40474120e+06, ], 'CountWeightedFull_rwgt1_ptGt300' : [ 1.83659603e+06, 1.83607427e+06, 1.83701973e+06, ], 'CountWeightedFullLHEWeightScale_rwgt1_ptGt300' : [ 2.46302501e+06, 2.22202286e+06, 2.02187201e+06, 2.03556708e+06, 1.83659603e+06, 1.67133699e+06, 1.71060647e+06, 1.54354356e+06, 1.40477292e+06, ], 'CountWeightedFullLHEEnvelope_rwgt1_ptGt300' : [ 2.46313802e+06, 1.40474120e+06, ], 'CountWeightedL1PrefireNom_rwgt1_ptGt300' : [ 1.77181280e+06, 1.77124394e+06, 1.77226529e+06, ], 'CountWeightedL1Prefire_rwgt1_ptGt300' : [ 1.77181280e+06, 1.75678832e+06, 1.78663118e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt1_ptGt300' : [ 2.37415375e+06, 2.14348686e+06, 1.95168246e+06, 1.96226618e+06, 1.77181280e+06, 1.61343186e+06, 1.64911019e+06, 1.48918766e+06, 1.35618427e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt1_ptGt300' : [ 2.37426466e+06, 1.35615336e+06, ], 'CountWeightedFullL1PrefireNom_rwgt1_ptGt300' : [ 1.77181280e+06, 1.77124394e+06, 1.77226529e+06, ], 'CountWeightedFullL1Prefire_rwgt1_ptGt300' : [ 1.77181280e+06, 1.75678832e+06, 1.78663118e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt1_ptGt300' : [ 2.37415375e+06, 2.14348686e+06, 1.95168246e+06, 1.96226618e+06, 1.77181280e+06, 1.61343186e+06, 1.64911019e+06, 1.48918766e+06, 1.35618427e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt1_ptGt300' : [ 2.37426466e+06, 1.35615336e+06, ], 'CountWeighted_rwgt1_pt300to450' : [ 1.44485687e+06, 1.44421213e+06, 1.44540714e+06, ], 'CountWeightedLHEWeightScale_rwgt1_pt300to450' : [ 1.93409631e+06, 1.75086023e+06, 1.59789221e+06, 1.59586664e+06, 1.44485687e+06, 1.31877840e+06, 1.33928967e+06, 1.21268657e+06, 1.10697363e+06, ], 'CountWeightedLHEEnvelope_rwgt1_pt300to450' : [ 1.93420657e+06, 1.10694281e+06, ], 'CountWeightedFull_rwgt1_pt300to450' : [ 1.44485687e+06, 1.44421213e+06, 1.44540714e+06, ], 'CountWeightedFullLHEWeightScale_rwgt1_pt300to450' : [ 1.93409631e+06, 1.75086023e+06, 1.59789221e+06, 1.59586664e+06, 1.44485687e+06, 1.31877840e+06, 1.33928967e+06, 1.21268657e+06, 1.10697363e+06, ], 'CountWeightedFullLHEEnvelope_rwgt1_pt300to450' : [ 1.93420657e+06, 1.10694281e+06, ], 'CountWeightedL1PrefireNom_rwgt1_pt300to450' : [ 1.39255919e+06, 1.39187884e+06, 1.39312551e+06, ], 'CountWeightedL1Prefire_rwgt1_pt300to450' : [ 1.39255919e+06, 1.38042362e+06, 1.40453126e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt1_pt300to450' : [ 1.86258041e+06, 1.68738790e+06, 1.54095210e+06, 1.53694919e+06, 1.39255919e+06, 1.27185696e+06, 1.28990896e+06, 1.16884892e+06, 1.06763873e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt1_pt300to450' : [ 1.86268857e+06, 1.06760870e+06, ], 'CountWeightedFullL1PrefireNom_rwgt1_pt300to450' : [ 1.39255919e+06, 1.39187884e+06, 1.39312551e+06, ], 'CountWeightedFullL1Prefire_rwgt1_pt300to450' : [ 1.39255919e+06, 1.38042362e+06, 1.40453126e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt1_pt300to450' : [ 1.86258041e+06, 1.68738790e+06, 1.54095210e+06, 1.53694919e+06, 1.39255919e+06, 1.27185696e+06, 1.28990896e+06, 1.16884892e+06, 1.06763873e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt1_pt300to450' : [ 1.86268857e+06, 1.06760870e+06, ], 'CountWeighted_rwgt1_ptGt450' : [ 3.91739328e+05, 3.91864436e+05, 3.91612986e+05, ], 'CountWeightedLHEWeightScale_rwgt1_ptGt450' : [ 5.28928590e+05, 4.71162727e+05, 4.23979829e+05, 4.39700581e+05, 3.91739328e+05, 3.52558468e+05, 3.71316778e+05, 3.30857031e+05, 2.97799220e+05, ], 'CountWeightedLHEEnvelope_rwgt1_ptGt450' : [ 5.28931370e+05, 2.97798309e+05, ], 'CountWeightedFull_rwgt1_ptGt450' : [ 3.91739328e+05, 3.91864436e+05, 3.91612986e+05, ], 'CountWeightedFullLHEWeightScale_rwgt1_ptGt450' : [ 5.28928590e+05, 4.71162727e+05, 4.23979829e+05, 4.39700581e+05, 3.91739328e+05, 3.52558468e+05, 3.71316778e+05, 3.30857031e+05, 2.97799220e+05, ], 'CountWeightedFullLHEEnvelope_rwgt1_ptGt450' : [ 5.28931370e+05, 2.97798309e+05, ], 'CountWeightedL1PrefireNom_rwgt1_ptGt450' : [ 3.79253437e+05, 3.79366261e+05, 3.79140058e+05, ], 'CountWeightedL1Prefire_rwgt1_ptGt450' : [ 3.79253437e+05, 3.76364549e+05, 3.82099944e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt1_ptGt450' : [ 5.11573271e+05, 4.56099132e+05, 4.10730214e+05, 4.25316983e+05, 3.79253437e+05, 3.41574765e+05, 3.59201245e+05, 3.20338704e+05, 2.88545495e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt1_ptGt450' : [ 5.11575975e+05, 2.88544616e+05, ], 'CountWeightedFullL1PrefireNom_rwgt1_ptGt450' : [ 3.79253437e+05, 3.79366261e+05, 3.79140058e+05, ], 'CountWeightedFullL1Prefire_rwgt1_ptGt450' : [ 3.79253437e+05, 3.76364549e+05, 3.82099944e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt1_ptGt450' : [ 5.11573271e+05, 4.56099132e+05, 4.10730214e+05, 4.25316983e+05, 3.79253437e+05, 3.41574765e+05, 3.59201245e+05, 3.20338704e+05, 2.88545495e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt1_ptGt450' : [ 5.11575975e+05, 2.88544616e+05, ], 'CountWeighted_rwgt2' : [ 2.16406378e+07, 2.16399811e+07, 2.16399367e+07, ], 'CountWeightedLHEWeightScale_rwgt2' : [ 2.84983910e+07, 2.64880030e+07, 2.47191977e+07, 2.32834500e+07, 2.16406378e+07, 2.01951306e+07, 1.93810796e+07, 1.80130978e+07, 1.68099107e+07, ], 'CountWeightedLHEEnvelope_rwgt2' : [ 2.85143442e+07, 1.68035901e+07, ], 'CountWeightedFull_rwgt2' : [ 2.16406378e+07, 2.16399811e+07, 2.16399367e+07, ], 'CountWeightedFullLHEWeightScale_rwgt2' : [ 2.84983910e+07, 2.64880030e+07, 2.47191977e+07, 2.32834500e+07, 2.16406378e+07, 2.01951306e+07, 1.93810796e+07, 1.80130978e+07, 1.68099107e+07, ], 'CountWeightedFullLHEEnvelope_rwgt2' : [ 2.85143442e+07, 1.68035901e+07, ], 'CountWeightedL1PrefireNom_rwgt2' : [ 2.09377992e+07, 2.09364370e+07, 2.09383650e+07, ], 'CountWeightedL1Prefire_rwgt2' : [ 2.09377992e+07, 2.07658725e+07, 2.11052485e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt2' : [ 2.75599854e+07, 2.56284912e+07, 2.39267886e+07, 2.25161355e+07, 2.09377992e+07, 1.95472053e+07, 1.87419476e+07, 1.74277440e+07, 1.62702289e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt2' : [ 2.75757651e+07, 1.62639725e+07, ], 'CountWeightedFullL1PrefireNom_rwgt2' : [ 2.09377992e+07, 2.09364370e+07, 2.09383650e+07, ], 'CountWeightedFullL1Prefire_rwgt2' : [ 2.09377992e+07, 2.07658725e+07, 2.11052485e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt2' : [ 2.75599854e+07, 2.56284912e+07, 2.39267886e+07, 2.25161355e+07, 2.09377992e+07, 1.95472053e+07, 1.87419476e+07, 1.74277440e+07, 1.62702289e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt2' : [ 2.75757651e+07, 1.62639725e+07, ], 'CountWeighted_rwgt2_fwd' : [ 3.21031858e+05, 3.21127853e+05, 3.20928644e+05, ], 'CountWeightedLHEWeightScale_rwgt2_fwd' : [ 4.25659245e+05, 3.93287337e+05, 3.65771580e+05, 3.47426078e+05, 3.21031858e+05, 2.98592799e+05, 2.88953480e+05, 2.67020347e+05, 2.48370481e+05, ], 'CountWeightedLHEEnvelope_rwgt2_fwd' : [ 4.25720571e+05, 2.48344098e+05, ], 'CountWeightedFull_rwgt2_fwd' : [ 3.21031858e+05, 3.21127853e+05, 3.20928644e+05, ], 'CountWeightedFullLHEWeightScale_rwgt2_fwd' : [ 4.25659245e+05, 3.93287337e+05, 3.65771580e+05, 3.47426078e+05, 3.21031858e+05, 2.98592799e+05, 2.88953480e+05, 2.67020347e+05, 2.48370481e+05, ], 'CountWeightedFullLHEEnvelope_rwgt2_fwd' : [ 4.25720571e+05, 2.48344098e+05, ], 'CountWeightedL1PrefireNom_rwgt2_fwd' : [ 2.75935820e+05, 2.75921247e+05, 2.75952112e+05, ], 'CountWeightedL1Prefire_rwgt2_fwd' : [ 2.75935820e+05, 2.65948916e+05, 2.86021829e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt2_fwd' : [ 3.65743353e+05, 3.38133878e+05, 3.14647277e+05, 2.98439116e+05, 2.75935820e+05, 2.56788967e+05, 2.48154138e+05, 2.29459434e+05, 2.13550436e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt2_fwd' : [ 3.65796929e+05, 2.13527506e+05, ], 'CountWeightedFullL1PrefireNom_rwgt2_fwd' : [ 2.75935820e+05, 2.75921247e+05, 2.75952112e+05, ], 'CountWeightedFullL1Prefire_rwgt2_fwd' : [ 2.75935820e+05, 2.65948916e+05, 2.86021829e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt2_fwd' : [ 3.65743353e+05, 3.38133878e+05, 3.14647277e+05, 2.98439116e+05, 2.75935820e+05, 2.56788967e+05, 2.48154138e+05, 2.29459434e+05, 2.13550436e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt2_fwd' : [ 3.65796929e+05, 2.13527506e+05, ], 'CountWeighted_rwgt2_pt0to60' : [ 4.81838723e+06, 4.81882625e+06, 4.81813353e+06, ], 'CountWeightedLHEWeightScale_rwgt2_pt0to60' : [ 6.29650069e+06, 5.90665932e+06, 5.55489490e+06, 5.13675904e+06, 4.81838723e+06, 4.53120612e+06, 4.27058474e+06, 4.00568601e+06, 3.76676263e+06, ], 'CountWeightedLHEEnvelope_rwgt2_pt0to60' : [ 6.30231054e+06, 3.76447478e+06, ], 'CountWeightedFull_rwgt2_pt0to60' : [ 4.81838723e+06, 4.81882625e+06, 4.81813353e+06, ], 'CountWeightedFullLHEWeightScale_rwgt2_pt0to60' : [ 6.29650069e+06, 5.90665932e+06, 5.55489490e+06, 5.13675904e+06, 4.81838723e+06, 4.53120612e+06, 4.27058474e+06, 4.00568601e+06, 3.76676263e+06, ], 'CountWeightedFullLHEEnvelope_rwgt2_pt0to60' : [ 6.30231054e+06, 3.76447478e+06, ], 'CountWeightedL1PrefireNom_rwgt2_pt0to60' : [ 4.68798764e+06, 4.68818417e+06, 4.68796091e+06, ], 'CountWeightedL1Prefire_rwgt2_pt0to60' : [ 4.68798764e+06, 4.65466900e+06, 4.71996964e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt2_pt0to60' : [ 6.12398264e+06, 5.74697801e+06, 5.40639396e+06, 4.99586505e+06, 4.68798764e+06, 4.40994481e+06, 4.15334508e+06, 3.89718488e+06, 3.66587072e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt2_pt0to60' : [ 6.12973509e+06, 3.66360294e+06, ], 'CountWeightedFullL1PrefireNom_rwgt2_pt0to60' : [ 4.68798764e+06, 4.68818417e+06, 4.68796091e+06, ], 'CountWeightedFullL1Prefire_rwgt2_pt0to60' : [ 4.68798764e+06, 4.65466900e+06, 4.71996964e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt2_pt0to60' : [ 6.12398264e+06, 5.74697801e+06, 5.40639396e+06, 4.99586505e+06, 4.68798764e+06, 4.40994481e+06, 4.15334508e+06, 3.89718488e+06, 3.66587072e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt2_pt0to60' : [ 6.12973509e+06, 3.66360294e+06, ], 'CountWeighted_rwgt2_pt60to120' : [ 7.64353193e+06, 7.64397149e+06, 7.64289926e+06, ], 'CountWeightedLHEWeightScale_rwgt2_pt60to120' : [ 1.00400949e+07, 9.37538594e+06, 8.78215896e+06, 8.18550117e+06, 7.64353193e+06, 7.15986278e+06, 6.80167096e+06, 6.35124092e+06, 5.94936522e+06, ], 'CountWeightedLHEEnvelope_rwgt2_pt60to120' : [ 1.00467243e+07, 5.94674446e+06, ], 'CountWeightedFull_rwgt2_pt60to120' : [ 7.64353193e+06, 7.64397149e+06, 7.64289926e+06, ], 'CountWeightedFullLHEWeightScale_rwgt2_pt60to120' : [ 1.00400949e+07, 9.37538594e+06, 8.78215896e+06, 8.18550117e+06, 7.64353193e+06, 7.15986278e+06, 6.80167096e+06, 6.35124092e+06, 5.94936522e+06, ], 'CountWeightedFullLHEEnvelope_rwgt2_pt60to120' : [ 1.00467243e+07, 5.94674446e+06, ], 'CountWeightedL1PrefireNom_rwgt2_pt60to120' : [ 7.41851710e+06, 7.41864543e+06, 7.41834768e+06, ], 'CountWeightedL1Prefire_rwgt2_pt60to120' : [ 7.41851710e+06, 7.36226584e+06, 7.47296442e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt2_pt60to120' : [ 9.74092317e+06, 9.09972862e+06, 8.52678490e+06, 7.94131240e+06, 7.41851710e+06, 6.95142780e+06, 6.59857313e+06, 6.16411433e+06, 5.77601115e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt2_pt60to120' : [ 9.74748449e+06, 5.77341489e+06, ], 'CountWeightedFullL1PrefireNom_rwgt2_pt60to120' : [ 7.41851710e+06, 7.41864543e+06, 7.41834768e+06, ], 'CountWeightedFullL1Prefire_rwgt2_pt60to120' : [ 7.41851710e+06, 7.36226584e+06, 7.47296442e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt2_pt60to120' : [ 9.74092317e+06, 9.09972862e+06, 8.52678490e+06, 7.94131240e+06, 7.41851710e+06, 6.95142780e+06, 6.59857313e+06, 6.16411433e+06, 5.77601115e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt2_pt60to120' : [ 9.74748449e+06, 5.77341489e+06, ], 'CountWeighted_rwgt2_pt120to200' : [ 5.54542275e+06, 5.54551129e+06, 5.54541465e+06, ], 'CountWeightedLHEWeightScale_rwgt2_pt120to200' : [ 7.32283999e+06, 6.78619070e+06, 6.31690761e+06, 5.98372766e+06, 5.54542275e+06, 5.16218576e+06, 4.98141037e+06, 4.61668047e+06, 4.29777114e+06, ], 'CountWeightedLHEEnvelope_rwgt2_pt120to200' : [ 7.32564126e+06, 4.29662602e+06, ], 'CountWeightedFull_rwgt2_pt120to200' : [ 5.54542275e+06, 5.54551129e+06, 5.54541465e+06, ], 'CountWeightedFullLHEWeightScale_rwgt2_pt120to200' : [ 7.32283999e+06, 6.78619070e+06, 6.31690761e+06, 5.98372766e+06, 5.54542275e+06, 5.16218576e+06, 4.98141037e+06, 4.61668047e+06, 4.29777114e+06, ], 'CountWeightedFullLHEEnvelope_rwgt2_pt120to200' : [ 7.32564126e+06, 4.29662602e+06, ], 'CountWeightedL1PrefireNom_rwgt2_pt120to200' : [ 5.36136683e+06, 5.36121651e+06, 5.36156612e+06, ], 'CountWeightedL1Prefire_rwgt2_pt120to200' : [ 5.36136683e+06, 5.31676556e+06, 5.40497018e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt2_pt120to200' : [ 7.07653082e+06, 6.56107169e+06, 6.10976394e+06, 5.78235789e+06, 5.36136683e+06, 4.99281934e+06, 4.81370382e+06, 4.46338854e+06, 4.15670560e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt2_pt120to200' : [ 7.07930172e+06, 4.15557225e+06, ], 'CountWeightedFullL1PrefireNom_rwgt2_pt120to200' : [ 5.36136683e+06, 5.36121651e+06, 5.36156612e+06, ], 'CountWeightedFullL1Prefire_rwgt2_pt120to200' : [ 5.36136683e+06, 5.31676556e+06, 5.40497018e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt2_pt120to200' : [ 7.07653082e+06, 6.56107169e+06, 6.10976394e+06, 5.78235789e+06, 5.36136683e+06, 4.99281934e+06, 4.81370382e+06, 4.46338854e+06, 4.15670560e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt2_pt120to200' : [ 7.07930172e+06, 4.15557225e+06, ], 'CountWeighted_rwgt2_pt200to300' : [ 2.27903322e+06, 2.27859770e+06, 2.27960623e+06, ], 'CountWeightedLHEWeightScale_rwgt2_pt200to300' : [ 3.02783225e+06, 2.77660882e+06, 2.56212623e+06, 2.48503278e+06, 2.27903322e+06, 2.10316699e+06, 2.07628646e+06, 1.90430948e+06, 1.75747155e+06, ], 'CountWeightedLHEEnvelope_rwgt2_pt200to300' : [ 3.02841319e+06, 1.75725318e+06, ], 'CountWeightedFull_rwgt2_pt200to300' : [ 2.27903322e+06, 2.27859770e+06, 2.27960623e+06, ], 'CountWeightedFullLHEWeightScale_rwgt2_pt200to300' : [ 3.02783225e+06, 2.77660882e+06, 2.56212623e+06, 2.48503278e+06, 2.27903322e+06, 2.10316699e+06, 2.07628646e+06, 1.90430948e+06, 1.75747155e+06, ], 'CountWeightedFullLHEEnvelope_rwgt2_pt200to300' : [ 3.02841319e+06, 1.75725318e+06, ], 'CountWeightedL1PrefireNom_rwgt2_pt200to300' : [ 2.19721832e+06, 2.19673899e+06, 2.19782014e+06, ], 'CountWeightedL1Prefire_rwgt2_pt200to300' : [ 2.19721832e+06, 2.17792908e+06, 2.21620400e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt2_pt200to300' : [ 2.91733379e+06, 2.67688282e+06, 2.47134619e+06, 2.39438430e+06, 2.19721832e+06, 2.02868050e+06, 2.00057697e+06, 1.83596836e+06, 1.69525043e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt2_pt200to300' : [ 2.91790796e+06, 1.69503474e+06, ], 'CountWeightedFullL1PrefireNom_rwgt2_pt200to300' : [ 2.19721832e+06, 2.19673899e+06, 2.19782014e+06, ], 'CountWeightedFullL1Prefire_rwgt2_pt200to300' : [ 2.19721832e+06, 2.17792908e+06, 2.21620400e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt2_pt200to300' : [ 2.91733379e+06, 2.67688282e+06, 2.47134619e+06, 2.39438430e+06, 2.19721832e+06, 2.02868050e+06, 2.00057697e+06, 1.83596836e+06, 1.69525043e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt2_pt200to300' : [ 2.91790796e+06, 1.69503474e+06, ], 'CountWeighted_rwgt2_ptGt300' : [ 1.03308814e+06, 1.03279190e+06, 1.03332668e+06, ], 'CountWeightedLHEWeightScale_rwgt2_ptGt300' : [ 1.38545133e+06, 1.24988800e+06, 1.13730292e+06, 1.14500655e+06, 1.03308814e+06, 9.40126823e+05, 9.62216247e+05, 8.68243500e+05, 7.90184703e+05, ], 'CountWeightedLHEEnvelope_rwgt2_ptGt300' : [ 1.38551491e+06, 7.90166859e+05, ], 'CountWeightedFull_rwgt2_ptGt300' : [ 1.03308814e+06, 1.03279190e+06, 1.03332668e+06, ], 'CountWeightedFullLHEWeightScale_rwgt2_ptGt300' : [ 1.38545133e+06, 1.24988800e+06, 1.13730292e+06, 1.14500655e+06, 1.03308814e+06, 9.40126823e+05, 9.62216247e+05, 8.68243500e+05, 7.90184703e+05, ], 'CountWeightedFullLHEEnvelope_rwgt2_ptGt300' : [ 1.38551491e+06, 7.90166859e+05, ], 'CountWeightedL1PrefireNom_rwgt2_ptGt300' : [ 9.96646272e+05, 9.96324716e+05, 9.96901077e+05, ], 'CountWeightedL1Prefire_rwgt2_ptGt300' : [ 9.96646272e+05, 9.88194920e+05, 1.00498183e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt2_ptGt300' : [ 1.33546133e+06, 1.20571155e+06, 1.09782124e+06, 1.10377471e+06, 9.96646272e+05, 9.07555296e+05, 9.27624533e+05, 8.37668222e+05, 7.62853600e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt2_ptGt300' : [ 1.33552372e+06, 7.62836205e+05, ], 'CountWeightedFullL1PrefireNom_rwgt2_ptGt300' : [ 9.96646272e+05, 9.96324716e+05, 9.96901077e+05, ], 'CountWeightedFullL1Prefire_rwgt2_ptGt300' : [ 9.96646272e+05, 9.88194920e+05, 1.00498183e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt2_ptGt300' : [ 1.33546133e+06, 1.20571155e+06, 1.09782124e+06, 1.10377471e+06, 9.96646272e+05, 9.07555296e+05, 9.27624533e+05, 8.37668222e+05, 7.62853600e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt2_ptGt300' : [ 1.33552372e+06, 7.62836205e+05, ], 'CountWeighted_rwgt2_pt300to450' : [ 8.12733195e+05, 8.12368780e+05, 8.13043565e+05, ], 'CountWeightedLHEWeightScale_rwgt2_pt300to450' : [ 1.08792908e+06, 9.84859004e+05, 8.98814227e+05, 8.97674928e+05, 8.12733195e+05, 7.41812806e+05, 7.53350499e+05, 6.82136394e+05, 6.22672604e+05, ], 'CountWeightedLHEEnvelope_rwgt2_pt300to450' : [ 1.08799111e+06, 6.22655269e+05, ], 'CountWeightedFull_rwgt2_pt300to450' : [ 8.12733195e+05, 8.12368780e+05, 8.13043565e+05, ], 'CountWeightedFullLHEWeightScale_rwgt2_pt300to450' : [ 1.08792908e+06, 9.84859004e+05, 8.98814227e+05, 8.97674928e+05, 8.12733195e+05, 7.41812806e+05, 7.53350499e+05, 6.82136394e+05, 6.22672604e+05, ], 'CountWeightedFullLHEEnvelope_rwgt2_pt300to450' : [ 1.08799111e+06, 6.22655269e+05, ], 'CountWeightedL1PrefireNom_rwgt2_pt300to450' : [ 7.83315228e+05, 7.82931634e+05, 7.83634294e+05, ], 'CountWeightedL1Prefire_rwgt2_pt300to450' : [ 7.83315228e+05, 7.76488868e+05, 7.90049523e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt2_pt300to450' : [ 1.04770142e+06, 9.49155771e+05, 8.66785544e+05, 8.64533848e+05, 7.83315228e+05, 7.15419536e+05, 7.25573839e+05, 6.57477665e+05, 6.00546742e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt2_pt300to450' : [ 1.04776228e+06, 6.00529846e+05, ], 'CountWeightedFullL1PrefireNom_rwgt2_pt300to450' : [ 7.83315228e+05, 7.82931634e+05, 7.83634294e+05, ], 'CountWeightedFullL1Prefire_rwgt2_pt300to450' : [ 7.83315228e+05, 7.76488868e+05, 7.90049523e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt2_pt300to450' : [ 1.04770142e+06, 9.49155771e+05, 8.66785544e+05, 8.64533848e+05, 7.83315228e+05, 7.15419536e+05, 7.25573839e+05, 6.57477665e+05, 6.00546742e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt2_pt300to450' : [ 1.04776228e+06, 6.00529846e+05, ], 'CountWeighted_rwgt2_ptGt450' : [ 2.20353459e+05, 2.20423536e+05, 2.20282482e+05, ], 'CountWeightedLHEWeightScale_rwgt2_ptGt450' : [ 2.97522327e+05, 2.65029043e+05, 2.38488661e+05, 2.47331577e+05, 2.20353459e+05, 1.98314145e+05, 2.08865696e+05, 1.86107093e+05, 1.67512052e+05, ], 'CountWeightedLHEEnvelope_rwgt2_ptGt450' : [ 2.97523892e+05, 1.67511540e+05, ], 'CountWeightedFull_rwgt2_ptGt450' : [ 2.20353459e+05, 2.20423536e+05, 2.20282482e+05, ], 'CountWeightedFullLHEWeightScale_rwgt2_ptGt450' : [ 2.97522327e+05, 2.65029043e+05, 2.38488661e+05, 2.47331577e+05, 2.20353459e+05, 1.98314145e+05, 2.08865696e+05, 1.86107093e+05, 1.67512052e+05, ], 'CountWeightedFullLHEEnvelope_rwgt2_ptGt450' : [ 2.97523892e+05, 1.67511540e+05, ], 'CountWeightedL1PrefireNom_rwgt2_ptGt450' : [ 2.13330128e+05, 2.13393413e+05, 2.13266391e+05, ], 'CountWeightedL1Prefire_rwgt2_ptGt450' : [ 2.13330128e+05, 2.11705124e+05, 2.14931286e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt2_ptGt450' : [ 2.87759970e+05, 2.56555754e+05, 2.31035747e+05, 2.39240811e+05, 2.13330128e+05, 1.92135813e+05, 2.02050706e+05, 1.80190535e+05, 1.62306838e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt2_ptGt450' : [ 2.87761492e+05, 1.62306344e+05, ], 'CountWeightedFullL1PrefireNom_rwgt2_ptGt450' : [ 2.13330128e+05, 2.13393413e+05, 2.13266391e+05, ], 'CountWeightedFullL1Prefire_rwgt2_ptGt450' : [ 2.13330128e+05, 2.11705124e+05, 2.14931286e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt2_ptGt450' : [ 2.87759970e+05, 2.56555754e+05, 2.31035747e+05, 2.39240811e+05, 2.13330128e+05, 1.92135813e+05, 2.02050706e+05, 1.80190535e+05, 1.62306838e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt2_ptGt450' : [ 2.87761492e+05, 1.62306344e+05, ], 'CountWeighted_rwgt3' : [ 1.50288663e+07, 1.50277603e+07, 1.50282198e+07, ], 'CountWeightedLHEWeightScale_rwgt3' : [ 1.97905318e+07, 1.83943968e+07, 1.71661178e+07, 1.61690663e+07, 1.50288663e+07, 1.40244013e+07, 1.34591104e+07, 1.25092091e+07, 1.16735834e+07, ], 'CountWeightedLHEEnvelope_rwgt3' : [ 1.98016061e+07, 1.16691982e+07, ], 'CountWeightedFull_rwgt3' : [ 1.50288663e+07, 1.50277603e+07, 1.50282198e+07, ], 'CountWeightedFullLHEWeightScale_rwgt3' : [ 1.97905318e+07, 1.83943968e+07, 1.71661178e+07, 1.61690663e+07, 1.50288663e+07, 1.40244013e+07, 1.34591104e+07, 1.25092091e+07, 1.16735834e+07, ], 'CountWeightedFullLHEEnvelope_rwgt3' : [ 1.98016061e+07, 1.16691982e+07, ], 'CountWeightedL1PrefireNom_rwgt3' : [ 1.45404483e+07, 1.45392623e+07, 1.45408162e+07, ], 'CountWeightedL1Prefire_rwgt3' : [ 1.45404483e+07, 1.44210603e+07, 1.46567348e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt3' : [ 1.91388586e+07, 1.77975260e+07, 1.66158338e+07, 1.56362117e+07, 1.45404483e+07, 1.35744569e+07, 1.30152688e+07, 1.21026785e+07, 1.12988001e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt3' : [ 1.91498125e+07, 1.12944583e+07, ], 'CountWeightedFullL1PrefireNom_rwgt3' : [ 1.45404483e+07, 1.45392623e+07, 1.45408162e+07, ], 'CountWeightedFullL1Prefire_rwgt3' : [ 1.45404483e+07, 1.44210603e+07, 1.46567348e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt3' : [ 1.91388586e+07, 1.77975260e+07, 1.66158338e+07, 1.56362117e+07, 1.45404483e+07, 1.35744569e+07, 1.30152688e+07, 1.21026785e+07, 1.12988001e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt3' : [ 1.91498125e+07, 1.12944583e+07, ], 'CountWeighted_rwgt3_fwd' : [ 2.22938655e+05, 2.23005912e+05, 2.22867024e+05, ], 'CountWeightedLHEWeightScale_rwgt3_fwd' : [ 2.95596685e+05, 2.73116225e+05, 2.54008033e+05, 2.41268112e+05, 2.22938655e+05, 2.07356099e+05, 2.00662159e+05, 1.85430796e+05, 1.72479481e+05, ], 'CountWeightedLHEEnvelope_rwgt3_fwd' : [ 2.95639270e+05, 1.72461160e+05, ], 'CountWeightedFull_rwgt3_fwd' : [ 2.22938655e+05, 2.23005912e+05, 2.22867024e+05, ], 'CountWeightedFullLHEWeightScale_rwgt3_fwd' : [ 2.95596685e+05, 2.73116225e+05, 2.54008033e+05, 2.41268112e+05, 2.22938655e+05, 2.07356099e+05, 2.00662159e+05, 1.85430796e+05, 1.72479481e+05, ], 'CountWeightedFullLHEEnvelope_rwgt3_fwd' : [ 2.95639270e+05, 1.72461160e+05, ], 'CountWeightedL1PrefireNom_rwgt3_fwd' : [ 1.91622065e+05, 1.91612015e+05, 1.91633414e+05, ], 'CountWeightedL1Prefire_rwgt3_fwd' : [ 1.91622065e+05, 1.84686723e+05, 1.98626268e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt3_fwd' : [ 2.53988452e+05, 2.34815183e+05, 2.18505055e+05, 2.07249382e+05, 1.91622065e+05, 1.78325666e+05, 1.72329263e+05, 1.59346832e+05, 1.48298919e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt3_fwd' : [ 2.54025659e+05, 1.48282997e+05, ], 'CountWeightedFullL1PrefireNom_rwgt3_fwd' : [ 1.91622065e+05, 1.91612015e+05, 1.91633414e+05, ], 'CountWeightedFullL1Prefire_rwgt3_fwd' : [ 1.91622065e+05, 1.84686723e+05, 1.98626268e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt3_fwd' : [ 2.53988452e+05, 2.34815183e+05, 2.18505055e+05, 2.07249382e+05, 1.91622065e+05, 1.78325666e+05, 1.72329263e+05, 1.59346832e+05, 1.48298919e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt3_fwd' : [ 2.54025659e+05, 1.48282997e+05, ], 'CountWeighted_rwgt3_pt0to60' : [ 3.34613676e+06, 3.34630204e+06, 3.34592283e+06, ], 'CountWeightedLHEWeightScale_rwgt3_pt0to60' : [ 4.37256890e+06, 4.10184939e+06, 3.85756509e+06, 3.56719308e+06, 3.34613676e+06, 3.14667209e+06, 2.96568368e+06, 2.78172745e+06, 2.61580737e+06, ], 'CountWeightedLHEEnvelope_rwgt3_pt0to60' : [ 4.37660365e+06, 2.61421905e+06, ], 'CountWeightedFull_rwgt3_pt0to60' : [ 3.34613676e+06, 3.34630204e+06, 3.34592283e+06, ], 'CountWeightedFullLHEWeightScale_rwgt3_pt0to60' : [ 4.37256890e+06, 4.10184939e+06, 3.85756509e+06, 3.56719308e+06, 3.34613676e+06, 3.14667209e+06, 2.96568368e+06, 2.78172745e+06, 2.61580737e+06, ], 'CountWeightedFullLHEEnvelope_rwgt3_pt0to60' : [ 4.37660365e+06, 2.61421905e+06, ], 'CountWeightedL1PrefireNom_rwgt3_pt0to60' : [ 3.25557363e+06, 3.25562079e+06, 3.25552610e+06, ], 'CountWeightedL1Prefire_rwgt3_pt0to60' : [ 3.25557363e+06, 3.23242913e+06, 3.27778205e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt3_pt0to60' : [ 4.25276620e+06, 3.99095779e+06, 3.75443972e+06, 3.46935021e+06, 3.25557363e+06, 3.06246238e+06, 2.88426761e+06, 2.70637945e+06, 2.54574404e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt3_pt0to60' : [ 4.25676113e+06, 2.54416952e+06, ], 'CountWeightedFullL1PrefireNom_rwgt3_pt0to60' : [ 3.25557363e+06, 3.25562079e+06, 3.25552610e+06, ], 'CountWeightedFullL1Prefire_rwgt3_pt0to60' : [ 3.25557363e+06, 3.23242913e+06, 3.27778205e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt3_pt0to60' : [ 4.25276620e+06, 3.99095779e+06, 3.75443972e+06, 3.46935021e+06, 3.25557363e+06, 3.06246238e+06, 2.88426761e+06, 2.70637945e+06, 2.54574404e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt3_pt0to60' : [ 4.25676113e+06, 2.54416952e+06, ], 'CountWeighted_rwgt3_pt60to120' : [ 5.30798581e+06, 5.30828680e+06, 5.30757268e+06, ], 'CountWeightedLHEWeightScale_rwgt3_pt60to120' : [ 6.97229312e+06, 6.51068687e+06, 6.09872255e+06, 5.68437455e+06, 5.30798581e+06, 4.97212694e+06, 4.72338173e+06, 4.41058599e+06, 4.13150756e+06, ], 'CountWeightedLHEEnvelope_rwgt3_pt60to120' : [ 6.97689809e+06, 4.12968767e+06, ], 'CountWeightedFull_rwgt3_pt60to120' : [ 5.30798581e+06, 5.30828680e+06, 5.30757268e+06, ], 'CountWeightedFullLHEWeightScale_rwgt3_pt60to120' : [ 6.97229312e+06, 6.51068687e+06, 6.09872255e+06, 5.68437455e+06, 5.30798581e+06, 4.97212694e+06, 4.72338173e+06, 4.41058599e+06, 4.13150756e+06, ], 'CountWeightedFullLHEEnvelope_rwgt3_pt60to120' : [ 6.97689809e+06, 4.12968767e+06, ], 'CountWeightedL1PrefireNom_rwgt3_pt60to120' : [ 5.15174467e+06, 5.15179442e+06, 5.15163907e+06, ], 'CountWeightedL1Prefire_rwgt3_pt60to120' : [ 5.15174467e+06, 5.11266902e+06, 5.18955088e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt3_pt60to120' : [ 6.76453204e+06, 6.31925533e+06, 5.92138176e+06, 5.51479880e+06, 5.15174467e+06, 4.82738076e+06, 4.58234206e+06, 4.28063500e+06, 4.01112183e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt3_pt60to120' : [ 6.76909000e+06, 4.00931919e+06, ], 'CountWeightedFullL1PrefireNom_rwgt3_pt60to120' : [ 5.15174467e+06, 5.15179442e+06, 5.15163907e+06, ], 'CountWeightedFullL1Prefire_rwgt3_pt60to120' : [ 5.15174467e+06, 5.11266902e+06, 5.18955088e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt3_pt60to120' : [ 6.76453204e+06, 6.31925533e+06, 5.92138176e+06, 5.51479880e+06, 5.15174467e+06, 4.82738076e+06, 4.58234206e+06, 4.28063500e+06, 4.01112183e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt3_pt60to120' : [ 6.76909000e+06, 4.00931919e+06, ], 'CountWeighted_rwgt3_pt120to200' : [ 3.85101364e+06, 3.85090157e+06, 3.85097545e+06, ], 'CountWeightedLHEWeightScale_rwgt3_pt120to200' : [ 5.08530574e+06, 4.71262791e+06, 4.38674177e+06, 4.15536704e+06, 3.85101364e+06, 3.58485176e+06, 3.45931272e+06, 3.20603041e+06, 2.98456299e+06, ], 'CountWeightedLHEEnvelope_rwgt3_pt120to200' : [ 5.08725112e+06, 2.98376771e+06, ], 'CountWeightedFull_rwgt3_pt120to200' : [ 3.85101364e+06, 3.85090157e+06, 3.85097545e+06, ], 'CountWeightedFullLHEWeightScale_rwgt3_pt120to200' : [ 5.08530574e+06, 4.71262791e+06, 4.38674177e+06, 4.15536704e+06, 3.85101364e+06, 3.58485176e+06, 3.45931272e+06, 3.20603041e+06, 2.98456299e+06, ], 'CountWeightedFullLHEEnvelope_rwgt3_pt120to200' : [ 5.08725112e+06, 2.98376771e+06, ], 'CountWeightedL1PrefireNom_rwgt3_pt120to200' : [ 3.72319488e+06, 3.72297720e+06, 3.72330453e+06, ], 'CountWeightedL1Prefire_rwgt3_pt120to200' : [ 3.72319488e+06, 3.69221382e+06, 3.75347164e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt3_pt120to200' : [ 4.91425724e+06, 4.55629650e+06, 4.24289163e+06, 4.01552798e+06, 3.72319488e+06, 3.46723606e+06, 3.34284964e+06, 3.09957693e+06, 2.88660098e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt3_pt120to200' : [ 4.91618159e+06, 2.88581377e+06, ], 'CountWeightedFullL1PrefireNom_rwgt3_pt120to200' : [ 3.72319488e+06, 3.72297720e+06, 3.72330453e+06, ], 'CountWeightedFullL1Prefire_rwgt3_pt120to200' : [ 3.72319488e+06, 3.69221382e+06, 3.75347164e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt3_pt120to200' : [ 4.91425724e+06, 4.55629650e+06, 4.24289163e+06, 4.01552798e+06, 3.72319488e+06, 3.46723606e+06, 3.34284964e+06, 3.09957693e+06, 2.88660098e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt3_pt120to200' : [ 4.91618159e+06, 2.88581377e+06, ], 'CountWeighted_rwgt3_pt200to300' : [ 1.58266032e+06, 1.58233729e+06, 1.58305715e+06, ], 'CountWeightedLHEWeightScale_rwgt3_pt200to300' : [ 2.10266105e+06, 1.92820040e+06, 1.77925449e+06, 1.72571729e+06, 1.58266032e+06, 1.46053253e+06, 1.44186565e+06, 1.32243705e+06, 1.22046639e+06, ], 'CountWeightedLHEEnvelope_rwgt3_pt200to300' : [ 2.10306456e+06, 1.22031476e+06, ], 'CountWeightedFull_rwgt3_pt200to300' : [ 1.58266032e+06, 1.58233729e+06, 1.58305715e+06, ], 'CountWeightedFullLHEWeightScale_rwgt3_pt200to300' : [ 2.10266105e+06, 1.92820040e+06, 1.77925449e+06, 1.72571729e+06, 1.58266032e+06, 1.46053253e+06, 1.44186565e+06, 1.32243705e+06, 1.22046639e+06, ], 'CountWeightedFullLHEEnvelope_rwgt3_pt200to300' : [ 2.10306456e+06, 1.22031476e+06, ], 'CountWeightedL1PrefireNom_rwgt3_pt200to300' : [ 1.52584361e+06, 1.52550037e+06, 1.52626154e+06, ], 'CountWeightedL1Prefire_rwgt3_pt200to300' : [ 1.52584361e+06, 1.51244857e+06, 1.53902887e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt3_pt200to300' : [ 2.02592587e+06, 1.85894624e+06, 1.71621257e+06, 1.66276694e+06, 1.52584361e+06, 1.40880572e+06, 1.38928949e+06, 1.27497819e+06, 1.17725732e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt3_pt200to300' : [ 2.02632460e+06, 1.17710754e+06, ], 'CountWeightedFullL1PrefireNom_rwgt3_pt200to300' : [ 1.52584361e+06, 1.52550037e+06, 1.52626154e+06, ], 'CountWeightedFullL1Prefire_rwgt3_pt200to300' : [ 1.52584361e+06, 1.51244857e+06, 1.53902887e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt3_pt200to300' : [ 2.02592587e+06, 1.85894624e+06, 1.71621257e+06, 1.66276694e+06, 1.52584361e+06, 1.40880572e+06, 1.38928949e+06, 1.27497819e+06, 1.17725732e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt3_pt200to300' : [ 2.02632460e+06, 1.17710754e+06, ], 'CountWeighted_rwgt3_ptGt300' : [ 7.17418076e+05, 7.17224090e+05, 7.17586783e+05, ], 'CountWeightedLHEWeightScale_rwgt3_ptGt300' : [ 9.62118987e+05, 8.67977827e+05, 7.89793763e+05, 7.95143471e+05, 7.17418076e+05, 6.52865998e+05, 6.68205644e+05, 6.02946861e+05, 5.48739369e+05, ], 'CountWeightedLHEEnvelope_rwgt3_ptGt300' : [ 9.62163145e+05, 5.48726974e+05, ], 'CountWeightedFull_rwgt3_ptGt300' : [ 7.17418076e+05, 7.17224090e+05, 7.17586783e+05, ], 'CountWeightedFullLHEWeightScale_rwgt3_ptGt300' : [ 9.62118987e+05, 8.67977827e+05, 7.89793763e+05, 7.95143471e+05, 7.17418076e+05, 6.52865998e+05, 6.68205644e+05, 6.02946861e+05, 5.48739369e+05, ], 'CountWeightedFullLHEEnvelope_rwgt3_ptGt300' : [ 9.62163145e+05, 5.48726974e+05, ], 'CountWeightedL1PrefireNom_rwgt3_ptGt300' : [ 6.92112885e+05, 6.91896851e+05, 6.92291597e+05, ], 'CountWeightedL1Prefire_rwgt3_ptGt300' : [ 6.92112885e+05, 6.86244216e+05, 6.97901401e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt3_ptGt300' : [ 9.27403676e+05, 8.37299678e+05, 7.62375906e+05, 7.66510314e+05, 6.92112885e+05, 6.30246835e+05, 6.44183638e+05, 5.81714075e+05, 5.29759429e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt3_ptGt300' : [ 9.27446994e+05, 5.29747357e+05, ], 'CountWeightedFullL1PrefireNom_rwgt3_ptGt300' : [ 6.92112885e+05, 6.91896851e+05, 6.92291597e+05, ], 'CountWeightedFullL1Prefire_rwgt3_ptGt300' : [ 6.92112885e+05, 6.86244216e+05, 6.97901401e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt3_ptGt300' : [ 9.27403676e+05, 8.37299678e+05, 7.62375906e+05, 7.66510314e+05, 6.92112885e+05, 6.30246835e+05, 6.44183638e+05, 5.81714075e+05, 5.29759429e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt3_ptGt300' : [ 9.27446994e+05, 5.29747357e+05, ], 'CountWeighted_rwgt3_pt300to450' : [ 5.64396088e+05, 5.64148761e+05, 5.64612971e+05, ], 'CountWeightedLHEWeightScale_rwgt3_pt300to450' : [ 7.55506360e+05, 6.83929849e+05, 6.24176627e+05, 6.23385397e+05, 5.64396088e+05, 5.15147852e+05, 5.23160064e+05, 4.73705789e+05, 4.32411526e+05, ], 'CountWeightedLHEEnvelope_rwgt3_pt300to450' : [ 7.55549420e+05, 4.32399496e+05, ], 'CountWeightedFull_rwgt3_pt300to450' : [ 5.64396088e+05, 5.64148761e+05, 5.64612971e+05, ], 'CountWeightedFullLHEWeightScale_rwgt3_pt300to450' : [ 7.55506360e+05, 6.83929849e+05, 6.24176627e+05, 6.23385397e+05, 5.64396088e+05, 5.15147852e+05, 5.23160064e+05, 4.73705789e+05, 4.32411526e+05, ], 'CountWeightedFullLHEEnvelope_rwgt3_pt300to450' : [ 7.55549420e+05, 4.32399496e+05, ], 'CountWeightedL1PrefireNom_rwgt3_pt300to450' : [ 5.43967794e+05, 5.43704693e+05, 5.44190048e+05, ], 'CountWeightedL1Prefire_rwgt3_pt300to450' : [ 5.43967794e+05, 5.39227442e+05, 5.48644351e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt3_pt300to450' : [ 7.27570469e+05, 6.59135951e+05, 6.01934415e+05, 6.00370802e+05, 5.43967794e+05, 4.96819181e+05, 5.03870695e+05, 4.56581684e+05, 4.17046351e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt3_pt300to450' : [ 7.27612722e+05, 4.17034627e+05, ], 'CountWeightedFullL1PrefireNom_rwgt3_pt300to450' : [ 5.43967794e+05, 5.43704693e+05, 5.44190048e+05, ], 'CountWeightedFullL1Prefire_rwgt3_pt300to450' : [ 5.43967794e+05, 5.39227442e+05, 5.48644351e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt3_pt300to450' : [ 7.27570469e+05, 6.59135951e+05, 6.01934415e+05, 6.00370802e+05, 5.43967794e+05, 4.96819181e+05, 5.03870695e+05, 4.56581684e+05, 4.17046351e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt3_pt300to450' : [ 7.27612722e+05, 4.17034627e+05, ], 'CountWeighted_rwgt3_ptGt450' : [ 1.53023133e+05, 1.53071989e+05, 1.52973938e+05, ], 'CountWeightedLHEWeightScale_rwgt3_ptGt450' : [ 2.06612725e+05, 1.84047953e+05, 1.65617122e+05, 1.71758049e+05, 1.53023133e+05, 1.37718147e+05, 1.45045616e+05, 1.29241037e+05, 1.16327817e+05, ], 'CountWeightedLHEEnvelope_rwgt3_ptGt450' : [ 2.06613811e+05, 1.16327461e+05, ], 'CountWeightedFull_rwgt3_ptGt450' : [ 1.53023133e+05, 1.53071989e+05, 1.52973938e+05, ], 'CountWeightedFullLHEWeightScale_rwgt3_ptGt450' : [ 2.06612725e+05, 1.84047953e+05, 1.65617122e+05, 1.71758049e+05, 1.53023133e+05, 1.37718147e+05, 1.45045616e+05, 1.29241037e+05, 1.16327817e+05, ], 'CountWeightedFullLHEEnvelope_rwgt3_ptGt450' : [ 2.06613811e+05, 1.16327461e+05, ], 'CountWeightedL1PrefireNom_rwgt3_ptGt450' : [ 1.48145857e+05, 1.48189912e+05, 1.48101665e+05, ], 'CountWeightedL1Prefire_rwgt3_ptGt450' : [ 1.48145857e+05, 1.47017380e+05, 1.49257770e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt3_ptGt450' : [ 1.99833309e+05, 1.78163724e+05, 1.60441494e+05, 1.66139457e+05, 1.48145857e+05, 1.33427642e+05, 1.40312986e+05, 1.25132317e+05, 1.12713079e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt3_ptGt450' : [ 1.99834367e+05, 1.12712736e+05, ], 'CountWeightedFullL1PrefireNom_rwgt3_ptGt450' : [ 1.48145857e+05, 1.48189912e+05, 1.48101665e+05, ], 'CountWeightedFullL1Prefire_rwgt3_ptGt450' : [ 1.48145857e+05, 1.47017380e+05, 1.49257770e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt3_ptGt450' : [ 1.99833309e+05, 1.78163724e+05, 1.60441494e+05, 1.66139457e+05, 1.48145857e+05, 1.33427642e+05, 1.40312986e+05, 1.25132317e+05, 1.12713079e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt3_ptGt450' : [ 1.99834367e+05, 1.12712736e+05, ], 'CountWeighted_rwgt4' : [ 5.41015944e+06, 5.40999528e+06, 5.40998417e+06, ], 'CountWeightedLHEWeightScale_rwgt4' : [ 7.12459776e+06, 6.62200076e+06, 6.17979942e+06, 5.82086249e+06, 5.41015944e+06, 5.04878265e+06, 4.84526990e+06, 4.50327444e+06, 4.20247767e+06, ], 'CountWeightedLHEEnvelope_rwgt4' : [ 7.12858605e+06, 4.20089753e+06, ], 'CountWeightedFull_rwgt4' : [ 5.41015944e+06, 5.40999528e+06, 5.40998417e+06, ], 'CountWeightedFullLHEWeightScale_rwgt4' : [ 7.12459776e+06, 6.62200076e+06, 6.17979942e+06, 5.82086249e+06, 5.41015944e+06, 5.04878265e+06, 4.84526990e+06, 4.50327444e+06, 4.20247767e+06, ], 'CountWeightedFullLHEEnvelope_rwgt4' : [ 7.12858605e+06, 4.20089753e+06, ], 'CountWeightedL1PrefireNom_rwgt4' : [ 5.23444981e+06, 5.23410926e+06, 5.23459124e+06, ], 'CountWeightedL1Prefire_rwgt4' : [ 5.23444981e+06, 5.19146813e+06, 5.27631213e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt4' : [ 6.88999635e+06, 6.40712280e+06, 5.98169716e+06, 5.62903387e+06, 5.23444981e+06, 4.88680133e+06, 4.68548691e+06, 4.35693600e+06, 4.06755722e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt4' : [ 6.89394128e+06, 4.06599313e+06, ], 'CountWeightedFullL1PrefireNom_rwgt4' : [ 5.23444981e+06, 5.23410926e+06, 5.23459124e+06, ], 'CountWeightedFullL1Prefire_rwgt4' : [ 5.23444981e+06, 5.19146813e+06, 5.27631213e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt4' : [ 6.88999635e+06, 6.40712280e+06, 5.98169716e+06, 5.62903387e+06, 5.23444981e+06, 4.88680133e+06, 4.68548691e+06, 4.35693600e+06, 4.06755722e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt4' : [ 6.89394128e+06, 4.06599313e+06, ], 'CountWeighted_rwgt4_fwd' : [ 8.02579644e+04, 8.02819632e+04, 8.02321611e+04, ], 'CountWeightedLHEWeightScale_rwgt4_fwd' : [ 1.06414811e+05, 9.83218344e+04, 9.14428949e+04, 8.68565194e+04, 8.02579644e+04, 7.46481998e+04, 7.22383699e+04, 6.67550867e+04, 6.20926202e+04, ], 'CountWeightedLHEEnvelope_rwgt4_fwd' : [ 1.06430143e+05, 6.20860245e+04, ], 'CountWeightedFull_rwgt4_fwd' : [ 8.02579644e+04, 8.02819632e+04, 8.02321611e+04, ], 'CountWeightedFullLHEWeightScale_rwgt4_fwd' : [ 1.06414811e+05, 9.83218344e+04, 9.14428949e+04, 8.68565194e+04, 8.02579644e+04, 7.46481998e+04, 7.22383699e+04, 6.67550867e+04, 6.20926202e+04, ], 'CountWeightedFullLHEEnvelope_rwgt4_fwd' : [ 1.06430143e+05, 6.20860245e+04, ], 'CountWeightedL1PrefireNom_rwgt4_fwd' : [ 6.89839550e+04, 6.89803119e+04, 6.89880279e+04, ], 'CountWeightedL1Prefire_rwgt4_fwd' : [ 6.89839550e+04, 6.64872290e+04, 7.15054574e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt4_fwd' : [ 9.14358383e+04, 8.45334696e+04, 7.86618192e+04, 7.46097791e+04, 6.89839550e+04, 6.41972418e+04, 6.20385344e+04, 5.73648586e+04, 5.33876091e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt4_fwd' : [ 9.14492321e+04, 5.33818766e+04, ], 'CountWeightedFullL1PrefireNom_rwgt4_fwd' : [ 6.89839550e+04, 6.89803119e+04, 6.89880279e+04, ], 'CountWeightedFullL1Prefire_rwgt4_fwd' : [ 6.89839550e+04, 6.64872290e+04, 7.15054574e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt4_fwd' : [ 9.14358383e+04, 8.45334696e+04, 7.86618192e+04, 7.46097791e+04, 6.89839550e+04, 6.41972418e+04, 6.20385344e+04, 5.73648586e+04, 5.33876091e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt4_fwd' : [ 9.14492321e+04, 5.33818766e+04, ], 'CountWeighted_rwgt4_pt0to60' : [ 1.20459681e+06, 1.20470656e+06, 1.20453338e+06, ], 'CountWeightedLHEWeightScale_rwgt4_pt0to60' : [ 1.57412517e+06, 1.47666483e+06, 1.38872372e+06, 1.28418976e+06, 1.20459681e+06, 1.13280153e+06, 1.06764619e+06, 1.00142150e+06, 9.41690658e+05, ], 'CountWeightedLHEEnvelope_rwgt4_pt0to60' : [ 1.57557764e+06, 9.41118696e+05, ], 'CountWeightedFull_rwgt4_pt0to60' : [ 1.20459681e+06, 1.20470656e+06, 1.20453338e+06, ], 'CountWeightedFullLHEWeightScale_rwgt4_pt0to60' : [ 1.57412517e+06, 1.47666483e+06, 1.38872372e+06, 1.28418976e+06, 1.20459681e+06, 1.13280153e+06, 1.06764619e+06, 1.00142150e+06, 9.41690658e+05, ], 'CountWeightedFullLHEEnvelope_rwgt4_pt0to60' : [ 1.57557764e+06, 9.41118696e+05, ], 'CountWeightedL1PrefireNom_rwgt4_pt0to60' : [ 1.17199691e+06, 1.17204604e+06, 1.17199023e+06, ], 'CountWeightedL1Prefire_rwgt4_pt0to60' : [ 1.17199691e+06, 1.16366725e+06, 1.17999241e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt4_pt0to60' : [ 1.53099566e+06, 1.43674450e+06, 1.35159849e+06, 1.24896626e+06, 1.17199691e+06, 1.10248620e+06, 1.03833627e+06, 9.74296219e+05, 9.16467679e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt4_pt0to60' : [ 1.53243377e+06, 9.15900734e+05, ], 'CountWeightedFullL1PrefireNom_rwgt4_pt0to60' : [ 1.17199691e+06, 1.17204604e+06, 1.17199023e+06, ], 'CountWeightedFullL1Prefire_rwgt4_pt0to60' : [ 1.17199691e+06, 1.16366725e+06, 1.17999241e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt4_pt0to60' : [ 1.53099566e+06, 1.43674450e+06, 1.35159849e+06, 1.24896626e+06, 1.17199691e+06, 1.10248620e+06, 1.03833627e+06, 9.74296219e+05, 9.16467679e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt4_pt0to60' : [ 1.53243377e+06, 9.15900734e+05, ], 'CountWeighted_rwgt4_pt60to120' : [ 1.91088298e+06, 1.91099287e+06, 1.91072481e+06, ], 'CountWeightedLHEWeightScale_rwgt4_pt60to120' : [ 2.51002373e+06, 2.34384648e+06, 2.19553974e+06, 2.04637529e+06, 1.91088298e+06, 1.78996570e+06, 1.70041774e+06, 1.58781023e+06, 1.48734131e+06, ], 'CountWeightedLHEEnvelope_rwgt4_pt60to120' : [ 2.51168109e+06, 1.48668612e+06, ], 'CountWeightedFull_rwgt4_pt60to120' : [ 1.91088298e+06, 1.91099287e+06, 1.91072481e+06, ], 'CountWeightedFullLHEWeightScale_rwgt4_pt60to120' : [ 2.51002373e+06, 2.34384648e+06, 2.19553974e+06, 2.04637529e+06, 1.91088298e+06, 1.78996570e+06, 1.70041774e+06, 1.58781023e+06, 1.48734131e+06, ], 'CountWeightedFullLHEEnvelope_rwgt4_pt60to120' : [ 2.51168109e+06, 1.48668612e+06, ], 'CountWeightedL1PrefireNom_rwgt4_pt60to120' : [ 1.85462927e+06, 1.85466136e+06, 1.85458692e+06, ], 'CountWeightedL1Prefire_rwgt4_pt60to120' : [ 1.85462927e+06, 1.84056646e+06, 1.86824111e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt4_pt60to120' : [ 2.43523079e+06, 2.27493216e+06, 2.13169622e+06, 1.98532810e+06, 1.85462927e+06, 1.73785695e+06, 1.64964328e+06, 1.54102858e+06, 1.44400279e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt4_pt60to120' : [ 2.43687112e+06, 1.44335372e+06, ], 'CountWeightedFullL1PrefireNom_rwgt4_pt60to120' : [ 1.85462927e+06, 1.85466136e+06, 1.85458692e+06, ], 'CountWeightedFullL1Prefire_rwgt4_pt60to120' : [ 1.85462927e+06, 1.84056646e+06, 1.86824111e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt4_pt60to120' : [ 2.43523079e+06, 2.27493216e+06, 2.13169622e+06, 1.98532810e+06, 1.85462927e+06, 1.73785695e+06, 1.64964328e+06, 1.54102858e+06, 1.44400279e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt4_pt60to120' : [ 2.43687112e+06, 1.44335372e+06, ], 'CountWeighted_rwgt4_pt120to200' : [ 1.38635569e+06, 1.38637782e+06, 1.38635366e+06, ], 'CountWeightedLHEWeightScale_rwgt4_pt120to200' : [ 1.83071000e+06, 1.69654767e+06, 1.57922690e+06, 1.49593192e+06, 1.38635569e+06, 1.29054644e+06, 1.24535259e+06, 1.15417012e+06, 1.07444278e+06, ], 'CountWeightedLHEEnvelope_rwgt4_pt120to200' : [ 1.83141031e+06, 1.07415651e+06, ], 'CountWeightedFull_rwgt4_pt120to200' : [ 1.38635569e+06, 1.38637782e+06, 1.38635366e+06, ], 'CountWeightedFullLHEWeightScale_rwgt4_pt120to200' : [ 1.83071000e+06, 1.69654767e+06, 1.57922690e+06, 1.49593192e+06, 1.38635569e+06, 1.29054644e+06, 1.24535259e+06, 1.15417012e+06, 1.07444278e+06, ], 'CountWeightedFullLHEEnvelope_rwgt4_pt120to200' : [ 1.83141031e+06, 1.07415651e+06, ], 'CountWeightedL1PrefireNom_rwgt4_pt120to200' : [ 1.34034171e+06, 1.34030413e+06, 1.34039153e+06, ], 'CountWeightedL1Prefire_rwgt4_pt120to200' : [ 1.34034171e+06, 1.32919139e+06, 1.35124254e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt4_pt120to200' : [ 1.76913270e+06, 1.64026792e+06, 1.52744098e+06, 1.44558947e+06, 1.34034171e+06, 1.24820484e+06, 1.20342595e+06, 1.11584713e+06, 1.03917640e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt4_pt120to200' : [ 1.76982543e+06, 1.03889306e+06, ], 'CountWeightedFullL1PrefireNom_rwgt4_pt120to200' : [ 1.34034171e+06, 1.34030413e+06, 1.34039153e+06, ], 'CountWeightedFullL1Prefire_rwgt4_pt120to200' : [ 1.34034171e+06, 1.32919139e+06, 1.35124254e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt4_pt120to200' : [ 1.76913270e+06, 1.64026792e+06, 1.52744098e+06, 1.44558947e+06, 1.34034171e+06, 1.24820484e+06, 1.20342595e+06, 1.11584713e+06, 1.03917640e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt4_pt120to200' : [ 1.76982543e+06, 1.03889306e+06, ], 'CountWeighted_rwgt4_pt200to300' : [ 5.69758305e+05, 5.69649424e+05, 5.69901558e+05, ], 'CountWeightedLHEWeightScale_rwgt4_pt200to300' : [ 7.56958063e+05, 6.94152206e+05, 6.40531558e+05, 6.21258194e+05, 5.69758305e+05, 5.25791749e+05, 5.19071614e+05, 4.76077370e+05, 4.39367888e+05, ], 'CountWeightedLHEEnvelope_rwgt4_pt200to300' : [ 7.57103298e+05, 4.39313296e+05, ], 'CountWeightedFull_rwgt4_pt200to300' : [ 5.69758305e+05, 5.69649424e+05, 5.69901558e+05, ], 'CountWeightedFullLHEWeightScale_rwgt4_pt200to300' : [ 7.56958063e+05, 6.94152206e+05, 6.40531558e+05, 6.21258194e+05, 5.69758305e+05, 5.25791749e+05, 5.19071614e+05, 4.76077370e+05, 4.39367888e+05, ], 'CountWeightedFullLHEEnvelope_rwgt4_pt200to300' : [ 7.57103298e+05, 4.39313296e+05, ], 'CountWeightedL1PrefireNom_rwgt4_pt200to300' : [ 5.49304580e+05, 5.49184747e+05, 5.49455035e+05, ], 'CountWeightedL1Prefire_rwgt4_pt200to300' : [ 5.49304580e+05, 5.44482270e+05, 5.54051000e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt4_pt200to300' : [ 7.29333448e+05, 6.69220705e+05, 6.17836547e+05, 5.98596075e+05, 5.49304580e+05, 5.07170126e+05, 5.00144244e+05, 4.58992090e+05, 4.23812606e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt4_pt200to300' : [ 7.29476989e+05, 4.23758686e+05, ], 'CountWeightedFullL1PrefireNom_rwgt4_pt200to300' : [ 5.49304580e+05, 5.49184747e+05, 5.49455035e+05, ], 'CountWeightedFullL1Prefire_rwgt4_pt200to300' : [ 5.49304580e+05, 5.44482270e+05, 5.54051000e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt4_pt200to300' : [ 7.29333448e+05, 6.69220705e+05, 6.17836547e+05, 5.98596075e+05, 5.49304580e+05, 5.07170126e+05, 5.00144244e+05, 4.58992090e+05, 4.23812606e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt4_pt200to300' : [ 7.29476989e+05, 4.23758686e+05, ], 'CountWeighted_rwgt4_ptGt300' : [ 2.58272035e+05, 2.58197974e+05, 2.58331670e+05, ], 'CountWeightedLHEWeightScale_rwgt4_ptGt300' : [ 3.46362832e+05, 3.12472000e+05, 2.84325729e+05, 2.86251637e+05, 2.58272035e+05, 2.35031706e+05, 2.40554062e+05, 2.17060875e+05, 1.97546176e+05, ], 'CountWeightedLHEEnvelope_rwgt4_ptGt300' : [ 3.46378726e+05, 1.97541715e+05, ], 'CountWeightedFull_rwgt4_ptGt300' : [ 2.58272035e+05, 2.58197974e+05, 2.58331670e+05, ], 'CountWeightedFullLHEWeightScale_rwgt4_ptGt300' : [ 3.46362832e+05, 3.12472000e+05, 2.84325729e+05, 2.86251637e+05, 2.58272035e+05, 2.35031706e+05, 2.40554062e+05, 2.17060875e+05, 1.97546176e+05, ], 'CountWeightedFullLHEEnvelope_rwgt4_ptGt300' : [ 3.46378726e+05, 1.97541715e+05, ], 'CountWeightedL1PrefireNom_rwgt4_ptGt300' : [ 2.49161568e+05, 2.49081179e+05, 2.49225269e+05, ], 'CountWeightedL1Prefire_rwgt4_ptGt300' : [ 2.49161568e+05, 2.47048730e+05, 2.51245458e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt4_ptGt300' : [ 3.33865333e+05, 3.01427888e+05, 2.74455309e+05, 2.75943676e+05, 2.49161568e+05, 2.26888824e+05, 2.31906133e+05, 2.09417055e+05, 1.90713400e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt4_ptGt300' : [ 3.33880929e+05, 1.90709051e+05, ], 'CountWeightedFullL1PrefireNom_rwgt4_ptGt300' : [ 2.49161568e+05, 2.49081179e+05, 2.49225269e+05, ], 'CountWeightedFullL1Prefire_rwgt4_ptGt300' : [ 2.49161568e+05, 2.47048730e+05, 2.51245458e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt4_ptGt300' : [ 3.33865333e+05, 3.01427888e+05, 2.74455309e+05, 2.75943676e+05, 2.49161568e+05, 2.26888824e+05, 2.31906133e+05, 2.09417055e+05, 1.90713400e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt4_ptGt300' : [ 3.33880929e+05, 1.90709051e+05, ], 'CountWeighted_rwgt4_pt300to450' : [ 2.03183299e+05, 2.03092195e+05, 2.03260891e+05, ], 'CountWeightedLHEWeightScale_rwgt4_pt300to450' : [ 2.71982270e+05, 2.46214751e+05, 2.24703557e+05, 2.24418732e+05, 2.03183299e+05, 1.85453202e+05, 1.88337625e+05, 1.70534099e+05, 1.55668151e+05, ], 'CountWeightedLHEEnvelope_rwgt4_pt300to450' : [ 2.71997778e+05, 1.55663817e+05, ], 'CountWeightedFull_rwgt4_pt300to450' : [ 2.03183299e+05, 2.03092195e+05, 2.03260891e+05, ], 'CountWeightedFullLHEWeightScale_rwgt4_pt300to450' : [ 2.71982270e+05, 2.46214751e+05, 2.24703557e+05, 2.24418732e+05, 2.03183299e+05, 1.85453202e+05, 1.88337625e+05, 1.70534099e+05, 1.55668151e+05, ], 'CountWeightedFullLHEEnvelope_rwgt4_pt300to450' : [ 2.71997778e+05, 1.55663817e+05, ], 'CountWeightedL1PrefireNom_rwgt4_pt300to450' : [ 1.95828807e+05, 1.95732909e+05, 1.95908574e+05, ], 'CountWeightedL1Prefire_rwgt4_pt300to450' : [ 1.95828807e+05, 1.94122217e+05, 1.97512381e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt4_pt300to450' : [ 2.61925355e+05, 2.37288943e+05, 2.16696386e+05, 2.16133462e+05, 1.95828807e+05, 1.78854884e+05, 1.81393460e+05, 1.64369416e+05, 1.50136686e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt4_pt300to450' : [ 2.61940570e+05, 1.50132461e+05, ], 'CountWeightedFullL1PrefireNom_rwgt4_pt300to450' : [ 1.95828807e+05, 1.95732909e+05, 1.95908574e+05, ], 'CountWeightedFullL1Prefire_rwgt4_pt300to450' : [ 1.95828807e+05, 1.94122217e+05, 1.97512381e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt4_pt300to450' : [ 2.61925355e+05, 2.37288943e+05, 2.16696386e+05, 2.16133462e+05, 1.95828807e+05, 1.78854884e+05, 1.81393460e+05, 1.64369416e+05, 1.50136686e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt4_pt300to450' : [ 2.61940570e+05, 1.50132461e+05, ], 'CountWeighted_rwgt4_ptGt450' : [ 5.50883647e+04, 5.51058839e+04, 5.50706206e+04, ], 'CountWeightedLHEWeightScale_rwgt4_ptGt450' : [ 7.43805818e+04, 6.62572608e+04, 5.96221651e+04, 6.18328942e+04, 5.50883647e+04, 4.95785362e+04, 5.22164241e+04, 4.65267733e+04, 4.18780131e+04, ], 'CountWeightedLHEEnvelope_rwgt4_ptGt450' : [ 7.43809731e+04, 4.18778849e+04, ], 'CountWeightedFull_rwgt4_ptGt450' : [ 5.50883647e+04, 5.51058839e+04, 5.50706206e+04, ], 'CountWeightedFullLHEWeightScale_rwgt4_ptGt450' : [ 7.43805818e+04, 6.62572608e+04, 5.96221651e+04, 6.18328942e+04, 5.50883647e+04, 4.95785362e+04, 5.22164241e+04, 4.65267733e+04, 4.18780131e+04, ], 'CountWeightedFullLHEEnvelope_rwgt4_ptGt450' : [ 7.43809731e+04, 4.18778849e+04, ], 'CountWeightedL1PrefireNom_rwgt4_ptGt450' : [ 5.33325321e+04, 5.33483532e+04, 5.33165977e+04, ], 'CountWeightedL1Prefire_rwgt4_ptGt450' : [ 5.33325321e+04, 5.29262811e+04, 5.37328215e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt4_ptGt450' : [ 7.19399924e+04, 6.41389385e+04, 5.77589368e+04, 5.98102027e+04, 5.33325321e+04, 4.80339532e+04, 5.05126765e+04, 4.50476337e+04, 4.05767096e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt4_ptGt450' : [ 7.19403731e+04, 4.05765860e+04, ], 'CountWeightedFullL1PrefireNom_rwgt4_ptGt450' : [ 5.33325321e+04, 5.33483532e+04, 5.33165977e+04, ], 'CountWeightedFullL1Prefire_rwgt4_ptGt450' : [ 5.33325321e+04, 5.29262811e+04, 5.37328215e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt4_ptGt450' : [ 7.19399924e+04, 6.41389385e+04, 5.77589368e+04, 5.98102027e+04, 5.33325321e+04, 4.80339532e+04, 5.05126765e+04, 4.50476337e+04, 4.05767096e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt4_ptGt450' : [ 7.19403731e+04, 4.05765860e+04, ], 'CountWeighted_rwgt5' : [ 2.40457549e+06, 2.40454908e+06, 2.40456363e+06, ], 'CountWeightedLHEWeightScale_rwgt5' : [ 3.16648036e+06, 2.94311957e+06, 2.74657626e+06, 2.58705056e+06, 2.40457549e+06, 2.24390513e+06, 2.15346115e+06, 2.00146780e+06, 1.86777120e+06, ], 'CountWeightedLHEEnvelope_rwgt5' : [ 3.16825092e+06, 1.86706914e+06, ], 'CountWeightedFull_rwgt5' : [ 2.40457549e+06, 2.40454908e+06, 2.40456363e+06, ], 'CountWeightedFullLHEWeightScale_rwgt5' : [ 3.16648036e+06, 2.94311957e+06, 2.74657626e+06, 2.58705056e+06, 2.40457549e+06, 2.24390513e+06, 2.15346115e+06, 2.00146780e+06, 1.86777120e+06, ], 'CountWeightedFullLHEEnvelope_rwgt5' : [ 3.16825092e+06, 1.86706914e+06, ], 'CountWeightedL1PrefireNom_rwgt5' : [ 2.32645661e+06, 2.32633415e+06, 2.32654730e+06, ], 'CountWeightedL1Prefire_rwgt5' : [ 2.32645661e+06, 2.30734312e+06, 2.34505627e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt5' : [ 3.06221298e+06, 2.84761477e+06, 2.65853165e+06, 2.50179311e+06, 2.32645661e+06, 2.17191362e+06, 2.08244517e+06, 1.93642132e+06, 1.80780595e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt5' : [ 3.06396493e+06, 1.80711094e+06, ], 'CountWeightedFullL1PrefireNom_rwgt5' : [ 2.32645661e+06, 2.32633415e+06, 2.32654730e+06, ], 'CountWeightedFullL1Prefire_rwgt5' : [ 2.32645661e+06, 2.30734312e+06, 2.34505627e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt5' : [ 3.06221298e+06, 2.84761477e+06, 2.65853165e+06, 2.50179311e+06, 2.32645661e+06, 2.17191362e+06, 2.08244517e+06, 1.93642132e+06, 1.80780595e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt5' : [ 3.06396493e+06, 1.80711094e+06, ], 'CountWeighted_rwgt5_fwd' : [ 3.56701668e+04, 3.56809691e+04, 3.56587142e+04, ], 'CountWeightedLHEWeightScale_rwgt5_fwd' : [ 4.72954743e+04, 4.36985966e+04, 4.06412825e+04, 3.86028947e+04, 3.56701668e+04, 3.31769790e+04, 3.21059435e+04, 2.96689236e+04, 2.75967198e+04, ], 'CountWeightedLHEEnvelope_rwgt5_fwd' : [ 4.73022877e+04, 2.75937884e+04, ], 'CountWeightedFull_rwgt5_fwd' : [ 3.56701668e+04, 3.56809691e+04, 3.56587142e+04, ], 'CountWeightedFullLHEWeightScale_rwgt5_fwd' : [ 4.72954743e+04, 4.36985966e+04, 4.06412825e+04, 3.86028947e+04, 3.56701668e+04, 3.31769790e+04, 3.21059435e+04, 2.96689236e+04, 2.75967198e+04, ], 'CountWeightedFullLHEEnvelope_rwgt5_fwd' : [ 4.73022877e+04, 2.75937884e+04, ], 'CountWeightedL1PrefireNom_rwgt5_fwd' : [ 3.06595338e+04, 3.06579209e+04, 3.06613461e+04, ], 'CountWeightedL1Prefire_rwgt5_fwd' : [ 3.06595338e+04, 2.95498779e+04, 3.17802039e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt5_fwd' : [ 4.06381521e+04, 3.75704309e+04, 3.49608076e+04, 3.31599025e+04, 3.06595338e+04, 2.85321063e+04, 2.75726827e+04, 2.54954936e+04, 2.37278275e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt5_fwd' : [ 4.06441051e+04, 2.37252797e+04, ], 'CountWeightedFullL1PrefireNom_rwgt5_fwd' : [ 3.06595338e+04, 3.06579209e+04, 3.06613461e+04, ], 'CountWeightedFullL1Prefire_rwgt5_fwd' : [ 3.06595338e+04, 2.95498779e+04, 3.17802039e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt5_fwd' : [ 4.06381521e+04, 3.75704309e+04, 3.49608076e+04, 3.31599025e+04, 3.06595338e+04, 2.85321063e+04, 2.75726827e+04, 2.54954936e+04, 2.37278275e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt5_fwd' : [ 4.06441051e+04, 2.37252797e+04, ], 'CountWeighted_rwgt5_pt0to60' : [ 5.35378480e+05, 5.35407580e+05, 5.35352654e+05, ], 'CountWeightedLHEWeightScale_rwgt5_pt0to60' : [ 6.99610950e+05, 6.56295726e+05, 6.17210507e+05, 5.70751037e+05, 5.35378480e+05, 5.03467492e+05, 4.74509413e+05, 4.45076293e+05, 4.18529198e+05, ], 'CountWeightedLHEEnvelope_rwgt5_pt0to60' : [ 7.00256547e+05, 4.18275020e+05, ], 'CountWeightedFull_rwgt5_pt0to60' : [ 5.35378480e+05, 5.35407580e+05, 5.35352654e+05, ], 'CountWeightedFullLHEWeightScale_rwgt5_pt0to60' : [ 6.99610950e+05, 6.56295726e+05, 6.17210507e+05, 5.70751037e+05, 5.35378480e+05, 5.03467492e+05, 4.74509413e+05, 4.45076293e+05, 4.18529198e+05, ], 'CountWeightedFullLHEEnvelope_rwgt5_pt0to60' : [ 7.00256547e+05, 4.18275020e+05, ], 'CountWeightedL1PrefireNom_rwgt5_pt0to60' : [ 5.20889216e+05, 5.20898622e+05, 5.20887480e+05, ], 'CountWeightedL1Prefire_rwgt5_pt0to60' : [ 5.20889216e+05, 5.17186147e+05, 5.24442420e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt5_pt0to60' : [ 6.80442578e+05, 6.38553138e+05, 6.00710409e+05, 5.55096201e+05, 5.20889216e+05, 4.89993970e+05, 4.61482825e+05, 4.33020645e+05, 4.07319026e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt5_pt0to60' : [ 6.81081738e+05, 4.07067088e+05, ], 'CountWeightedFullL1PrefireNom_rwgt5_pt0to60' : [ 5.20889216e+05, 5.20898622e+05, 5.20887480e+05, ], 'CountWeightedFullL1Prefire_rwgt5_pt0to60' : [ 5.20889216e+05, 5.17186147e+05, 5.24442420e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt5_pt0to60' : [ 6.80442578e+05, 6.38553138e+05, 6.00710409e+05, 5.55096201e+05, 5.20889216e+05, 4.89993970e+05, 4.61482825e+05, 4.33020645e+05, 4.07319026e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt5_pt0to60' : [ 6.81081738e+05, 4.07067088e+05, ], 'CountWeighted_rwgt5_pt60to120' : [ 8.49278511e+05, 8.49329860e+05, 8.49209492e+05, ], 'CountWeightedLHEWeightScale_rwgt5_pt60to120' : [ 1.11556672e+06, 1.04170977e+06, 9.75795626e+05, 9.09499833e+05, 8.49278511e+05, 7.95540505e+05, 7.55741267e+05, 7.05693695e+05, 6.61041091e+05, ], 'CountWeightedLHEEnvelope_rwgt5_pt60to120' : [ 1.11630358e+06, 6.60749915e+05, ], 'CountWeightedFull_rwgt5_pt60to120' : [ 8.49278511e+05, 8.49329860e+05, 8.49209492e+05, ], 'CountWeightedFullLHEWeightScale_rwgt5_pt60to120' : [ 1.11556672e+06, 1.04170977e+06, 9.75795626e+05, 9.09499833e+05, 8.49278511e+05, 7.95540505e+05, 7.55741267e+05, 7.05693695e+05, 6.61041091e+05, ], 'CountWeightedFullLHEEnvelope_rwgt5_pt60to120' : [ 1.11630358e+06, 6.60749915e+05, ], 'CountWeightedL1PrefireNom_rwgt5_pt60to120' : [ 8.24279837e+05, 8.24288873e+05, 8.24261665e+05, ], 'CountWeightedL1Prefire_rwgt5_pt60to120' : [ 8.24279837e+05, 8.18028120e+05, 8.30327547e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt5_pt60to120' : [ 1.08232488e+06, 1.01108131e+06, 9.47420837e+05, 8.82367759e+05, 8.24279837e+05, 7.72381346e+05, 7.33175022e+05, 6.84901530e+05, 6.41779326e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt5_pt60to120' : [ 1.08305413e+06, 6.41490894e+05, ], 'CountWeightedFullL1PrefireNom_rwgt5_pt60to120' : [ 8.24279837e+05, 8.24288873e+05, 8.24261665e+05, ], 'CountWeightedFullL1Prefire_rwgt5_pt60to120' : [ 8.24279837e+05, 8.18028120e+05, 8.30327547e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt5_pt60to120' : [ 1.08232488e+06, 1.01108131e+06, 9.47420837e+05, 8.82367759e+05, 8.24279837e+05, 7.72381346e+05, 7.33175022e+05, 6.84901530e+05, 6.41779326e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt5_pt60to120' : [ 1.08305413e+06, 6.41490894e+05, ], 'CountWeighted_rwgt5_pt120to200' : [ 6.16160721e+05, 6.16144355e+05, 6.16159530e+05, ], 'CountWeightedLHEWeightScale_rwgt5_pt120to200' : [ 8.13648875e+05, 7.54020973e+05, 7.01878810e+05, 6.64858594e+05, 6.16160721e+05, 5.73576266e+05, 5.53490098e+05, 5.12964594e+05, 4.77530091e+05, ], 'CountWeightedLHEEnvelope_rwgt5_pt120to200' : [ 8.13960126e+05, 4.77402859e+05, ], 'CountWeightedFull_rwgt5_pt120to200' : [ 6.16160721e+05, 6.16144355e+05, 6.16159530e+05, ], 'CountWeightedFullLHEWeightScale_rwgt5_pt120to200' : [ 8.13648875e+05, 7.54020973e+05, 7.01878810e+05, 6.64858594e+05, 6.16160721e+05, 5.73576266e+05, 5.53490098e+05, 5.12964594e+05, 4.77530091e+05, ], 'CountWeightedFullLHEEnvelope_rwgt5_pt120to200' : [ 8.13960126e+05, 4.77402859e+05, ], 'CountWeightedL1PrefireNom_rwgt5_pt120to200' : [ 5.95709695e+05, 5.95676009e+05, 5.95731423e+05, ], 'CountWeightedL1Prefire_rwgt5_pt120to200' : [ 5.95709695e+05, 5.90752610e+05, 6.00553608e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt5_pt120to200' : [ 7.86281234e+05, 7.29007882e+05, 6.78862657e+05, 6.42484361e+05, 5.95709695e+05, 5.54757859e+05, 5.34856022e+05, 4.95932162e+05, 4.61856177e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt5_pt120to200' : [ 7.86589108e+05, 4.61730239e+05, ], 'CountWeightedFullL1PrefireNom_rwgt5_pt120to200' : [ 5.95709695e+05, 5.95676009e+05, 5.95731423e+05, ], 'CountWeightedFullL1Prefire_rwgt5_pt120to200' : [ 5.95709695e+05, 5.90752610e+05, 6.00553608e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt5_pt120to200' : [ 7.86281234e+05, 7.29007882e+05, 6.78862657e+05, 6.42484361e+05, 5.95709695e+05, 5.54757859e+05, 5.34856022e+05, 4.95932162e+05, 4.61856177e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt5_pt120to200' : [ 7.86589108e+05, 4.61730239e+05, ], 'CountWeighted_rwgt5_pt200to300' : [ 2.53226161e+05, 2.53175293e+05, 2.53291691e+05, ], 'CountWeightedLHEWeightScale_rwgt5_pt200to300' : [ 3.36425770e+05, 3.08512102e+05, 2.84680692e+05, 2.76114764e+05, 2.53226161e+05, 2.33685237e+05, 2.30698537e+05, 2.11589909e+05, 1.95274640e+05, ], 'CountWeightedLHEEnvelope_rwgt5_pt200to300' : [ 3.36490323e+05, 1.95250380e+05, ], 'CountWeightedFull_rwgt5_pt200to300' : [ 2.53226161e+05, 2.53175293e+05, 2.53291691e+05, ], 'CountWeightedFullLHEWeightScale_rwgt5_pt200to300' : [ 3.36425770e+05, 3.08512102e+05, 2.84680692e+05, 2.76114764e+05, 2.53226161e+05, 2.33685237e+05, 2.30698537e+05, 2.11589909e+05, 1.95274640e+05, ], 'CountWeightedFullLHEEnvelope_rwgt5_pt200to300' : [ 3.36490323e+05, 1.95250380e+05, ], 'CountWeightedL1PrefireNom_rwgt5_pt200to300' : [ 2.44135338e+05, 2.44080887e+05, 2.44203340e+05, ], 'CountWeightedL1Prefire_rwgt5_pt200to300' : [ 2.44135338e+05, 2.41992089e+05, 2.46245030e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt5_pt200to300' : [ 3.24148194e+05, 2.97431470e+05, 2.74593990e+05, 2.66042731e+05, 2.44135338e+05, 2.25408900e+05, 2.22286320e+05, 2.03996447e+05, 1.88361182e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt5_pt200to300' : [ 3.24211998e+05, 1.88337217e+05, ], 'CountWeightedFullL1PrefireNom_rwgt5_pt200to300' : [ 2.44135338e+05, 2.44080887e+05, 2.44203340e+05, ], 'CountWeightedFullL1Prefire_rwgt5_pt200to300' : [ 2.44135338e+05, 2.41992089e+05, 2.46245030e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt5_pt200to300' : [ 3.24148194e+05, 2.97431470e+05, 2.74593990e+05, 2.66042731e+05, 2.44135338e+05, 2.25408900e+05, 2.22286320e+05, 2.03996447e+05, 1.88361182e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt5_pt200to300' : [ 3.24211998e+05, 1.88337217e+05, ], 'CountWeighted_rwgt5_ptGt300' : [ 1.14787252e+05, 1.14754642e+05, 1.14813733e+05, ], 'CountWeightedLHEWeightScale_rwgt5_ptGt300' : [ 1.53939063e+05, 1.38876429e+05, 1.26367001e+05, 1.27222942e+05, 1.14787252e+05, 1.04458562e+05, 1.06912904e+05, 9.64714723e+04, 8.77983077e+04, ], 'CountWeightedLHEEnvelope_rwgt5_ptGt300' : [ 1.53946126e+05, 8.77963250e+04, ], 'CountWeightedFull_rwgt5_ptGt300' : [ 1.14787252e+05, 1.14754642e+05, 1.14813733e+05, ], 'CountWeightedFullLHEWeightScale_rwgt5_ptGt300' : [ 1.53939063e+05, 1.38876429e+05, 1.26367001e+05, 1.27222942e+05, 1.14787252e+05, 1.04458562e+05, 1.06912904e+05, 9.64714723e+04, 8.77983077e+04, ], 'CountWeightedFullLHEEnvelope_rwgt5_ptGt300' : [ 1.53946126e+05, 8.77963250e+04, ], 'CountWeightedL1PrefireNom_rwgt5_ptGt300' : [ 1.10738300e+05, 1.10702746e+05, 1.10766580e+05, ], 'CountWeightedL1Prefire_rwgt5_ptGt300' : [ 1.10738300e+05, 1.09799270e+05, 1.11664449e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt5_ptGt300' : [ 1.48384609e+05, 1.33967929e+05, 1.21980154e+05, 1.22641636e+05, 1.10738300e+05, 1.00839492e+05, 1.03069387e+05, 9.30742286e+04, 8.47615167e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt5_ptGt300' : [ 1.48391541e+05, 8.47595848e+04, ], 'CountWeightedFullL1PrefireNom_rwgt5_ptGt300' : [ 1.10738300e+05, 1.10702746e+05, 1.10766580e+05, ], 'CountWeightedFullL1Prefire_rwgt5_ptGt300' : [ 1.10738300e+05, 1.09799270e+05, 1.11664449e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt5_ptGt300' : [ 1.48384609e+05, 1.33967929e+05, 1.21980154e+05, 1.22641636e+05, 1.10738300e+05, 1.00839492e+05, 1.03069387e+05, 9.30742286e+04, 8.47615167e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt5_ptGt300' : [ 1.48391541e+05, 8.47595848e+04, ], 'CountWeighted_rwgt5_pt300to450' : [ 9.03035546e+04, 9.02632579e+04, 9.03379461e+04, ], 'CountWeightedLHEWeightScale_rwgt5_pt300to450' : [ 1.20881019e+05, 1.09428764e+05, 9.98682629e+04, 9.97416649e+04, 9.03035546e+04, 8.24236499e+04, 8.37056044e+04, 7.57929107e+04, 6.91858516e+04, ], 'CountWeightedLHEEnvelope_rwgt5_pt300to450' : [ 1.20887910e+05, 6.91839254e+04, ], 'CountWeightedFull_rwgt5_pt300to450' : [ 9.03035546e+04, 9.02632579e+04, 9.03379461e+04, ], 'CountWeightedFullLHEWeightScale_rwgt5_pt300to450' : [ 1.20881019e+05, 1.09428764e+05, 9.98682629e+04, 9.97416649e+04, 9.03035546e+04, 8.24236499e+04, 8.37056044e+04, 7.57929107e+04, 6.91858516e+04, ], 'CountWeightedFullLHEEnvelope_rwgt5_pt300to450' : [ 1.20887910e+05, 6.91839254e+04, ], 'CountWeightedL1PrefireNom_rwgt5_pt300to450' : [ 8.70349494e+04, 8.69924273e+04, 8.70703443e+04, ], 'CountWeightedL1Prefire_rwgt5_pt300to450' : [ 8.70349494e+04, 8.62764760e+04, 8.77832035e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt5_pt300to450' : [ 1.16411276e+05, 1.05461744e+05, 9.63095064e+04, 9.60593246e+04, 8.70349494e+04, 7.94910600e+04, 8.06193102e+04, 7.30530576e+04, 6.67274205e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt5_pt300to450' : [ 1.16418036e+05, 6.67255439e+04, ], 'CountWeightedFullL1PrefireNom_rwgt5_pt300to450' : [ 8.70349494e+04, 8.69924273e+04, 8.70703443e+04, ], 'CountWeightedFullL1Prefire_rwgt5_pt300to450' : [ 8.70349494e+04, 8.62764760e+04, 8.77832035e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt5_pt300to450' : [ 1.16411276e+05, 1.05461744e+05, 9.63095064e+04, 9.60593246e+04, 8.70349494e+04, 7.94910600e+04, 8.06193102e+04, 7.30530576e+04, 6.67274205e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt5_pt300to450' : [ 1.16418036e+05, 6.67255439e+04, ], 'CountWeighted_rwgt5_ptGt450' : [ 2.44837080e+04, 2.44915272e+04, 2.44758116e+04, ], 'CountWeightedLHEWeightScale_rwgt5_ptGt450' : [ 3.30580369e+04, 2.94476704e+04, 2.64987393e+04, 2.74812863e+04, 2.44837080e+04, 2.20349043e+04, 2.32072986e+04, 2.06785645e+04, 1.86124513e+04, ], 'CountWeightedLHEEnvelope_rwgt5_ptGt450' : [ 3.30582106e+04, 1.86123943e+04, ], 'CountWeightedFull_rwgt5_ptGt450' : [ 2.44837080e+04, 2.44915272e+04, 2.44758116e+04, ], 'CountWeightedFullLHEWeightScale_rwgt5_ptGt450' : [ 3.30580369e+04, 2.94476704e+04, 2.64987393e+04, 2.74812863e+04, 2.44837080e+04, 2.20349043e+04, 2.32072986e+04, 2.06785645e+04, 1.86124513e+04, ], 'CountWeightedFullLHEEnvelope_rwgt5_ptGt450' : [ 3.30582106e+04, 1.86123943e+04, ], 'CountWeightedL1PrefireNom_rwgt5_ptGt450' : [ 2.37033398e+04, 2.37103913e+04, 2.36962536e+04, ], 'CountWeightedL1Prefire_rwgt5_ptGt450' : [ 2.37033398e+04, 2.35227843e+04, 2.38812465e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt5_ptGt450' : [ 3.19733294e+04, 2.85061957e+04, 2.56706384e+04, 2.65823114e+04, 2.37033398e+04, 2.13484228e+04, 2.24500778e+04, 2.00211690e+04, 1.80340935e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt5_ptGt450' : [ 3.19734984e+04, 1.80340385e+04, ], 'CountWeightedFullL1PrefireNom_rwgt5_ptGt450' : [ 2.37033398e+04, 2.37103913e+04, 2.36962536e+04, ], 'CountWeightedFullL1Prefire_rwgt5_ptGt450' : [ 2.37033398e+04, 2.35227843e+04, 2.38812465e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt5_ptGt450' : [ 3.19733294e+04, 2.85061957e+04, 2.56706384e+04, 2.65823114e+04, 2.37033398e+04, 2.13484228e+04, 2.24500778e+04, 2.00211690e+04, 1.80340935e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt5_ptGt450' : [ 3.19734984e+04, 1.80340385e+04, ], 'CountWeighted_rwgt6' : [ 6.01142199e+05, 6.01127399e+05, 6.01132785e+05, ], 'CountWeightedLHEWeightScale_rwgt6' : [ 7.91613918e+05, 7.35774104e+05, 6.86638575e+05, 6.46757482e+05, 6.01142199e+05, 5.60971852e+05, 5.38361028e+05, 5.00363029e+05, 4.66939110e+05, ], 'CountWeightedLHEEnvelope_rwgt6' : [ 7.92056545e+05, 4.66763597e+05, ], 'CountWeightedFull_rwgt6' : [ 6.01142199e+05, 6.01127399e+05, 6.01132785e+05, ], 'CountWeightedFullLHEWeightScale_rwgt6' : [ 7.91613918e+05, 7.35774104e+05, 6.86638575e+05, 6.46757482e+05, 6.01142199e+05, 5.60971852e+05, 5.38361028e+05, 5.00363029e+05, 4.66939110e+05, ], 'CountWeightedFullLHEEnvelope_rwgt6' : [ 7.92056545e+05, 4.66763597e+05, ], 'CountWeightedL1PrefireNom_rwgt6' : [ 5.81611039e+05, 5.81576257e+05, 5.81630510e+05, ], 'CountWeightedL1Prefire_rwgt6' : [ 5.81611039e+05, 5.76832755e+05, 5.86261096e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt6' : [ 7.65547182e+05, 7.11898053e+05, 6.64627610e+05, 6.25443266e+05, 5.81611039e+05, 5.42974126e+05, 5.20607168e+05, 4.84101535e+05, 4.51947895e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt6' : [ 7.65985165e+05, 4.51774148e+05, ], 'CountWeightedFullL1PrefireNom_rwgt6' : [ 5.81611039e+05, 5.81576257e+05, 5.81630510e+05, ], 'CountWeightedFullL1Prefire_rwgt6' : [ 5.81611039e+05, 5.76832755e+05, 5.86261096e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt6' : [ 7.65547182e+05, 7.11898053e+05, 6.64627610e+05, 6.25443266e+05, 5.81611039e+05, 5.42974126e+05, 5.20607168e+05, 4.84101535e+05, 4.51947895e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt6' : [ 7.65985165e+05, 4.51774148e+05, ], 'CountWeighted_rwgt6_fwd' : [ 8.91747458e+03, 8.92016722e+03, 8.91460746e+03, ], 'CountWeightedLHEWeightScale_rwgt6_fwd' : [ 1.18237743e+04, 1.09245623e+04, 1.01602396e+04, 9.65064661e+03, 8.91747458e+03, 8.29417842e+03, 8.02642220e+03, 7.41717212e+03, 6.89912456e+03, ], 'CountWeightedLHEEnvelope_rwgt6_fwd' : [ 1.18254776e+04, 6.89839169e+03, ], 'CountWeightedFull_rwgt6_fwd' : [ 8.91747458e+03, 8.92016722e+03, 8.91460746e+03, ], 'CountWeightedFullLHEWeightScale_rwgt6_fwd' : [ 1.18237743e+04, 1.09245623e+04, 1.01602396e+04, 9.65064661e+03, 8.91747458e+03, 8.29417842e+03, 8.02642220e+03, 7.41717212e+03, 6.89912456e+03, ], 'CountWeightedFullLHEEnvelope_rwgt6_fwd' : [ 1.18254776e+04, 6.89839169e+03, ], 'CountWeightedL1PrefireNom_rwgt6_fwd' : [ 7.66482207e+03, 7.66441900e+03, 7.66527541e+03, ], 'CountWeightedL1Prefire_rwgt6_fwd' : [ 7.66482207e+03, 7.38741073e+03, 7.94498798e+03, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt6_fwd' : [ 1.01594570e+04, 9.39253287e+03, 8.74013226e+03, 8.28990982e+03, 7.66482207e+03, 7.13296982e+03, 6.89311569e+03, 6.37382263e+03, 5.93190964e+03, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt6_fwd' : [ 1.01609453e+04, 5.93127267e+03, ], 'CountWeightedFullL1PrefireNom_rwgt6_fwd' : [ 7.66482207e+03, 7.66441900e+03, 7.66527541e+03, ], 'CountWeightedFullL1Prefire_rwgt6_fwd' : [ 7.66482207e+03, 7.38741073e+03, 7.94498798e+03, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt6_fwd' : [ 1.01594570e+04, 9.39253287e+03, 8.74013226e+03, 8.28990982e+03, 7.66482207e+03, 7.13296982e+03, 6.89311569e+03, 6.37382263e+03, 5.93190964e+03, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt6_fwd' : [ 1.01609453e+04, 5.93127267e+03, ], 'CountWeighted_rwgt6_pt0to60' : [ 1.33843401e+05, 1.33850655e+05, 1.33837037e+05, ], 'CountWeightedLHEWeightScale_rwgt6_pt0to60' : [ 1.74901355e+05, 1.64072630e+05, 1.54301397e+05, 1.42686628e+05, 1.33843401e+05, 1.25865873e+05, 1.18626403e+05, 1.11268195e+05, 1.04631475e+05, ], 'CountWeightedLHEEnvelope_rwgt6_pt0to60' : [ 1.75062753e+05, 1.04567933e+05, ], 'CountWeightedFull_rwgt6_pt0to60' : [ 1.33843401e+05, 1.33850655e+05, 1.33837037e+05, ], 'CountWeightedFullLHEWeightScale_rwgt6_pt0to60' : [ 1.74901355e+05, 1.64072630e+05, 1.54301397e+05, 1.42686628e+05, 1.33843401e+05, 1.25865873e+05, 1.18626403e+05, 1.11268195e+05, 1.04631475e+05, ], 'CountWeightedFullLHEEnvelope_rwgt6_pt0to60' : [ 1.75062753e+05, 1.04567933e+05, ], 'CountWeightedL1PrefireNom_rwgt6_pt0to60' : [ 1.30221186e+05, 1.30223513e+05, 1.30220808e+05, ], 'CountWeightedL1Prefire_rwgt6_pt0to60' : [ 1.30221186e+05, 1.29295419e+05, 1.31109475e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt6_pt0to60' : [ 1.70109295e+05, 1.59637019e+05, 1.50176403e+05, 1.38772955e+05, 1.30221186e+05, 1.22497526e+05, 1.15369784e+05, 1.08254304e+05, 1.01828952e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt6_pt0to60' : [ 1.70269081e+05, 1.01765970e+05, ], 'CountWeightedFullL1PrefireNom_rwgt6_pt0to60' : [ 1.30221186e+05, 1.30223513e+05, 1.30220808e+05, ], 'CountWeightedFullL1Prefire_rwgt6_pt0to60' : [ 1.30221186e+05, 1.29295419e+05, 1.31109475e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt6_pt0to60' : [ 1.70109295e+05, 1.59637019e+05, 1.50176403e+05, 1.38772955e+05, 1.30221186e+05, 1.22497526e+05, 1.15369784e+05, 1.08254304e+05, 1.01828952e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt6_pt0to60' : [ 1.70269081e+05, 1.01765970e+05, ], 'CountWeighted_rwgt6_pt60to120' : [ 2.12317981e+05, 2.12330604e+05, 2.12300215e+05, ], 'CountWeightedLHEWeightScale_rwgt6_pt60to120' : [ 2.78889458e+05, 2.60425350e+05, 2.43946968e+05, 2.27373154e+05, 2.12317981e+05, 1.98883536e+05, 1.88933804e+05, 1.76422039e+05, 1.65258951e+05, ], 'CountWeightedLHEEnvelope_rwgt6_pt60to120' : [ 2.79073670e+05, 1.65186158e+05, ], 'CountWeightedFull_rwgt6_pt60to120' : [ 2.12317981e+05, 2.12330604e+05, 2.12300215e+05, ], 'CountWeightedFullLHEWeightScale_rwgt6_pt60to120' : [ 2.78889458e+05, 2.60425350e+05, 2.43946968e+05, 2.27373154e+05, 2.12317981e+05, 1.98883536e+05, 1.88933804e+05, 1.76422039e+05, 1.65258951e+05, ], 'CountWeightedFullLHEEnvelope_rwgt6_pt60to120' : [ 2.79073670e+05, 1.65186158e+05, ], 'CountWeightedL1PrefireNom_rwgt6_pt60to120' : [ 2.06068310e+05, 2.06070502e+05, 2.06063470e+05, ], 'CountWeightedL1Prefire_rwgt6_pt60to120' : [ 2.06068310e+05, 2.04505395e+05, 2.07580255e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt6_pt60to120' : [ 2.70579057e+05, 2.52768316e+05, 2.36853324e+05, 2.20590187e+05, 2.06068310e+05, 1.93093790e+05, 1.83292290e+05, 1.71224030e+05, 1.60443555e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt6_pt60to120' : [ 2.70761369e+05, 1.60371449e+05, ], 'CountWeightedFullL1PrefireNom_rwgt6_pt60to120' : [ 2.06068310e+05, 2.06070502e+05, 2.06063470e+05, ], 'CountWeightedFullL1Prefire_rwgt6_pt60to120' : [ 2.06068310e+05, 2.04505395e+05, 2.07580255e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt6_pt60to120' : [ 2.70579057e+05, 2.52768316e+05, 2.36853324e+05, 2.20590187e+05, 2.06068310e+05, 1.93093790e+05, 1.83292290e+05, 1.71224030e+05, 1.60443555e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt6_pt60to120' : [ 2.70761369e+05, 1.60371449e+05, ], 'CountWeighted_rwgt6_pt120to200' : [ 1.54038820e+05, 1.54034700e+05, 1.54038443e+05, ], 'CountWeightedLHEWeightScale_rwgt6_pt120to200' : [ 2.03410613e+05, 1.88503749e+05, 1.75468308e+05, 1.66213320e+05, 1.54038820e+05, 1.43392933e+05, 1.38371438e+05, 1.28240137e+05, 1.19381582e+05, ], 'CountWeightedLHEEnvelope_rwgt6_pt120to200' : [ 2.03488423e+05, 1.19349773e+05, ], 'CountWeightedFull_rwgt6_pt120to200' : [ 1.54038820e+05, 1.54034700e+05, 1.54038443e+05, ], 'CountWeightedFullLHEWeightScale_rwgt6_pt120to200' : [ 2.03410613e+05, 1.88503749e+05, 1.75468308e+05, 1.66213320e+05, 1.54038820e+05, 1.43392933e+05, 1.38371438e+05, 1.28240137e+05, 1.19381582e+05, ], 'CountWeightedFullLHEEnvelope_rwgt6_pt120to200' : [ 2.03488423e+05, 1.19349773e+05, ], 'CountWeightedL1PrefireNom_rwgt6_pt120to200' : [ 1.48926158e+05, 1.48917733e+05, 1.48931559e+05, ], 'CountWeightedL1Prefire_rwgt6_pt120to200' : [ 1.48926158e+05, 1.47686896e+05, 1.50137135e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt6_pt120to200' : [ 1.96568762e+05, 1.82250526e+05, 1.69714316e+05, 1.60619812e+05, 1.48926158e+05, 1.38688365e+05, 1.33712950e+05, 1.23982063e+05, 1.15463129e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt6_pt120to200' : [ 1.96645731e+05, 1.15431643e+05, ], 'CountWeightedFullL1PrefireNom_rwgt6_pt120to200' : [ 1.48926158e+05, 1.48917733e+05, 1.48931559e+05, ], 'CountWeightedFullL1Prefire_rwgt6_pt120to200' : [ 1.48926158e+05, 1.47686896e+05, 1.50137135e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt6_pt120to200' : [ 1.96568762e+05, 1.82250526e+05, 1.69714316e+05, 1.60619812e+05, 1.48926158e+05, 1.38688365e+05, 1.33712950e+05, 1.23982063e+05, 1.15463129e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt6_pt120to200' : [ 1.96645731e+05, 1.15431643e+05, ], 'CountWeighted_rwgt6_pt200to300' : [ 6.33059311e+04, 6.32933158e+04, 6.33224732e+04, ], 'CountWeightedLHEWeightScale_rwgt6_pt200to300' : [ 8.41057779e+04, 7.71274129e+04, 7.11696062e+04, 6.90281443e+04, 6.33059311e+04, 5.84208445e+04, 5.76741742e+04, 5.28970586e+04, 4.88182711e+04, ], 'CountWeightedLHEEnvelope_rwgt6_pt200to300' : [ 8.41219161e+04, 4.88122062e+04, ], 'CountWeightedFull_rwgt6_pt200to300' : [ 6.33059311e+04, 6.32933158e+04, 6.33224732e+04, ], 'CountWeightedFullLHEWeightScale_rwgt6_pt200to300' : [ 8.41057779e+04, 7.71274129e+04, 7.11696062e+04, 6.90281443e+04, 6.33059311e+04, 5.84208445e+04, 5.76741742e+04, 5.28970586e+04, 4.88182711e+04, ], 'CountWeightedFullLHEEnvelope_rwgt6_pt200to300' : [ 8.41219161e+04, 4.88122062e+04, ], 'CountWeightedL1PrefireNom_rwgt6_pt200to300' : [ 6.10332949e+04, 6.10197396e+04, 6.10503794e+04, ], 'CountWeightedL1Prefire_rwgt6_pt200to300' : [ 6.10332949e+04, 6.04974821e+04, 6.15607127e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt6_pt200to300' : [ 8.10364068e+04, 7.43572744e+04, 6.86479506e+04, 6.65101543e+04, 6.10332949e+04, 5.63517776e+04, 5.55711411e+04, 5.09987095e+04, 4.70899218e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt6_pt200to300' : [ 8.10523576e+04, 4.70839310e+04, ], 'CountWeightedFullL1PrefireNom_rwgt6_pt200to300' : [ 6.10332949e+04, 6.10197396e+04, 6.10503794e+04, ], 'CountWeightedFullL1Prefire_rwgt6_pt200to300' : [ 6.10332949e+04, 6.04974821e+04, 6.15607127e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt6_pt200to300' : [ 8.10364068e+04, 7.43572744e+04, 6.86479506e+04, 6.65101543e+04, 6.10332949e+04, 5.63517776e+04, 5.55711411e+04, 5.09987095e+04, 4.70899218e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt6_pt200to300' : [ 8.10523576e+04, 4.70839310e+04, ], 'CountWeighted_rwgt6_ptGt300' : [ 2.86965797e+04, 2.86884625e+04, 2.87032112e+04, ], 'CountWeightedLHEWeightScale_rwgt6_ptGt300' : [ 3.84844568e+04, 3.47188338e+04, 3.15915005e+04, 3.18054824e+04, 2.86965797e+04, 2.61144319e+04, 2.67280142e+04, 2.41176790e+04, 2.19494021e+04, ], 'CountWeightedLHEEnvelope_rwgt6_ptGt300' : [ 3.84862232e+04, 2.19489064e+04, ], 'CountWeightedFull_rwgt6_ptGt300' : [ 2.86965797e+04, 2.86884625e+04, 2.87032112e+04, ], 'CountWeightedFullLHEWeightScale_rwgt6_ptGt300' : [ 3.84844568e+04, 3.47188338e+04, 3.15915005e+04, 3.18054824e+04, 2.86965797e+04, 2.61144319e+04, 2.67280142e+04, 2.41176790e+04, 2.19494021e+04, ], 'CountWeightedFullLHEEnvelope_rwgt6_ptGt300' : [ 3.84862232e+04, 2.19489064e+04, ], 'CountWeightedL1PrefireNom_rwgt6_ptGt300' : [ 2.76843531e+04, 2.76754848e+04, 2.76914286e+04, ], 'CountWeightedL1Prefire_rwgt6_ptGt300' : [ 2.76843531e+04, 2.74495981e+04, 2.79158882e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt6_ptGt300' : [ 3.70958562e+04, 3.34917172e+04, 3.04947956e+04, 3.06601657e+04, 2.76843531e+04, 2.52096720e+04, 2.57671421e+04, 2.32683740e+04, 2.11902105e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt6_ptGt300' : [ 3.70975889e+04, 2.11897275e+04, ], 'CountWeightedFullL1PrefireNom_rwgt6_ptGt300' : [ 2.76843531e+04, 2.76754848e+04, 2.76914286e+04, ], 'CountWeightedFullL1Prefire_rwgt6_ptGt300' : [ 2.76843531e+04, 2.74495981e+04, 2.79158882e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt6_ptGt300' : [ 3.70958562e+04, 3.34917172e+04, 3.04947956e+04, 3.06601657e+04, 2.76843531e+04, 2.52096720e+04, 2.57671421e+04, 2.32683740e+04, 2.11902105e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt6_ptGt300' : [ 3.70975889e+04, 2.11897275e+04, ], 'CountWeighted_rwgt6_pt300to450' : [ 2.25757156e+04, 2.25656541e+04, 2.25843115e+04, ], 'CountWeightedLHEWeightScale_rwgt6_pt300to450' : [ 3.02200146e+04, 2.73569751e+04, 2.49668674e+04, 2.49352164e+04, 2.25757156e+04, 2.06057489e+04, 2.09262346e+04, 1.89480784e+04, 1.72963256e+04, ], 'CountWeightedLHEEnvelope_rwgt6_pt300to450' : [ 3.02217373e+04, 1.72958439e+04, ], 'CountWeightedFull_rwgt6_pt300to450' : [ 2.25757156e+04, 2.25656541e+04, 2.25843115e+04, ], 'CountWeightedFullLHEWeightScale_rwgt6_pt300to450' : [ 3.02200146e+04, 2.73569751e+04, 2.49668674e+04, 2.49352164e+04, 2.25757156e+04, 2.06057489e+04, 2.09262346e+04, 1.89480784e+04, 1.72963256e+04, ], 'CountWeightedFullLHEEnvelope_rwgt6_pt300to450' : [ 3.02217373e+04, 1.72958439e+04, ], 'CountWeightedL1PrefireNom_rwgt6_pt300to450' : [ 2.17585681e+04, 2.17479446e+04, 2.17674154e+04, ], 'CountWeightedL1Prefire_rwgt6_pt300to450' : [ 2.17585681e+04, 2.15689517e+04, 2.19456308e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt6_pt300to450' : [ 2.91025879e+04, 2.63652267e+04, 2.40771859e+04, 2.40146398e+04, 2.17585681e+04, 1.98726072e+04, 2.01546670e+04, 1.82631209e+04, 1.66817224e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt6_pt300to450' : [ 2.91042783e+04, 1.66812530e+04, ], 'CountWeightedFullL1PrefireNom_rwgt6_pt300to450' : [ 2.17585681e+04, 2.17479446e+04, 2.17674154e+04, ], 'CountWeightedFullL1Prefire_rwgt6_pt300to450' : [ 2.17585681e+04, 2.15689517e+04, 2.19456308e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt6_pt300to450' : [ 2.91025879e+04, 2.63652267e+04, 2.40771859e+04, 2.40146398e+04, 2.17585681e+04, 1.98726072e+04, 2.01546670e+04, 1.82631209e+04, 1.66817224e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt6_pt300to450' : [ 2.91042783e+04, 1.66812530e+04, ], 'CountWeighted_rwgt6_ptGt450' : [ 6.12087945e+03, 6.12283195e+03, 6.11890593e+03, ], 'CountWeightedLHEWeightScale_rwgt6_ptGt450' : [ 8.26444374e+03, 7.36185940e+03, 6.62463236e+03, 6.87026713e+03, 6.12087945e+03, 5.50868244e+03, 5.80177859e+03, 5.16960015e+03, 4.65307586e+03, ], 'CountWeightedLHEEnvelope_rwgt6_ptGt450' : [ 8.26448715e+03, 4.65306163e+03, ], 'CountWeightedFull_rwgt6_ptGt450' : [ 6.12087945e+03, 6.12283195e+03, 6.11890593e+03, ], 'CountWeightedFullLHEWeightScale_rwgt6_ptGt450' : [ 8.26444374e+03, 7.36185940e+03, 6.62463236e+03, 6.87026713e+03, 6.12087945e+03, 5.50868244e+03, 5.80177859e+03, 5.16960015e+03, 4.65307586e+03, ], 'CountWeightedFullLHEEnvelope_rwgt6_ptGt450' : [ 8.26448715e+03, 4.65306163e+03, ], 'CountWeightedL1PrefireNom_rwgt6_ptGt450' : [ 5.92578861e+03, 5.92754993e+03, 5.92401745e+03, ], 'CountWeightedL1Prefire_rwgt6_ptGt450' : [ 5.92578861e+03, 5.88065001e+03, 5.97026488e+03, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt6_ptGt450' : [ 7.99326883e+03, 7.12649228e+03, 6.41760871e+03, 6.64552514e+03, 5.92578861e+03, 5.33706334e+03, 5.61247473e+03, 5.00525262e+03, 4.50848755e+03, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt6_ptGt450' : [ 7.99331106e+03, 4.50847382e+03, ], 'CountWeightedFullL1PrefireNom_rwgt6_ptGt450' : [ 5.92578861e+03, 5.92754993e+03, 5.92401745e+03, ], 'CountWeightedFullL1Prefire_rwgt6_ptGt450' : [ 5.92578861e+03, 5.88065001e+03, 5.97026488e+03, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt6_ptGt450' : [ 7.99326883e+03, 7.12649228e+03, 6.41760871e+03, 6.64552514e+03, 5.92578861e+03, 5.33706334e+03, 5.61247473e+03, 5.00525262e+03, 4.50848755e+03, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt6_ptGt450' : [ 7.99331106e+03, 4.50847382e+03, ], 'CountWeighted_rwgt7' : [ 9.61794353e-02, 9.61724297e-02, 9.61738390e-02, ], 'CountWeightedLHEWeightScale_rwgt7' : [ 1.26658522e-01, 1.17723263e-01, 1.09861885e-01, 1.03480839e-01, 9.61794353e-02, 8.97551190e-02, 8.61374505e-02, 8.00584985e-02, 7.47098062e-02, ], 'CountWeightedLHEEnvelope_rwgt7' : [ 1.26729381e-01, 7.46817393e-02, ], 'CountWeightedFull_rwgt7' : [ 9.61794353e-02, 9.61724297e-02, 9.61738390e-02, ], 'CountWeightedFullLHEWeightScale_rwgt7' : [ 1.26658522e-01, 1.17723263e-01, 1.09861885e-01, 1.03480839e-01, 9.61794353e-02, 8.97551190e-02, 8.61374505e-02, 8.00584985e-02, 7.47098062e-02, ], 'CountWeightedFullLHEEnvelope_rwgt7' : [ 1.26729381e-01, 7.46817393e-02, ], 'CountWeightedL1PrefireNom_rwgt7' : [ 9.30552571e-02, 9.30475220e-02, 9.30562115e-02, ], 'CountWeightedL1Prefire_rwgt7' : [ 9.30552571e-02, 9.22909857e-02, 9.37993488e-02, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt7' : [ 1.22487862e-01, 1.13903219e-01, 1.06340063e-01, 1.00070577e-01, 9.30552571e-02, 8.68755028e-02, 8.32968333e-02, 7.74564779e-02, 7.23112554e-02, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt7' : [ 1.22557970e-01, 7.22834675e-02, ], 'CountWeightedFullL1PrefireNom_rwgt7' : [ 9.30552571e-02, 9.30475220e-02, 9.30562115e-02, ], 'CountWeightedFullL1Prefire_rwgt7' : [ 9.30552571e-02, 9.22909857e-02, 9.37993488e-02, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt7' : [ 1.22487862e-01, 1.13903219e-01, 1.06340063e-01, 1.00070577e-01, 9.30552571e-02, 8.68755028e-02, 8.32968333e-02, 7.74564779e-02, 7.23112554e-02, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt7' : [ 1.22557970e-01, 7.22834675e-02, ], 'CountWeighted_rwgt7_fwd' : [ 1.42679242e-03, 1.42722397e-03, 1.42633243e-03, ], 'CountWeightedLHEWeightScale_rwgt7_fwd' : [ 1.89179874e-03, 1.74792526e-03, 1.62563415e-03, 1.54409954e-03, 1.42679242e-03, 1.32706501e-03, 1.28422411e-03, 1.18674449e-03, 1.10385707e-03, ], 'CountWeightedLHEEnvelope_rwgt7_fwd' : [ 1.89207129e-03, 1.10373982e-03, ], 'CountWeightedFull_rwgt7_fwd' : [ 1.42679242e-03, 1.42722397e-03, 1.42633243e-03, ], 'CountWeightedFullLHEWeightScale_rwgt7_fwd' : [ 1.89179874e-03, 1.74792526e-03, 1.62563415e-03, 1.54409954e-03, 1.42679242e-03, 1.32706501e-03, 1.28422411e-03, 1.18674449e-03, 1.10385707e-03, ], 'CountWeightedFullLHEEnvelope_rwgt7_fwd' : [ 1.89207129e-03, 1.10373982e-03, ], 'CountWeightedL1PrefireNom_rwgt7_fwd' : [ 1.22636841e-03, 1.22630398e-03, 1.22644076e-03, ], 'CountWeightedL1Prefire_rwgt7_fwd' : [ 1.22636841e-03, 1.18198259e-03, 1.27119467e-03, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt7_fwd' : [ 1.62550891e-03, 1.50280127e-03, 1.39841752e-03, 1.32638209e-03, 1.22636841e-03, 1.14127225e-03, 1.10289564e-03, 1.01980894e-03, 9.49103051e-04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt7_fwd' : [ 1.62574703e-03, 9.49001146e-04, ], 'CountWeightedFullL1PrefireNom_rwgt7_fwd' : [ 1.22636841e-03, 1.22630398e-03, 1.22644076e-03, ], 'CountWeightedFullL1Prefire_rwgt7_fwd' : [ 1.22636841e-03, 1.18198259e-03, 1.27119467e-03, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt7_fwd' : [ 1.62550891e-03, 1.50280127e-03, 1.39841752e-03, 1.32638209e-03, 1.22636841e-03, 1.14127225e-03, 1.10289564e-03, 1.01980894e-03, 9.49103051e-04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt7_fwd' : [ 1.62574703e-03, 9.49001146e-04, ], 'CountWeighted_rwgt7_pt0to60' : [ 2.14151515e-02, 2.14161204e-02, 2.14139317e-02, ], 'CountWeightedLHEWeightScale_rwgt7_pt0to60' : [ 2.79841575e-02, 2.62515235e-02, 2.46881596e-02, 2.28297928e-02, 2.14151515e-02, 2.01384928e-02, 1.89801718e-02, 1.78028459e-02, 1.67409900e-02, ], 'CountWeightedLHEEnvelope_rwgt7_pt0to60' : [ 2.80099786e-02, 1.67308244e-02, ], 'CountWeightedFull_rwgt7_pt0to60' : [ 2.14151515e-02, 2.14161204e-02, 2.14139317e-02, ], 'CountWeightedFullLHEWeightScale_rwgt7_pt0to60' : [ 2.79841575e-02, 2.62515235e-02, 2.46881596e-02, 2.28297928e-02, 2.14151515e-02, 2.01384928e-02, 1.89801718e-02, 1.78028459e-02, 1.67409900e-02, ], 'CountWeightedFullLHEEnvelope_rwgt7_pt0to60' : [ 2.80099786e-02, 1.67308244e-02, ], 'CountWeightedL1PrefireNom_rwgt7_pt0to60' : [ 2.08354758e-02, 2.08357610e-02, 2.08353066e-02, ], 'CountWeightedL1Prefire_rwgt7_pt0to60' : [ 2.08354758e-02, 2.06873467e-02, 2.09776237e-02, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt7_pt0to60' : [ 2.72174225e-02, 2.55418450e-02, 2.40281612e-02, 2.22036070e-02, 2.08354758e-02, 1.95995525e-02, 1.84591144e-02, 1.73206317e-02, 1.62925886e-02, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt7_pt0to60' : [ 2.72429867e-02, 1.62825114e-02, ], 'CountWeightedFullL1PrefireNom_rwgt7_pt0to60' : [ 2.08354758e-02, 2.08357610e-02, 2.08353066e-02, ], 'CountWeightedFullL1Prefire_rwgt7_pt0to60' : [ 2.08354758e-02, 2.06873467e-02, 2.09776237e-02, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt7_pt0to60' : [ 2.72174225e-02, 2.55418450e-02, 2.40281612e-02, 2.22036070e-02, 2.08354758e-02, 1.95995525e-02, 1.84591144e-02, 1.73206317e-02, 1.62925886e-02, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt7_pt0to60' : [ 2.72429867e-02, 1.62825114e-02, ], 'CountWeighted_rwgt7_pt60to120' : [ 3.39704903e-02, 3.39732560e-02, 3.39669392e-02, ], 'CountWeightedLHEWeightScale_rwgt7_pt60to120' : [ 4.46221982e-02, 4.16678890e-02, 3.90314067e-02, 3.63796047e-02, 3.39704903e-02, 3.18212829e-02, 3.02293205e-02, 2.82274579e-02, 2.64413657e-02, ], 'CountWeightedLHEEnvelope_rwgt7_pt60to120' : [ 4.46516708e-02, 2.64297175e-02, ], 'CountWeightedFull_rwgt7_pt60to120' : [ 3.39704903e-02, 3.39732560e-02, 3.39669392e-02, ], 'CountWeightedFullLHEWeightScale_rwgt7_pt60to120' : [ 4.46221982e-02, 4.16678890e-02, 3.90314067e-02, 3.63796047e-02, 3.39704903e-02, 3.18212829e-02, 3.02293205e-02, 2.82274579e-02, 2.64413657e-02, ], 'CountWeightedFullLHEEnvelope_rwgt7_pt60to120' : [ 4.46516708e-02, 2.64297175e-02, ], 'CountWeightedL1PrefireNom_rwgt7_pt60to120' : [ 3.29706562e-02, 3.29714398e-02, 3.29695367e-02, ], 'CountWeightedL1Prefire_rwgt7_pt60to120' : [ 3.29706562e-02, 3.27206235e-02, 3.32126100e-02, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt7_pt60to120' : [ 4.32925476e-02, 4.04427710e-02, 3.78964357e-02, 3.52943260e-02, 3.29706562e-02, 3.08949187e-02, 2.93266780e-02, 2.73957862e-02, 2.56709043e-02, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt7_pt60to120' : [ 4.33217156e-02, 2.56593660e-02, ], 'CountWeightedFullL1PrefireNom_rwgt7_pt60to120' : [ 3.29706562e-02, 3.29714398e-02, 3.29695367e-02, ], 'CountWeightedFullL1Prefire_rwgt7_pt60to120' : [ 3.29706562e-02, 3.27206235e-02, 3.32126100e-02, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt7_pt60to120' : [ 4.32925476e-02, 4.04427710e-02, 3.78964357e-02, 3.52943260e-02, 3.29706562e-02, 3.08949187e-02, 2.93266780e-02, 2.73957862e-02, 2.56709043e-02, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt7_pt60to120' : [ 4.33217156e-02, 2.56593660e-02, ], 'CountWeighted_rwgt7_pt120to200' : [ 2.46463867e-02, 2.46456085e-02, 2.46461082e-02, ], 'CountWeightedLHEWeightScale_rwgt7_pt120to200' : [ 3.25456183e-02, 3.01604948e-02, 2.80748516e-02, 2.65940636e-02, 2.46463867e-02, 2.29428132e-02, 2.21393742e-02, 2.05183628e-02, 1.91009987e-02, ], 'CountWeightedLHEEnvelope_rwgt7_pt120to200' : [ 3.25580667e-02, 1.90959092e-02, ], 'CountWeightedFull_rwgt7_pt120to200' : [ 2.46463867e-02, 2.46456085e-02, 2.46461082e-02, ], 'CountWeightedFullLHEWeightScale_rwgt7_pt120to200' : [ 3.25456183e-02, 3.01604948e-02, 2.80748516e-02, 2.65940636e-02, 2.46463867e-02, 2.29428132e-02, 2.21393742e-02, 2.05183628e-02, 1.91009987e-02, ], 'CountWeightedFullLHEEnvelope_rwgt7_pt120to200' : [ 3.25580667e-02, 1.90959092e-02, ], 'CountWeightedL1PrefireNom_rwgt7_pt120to200' : [ 2.38282973e-02, 2.38268530e-02, 2.38290698e-02, ], 'CountWeightedL1Prefire_rwgt7_pt120to200' : [ 2.38282973e-02, 2.36300346e-02, 2.40220788e-02, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt7_pt120to200' : [ 3.14509178e-02, 2.91599923e-02, 2.71542190e-02, 2.56990997e-02, 2.38282973e-02, 2.21900807e-02, 2.13940113e-02, 1.98370709e-02, 1.84740503e-02, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt7_pt120to200' : [ 3.14632314e-02, 1.84690125e-02, ], 'CountWeightedFullL1PrefireNom_rwgt7_pt120to200' : [ 2.38282973e-02, 2.38268530e-02, 2.38290698e-02, ], 'CountWeightedFullL1Prefire_rwgt7_pt120to200' : [ 2.38282973e-02, 2.36300346e-02, 2.40220788e-02, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt7_pt120to200' : [ 3.14509178e-02, 2.91599923e-02, 2.71542190e-02, 2.56990997e-02, 2.38282973e-02, 2.21900807e-02, 2.13940113e-02, 1.98370709e-02, 1.84740503e-02, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt7_pt120to200' : [ 3.14632314e-02, 1.84690125e-02, ], 'CountWeighted_rwgt7_pt200to300' : [ 1.01288626e-02, 1.01269421e-02, 1.01315539e-02, ], 'CountWeightedLHEWeightScale_rwgt7_pt200to300' : [ 1.34568882e-02, 1.23403517e-02, 1.13871095e-02, 1.10444750e-02, 1.01288626e-02, 9.34730994e-03, 9.22784394e-03, 8.46350865e-03, 7.81090250e-03, ], 'CountWeightedLHEEnvelope_rwgt7_pt200to300' : [ 1.34594704e-02, 7.80993188e-03, ], 'CountWeightedFull_rwgt7_pt200to300' : [ 1.01288626e-02, 1.01269421e-02, 1.01315539e-02, ], 'CountWeightedFullLHEWeightScale_rwgt7_pt200to300' : [ 1.34568882e-02, 1.23403517e-02, 1.13871095e-02, 1.10444750e-02, 1.01288626e-02, 9.34730994e-03, 9.22784394e-03, 8.46350865e-03, 7.81090250e-03, ], 'CountWeightedFullLHEEnvelope_rwgt7_pt200to300' : [ 1.34594704e-02, 7.80993188e-03, ], 'CountWeightedL1PrefireNom_rwgt7_pt200to300' : [ 9.76527014e-03, 9.76315463e-03, 9.76802963e-03, ], 'CountWeightedL1Prefire_rwgt7_pt200to300' : [ 9.76527014e-03, 9.67953799e-03, 9.84965368e-03, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt7_pt200to300' : [ 1.29657884e-02, 1.18971301e-02, 1.09836447e-02, 1.06415953e-02, 9.76527014e-03, 9.01626227e-03, 8.89135996e-03, 8.15977367e-03, 7.53436774e-03, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt7_pt200to300' : [ 1.29683406e-02, 7.53340890e-03, ], 'CountWeightedFullL1PrefireNom_rwgt7_pt200to300' : [ 9.76527014e-03, 9.76315463e-03, 9.76802963e-03, ], 'CountWeightedFullL1Prefire_rwgt7_pt200to300' : [ 9.76527014e-03, 9.67953799e-03, 9.84965368e-03, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt7_pt200to300' : [ 1.29657884e-02, 1.18971301e-02, 1.09836447e-02, 1.06415953e-02, 9.76527014e-03, 9.01626227e-03, 8.89135996e-03, 8.15977367e-03, 7.53436774e-03, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt7_pt200to300' : [ 1.29683406e-02, 7.53340890e-03, ], 'CountWeighted_rwgt7_ptGt300' : [ 4.59146903e-03, 4.59011670e-03, 4.59252996e-03, ], 'CountWeightedLHEWeightScale_rwgt7_ptGt300' : [ 6.15749730e-03, 5.55499948e-03, 5.05462637e-03, 5.08886399e-03, 4.59146903e-03, 4.17829792e-03, 4.27647109e-03, 3.85881910e-03, 3.51189497e-03, ], 'CountWeightedLHEEnvelope_rwgt7_ptGt300' : [ 6.15777996e-03, 3.51181566e-03, ], 'CountWeightedFull_rwgt7_ptGt300' : [ 4.59146903e-03, 4.59011670e-03, 4.59252996e-03, ], 'CountWeightedFullLHEWeightScale_rwgt7_ptGt300' : [ 6.15749730e-03, 5.55499948e-03, 5.05462637e-03, 5.08886399e-03, 4.59146903e-03, 4.17829792e-03, 4.27647109e-03, 3.85881910e-03, 3.51189497e-03, ], 'CountWeightedFullLHEEnvelope_rwgt7_ptGt300' : [ 6.15777996e-03, 3.51181566e-03, ], 'CountWeightedL1PrefireNom_rwgt7_ptGt300' : [ 4.42950057e-03, 4.42804987e-03, 4.43063291e-03, ], 'CountWeightedL1Prefire_rwgt7_ptGt300' : [ 4.42950057e-03, 4.39193940e-03, 4.46654696e-03, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt7_ptGt300' : [ 5.93532160e-03, 5.35866164e-03, 4.87915426e-03, 4.90561349e-03, 4.42950057e-03, 4.03353674e-03, 4.12273177e-03, 3.72293007e-03, 3.39042447e-03, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt7_ptGt300' : [ 5.93559886e-03, 3.39034718e-03, ], 'CountWeightedFullL1PrefireNom_rwgt7_ptGt300' : [ 4.42950057e-03, 4.42804987e-03, 4.43063291e-03, ], 'CountWeightedFullL1Prefire_rwgt7_ptGt300' : [ 4.42950057e-03, 4.39193940e-03, 4.46654696e-03, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt7_ptGt300' : [ 5.93532160e-03, 5.35866164e-03, 4.87915426e-03, 4.90561349e-03, 4.42950057e-03, 4.03353674e-03, 4.12273177e-03, 3.72293007e-03, 3.39042447e-03, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt7_ptGt300' : [ 5.93559886e-03, 3.39034718e-03, ], 'CountWeighted_rwgt7_pt300to450' : [ 3.61211106e-03, 3.61047907e-03, 3.61349124e-03, ], 'CountWeightedLHEWeightScale_rwgt7_pt300to450' : [ 4.83518940e-03, 4.37710498e-03, 3.99468816e-03, 3.98962435e-03, 3.61211106e-03, 3.29691114e-03, 3.34818875e-03, 3.03168536e-03, 2.76740457e-03, ], 'CountWeightedLHEEnvelope_rwgt7_pt300to450' : [ 4.83546505e-03, 2.76732753e-03, ], 'CountWeightedFull_rwgt7_pt300to450' : [ 3.61211106e-03, 3.61047907e-03, 3.61349124e-03, ], 'CountWeightedFullLHEWeightScale_rwgt7_pt300to450' : [ 4.83518940e-03, 4.37710498e-03, 3.99468816e-03, 3.98962435e-03, 3.61211106e-03, 3.29691114e-03, 3.34818875e-03, 3.03168536e-03, 2.76740457e-03, ], 'CountWeightedFullLHEEnvelope_rwgt7_pt300to450' : [ 4.83546505e-03, 2.76732753e-03, ], 'CountWeightedL1PrefireNom_rwgt7_pt300to450' : [ 3.48136437e-03, 3.47965291e-03, 3.48278272e-03, ], 'CountWeightedL1Prefire_rwgt7_pt300to450' : [ 3.48136437e-03, 3.45102568e-03, 3.51129430e-03, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt7_pt300to450' : [ 4.65640196e-03, 4.21842585e-03, 3.85233944e-03, 3.84233236e-03, 3.48136437e-03, 3.17960906e-03, 3.22473817e-03, 2.92209180e-03, 2.66906840e-03, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt7_pt300to450' : [ 4.65667251e-03, 2.66899332e-03, ], 'CountWeightedFullL1PrefireNom_rwgt7_pt300to450' : [ 3.48136437e-03, 3.47965291e-03, 3.48278272e-03, ], 'CountWeightedFullL1Prefire_rwgt7_pt300to450' : [ 3.48136437e-03, 3.45102568e-03, 3.51129430e-03, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt7_pt300to450' : [ 4.65640196e-03, 4.21842585e-03, 3.85233944e-03, 3.84233236e-03, 3.48136437e-03, 3.17960906e-03, 3.22473817e-03, 2.92209180e-03, 2.66906840e-03, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt7_pt300to450' : [ 4.65667251e-03, 2.66899332e-03, ], 'CountWeighted_rwgt7_ptGt450' : [ 9.79338320e-04, 9.79650693e-04, 9.79022405e-04, ], 'CountWeightedLHEWeightScale_rwgt7_ptGt450' : [ 1.32230746e-03, 1.17789441e-03, 1.05993839e-03, 1.09923984e-03, 9.79338320e-04, 8.81386848e-04, 9.28282211e-04, 8.27133905e-04, 7.44490126e-04, ], 'CountWeightedLHEEnvelope_rwgt7_ptGt450' : [ 1.32231442e-03, 7.44487847e-04, ], 'CountWeightedFull_rwgt7_ptGt450' : [ 9.79338320e-04, 9.79650693e-04, 9.79022405e-04, ], 'CountWeightedFullLHEWeightScale_rwgt7_ptGt450' : [ 1.32230746e-03, 1.17789441e-03, 1.05993839e-03, 1.09923984e-03, 9.79338320e-04, 8.81386848e-04, 9.28282211e-04, 8.27133905e-04, 7.44490126e-04, ], 'CountWeightedFullLHEEnvelope_rwgt7_ptGt450' : [ 1.32231442e-03, 7.44487847e-04, ], 'CountWeightedL1PrefireNom_rwgt7_ptGt450' : [ 9.48123857e-04, 9.48405572e-04, 9.47840332e-04, ], 'CountWeightedL1Prefire_rwgt7_ptGt450' : [ 9.48123857e-04, 9.40901672e-04, 9.55240049e-04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt7_ptGt450' : [ 1.27891963e-03, 1.14023576e-03, 1.02681469e-03, 1.06328124e-03, 9.48123857e-04, 8.53927886e-04, 8.97993656e-04, 8.00838343e-04, 7.21356072e-04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt7_ptGt450' : [ 1.27892639e-03, 7.21353871e-04, ], 'CountWeightedFullL1PrefireNom_rwgt7_ptGt450' : [ 9.48123857e-04, 9.48405572e-04, 9.47840332e-04, ], 'CountWeightedFullL1Prefire_rwgt7_ptGt450' : [ 9.48123857e-04, 9.40901672e-04, 9.55240049e-04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt7_ptGt450' : [ 1.27891963e-03, 1.14023576e-03, 1.02681469e-03, 1.06328124e-03, 9.48123857e-04, 8.53927886e-04, 8.97993656e-04, 8.00838343e-04, 7.21356072e-04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt7_ptGt450' : [ 1.27892639e-03, 7.21353871e-04, ], 'CountWeighted_rwgt8' : [ 6.01142199e+05, 6.01127399e+05, 6.01132785e+05, ], 'CountWeightedLHEWeightScale_rwgt8' : [ 7.91613918e+05, 7.35774104e+05, 6.86638575e+05, 6.46757482e+05, 6.01142199e+05, 5.60971852e+05, 5.38361028e+05, 5.00363029e+05, 4.66939110e+05, ], 'CountWeightedLHEEnvelope_rwgt8' : [ 7.92056545e+05, 4.66763597e+05, ], 'CountWeightedFull_rwgt8' : [ 6.01142199e+05, 6.01127399e+05, 6.01132785e+05, ], 'CountWeightedFullLHEWeightScale_rwgt8' : [ 7.91613918e+05, 7.35774104e+05, 6.86638575e+05, 6.46757482e+05, 6.01142199e+05, 5.60971852e+05, 5.38361028e+05, 5.00363029e+05, 4.66939110e+05, ], 'CountWeightedFullLHEEnvelope_rwgt8' : [ 7.92056545e+05, 4.66763597e+05, ], 'CountWeightedL1PrefireNom_rwgt8' : [ 5.81611039e+05, 5.81576257e+05, 5.81630510e+05, ], 'CountWeightedL1Prefire_rwgt8' : [ 5.81611039e+05, 5.76832755e+05, 5.86261096e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt8' : [ 7.65547182e+05, 7.11898053e+05, 6.64627610e+05, 6.25443266e+05, 5.81611039e+05, 5.42974126e+05, 5.20607168e+05, 4.84101535e+05, 4.51947895e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt8' : [ 7.65985165e+05, 4.51774148e+05, ], 'CountWeightedFullL1PrefireNom_rwgt8' : [ 5.81611039e+05, 5.81576257e+05, 5.81630510e+05, ], 'CountWeightedFullL1Prefire_rwgt8' : [ 5.81611039e+05, 5.76832755e+05, 5.86261096e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt8' : [ 7.65547182e+05, 7.11898053e+05, 6.64627610e+05, 6.25443266e+05, 5.81611039e+05, 5.42974126e+05, 5.20607168e+05, 4.84101535e+05, 4.51947895e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt8' : [ 7.65985165e+05, 4.51774148e+05, ], 'CountWeighted_rwgt8_fwd' : [ 8.91747458e+03, 8.92016722e+03, 8.91460746e+03, ], 'CountWeightedLHEWeightScale_rwgt8_fwd' : [ 1.18237743e+04, 1.09245623e+04, 1.01602396e+04, 9.65064661e+03, 8.91747458e+03, 8.29417842e+03, 8.02642220e+03, 7.41717212e+03, 6.89912456e+03, ], 'CountWeightedLHEEnvelope_rwgt8_fwd' : [ 1.18254776e+04, 6.89839169e+03, ], 'CountWeightedFull_rwgt8_fwd' : [ 8.91747458e+03, 8.92016722e+03, 8.91460746e+03, ], 'CountWeightedFullLHEWeightScale_rwgt8_fwd' : [ 1.18237743e+04, 1.09245623e+04, 1.01602396e+04, 9.65064661e+03, 8.91747458e+03, 8.29417842e+03, 8.02642220e+03, 7.41717212e+03, 6.89912456e+03, ], 'CountWeightedFullLHEEnvelope_rwgt8_fwd' : [ 1.18254776e+04, 6.89839169e+03, ], 'CountWeightedL1PrefireNom_rwgt8_fwd' : [ 7.66482207e+03, 7.66441900e+03, 7.66527541e+03, ], 'CountWeightedL1Prefire_rwgt8_fwd' : [ 7.66482207e+03, 7.38741073e+03, 7.94498798e+03, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt8_fwd' : [ 1.01594570e+04, 9.39253287e+03, 8.74013226e+03, 8.28990982e+03, 7.66482207e+03, 7.13296982e+03, 6.89311569e+03, 6.37382263e+03, 5.93190964e+03, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt8_fwd' : [ 1.01609453e+04, 5.93127267e+03, ], 'CountWeightedFullL1PrefireNom_rwgt8_fwd' : [ 7.66482207e+03, 7.66441900e+03, 7.66527541e+03, ], 'CountWeightedFullL1Prefire_rwgt8_fwd' : [ 7.66482207e+03, 7.38741073e+03, 7.94498798e+03, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt8_fwd' : [ 1.01594570e+04, 9.39253287e+03, 8.74013226e+03, 8.28990982e+03, 7.66482207e+03, 7.13296982e+03, 6.89311569e+03, 6.37382263e+03, 5.93190964e+03, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt8_fwd' : [ 1.01609453e+04, 5.93127267e+03, ], 'CountWeighted_rwgt8_pt0to60' : [ 1.33843401e+05, 1.33850655e+05, 1.33837037e+05, ], 'CountWeightedLHEWeightScale_rwgt8_pt0to60' : [ 1.74901355e+05, 1.64072630e+05, 1.54301397e+05, 1.42686628e+05, 1.33843401e+05, 1.25865873e+05, 1.18626403e+05, 1.11268195e+05, 1.04631475e+05, ], 'CountWeightedLHEEnvelope_rwgt8_pt0to60' : [ 1.75062753e+05, 1.04567933e+05, ], 'CountWeightedFull_rwgt8_pt0to60' : [ 1.33843401e+05, 1.33850655e+05, 1.33837037e+05, ], 'CountWeightedFullLHEWeightScale_rwgt8_pt0to60' : [ 1.74901355e+05, 1.64072630e+05, 1.54301397e+05, 1.42686628e+05, 1.33843401e+05, 1.25865873e+05, 1.18626403e+05, 1.11268195e+05, 1.04631475e+05, ], 'CountWeightedFullLHEEnvelope_rwgt8_pt0to60' : [ 1.75062753e+05, 1.04567933e+05, ], 'CountWeightedL1PrefireNom_rwgt8_pt0to60' : [ 1.30221186e+05, 1.30223513e+05, 1.30220808e+05, ], 'CountWeightedL1Prefire_rwgt8_pt0to60' : [ 1.30221186e+05, 1.29295419e+05, 1.31109475e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt8_pt0to60' : [ 1.70109295e+05, 1.59637019e+05, 1.50176403e+05, 1.38772955e+05, 1.30221186e+05, 1.22497526e+05, 1.15369784e+05, 1.08254304e+05, 1.01828952e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt8_pt0to60' : [ 1.70269081e+05, 1.01765970e+05, ], 'CountWeightedFullL1PrefireNom_rwgt8_pt0to60' : [ 1.30221186e+05, 1.30223513e+05, 1.30220808e+05, ], 'CountWeightedFullL1Prefire_rwgt8_pt0to60' : [ 1.30221186e+05, 1.29295419e+05, 1.31109475e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt8_pt0to60' : [ 1.70109295e+05, 1.59637019e+05, 1.50176403e+05, 1.38772955e+05, 1.30221186e+05, 1.22497526e+05, 1.15369784e+05, 1.08254304e+05, 1.01828952e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt8_pt0to60' : [ 1.70269081e+05, 1.01765970e+05, ], 'CountWeighted_rwgt8_pt60to120' : [ 2.12317981e+05, 2.12330604e+05, 2.12300215e+05, ], 'CountWeightedLHEWeightScale_rwgt8_pt60to120' : [ 2.78889458e+05, 2.60425350e+05, 2.43946968e+05, 2.27373154e+05, 2.12317981e+05, 1.98883536e+05, 1.88933804e+05, 1.76422039e+05, 1.65258951e+05, ], 'CountWeightedLHEEnvelope_rwgt8_pt60to120' : [ 2.79073670e+05, 1.65186158e+05, ], 'CountWeightedFull_rwgt8_pt60to120' : [ 2.12317981e+05, 2.12330604e+05, 2.12300215e+05, ], 'CountWeightedFullLHEWeightScale_rwgt8_pt60to120' : [ 2.78889458e+05, 2.60425350e+05, 2.43946968e+05, 2.27373154e+05, 2.12317981e+05, 1.98883536e+05, 1.88933804e+05, 1.76422039e+05, 1.65258951e+05, ], 'CountWeightedFullLHEEnvelope_rwgt8_pt60to120' : [ 2.79073670e+05, 1.65186158e+05, ], 'CountWeightedL1PrefireNom_rwgt8_pt60to120' : [ 2.06068310e+05, 2.06070502e+05, 2.06063470e+05, ], 'CountWeightedL1Prefire_rwgt8_pt60to120' : [ 2.06068310e+05, 2.04505395e+05, 2.07580255e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt8_pt60to120' : [ 2.70579057e+05, 2.52768316e+05, 2.36853324e+05, 2.20590187e+05, 2.06068310e+05, 1.93093790e+05, 1.83292290e+05, 1.71224030e+05, 1.60443555e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt8_pt60to120' : [ 2.70761369e+05, 1.60371449e+05, ], 'CountWeightedFullL1PrefireNom_rwgt8_pt60to120' : [ 2.06068310e+05, 2.06070502e+05, 2.06063470e+05, ], 'CountWeightedFullL1Prefire_rwgt8_pt60to120' : [ 2.06068310e+05, 2.04505395e+05, 2.07580255e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt8_pt60to120' : [ 2.70579057e+05, 2.52768316e+05, 2.36853324e+05, 2.20590187e+05, 2.06068310e+05, 1.93093790e+05, 1.83292290e+05, 1.71224030e+05, 1.60443555e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt8_pt60to120' : [ 2.70761369e+05, 1.60371449e+05, ], 'CountWeighted_rwgt8_pt120to200' : [ 1.54038820e+05, 1.54034700e+05, 1.54038443e+05, ], 'CountWeightedLHEWeightScale_rwgt8_pt120to200' : [ 2.03410613e+05, 1.88503749e+05, 1.75468308e+05, 1.66213320e+05, 1.54038820e+05, 1.43392933e+05, 1.38371438e+05, 1.28240137e+05, 1.19381582e+05, ], 'CountWeightedLHEEnvelope_rwgt8_pt120to200' : [ 2.03488423e+05, 1.19349773e+05, ], 'CountWeightedFull_rwgt8_pt120to200' : [ 1.54038820e+05, 1.54034700e+05, 1.54038443e+05, ], 'CountWeightedFullLHEWeightScale_rwgt8_pt120to200' : [ 2.03410613e+05, 1.88503749e+05, 1.75468308e+05, 1.66213320e+05, 1.54038820e+05, 1.43392933e+05, 1.38371438e+05, 1.28240137e+05, 1.19381582e+05, ], 'CountWeightedFullLHEEnvelope_rwgt8_pt120to200' : [ 2.03488423e+05, 1.19349773e+05, ], 'CountWeightedL1PrefireNom_rwgt8_pt120to200' : [ 1.48926158e+05, 1.48917733e+05, 1.48931559e+05, ], 'CountWeightedL1Prefire_rwgt8_pt120to200' : [ 1.48926158e+05, 1.47686896e+05, 1.50137135e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt8_pt120to200' : [ 1.96568762e+05, 1.82250526e+05, 1.69714316e+05, 1.60619812e+05, 1.48926158e+05, 1.38688365e+05, 1.33712950e+05, 1.23982063e+05, 1.15463129e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt8_pt120to200' : [ 1.96645731e+05, 1.15431643e+05, ], 'CountWeightedFullL1PrefireNom_rwgt8_pt120to200' : [ 1.48926158e+05, 1.48917733e+05, 1.48931559e+05, ], 'CountWeightedFullL1Prefire_rwgt8_pt120to200' : [ 1.48926158e+05, 1.47686896e+05, 1.50137135e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt8_pt120to200' : [ 1.96568762e+05, 1.82250526e+05, 1.69714316e+05, 1.60619812e+05, 1.48926158e+05, 1.38688365e+05, 1.33712950e+05, 1.23982063e+05, 1.15463129e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt8_pt120to200' : [ 1.96645731e+05, 1.15431643e+05, ], 'CountWeighted_rwgt8_pt200to300' : [ 6.33059311e+04, 6.32933158e+04, 6.33224732e+04, ], 'CountWeightedLHEWeightScale_rwgt8_pt200to300' : [ 8.41057779e+04, 7.71274129e+04, 7.11696062e+04, 6.90281443e+04, 6.33059311e+04, 5.84208445e+04, 5.76741742e+04, 5.28970586e+04, 4.88182711e+04, ], 'CountWeightedLHEEnvelope_rwgt8_pt200to300' : [ 8.41219161e+04, 4.88122062e+04, ], 'CountWeightedFull_rwgt8_pt200to300' : [ 6.33059311e+04, 6.32933158e+04, 6.33224732e+04, ], 'CountWeightedFullLHEWeightScale_rwgt8_pt200to300' : [ 8.41057779e+04, 7.71274129e+04, 7.11696062e+04, 6.90281443e+04, 6.33059311e+04, 5.84208445e+04, 5.76741742e+04, 5.28970586e+04, 4.88182711e+04, ], 'CountWeightedFullLHEEnvelope_rwgt8_pt200to300' : [ 8.41219161e+04, 4.88122062e+04, ], 'CountWeightedL1PrefireNom_rwgt8_pt200to300' : [ 6.10332949e+04, 6.10197396e+04, 6.10503794e+04, ], 'CountWeightedL1Prefire_rwgt8_pt200to300' : [ 6.10332949e+04, 6.04974821e+04, 6.15607127e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt8_pt200to300' : [ 8.10364068e+04, 7.43572744e+04, 6.86479506e+04, 6.65101543e+04, 6.10332949e+04, 5.63517776e+04, 5.55711411e+04, 5.09987095e+04, 4.70899218e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt8_pt200to300' : [ 8.10523576e+04, 4.70839310e+04, ], 'CountWeightedFullL1PrefireNom_rwgt8_pt200to300' : [ 6.10332949e+04, 6.10197396e+04, 6.10503794e+04, ], 'CountWeightedFullL1Prefire_rwgt8_pt200to300' : [ 6.10332949e+04, 6.04974821e+04, 6.15607127e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt8_pt200to300' : [ 8.10364068e+04, 7.43572744e+04, 6.86479506e+04, 6.65101543e+04, 6.10332949e+04, 5.63517776e+04, 5.55711411e+04, 5.09987095e+04, 4.70899218e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt8_pt200to300' : [ 8.10523576e+04, 4.70839310e+04, ], 'CountWeighted_rwgt8_ptGt300' : [ 2.86965797e+04, 2.86884625e+04, 2.87032112e+04, ], 'CountWeightedLHEWeightScale_rwgt8_ptGt300' : [ 3.84844568e+04, 3.47188338e+04, 3.15915005e+04, 3.18054824e+04, 2.86965797e+04, 2.61144319e+04, 2.67280142e+04, 2.41176790e+04, 2.19494021e+04, ], 'CountWeightedLHEEnvelope_rwgt8_ptGt300' : [ 3.84862232e+04, 2.19489064e+04, ], 'CountWeightedFull_rwgt8_ptGt300' : [ 2.86965797e+04, 2.86884625e+04, 2.87032112e+04, ], 'CountWeightedFullLHEWeightScale_rwgt8_ptGt300' : [ 3.84844568e+04, 3.47188338e+04, 3.15915005e+04, 3.18054824e+04, 2.86965797e+04, 2.61144319e+04, 2.67280142e+04, 2.41176790e+04, 2.19494021e+04, ], 'CountWeightedFullLHEEnvelope_rwgt8_ptGt300' : [ 3.84862232e+04, 2.19489064e+04, ], 'CountWeightedL1PrefireNom_rwgt8_ptGt300' : [ 2.76843531e+04, 2.76754848e+04, 2.76914286e+04, ], 'CountWeightedL1Prefire_rwgt8_ptGt300' : [ 2.76843531e+04, 2.74495981e+04, 2.79158882e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt8_ptGt300' : [ 3.70958562e+04, 3.34917172e+04, 3.04947956e+04, 3.06601657e+04, 2.76843531e+04, 2.52096720e+04, 2.57671421e+04, 2.32683740e+04, 2.11902105e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt8_ptGt300' : [ 3.70975889e+04, 2.11897275e+04, ], 'CountWeightedFullL1PrefireNom_rwgt8_ptGt300' : [ 2.76843531e+04, 2.76754848e+04, 2.76914286e+04, ], 'CountWeightedFullL1Prefire_rwgt8_ptGt300' : [ 2.76843531e+04, 2.74495981e+04, 2.79158882e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt8_ptGt300' : [ 3.70958562e+04, 3.34917172e+04, 3.04947956e+04, 3.06601657e+04, 2.76843531e+04, 2.52096720e+04, 2.57671421e+04, 2.32683740e+04, 2.11902105e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt8_ptGt300' : [ 3.70975889e+04, 2.11897275e+04, ], 'CountWeighted_rwgt8_pt300to450' : [ 2.25757156e+04, 2.25656541e+04, 2.25843115e+04, ], 'CountWeightedLHEWeightScale_rwgt8_pt300to450' : [ 3.02200146e+04, 2.73569751e+04, 2.49668674e+04, 2.49352164e+04, 2.25757156e+04, 2.06057489e+04, 2.09262346e+04, 1.89480784e+04, 1.72963256e+04, ], 'CountWeightedLHEEnvelope_rwgt8_pt300to450' : [ 3.02217373e+04, 1.72958439e+04, ], 'CountWeightedFull_rwgt8_pt300to450' : [ 2.25757156e+04, 2.25656541e+04, 2.25843115e+04, ], 'CountWeightedFullLHEWeightScale_rwgt8_pt300to450' : [ 3.02200146e+04, 2.73569751e+04, 2.49668674e+04, 2.49352164e+04, 2.25757156e+04, 2.06057489e+04, 2.09262346e+04, 1.89480784e+04, 1.72963256e+04, ], 'CountWeightedFullLHEEnvelope_rwgt8_pt300to450' : [ 3.02217373e+04, 1.72958439e+04, ], 'CountWeightedL1PrefireNom_rwgt8_pt300to450' : [ 2.17585681e+04, 2.17479446e+04, 2.17674154e+04, ], 'CountWeightedL1Prefire_rwgt8_pt300to450' : [ 2.17585681e+04, 2.15689517e+04, 2.19456308e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt8_pt300to450' : [ 2.91025879e+04, 2.63652267e+04, 2.40771859e+04, 2.40146398e+04, 2.17585681e+04, 1.98726072e+04, 2.01546670e+04, 1.82631209e+04, 1.66817224e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt8_pt300to450' : [ 2.91042783e+04, 1.66812530e+04, ], 'CountWeightedFullL1PrefireNom_rwgt8_pt300to450' : [ 2.17585681e+04, 2.17479446e+04, 2.17674154e+04, ], 'CountWeightedFullL1Prefire_rwgt8_pt300to450' : [ 2.17585681e+04, 2.15689517e+04, 2.19456308e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt8_pt300to450' : [ 2.91025879e+04, 2.63652267e+04, 2.40771859e+04, 2.40146398e+04, 2.17585681e+04, 1.98726072e+04, 2.01546670e+04, 1.82631209e+04, 1.66817224e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt8_pt300to450' : [ 2.91042783e+04, 1.66812530e+04, ], 'CountWeighted_rwgt8_ptGt450' : [ 6.12087945e+03, 6.12283195e+03, 6.11890593e+03, ], 'CountWeightedLHEWeightScale_rwgt8_ptGt450' : [ 8.26444374e+03, 7.36185940e+03, 6.62463236e+03, 6.87026713e+03, 6.12087945e+03, 5.50868244e+03, 5.80177859e+03, 5.16960015e+03, 4.65307586e+03, ], 'CountWeightedLHEEnvelope_rwgt8_ptGt450' : [ 8.26448715e+03, 4.65306163e+03, ], 'CountWeightedFull_rwgt8_ptGt450' : [ 6.12087945e+03, 6.12283195e+03, 6.11890593e+03, ], 'CountWeightedFullLHEWeightScale_rwgt8_ptGt450' : [ 8.26444374e+03, 7.36185940e+03, 6.62463236e+03, 6.87026713e+03, 6.12087945e+03, 5.50868244e+03, 5.80177859e+03, 5.16960015e+03, 4.65307586e+03, ], 'CountWeightedFullLHEEnvelope_rwgt8_ptGt450' : [ 8.26448715e+03, 4.65306163e+03, ], 'CountWeightedL1PrefireNom_rwgt8_ptGt450' : [ 5.92578861e+03, 5.92754993e+03, 5.92401745e+03, ], 'CountWeightedL1Prefire_rwgt8_ptGt450' : [ 5.92578861e+03, 5.88065001e+03, 5.97026488e+03, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt8_ptGt450' : [ 7.99326883e+03, 7.12649228e+03, 6.41760871e+03, 6.64552514e+03, 5.92578861e+03, 5.33706334e+03, 5.61247473e+03, 5.00525262e+03, 4.50848755e+03, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt8_ptGt450' : [ 7.99331106e+03, 4.50847382e+03, ], 'CountWeightedFullL1PrefireNom_rwgt8_ptGt450' : [ 5.92578861e+03, 5.92754993e+03, 5.92401745e+03, ], 'CountWeightedFullL1Prefire_rwgt8_ptGt450' : [ 5.92578861e+03, 5.88065001e+03, 5.97026488e+03, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt8_ptGt450' : [ 7.99326883e+03, 7.12649228e+03, 6.41760871e+03, 6.64552514e+03, 5.92578861e+03, 5.33706334e+03, 5.61247473e+03, 5.00525262e+03, 4.50848755e+03, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt8_ptGt450' : [ 7.99331106e+03, 4.50847382e+03, ], 'CountWeighted_rwgt9' : [ 2.40457549e+06, 2.40454908e+06, 2.40456363e+06, ], 'CountWeightedLHEWeightScale_rwgt9' : [ 3.16648036e+06, 2.94311957e+06, 2.74657626e+06, 2.58705056e+06, 2.40457549e+06, 2.24390513e+06, 2.15346115e+06, 2.00146780e+06, 1.86777120e+06, ], 'CountWeightedLHEEnvelope_rwgt9' : [ 3.16825092e+06, 1.86706914e+06, ], 'CountWeightedFull_rwgt9' : [ 2.40457549e+06, 2.40454908e+06, 2.40456363e+06, ], 'CountWeightedFullLHEWeightScale_rwgt9' : [ 3.16648036e+06, 2.94311957e+06, 2.74657626e+06, 2.58705056e+06, 2.40457549e+06, 2.24390513e+06, 2.15346115e+06, 2.00146780e+06, 1.86777120e+06, ], 'CountWeightedFullLHEEnvelope_rwgt9' : [ 3.16825092e+06, 1.86706914e+06, ], 'CountWeightedL1PrefireNom_rwgt9' : [ 2.32645661e+06, 2.32633415e+06, 2.32654730e+06, ], 'CountWeightedL1Prefire_rwgt9' : [ 2.32645661e+06, 2.30734312e+06, 2.34505627e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt9' : [ 3.06221298e+06, 2.84761477e+06, 2.65853165e+06, 2.50179311e+06, 2.32645661e+06, 2.17191362e+06, 2.08244517e+06, 1.93642132e+06, 1.80780595e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt9' : [ 3.06396493e+06, 1.80711094e+06, ], 'CountWeightedFullL1PrefireNom_rwgt9' : [ 2.32645661e+06, 2.32633415e+06, 2.32654730e+06, ], 'CountWeightedFullL1Prefire_rwgt9' : [ 2.32645661e+06, 2.30734312e+06, 2.34505627e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt9' : [ 3.06221298e+06, 2.84761477e+06, 2.65853165e+06, 2.50179311e+06, 2.32645661e+06, 2.17191362e+06, 2.08244517e+06, 1.93642132e+06, 1.80780595e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt9' : [ 3.06396493e+06, 1.80711094e+06, ], 'CountWeighted_rwgt9_fwd' : [ 3.56701668e+04, 3.56809691e+04, 3.56587142e+04, ], 'CountWeightedLHEWeightScale_rwgt9_fwd' : [ 4.72954743e+04, 4.36985966e+04, 4.06412825e+04, 3.86028947e+04, 3.56701668e+04, 3.31769790e+04, 3.21059435e+04, 2.96689236e+04, 2.75967198e+04, ], 'CountWeightedLHEEnvelope_rwgt9_fwd' : [ 4.73022877e+04, 2.75937884e+04, ], 'CountWeightedFull_rwgt9_fwd' : [ 3.56701668e+04, 3.56809691e+04, 3.56587142e+04, ], 'CountWeightedFullLHEWeightScale_rwgt9_fwd' : [ 4.72954743e+04, 4.36985966e+04, 4.06412825e+04, 3.86028947e+04, 3.56701668e+04, 3.31769790e+04, 3.21059435e+04, 2.96689236e+04, 2.75967198e+04, ], 'CountWeightedFullLHEEnvelope_rwgt9_fwd' : [ 4.73022877e+04, 2.75937884e+04, ], 'CountWeightedL1PrefireNom_rwgt9_fwd' : [ 3.06595338e+04, 3.06579209e+04, 3.06613461e+04, ], 'CountWeightedL1Prefire_rwgt9_fwd' : [ 3.06595338e+04, 2.95498779e+04, 3.17802039e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt9_fwd' : [ 4.06381521e+04, 3.75704309e+04, 3.49608076e+04, 3.31599025e+04, 3.06595338e+04, 2.85321063e+04, 2.75726827e+04, 2.54954936e+04, 2.37278275e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt9_fwd' : [ 4.06441051e+04, 2.37252797e+04, ], 'CountWeightedFullL1PrefireNom_rwgt9_fwd' : [ 3.06595338e+04, 3.06579209e+04, 3.06613461e+04, ], 'CountWeightedFullL1Prefire_rwgt9_fwd' : [ 3.06595338e+04, 2.95498779e+04, 3.17802039e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt9_fwd' : [ 4.06381521e+04, 3.75704309e+04, 3.49608076e+04, 3.31599025e+04, 3.06595338e+04, 2.85321063e+04, 2.75726827e+04, 2.54954936e+04, 2.37278275e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt9_fwd' : [ 4.06441051e+04, 2.37252797e+04, ], 'CountWeighted_rwgt9_pt0to60' : [ 5.35378480e+05, 5.35407580e+05, 5.35352654e+05, ], 'CountWeightedLHEWeightScale_rwgt9_pt0to60' : [ 6.99610950e+05, 6.56295726e+05, 6.17210507e+05, 5.70751037e+05, 5.35378480e+05, 5.03467492e+05, 4.74509413e+05, 4.45076293e+05, 4.18529198e+05, ], 'CountWeightedLHEEnvelope_rwgt9_pt0to60' : [ 7.00256547e+05, 4.18275020e+05, ], 'CountWeightedFull_rwgt9_pt0to60' : [ 5.35378480e+05, 5.35407580e+05, 5.35352654e+05, ], 'CountWeightedFullLHEWeightScale_rwgt9_pt0to60' : [ 6.99610950e+05, 6.56295726e+05, 6.17210507e+05, 5.70751037e+05, 5.35378480e+05, 5.03467492e+05, 4.74509413e+05, 4.45076293e+05, 4.18529198e+05, ], 'CountWeightedFullLHEEnvelope_rwgt9_pt0to60' : [ 7.00256547e+05, 4.18275020e+05, ], 'CountWeightedL1PrefireNom_rwgt9_pt0to60' : [ 5.20889216e+05, 5.20898622e+05, 5.20887480e+05, ], 'CountWeightedL1Prefire_rwgt9_pt0to60' : [ 5.20889216e+05, 5.17186147e+05, 5.24442420e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt9_pt0to60' : [ 6.80442578e+05, 6.38553138e+05, 6.00710409e+05, 5.55096201e+05, 5.20889216e+05, 4.89993970e+05, 4.61482825e+05, 4.33020645e+05, 4.07319026e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt9_pt0to60' : [ 6.81081738e+05, 4.07067088e+05, ], 'CountWeightedFullL1PrefireNom_rwgt9_pt0to60' : [ 5.20889216e+05, 5.20898622e+05, 5.20887480e+05, ], 'CountWeightedFullL1Prefire_rwgt9_pt0to60' : [ 5.20889216e+05, 5.17186147e+05, 5.24442420e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt9_pt0to60' : [ 6.80442578e+05, 6.38553138e+05, 6.00710409e+05, 5.55096201e+05, 5.20889216e+05, 4.89993970e+05, 4.61482825e+05, 4.33020645e+05, 4.07319026e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt9_pt0to60' : [ 6.81081738e+05, 4.07067088e+05, ], 'CountWeighted_rwgt9_pt60to120' : [ 8.49278511e+05, 8.49329860e+05, 8.49209492e+05, ], 'CountWeightedLHEWeightScale_rwgt9_pt60to120' : [ 1.11556672e+06, 1.04170977e+06, 9.75795626e+05, 9.09499833e+05, 8.49278511e+05, 7.95540505e+05, 7.55741267e+05, 7.05693695e+05, 6.61041091e+05, ], 'CountWeightedLHEEnvelope_rwgt9_pt60to120' : [ 1.11630358e+06, 6.60749915e+05, ], 'CountWeightedFull_rwgt9_pt60to120' : [ 8.49278511e+05, 8.49329860e+05, 8.49209492e+05, ], 'CountWeightedFullLHEWeightScale_rwgt9_pt60to120' : [ 1.11556672e+06, 1.04170977e+06, 9.75795626e+05, 9.09499833e+05, 8.49278511e+05, 7.95540505e+05, 7.55741267e+05, 7.05693695e+05, 6.61041091e+05, ], 'CountWeightedFullLHEEnvelope_rwgt9_pt60to120' : [ 1.11630358e+06, 6.60749915e+05, ], 'CountWeightedL1PrefireNom_rwgt9_pt60to120' : [ 8.24279837e+05, 8.24288873e+05, 8.24261665e+05, ], 'CountWeightedL1Prefire_rwgt9_pt60to120' : [ 8.24279837e+05, 8.18028120e+05, 8.30327547e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt9_pt60to120' : [ 1.08232488e+06, 1.01108131e+06, 9.47420837e+05, 8.82367759e+05, 8.24279837e+05, 7.72381346e+05, 7.33175022e+05, 6.84901530e+05, 6.41779326e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt9_pt60to120' : [ 1.08305413e+06, 6.41490894e+05, ], 'CountWeightedFullL1PrefireNom_rwgt9_pt60to120' : [ 8.24279837e+05, 8.24288873e+05, 8.24261665e+05, ], 'CountWeightedFullL1Prefire_rwgt9_pt60to120' : [ 8.24279837e+05, 8.18028120e+05, 8.30327547e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt9_pt60to120' : [ 1.08232488e+06, 1.01108131e+06, 9.47420837e+05, 8.82367759e+05, 8.24279837e+05, 7.72381346e+05, 7.33175022e+05, 6.84901530e+05, 6.41779326e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt9_pt60to120' : [ 1.08305413e+06, 6.41490894e+05, ], 'CountWeighted_rwgt9_pt120to200' : [ 6.16160721e+05, 6.16144355e+05, 6.16159530e+05, ], 'CountWeightedLHEWeightScale_rwgt9_pt120to200' : [ 8.13648875e+05, 7.54020973e+05, 7.01878810e+05, 6.64858594e+05, 6.16160721e+05, 5.73576266e+05, 5.53490098e+05, 5.12964594e+05, 4.77530091e+05, ], 'CountWeightedLHEEnvelope_rwgt9_pt120to200' : [ 8.13960126e+05, 4.77402859e+05, ], 'CountWeightedFull_rwgt9_pt120to200' : [ 6.16160721e+05, 6.16144355e+05, 6.16159530e+05, ], 'CountWeightedFullLHEWeightScale_rwgt9_pt120to200' : [ 8.13648875e+05, 7.54020973e+05, 7.01878810e+05, 6.64858594e+05, 6.16160721e+05, 5.73576266e+05, 5.53490098e+05, 5.12964594e+05, 4.77530091e+05, ], 'CountWeightedFullLHEEnvelope_rwgt9_pt120to200' : [ 8.13960126e+05, 4.77402859e+05, ], 'CountWeightedL1PrefireNom_rwgt9_pt120to200' : [ 5.95709695e+05, 5.95676009e+05, 5.95731423e+05, ], 'CountWeightedL1Prefire_rwgt9_pt120to200' : [ 5.95709695e+05, 5.90752610e+05, 6.00553608e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt9_pt120to200' : [ 7.86281234e+05, 7.29007882e+05, 6.78862657e+05, 6.42484361e+05, 5.95709695e+05, 5.54757859e+05, 5.34856022e+05, 4.95932162e+05, 4.61856177e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt9_pt120to200' : [ 7.86589108e+05, 4.61730239e+05, ], 'CountWeightedFullL1PrefireNom_rwgt9_pt120to200' : [ 5.95709695e+05, 5.95676009e+05, 5.95731423e+05, ], 'CountWeightedFullL1Prefire_rwgt9_pt120to200' : [ 5.95709695e+05, 5.90752610e+05, 6.00553608e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt9_pt120to200' : [ 7.86281234e+05, 7.29007882e+05, 6.78862657e+05, 6.42484361e+05, 5.95709695e+05, 5.54757859e+05, 5.34856022e+05, 4.95932162e+05, 4.61856177e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt9_pt120to200' : [ 7.86589108e+05, 4.61730239e+05, ], 'CountWeighted_rwgt9_pt200to300' : [ 2.53226161e+05, 2.53175293e+05, 2.53291691e+05, ], 'CountWeightedLHEWeightScale_rwgt9_pt200to300' : [ 3.36425770e+05, 3.08512102e+05, 2.84680692e+05, 2.76114764e+05, 2.53226161e+05, 2.33685237e+05, 2.30698537e+05, 2.11589909e+05, 1.95274640e+05, ], 'CountWeightedLHEEnvelope_rwgt9_pt200to300' : [ 3.36490323e+05, 1.95250380e+05, ], 'CountWeightedFull_rwgt9_pt200to300' : [ 2.53226161e+05, 2.53175293e+05, 2.53291691e+05, ], 'CountWeightedFullLHEWeightScale_rwgt9_pt200to300' : [ 3.36425770e+05, 3.08512102e+05, 2.84680692e+05, 2.76114764e+05, 2.53226161e+05, 2.33685237e+05, 2.30698537e+05, 2.11589909e+05, 1.95274640e+05, ], 'CountWeightedFullLHEEnvelope_rwgt9_pt200to300' : [ 3.36490323e+05, 1.95250380e+05, ], 'CountWeightedL1PrefireNom_rwgt9_pt200to300' : [ 2.44135338e+05, 2.44080887e+05, 2.44203340e+05, ], 'CountWeightedL1Prefire_rwgt9_pt200to300' : [ 2.44135338e+05, 2.41992089e+05, 2.46245030e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt9_pt200to300' : [ 3.24148194e+05, 2.97431470e+05, 2.74593990e+05, 2.66042731e+05, 2.44135338e+05, 2.25408900e+05, 2.22286320e+05, 2.03996447e+05, 1.88361182e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt9_pt200to300' : [ 3.24211998e+05, 1.88337217e+05, ], 'CountWeightedFullL1PrefireNom_rwgt9_pt200to300' : [ 2.44135338e+05, 2.44080887e+05, 2.44203340e+05, ], 'CountWeightedFullL1Prefire_rwgt9_pt200to300' : [ 2.44135338e+05, 2.41992089e+05, 2.46245030e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt9_pt200to300' : [ 3.24148194e+05, 2.97431470e+05, 2.74593990e+05, 2.66042731e+05, 2.44135338e+05, 2.25408900e+05, 2.22286320e+05, 2.03996447e+05, 1.88361182e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt9_pt200to300' : [ 3.24211998e+05, 1.88337217e+05, ], 'CountWeighted_rwgt9_ptGt300' : [ 1.14787252e+05, 1.14754642e+05, 1.14813733e+05, ], 'CountWeightedLHEWeightScale_rwgt9_ptGt300' : [ 1.53939063e+05, 1.38876429e+05, 1.26367001e+05, 1.27222942e+05, 1.14787252e+05, 1.04458562e+05, 1.06912904e+05, 9.64714723e+04, 8.77983077e+04, ], 'CountWeightedLHEEnvelope_rwgt9_ptGt300' : [ 1.53946126e+05, 8.77963250e+04, ], 'CountWeightedFull_rwgt9_ptGt300' : [ 1.14787252e+05, 1.14754642e+05, 1.14813733e+05, ], 'CountWeightedFullLHEWeightScale_rwgt9_ptGt300' : [ 1.53939063e+05, 1.38876429e+05, 1.26367001e+05, 1.27222942e+05, 1.14787252e+05, 1.04458562e+05, 1.06912904e+05, 9.64714723e+04, 8.77983077e+04, ], 'CountWeightedFullLHEEnvelope_rwgt9_ptGt300' : [ 1.53946126e+05, 8.77963250e+04, ], 'CountWeightedL1PrefireNom_rwgt9_ptGt300' : [ 1.10738300e+05, 1.10702746e+05, 1.10766580e+05, ], 'CountWeightedL1Prefire_rwgt9_ptGt300' : [ 1.10738300e+05, 1.09799270e+05, 1.11664449e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt9_ptGt300' : [ 1.48384609e+05, 1.33967929e+05, 1.21980154e+05, 1.22641636e+05, 1.10738300e+05, 1.00839492e+05, 1.03069387e+05, 9.30742286e+04, 8.47615167e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt9_ptGt300' : [ 1.48391541e+05, 8.47595848e+04, ], 'CountWeightedFullL1PrefireNom_rwgt9_ptGt300' : [ 1.10738300e+05, 1.10702746e+05, 1.10766580e+05, ], 'CountWeightedFullL1Prefire_rwgt9_ptGt300' : [ 1.10738300e+05, 1.09799270e+05, 1.11664449e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt9_ptGt300' : [ 1.48384609e+05, 1.33967929e+05, 1.21980154e+05, 1.22641636e+05, 1.10738300e+05, 1.00839492e+05, 1.03069387e+05, 9.30742286e+04, 8.47615167e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt9_ptGt300' : [ 1.48391541e+05, 8.47595848e+04, ], 'CountWeighted_rwgt9_pt300to450' : [ 9.03035546e+04, 9.02632579e+04, 9.03379461e+04, ], 'CountWeightedLHEWeightScale_rwgt9_pt300to450' : [ 1.20881019e+05, 1.09428764e+05, 9.98682629e+04, 9.97416649e+04, 9.03035546e+04, 8.24236499e+04, 8.37056044e+04, 7.57929107e+04, 6.91858516e+04, ], 'CountWeightedLHEEnvelope_rwgt9_pt300to450' : [ 1.20887910e+05, 6.91839254e+04, ], 'CountWeightedFull_rwgt9_pt300to450' : [ 9.03035546e+04, 9.02632579e+04, 9.03379461e+04, ], 'CountWeightedFullLHEWeightScale_rwgt9_pt300to450' : [ 1.20881019e+05, 1.09428764e+05, 9.98682629e+04, 9.97416649e+04, 9.03035546e+04, 8.24236499e+04, 8.37056044e+04, 7.57929107e+04, 6.91858516e+04, ], 'CountWeightedFullLHEEnvelope_rwgt9_pt300to450' : [ 1.20887910e+05, 6.91839254e+04, ], 'CountWeightedL1PrefireNom_rwgt9_pt300to450' : [ 8.70349494e+04, 8.69924273e+04, 8.70703443e+04, ], 'CountWeightedL1Prefire_rwgt9_pt300to450' : [ 8.70349494e+04, 8.62764760e+04, 8.77832035e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt9_pt300to450' : [ 1.16411276e+05, 1.05461744e+05, 9.63095064e+04, 9.60593246e+04, 8.70349494e+04, 7.94910600e+04, 8.06193102e+04, 7.30530576e+04, 6.67274205e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt9_pt300to450' : [ 1.16418036e+05, 6.67255439e+04, ], 'CountWeightedFullL1PrefireNom_rwgt9_pt300to450' : [ 8.70349494e+04, 8.69924273e+04, 8.70703443e+04, ], 'CountWeightedFullL1Prefire_rwgt9_pt300to450' : [ 8.70349494e+04, 8.62764760e+04, 8.77832035e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt9_pt300to450' : [ 1.16411276e+05, 1.05461744e+05, 9.63095064e+04, 9.60593246e+04, 8.70349494e+04, 7.94910600e+04, 8.06193102e+04, 7.30530576e+04, 6.67274205e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt9_pt300to450' : [ 1.16418036e+05, 6.67255439e+04, ], 'CountWeighted_rwgt9_ptGt450' : [ 2.44837080e+04, 2.44915272e+04, 2.44758116e+04, ], 'CountWeightedLHEWeightScale_rwgt9_ptGt450' : [ 3.30580369e+04, 2.94476704e+04, 2.64987393e+04, 2.74812863e+04, 2.44837080e+04, 2.20349043e+04, 2.32072986e+04, 2.06785645e+04, 1.86124513e+04, ], 'CountWeightedLHEEnvelope_rwgt9_ptGt450' : [ 3.30582106e+04, 1.86123943e+04, ], 'CountWeightedFull_rwgt9_ptGt450' : [ 2.44837080e+04, 2.44915272e+04, 2.44758116e+04, ], 'CountWeightedFullLHEWeightScale_rwgt9_ptGt450' : [ 3.30580369e+04, 2.94476704e+04, 2.64987393e+04, 2.74812863e+04, 2.44837080e+04, 2.20349043e+04, 2.32072986e+04, 2.06785645e+04, 1.86124513e+04, ], 'CountWeightedFullLHEEnvelope_rwgt9_ptGt450' : [ 3.30582106e+04, 1.86123943e+04, ], 'CountWeightedL1PrefireNom_rwgt9_ptGt450' : [ 2.37033398e+04, 2.37103913e+04, 2.36962536e+04, ], 'CountWeightedL1Prefire_rwgt9_ptGt450' : [ 2.37033398e+04, 2.35227843e+04, 2.38812465e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt9_ptGt450' : [ 3.19733294e+04, 2.85061957e+04, 2.56706384e+04, 2.65823114e+04, 2.37033398e+04, 2.13484228e+04, 2.24500778e+04, 2.00211690e+04, 1.80340935e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt9_ptGt450' : [ 3.19734984e+04, 1.80340385e+04, ], 'CountWeightedFullL1PrefireNom_rwgt9_ptGt450' : [ 2.37033398e+04, 2.37103913e+04, 2.36962536e+04, ], 'CountWeightedFullL1Prefire_rwgt9_ptGt450' : [ 2.37033398e+04, 2.35227843e+04, 2.38812465e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt9_ptGt450' : [ 3.19733294e+04, 2.85061957e+04, 2.56706384e+04, 2.65823114e+04, 2.37033398e+04, 2.13484228e+04, 2.24500778e+04, 2.00211690e+04, 1.80340935e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt9_ptGt450' : [ 3.19734984e+04, 1.80340385e+04, ], 'CountWeighted_rwgt10' : [ 5.41015944e+06, 5.40999528e+06, 5.40998417e+06, ], 'CountWeightedLHEWeightScale_rwgt10' : [ 7.12459776e+06, 6.62200076e+06, 6.17979942e+06, 5.82086249e+06, 5.41015944e+06, 5.04878265e+06, 4.84526990e+06, 4.50327444e+06, 4.20247767e+06, ], 'CountWeightedLHEEnvelope_rwgt10' : [ 7.12858605e+06, 4.20089753e+06, ], 'CountWeightedFull_rwgt10' : [ 5.41015944e+06, 5.40999528e+06, 5.40998417e+06, ], 'CountWeightedFullLHEWeightScale_rwgt10' : [ 7.12459776e+06, 6.62200076e+06, 6.17979942e+06, 5.82086249e+06, 5.41015944e+06, 5.04878265e+06, 4.84526990e+06, 4.50327444e+06, 4.20247767e+06, ], 'CountWeightedFullLHEEnvelope_rwgt10' : [ 7.12858605e+06, 4.20089753e+06, ], 'CountWeightedL1PrefireNom_rwgt10' : [ 5.23444981e+06, 5.23410926e+06, 5.23459124e+06, ], 'CountWeightedL1Prefire_rwgt10' : [ 5.23444981e+06, 5.19146813e+06, 5.27631213e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt10' : [ 6.88999635e+06, 6.40712280e+06, 5.98169716e+06, 5.62903387e+06, 5.23444981e+06, 4.88680133e+06, 4.68548691e+06, 4.35693600e+06, 4.06755722e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt10' : [ 6.89394128e+06, 4.06599313e+06, ], 'CountWeightedFullL1PrefireNom_rwgt10' : [ 5.23444981e+06, 5.23410926e+06, 5.23459124e+06, ], 'CountWeightedFullL1Prefire_rwgt10' : [ 5.23444981e+06, 5.19146813e+06, 5.27631213e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt10' : [ 6.88999635e+06, 6.40712280e+06, 5.98169716e+06, 5.62903387e+06, 5.23444981e+06, 4.88680133e+06, 4.68548691e+06, 4.35693600e+06, 4.06755722e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt10' : [ 6.89394128e+06, 4.06599313e+06, ], 'CountWeighted_rwgt10_fwd' : [ 8.02579644e+04, 8.02819632e+04, 8.02321611e+04, ], 'CountWeightedLHEWeightScale_rwgt10_fwd' : [ 1.06414811e+05, 9.83218344e+04, 9.14428949e+04, 8.68565194e+04, 8.02579644e+04, 7.46481998e+04, 7.22383699e+04, 6.67550867e+04, 6.20926202e+04, ], 'CountWeightedLHEEnvelope_rwgt10_fwd' : [ 1.06430143e+05, 6.20860245e+04, ], 'CountWeightedFull_rwgt10_fwd' : [ 8.02579644e+04, 8.02819632e+04, 8.02321611e+04, ], 'CountWeightedFullLHEWeightScale_rwgt10_fwd' : [ 1.06414811e+05, 9.83218344e+04, 9.14428949e+04, 8.68565194e+04, 8.02579644e+04, 7.46481998e+04, 7.22383699e+04, 6.67550867e+04, 6.20926202e+04, ], 'CountWeightedFullLHEEnvelope_rwgt10_fwd' : [ 1.06430143e+05, 6.20860245e+04, ], 'CountWeightedL1PrefireNom_rwgt10_fwd' : [ 6.89839550e+04, 6.89803119e+04, 6.89880279e+04, ], 'CountWeightedL1Prefire_rwgt10_fwd' : [ 6.89839550e+04, 6.64872290e+04, 7.15054574e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt10_fwd' : [ 9.14358383e+04, 8.45334696e+04, 7.86618192e+04, 7.46097791e+04, 6.89839550e+04, 6.41972418e+04, 6.20385344e+04, 5.73648586e+04, 5.33876091e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt10_fwd' : [ 9.14492321e+04, 5.33818766e+04, ], 'CountWeightedFullL1PrefireNom_rwgt10_fwd' : [ 6.89839550e+04, 6.89803119e+04, 6.89880279e+04, ], 'CountWeightedFullL1Prefire_rwgt10_fwd' : [ 6.89839550e+04, 6.64872290e+04, 7.15054574e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt10_fwd' : [ 9.14358383e+04, 8.45334696e+04, 7.86618192e+04, 7.46097791e+04, 6.89839550e+04, 6.41972418e+04, 6.20385344e+04, 5.73648586e+04, 5.33876091e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt10_fwd' : [ 9.14492321e+04, 5.33818766e+04, ], 'CountWeighted_rwgt10_pt0to60' : [ 1.20459681e+06, 1.20470656e+06, 1.20453338e+06, ], 'CountWeightedLHEWeightScale_rwgt10_pt0to60' : [ 1.57412517e+06, 1.47666483e+06, 1.38872372e+06, 1.28418976e+06, 1.20459681e+06, 1.13280153e+06, 1.06764619e+06, 1.00142150e+06, 9.41690658e+05, ], 'CountWeightedLHEEnvelope_rwgt10_pt0to60' : [ 1.57557764e+06, 9.41118696e+05, ], 'CountWeightedFull_rwgt10_pt0to60' : [ 1.20459681e+06, 1.20470656e+06, 1.20453338e+06, ], 'CountWeightedFullLHEWeightScale_rwgt10_pt0to60' : [ 1.57412517e+06, 1.47666483e+06, 1.38872372e+06, 1.28418976e+06, 1.20459681e+06, 1.13280153e+06, 1.06764619e+06, 1.00142150e+06, 9.41690658e+05, ], 'CountWeightedFullLHEEnvelope_rwgt10_pt0to60' : [ 1.57557764e+06, 9.41118696e+05, ], 'CountWeightedL1PrefireNom_rwgt10_pt0to60' : [ 1.17199691e+06, 1.17204604e+06, 1.17199023e+06, ], 'CountWeightedL1Prefire_rwgt10_pt0to60' : [ 1.17199691e+06, 1.16366725e+06, 1.17999241e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt10_pt0to60' : [ 1.53099566e+06, 1.43674450e+06, 1.35159849e+06, 1.24896626e+06, 1.17199691e+06, 1.10248620e+06, 1.03833627e+06, 9.74296219e+05, 9.16467679e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt10_pt0to60' : [ 1.53243377e+06, 9.15900734e+05, ], 'CountWeightedFullL1PrefireNom_rwgt10_pt0to60' : [ 1.17199691e+06, 1.17204604e+06, 1.17199023e+06, ], 'CountWeightedFullL1Prefire_rwgt10_pt0to60' : [ 1.17199691e+06, 1.16366725e+06, 1.17999241e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt10_pt0to60' : [ 1.53099566e+06, 1.43674450e+06, 1.35159849e+06, 1.24896626e+06, 1.17199691e+06, 1.10248620e+06, 1.03833627e+06, 9.74296219e+05, 9.16467679e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt10_pt0to60' : [ 1.53243377e+06, 9.15900734e+05, ], 'CountWeighted_rwgt10_pt60to120' : [ 1.91088298e+06, 1.91099287e+06, 1.91072481e+06, ], 'CountWeightedLHEWeightScale_rwgt10_pt60to120' : [ 2.51002373e+06, 2.34384648e+06, 2.19553974e+06, 2.04637529e+06, 1.91088298e+06, 1.78996570e+06, 1.70041774e+06, 1.58781023e+06, 1.48734131e+06, ], 'CountWeightedLHEEnvelope_rwgt10_pt60to120' : [ 2.51168109e+06, 1.48668612e+06, ], 'CountWeightedFull_rwgt10_pt60to120' : [ 1.91088298e+06, 1.91099287e+06, 1.91072481e+06, ], 'CountWeightedFullLHEWeightScale_rwgt10_pt60to120' : [ 2.51002373e+06, 2.34384648e+06, 2.19553974e+06, 2.04637529e+06, 1.91088298e+06, 1.78996570e+06, 1.70041774e+06, 1.58781023e+06, 1.48734131e+06, ], 'CountWeightedFullLHEEnvelope_rwgt10_pt60to120' : [ 2.51168109e+06, 1.48668612e+06, ], 'CountWeightedL1PrefireNom_rwgt10_pt60to120' : [ 1.85462927e+06, 1.85466136e+06, 1.85458692e+06, ], 'CountWeightedL1Prefire_rwgt10_pt60to120' : [ 1.85462927e+06, 1.84056646e+06, 1.86824111e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt10_pt60to120' : [ 2.43523079e+06, 2.27493216e+06, 2.13169622e+06, 1.98532810e+06, 1.85462927e+06, 1.73785695e+06, 1.64964328e+06, 1.54102858e+06, 1.44400279e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt10_pt60to120' : [ 2.43687112e+06, 1.44335372e+06, ], 'CountWeightedFullL1PrefireNom_rwgt10_pt60to120' : [ 1.85462927e+06, 1.85466136e+06, 1.85458692e+06, ], 'CountWeightedFullL1Prefire_rwgt10_pt60to120' : [ 1.85462927e+06, 1.84056646e+06, 1.86824111e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt10_pt60to120' : [ 2.43523079e+06, 2.27493216e+06, 2.13169622e+06, 1.98532810e+06, 1.85462927e+06, 1.73785695e+06, 1.64964328e+06, 1.54102858e+06, 1.44400279e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt10_pt60to120' : [ 2.43687112e+06, 1.44335372e+06, ], 'CountWeighted_rwgt10_pt120to200' : [ 1.38635569e+06, 1.38637782e+06, 1.38635366e+06, ], 'CountWeightedLHEWeightScale_rwgt10_pt120to200' : [ 1.83071000e+06, 1.69654767e+06, 1.57922690e+06, 1.49593192e+06, 1.38635569e+06, 1.29054644e+06, 1.24535259e+06, 1.15417012e+06, 1.07444278e+06, ], 'CountWeightedLHEEnvelope_rwgt10_pt120to200' : [ 1.83141031e+06, 1.07415651e+06, ], 'CountWeightedFull_rwgt10_pt120to200' : [ 1.38635569e+06, 1.38637782e+06, 1.38635366e+06, ], 'CountWeightedFullLHEWeightScale_rwgt10_pt120to200' : [ 1.83071000e+06, 1.69654767e+06, 1.57922690e+06, 1.49593192e+06, 1.38635569e+06, 1.29054644e+06, 1.24535259e+06, 1.15417012e+06, 1.07444278e+06, ], 'CountWeightedFullLHEEnvelope_rwgt10_pt120to200' : [ 1.83141031e+06, 1.07415651e+06, ], 'CountWeightedL1PrefireNom_rwgt10_pt120to200' : [ 1.34034171e+06, 1.34030413e+06, 1.34039153e+06, ], 'CountWeightedL1Prefire_rwgt10_pt120to200' : [ 1.34034171e+06, 1.32919139e+06, 1.35124254e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt10_pt120to200' : [ 1.76913270e+06, 1.64026792e+06, 1.52744098e+06, 1.44558947e+06, 1.34034171e+06, 1.24820484e+06, 1.20342595e+06, 1.11584713e+06, 1.03917640e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt10_pt120to200' : [ 1.76982543e+06, 1.03889306e+06, ], 'CountWeightedFullL1PrefireNom_rwgt10_pt120to200' : [ 1.34034171e+06, 1.34030413e+06, 1.34039153e+06, ], 'CountWeightedFullL1Prefire_rwgt10_pt120to200' : [ 1.34034171e+06, 1.32919139e+06, 1.35124254e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt10_pt120to200' : [ 1.76913270e+06, 1.64026792e+06, 1.52744098e+06, 1.44558947e+06, 1.34034171e+06, 1.24820484e+06, 1.20342595e+06, 1.11584713e+06, 1.03917640e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt10_pt120to200' : [ 1.76982543e+06, 1.03889306e+06, ], 'CountWeighted_rwgt10_pt200to300' : [ 5.69758305e+05, 5.69649424e+05, 5.69901558e+05, ], 'CountWeightedLHEWeightScale_rwgt10_pt200to300' : [ 7.56958063e+05, 6.94152206e+05, 6.40531558e+05, 6.21258194e+05, 5.69758305e+05, 5.25791749e+05, 5.19071614e+05, 4.76077370e+05, 4.39367888e+05, ], 'CountWeightedLHEEnvelope_rwgt10_pt200to300' : [ 7.57103298e+05, 4.39313296e+05, ], 'CountWeightedFull_rwgt10_pt200to300' : [ 5.69758305e+05, 5.69649424e+05, 5.69901558e+05, ], 'CountWeightedFullLHEWeightScale_rwgt10_pt200to300' : [ 7.56958063e+05, 6.94152206e+05, 6.40531558e+05, 6.21258194e+05, 5.69758305e+05, 5.25791749e+05, 5.19071614e+05, 4.76077370e+05, 4.39367888e+05, ], 'CountWeightedFullLHEEnvelope_rwgt10_pt200to300' : [ 7.57103298e+05, 4.39313296e+05, ], 'CountWeightedL1PrefireNom_rwgt10_pt200to300' : [ 5.49304580e+05, 5.49184747e+05, 5.49455035e+05, ], 'CountWeightedL1Prefire_rwgt10_pt200to300' : [ 5.49304580e+05, 5.44482270e+05, 5.54051000e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt10_pt200to300' : [ 7.29333448e+05, 6.69220705e+05, 6.17836547e+05, 5.98596075e+05, 5.49304580e+05, 5.07170126e+05, 5.00144244e+05, 4.58992090e+05, 4.23812606e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt10_pt200to300' : [ 7.29476989e+05, 4.23758686e+05, ], 'CountWeightedFullL1PrefireNom_rwgt10_pt200to300' : [ 5.49304580e+05, 5.49184747e+05, 5.49455035e+05, ], 'CountWeightedFullL1Prefire_rwgt10_pt200to300' : [ 5.49304580e+05, 5.44482270e+05, 5.54051000e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt10_pt200to300' : [ 7.29333448e+05, 6.69220705e+05, 6.17836547e+05, 5.98596075e+05, 5.49304580e+05, 5.07170126e+05, 5.00144244e+05, 4.58992090e+05, 4.23812606e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt10_pt200to300' : [ 7.29476989e+05, 4.23758686e+05, ], 'CountWeighted_rwgt10_ptGt300' : [ 2.58272035e+05, 2.58197974e+05, 2.58331670e+05, ], 'CountWeightedLHEWeightScale_rwgt10_ptGt300' : [ 3.46362832e+05, 3.12472000e+05, 2.84325729e+05, 2.86251637e+05, 2.58272035e+05, 2.35031706e+05, 2.40554062e+05, 2.17060875e+05, 1.97546176e+05, ], 'CountWeightedLHEEnvelope_rwgt10_ptGt300' : [ 3.46378726e+05, 1.97541715e+05, ], 'CountWeightedFull_rwgt10_ptGt300' : [ 2.58272035e+05, 2.58197974e+05, 2.58331670e+05, ], 'CountWeightedFullLHEWeightScale_rwgt10_ptGt300' : [ 3.46362832e+05, 3.12472000e+05, 2.84325729e+05, 2.86251637e+05, 2.58272035e+05, 2.35031706e+05, 2.40554062e+05, 2.17060875e+05, 1.97546176e+05, ], 'CountWeightedFullLHEEnvelope_rwgt10_ptGt300' : [ 3.46378726e+05, 1.97541715e+05, ], 'CountWeightedL1PrefireNom_rwgt10_ptGt300' : [ 2.49161568e+05, 2.49081179e+05, 2.49225269e+05, ], 'CountWeightedL1Prefire_rwgt10_ptGt300' : [ 2.49161568e+05, 2.47048730e+05, 2.51245458e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt10_ptGt300' : [ 3.33865333e+05, 3.01427888e+05, 2.74455309e+05, 2.75943676e+05, 2.49161568e+05, 2.26888824e+05, 2.31906133e+05, 2.09417055e+05, 1.90713400e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt10_ptGt300' : [ 3.33880929e+05, 1.90709051e+05, ], 'CountWeightedFullL1PrefireNom_rwgt10_ptGt300' : [ 2.49161568e+05, 2.49081179e+05, 2.49225269e+05, ], 'CountWeightedFullL1Prefire_rwgt10_ptGt300' : [ 2.49161568e+05, 2.47048730e+05, 2.51245458e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt10_ptGt300' : [ 3.33865333e+05, 3.01427888e+05, 2.74455309e+05, 2.75943676e+05, 2.49161568e+05, 2.26888824e+05, 2.31906133e+05, 2.09417055e+05, 1.90713400e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt10_ptGt300' : [ 3.33880929e+05, 1.90709051e+05, ], 'CountWeighted_rwgt10_pt300to450' : [ 2.03183299e+05, 2.03092195e+05, 2.03260891e+05, ], 'CountWeightedLHEWeightScale_rwgt10_pt300to450' : [ 2.71982270e+05, 2.46214751e+05, 2.24703557e+05, 2.24418732e+05, 2.03183299e+05, 1.85453202e+05, 1.88337625e+05, 1.70534099e+05, 1.55668151e+05, ], 'CountWeightedLHEEnvelope_rwgt10_pt300to450' : [ 2.71997778e+05, 1.55663817e+05, ], 'CountWeightedFull_rwgt10_pt300to450' : [ 2.03183299e+05, 2.03092195e+05, 2.03260891e+05, ], 'CountWeightedFullLHEWeightScale_rwgt10_pt300to450' : [ 2.71982270e+05, 2.46214751e+05, 2.24703557e+05, 2.24418732e+05, 2.03183299e+05, 1.85453202e+05, 1.88337625e+05, 1.70534099e+05, 1.55668151e+05, ], 'CountWeightedFullLHEEnvelope_rwgt10_pt300to450' : [ 2.71997778e+05, 1.55663817e+05, ], 'CountWeightedL1PrefireNom_rwgt10_pt300to450' : [ 1.95828807e+05, 1.95732909e+05, 1.95908574e+05, ], 'CountWeightedL1Prefire_rwgt10_pt300to450' : [ 1.95828807e+05, 1.94122217e+05, 1.97512381e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt10_pt300to450' : [ 2.61925355e+05, 2.37288943e+05, 2.16696386e+05, 2.16133462e+05, 1.95828807e+05, 1.78854884e+05, 1.81393460e+05, 1.64369416e+05, 1.50136686e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt10_pt300to450' : [ 2.61940570e+05, 1.50132461e+05, ], 'CountWeightedFullL1PrefireNom_rwgt10_pt300to450' : [ 1.95828807e+05, 1.95732909e+05, 1.95908574e+05, ], 'CountWeightedFullL1Prefire_rwgt10_pt300to450' : [ 1.95828807e+05, 1.94122217e+05, 1.97512381e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt10_pt300to450' : [ 2.61925355e+05, 2.37288943e+05, 2.16696386e+05, 2.16133462e+05, 1.95828807e+05, 1.78854884e+05, 1.81393460e+05, 1.64369416e+05, 1.50136686e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt10_pt300to450' : [ 2.61940570e+05, 1.50132461e+05, ], 'CountWeighted_rwgt10_ptGt450' : [ 5.50883647e+04, 5.51058839e+04, 5.50706206e+04, ], 'CountWeightedLHEWeightScale_rwgt10_ptGt450' : [ 7.43805818e+04, 6.62572608e+04, 5.96221651e+04, 6.18328942e+04, 5.50883647e+04, 4.95785362e+04, 5.22164241e+04, 4.65267733e+04, 4.18780131e+04, ], 'CountWeightedLHEEnvelope_rwgt10_ptGt450' : [ 7.43809731e+04, 4.18778849e+04, ], 'CountWeightedFull_rwgt10_ptGt450' : [ 5.50883647e+04, 5.51058839e+04, 5.50706206e+04, ], 'CountWeightedFullLHEWeightScale_rwgt10_ptGt450' : [ 7.43805818e+04, 6.62572608e+04, 5.96221651e+04, 6.18328942e+04, 5.50883647e+04, 4.95785362e+04, 5.22164241e+04, 4.65267733e+04, 4.18780131e+04, ], 'CountWeightedFullLHEEnvelope_rwgt10_ptGt450' : [ 7.43809731e+04, 4.18778849e+04, ], 'CountWeightedL1PrefireNom_rwgt10_ptGt450' : [ 5.33325321e+04, 5.33483532e+04, 5.33165977e+04, ], 'CountWeightedL1Prefire_rwgt10_ptGt450' : [ 5.33325321e+04, 5.29262811e+04, 5.37328215e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt10_ptGt450' : [ 7.19399924e+04, 6.41389385e+04, 5.77589368e+04, 5.98102027e+04, 5.33325321e+04, 4.80339532e+04, 5.05126765e+04, 4.50476337e+04, 4.05767096e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt10_ptGt450' : [ 7.19403731e+04, 4.05765860e+04, ], 'CountWeightedFullL1PrefireNom_rwgt10_ptGt450' : [ 5.33325321e+04, 5.33483532e+04, 5.33165977e+04, ], 'CountWeightedFullL1Prefire_rwgt10_ptGt450' : [ 5.33325321e+04, 5.29262811e+04, 5.37328215e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt10_ptGt450' : [ 7.19399924e+04, 6.41389385e+04, 5.77589368e+04, 5.98102027e+04, 5.33325321e+04, 4.80339532e+04, 5.05126765e+04, 4.50476337e+04, 4.05767096e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt10_ptGt450' : [ 7.19403731e+04, 4.05765860e+04, ], 'CountWeighted_rwgt11' : [ 9.61830195e+06, 9.61819631e+06, 9.61825452e+06, ], 'CountWeightedLHEWeightScale_rwgt11' : [ 1.26659214e+07, 1.17724783e+07, 1.09863050e+07, 1.03482022e+07, 9.61830195e+06, 8.97562053e+06, 8.61384461e+06, 8.00587122e+06, 7.47108478e+06, ], 'CountWeightedLHEEnvelope_rwgt11' : [ 1.26730037e+07, 7.46827658e+06, ], 'CountWeightedFull_rwgt11' : [ 9.61830195e+06, 9.61819631e+06, 9.61825452e+06, ], 'CountWeightedFullLHEWeightScale_rwgt11' : [ 1.26659214e+07, 1.17724783e+07, 1.09863050e+07, 1.03482022e+07, 9.61830195e+06, 8.97562053e+06, 8.61384461e+06, 8.00587122e+06, 7.47108478e+06, ], 'CountWeightedFullLHEEnvelope_rwgt11' : [ 1.26730037e+07, 7.46827658e+06, ], 'CountWeightedL1PrefireNom_rwgt11' : [ 9.30582646e+06, 9.30533659e+06, 9.30618920e+06, ], 'CountWeightedL1Prefire_rwgt11' : [ 9.30582646e+06, 9.22937247e+06, 9.38022506e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt11' : [ 1.22488519e+07, 1.13904591e+07, 1.06341266e+07, 1.00071724e+07, 9.30582646e+06, 8.68765449e+06, 8.32978067e+06, 7.74568529e+06, 7.23122381e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt11' : [ 1.22558597e+07, 7.22844376e+06, ], 'CountWeightedFullL1PrefireNom_rwgt11' : [ 9.30582646e+06, 9.30533659e+06, 9.30618920e+06, ], 'CountWeightedFullL1Prefire_rwgt11' : [ 9.30582646e+06, 9.22937247e+06, 9.38022506e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt11' : [ 1.22488519e+07, 1.13904591e+07, 1.06341266e+07, 1.00071724e+07, 9.30582646e+06, 8.68765449e+06, 8.32978067e+06, 7.74568529e+06, 7.23122381e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt11' : [ 1.22558597e+07, 7.22844376e+06, ], 'CountWeighted_rwgt11_fwd' : [ 1.42680667e+05, 1.42723877e+05, 1.42634857e+05, ], 'CountWeightedLHEWeightScale_rwgt11_fwd' : [ 1.89181897e+05, 1.74794387e+05, 1.62565130e+05, 1.54411579e+05, 1.42680667e+05, 1.32707916e+05, 1.28423774e+05, 1.18675694e+05, 1.10386879e+05, ], 'CountWeightedLHEEnvelope_rwgt11_fwd' : [ 1.89209151e+05, 1.10375153e+05, ], 'CountWeightedFull_rwgt11_fwd' : [ 1.42680667e+05, 1.42723877e+05, 1.42634857e+05, ], 'CountWeightedFullLHEWeightScale_rwgt11_fwd' : [ 1.89181897e+05, 1.74794387e+05, 1.62565130e+05, 1.54411579e+05, 1.42680667e+05, 1.32707916e+05, 1.28423774e+05, 1.18675694e+05, 1.10386879e+05, ], 'CountWeightedFullLHEEnvelope_rwgt11_fwd' : [ 1.89209151e+05, 1.10375153e+05, ], 'CountWeightedL1PrefireNom_rwgt11_fwd' : [ 1.22638135e+05, 1.22631684e+05, 1.22645385e+05, ], 'CountWeightedL1Prefire_rwgt11_fwd' : [ 1.22638135e+05, 1.18199512e+05, 1.27120816e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt11_fwd' : [ 1.62552608e+05, 1.50281724e+05, 1.39843231e+05, 1.32639610e+05, 1.22638135e+05, 1.14128425e+05, 1.10290731e+05, 1.01981974e+05, 9.49113099e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt11_fwd' : [ 1.62576420e+05, 9.49011188e+04, ], 'CountWeightedFullL1PrefireNom_rwgt11_fwd' : [ 1.22638135e+05, 1.22631684e+05, 1.22645385e+05, ], 'CountWeightedFullL1Prefire_rwgt11_fwd' : [ 1.22638135e+05, 1.18199512e+05, 1.27120816e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt11_fwd' : [ 1.62552608e+05, 1.50281724e+05, 1.39843231e+05, 1.32639610e+05, 1.22638135e+05, 1.14128425e+05, 1.10290731e+05, 1.01981974e+05, 9.49113099e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt11_fwd' : [ 1.62576420e+05, 9.49011188e+04, ], 'CountWeighted_rwgt11_pt0to60' : [ 2.14151392e+06, 2.14163032e+06, 2.14141062e+06, ], 'CountWeightedLHEWeightScale_rwgt11_pt0to60' : [ 2.79844380e+06, 2.62518290e+06, 2.46884203e+06, 2.28300415e+06, 2.14151392e+06, 2.01386997e+06, 1.89803765e+06, 1.78030517e+06, 1.67411679e+06, ], 'CountWeightedLHEEnvelope_rwgt11_pt0to60' : [ 2.80102619e+06, 1.67310008e+06, ], 'CountWeightedFull_rwgt11_pt0to60' : [ 2.14151392e+06, 2.14163032e+06, 2.14141062e+06, ], 'CountWeightedFullLHEWeightScale_rwgt11_pt0to60' : [ 2.79844380e+06, 2.62518290e+06, 2.46884203e+06, 2.28300415e+06, 2.14151392e+06, 2.01386997e+06, 1.89803765e+06, 1.78030517e+06, 1.67411679e+06, ], 'CountWeightedFullLHEEnvelope_rwgt11_pt0to60' : [ 2.80102619e+06, 1.67310008e+06, ], 'CountWeightedL1PrefireNom_rwgt11_pt0to60' : [ 2.08355686e+06, 2.08359449e+06, 2.08354992e+06, ], 'CountWeightedL1Prefire_rwgt11_pt0to60' : [ 2.08355686e+06, 2.06874459e+06, 2.09776968e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt11_pt0to60' : [ 2.72177031e+06, 2.55421255e+06, 2.40284164e+06, 2.22038480e+06, 2.08355686e+06, 1.95997588e+06, 1.84593130e+06, 1.73208258e+06, 1.62927610e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt11_pt0to60' : [ 2.72432695e+06, 1.62826835e+06, ], 'CountWeightedFullL1PrefireNom_rwgt11_pt0to60' : [ 2.08355686e+06, 2.08359449e+06, 2.08354992e+06, ], 'CountWeightedFullL1Prefire_rwgt11_pt0to60' : [ 2.08355686e+06, 2.06874459e+06, 2.09776968e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt11_pt0to60' : [ 2.72177031e+06, 2.55421255e+06, 2.40284164e+06, 2.22038480e+06, 2.08355686e+06, 1.95997588e+06, 1.84593130e+06, 1.73208258e+06, 1.62927610e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt11_pt0to60' : [ 2.72432695e+06, 1.62826835e+06, ], 'CountWeighted_rwgt11_pt60to120' : [ 3.39711404e+06, 3.39731944e+06, 3.39683797e+06, ], 'CountWeightedLHEWeightScale_rwgt11_pt60to120' : [ 4.46226686e+06, 4.16683909e+06, 3.90318250e+06, 3.63799933e+06, 3.39711404e+06, 3.18216202e+06, 3.02296507e+06, 2.82277478e+06, 2.64416436e+06, ], 'CountWeightedLHEEnvelope_rwgt11_pt60to120' : [ 4.46521434e+06, 2.64299966e+06, ], 'CountWeightedFull_rwgt11_pt60to120' : [ 3.39711404e+06, 3.39731944e+06, 3.39683797e+06, ], 'CountWeightedFullLHEWeightScale_rwgt11_pt60to120' : [ 4.46226686e+06, 4.16683909e+06, 3.90318250e+06, 3.63799933e+06, 3.39711404e+06, 3.18216202e+06, 3.02296507e+06, 2.82277478e+06, 2.64416436e+06, ], 'CountWeightedFullLHEEnvelope_rwgt11_pt60to120' : [ 4.46521434e+06, 2.64299966e+06, ], 'CountWeightedL1PrefireNom_rwgt11_pt60to120' : [ 3.29711935e+06, 3.29715549e+06, 3.29704666e+06, ], 'CountWeightedL1Prefire_rwgt11_pt60to120' : [ 3.29711935e+06, 3.27211248e+06, 3.32131019e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt11_pt60to120' : [ 4.32929952e+06, 4.04432523e+06, 3.78968335e+06, 3.52947104e+06, 3.29711935e+06, 3.08952538e+06, 2.93270009e+06, 2.73960612e+06, 2.56711731e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt11_pt60to120' : [ 4.33221652e+06, 2.56596358e+06, ], 'CountWeightedFullL1PrefireNom_rwgt11_pt60to120' : [ 3.29711935e+06, 3.29715549e+06, 3.29704666e+06, ], 'CountWeightedFullL1Prefire_rwgt11_pt60to120' : [ 3.29711935e+06, 3.27211248e+06, 3.32131019e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt11_pt60to120' : [ 4.32929952e+06, 4.04432523e+06, 3.78968335e+06, 3.52947104e+06, 3.29711935e+06, 3.08952538e+06, 2.93270009e+06, 2.73960612e+06, 2.56711731e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt11_pt60to120' : [ 4.33221652e+06, 2.56596358e+06, ], 'CountWeighted_rwgt11_pt120to200' : [ 2.46464288e+06, 2.46457742e+06, 2.46463812e+06, ], 'CountWeightedLHEWeightScale_rwgt11_pt120to200' : [ 3.25459550e+06, 3.01608389e+06, 2.80751524e+06, 2.65943437e+06, 2.46464288e+06, 2.29430506e+06, 2.21396039e+06, 2.05185838e+06, 1.91012036e+06, ], 'CountWeightedLHEEnvelope_rwgt11_pt120to200' : [ 3.25584050e+06, 1.90961144e+06, ], 'CountWeightedFull_rwgt11_pt120to200' : [ 2.46464288e+06, 2.46457742e+06, 2.46463812e+06, ], 'CountWeightedFullLHEWeightScale_rwgt11_pt120to200' : [ 3.25459550e+06, 3.01608389e+06, 2.80751524e+06, 2.65943437e+06, 2.46464288e+06, 2.29430506e+06, 2.21396039e+06, 2.05185838e+06, 1.91012036e+06, ], 'CountWeightedFullLHEEnvelope_rwgt11_pt120to200' : [ 3.25584050e+06, 1.90961144e+06, ], 'CountWeightedL1PrefireNom_rwgt11_pt120to200' : [ 2.38283878e+06, 2.38270404e+06, 2.38292569e+06, ], 'CountWeightedL1Prefire_rwgt11_pt120to200' : [ 2.38283878e+06, 2.36301044e+06, 2.40221443e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt11_pt120to200' : [ 3.14512494e+06, 2.91603153e+06, 2.71545063e+06, 2.56993744e+06, 2.38283878e+06, 2.21903144e+06, 2.13942409e+06, 1.98372865e+06, 1.84742471e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt11_pt120to200' : [ 3.14635643e+06, 1.84692096e+06, ], 'CountWeightedFullL1PrefireNom_rwgt11_pt120to200' : [ 2.38283878e+06, 2.38270404e+06, 2.38292569e+06, ], 'CountWeightedFullL1Prefire_rwgt11_pt120to200' : [ 2.38283878e+06, 2.36301044e+06, 2.40221443e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt11_pt120to200' : [ 3.14512494e+06, 2.91603153e+06, 2.71545063e+06, 2.56993744e+06, 2.38283878e+06, 2.21903144e+06, 2.13942409e+06, 1.98372865e+06, 1.84742471e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt11_pt120to200' : [ 3.14635643e+06, 1.84692096e+06, ], 'CountWeighted_rwgt11_pt200to300' : [ 1.01290464e+06, 1.01270117e+06, 1.01316676e+06, ], 'CountWeightedLHEWeightScale_rwgt11_pt200to300' : [ 1.34570308e+06, 1.23404841e+06, 1.13872277e+06, 1.10445906e+06, 1.01290464e+06, 9.34740948e+05, 9.22794148e+05, 8.46359636e+05, 7.81098560e+05, ], 'CountWeightedLHEEnvelope_rwgt11_pt200to300' : [ 1.34596129e+06, 7.81001521e+05, ], 'CountWeightedFull_rwgt11_pt200to300' : [ 1.01290464e+06, 1.01270117e+06, 1.01316676e+06, ], 'CountWeightedFullLHEWeightScale_rwgt11_pt200to300' : [ 1.34570308e+06, 1.23404841e+06, 1.13872277e+06, 1.10445906e+06, 1.01290464e+06, 9.34740948e+05, 9.22794148e+05, 8.46359636e+05, 7.81098560e+05, ], 'CountWeightedFullLHEEnvelope_rwgt11_pt200to300' : [ 1.34596129e+06, 7.81001521e+05, ], 'CountWeightedL1PrefireNom_rwgt11_pt200to300' : [ 9.76541350e+05, 9.76323549e+05, 9.76813362e+05, ], 'CountWeightedL1Prefire_rwgt11_pt200to300' : [ 9.76541350e+05, 9.67968355e+05, 9.84980119e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt11_pt200to300' : [ 1.29659278e+06, 1.18972588e+06, 1.09837596e+06, 1.06417092e+06, 9.76541350e+05, 9.01635601e+05, 8.89145278e+05, 8.15985788e+05, 7.53444728e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt11_pt200to300' : [ 1.29684799e+06, 7.53348867e+05, ], 'CountWeightedFullL1PrefireNom_rwgt11_pt200to300' : [ 9.76541350e+05, 9.76323549e+05, 9.76813362e+05, ], 'CountWeightedFullL1Prefire_rwgt11_pt200to300' : [ 9.76541350e+05, 9.67968355e+05, 9.84980119e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt11_pt200to300' : [ 1.29659278e+06, 1.18972588e+06, 1.09837596e+06, 1.06417092e+06, 9.76541350e+05, 9.01635601e+05, 8.89145278e+05, 8.15985788e+05, 7.53444728e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt11_pt200to300' : [ 1.29684799e+06, 7.53348867e+05, ], 'CountWeighted_rwgt11_ptGt300' : [ 4.59149008e+05, 4.59018567e+05, 4.59254932e+05, ], 'CountWeightedLHEWeightScale_rwgt11_ptGt300' : [ 6.15756253e+05, 5.55505714e+05, 5.05468003e+05, 5.08891769e+05, 4.59149008e+05, 4.17834249e+05, 4.27651618e+05, 3.85885889e+05, 3.51193231e+05, ], 'CountWeightedLHEEnvelope_rwgt11_ptGt300' : [ 6.15784504e+05, 3.51185300e+05, ], 'CountWeightedFull_rwgt11_ptGt300' : [ 4.59149008e+05, 4.59018567e+05, 4.59254932e+05, ], 'CountWeightedFullLHEWeightScale_rwgt11_ptGt300' : [ 6.15756253e+05, 5.55505714e+05, 5.05468003e+05, 5.08891769e+05, 4.59149008e+05, 4.17834249e+05, 4.27651618e+05, 3.85885889e+05, 3.51193231e+05, ], 'CountWeightedFullLHEEnvelope_rwgt11_ptGt300' : [ 6.15784504e+05, 3.51185300e+05, ], 'CountWeightedL1PrefireNom_rwgt11_ptGt300' : [ 4.42953199e+05, 4.42810985e+05, 4.43066321e+05, ], 'CountWeightedL1Prefire_rwgt11_ptGt300' : [ 4.42953199e+05, 4.39197081e+05, 4.46657796e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt11_ptGt300' : [ 5.93538437e+05, 5.35871715e+05, 4.87920616e+05, 4.90566544e+05, 4.42953199e+05, 4.03357966e+05, 4.12277546e+05, 3.72296914e+05, 3.39046067e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt11_ptGt300' : [ 5.93566165e+05, 3.39038339e+05, ], 'CountWeightedFullL1PrefireNom_rwgt11_ptGt300' : [ 4.42953199e+05, 4.42810985e+05, 4.43066321e+05, ], 'CountWeightedFullL1Prefire_rwgt11_ptGt300' : [ 4.42953199e+05, 4.39197081e+05, 4.46657796e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt11_ptGt300' : [ 5.93538437e+05, 5.35871715e+05, 4.87920616e+05, 4.90566544e+05, 4.42953199e+05, 4.03357966e+05, 4.12277546e+05, 3.72296914e+05, 3.39046067e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt11_ptGt300' : [ 5.93566165e+05, 3.39038339e+05, ], 'CountWeighted_rwgt11_pt300to450' : [ 3.61214218e+05, 3.61053032e+05, 3.61351784e+05, ], 'CountWeightedLHEWeightScale_rwgt11_pt300to450' : [ 4.83524077e+05, 4.37715058e+05, 3.99473052e+05, 3.98966659e+05, 3.61214218e+05, 3.29694599e+05, 3.34822417e+05, 3.03171643e+05, 2.76743406e+05, ], 'CountWeightedLHEEnvelope_rwgt11_pt300to450' : [ 4.83551642e+05, 2.76735701e+05, ], 'CountWeightedFull_rwgt11_pt300to450' : [ 3.61214218e+05, 3.61053032e+05, 3.61351784e+05, ], 'CountWeightedFullLHEWeightScale_rwgt11_pt300to450' : [ 4.83524077e+05, 4.37715058e+05, 3.99473052e+05, 3.98966659e+05, 3.61214218e+05, 3.29694599e+05, 3.34822417e+05, 3.03171643e+05, 2.76743406e+05, ], 'CountWeightedFullLHEEnvelope_rwgt11_pt300to450' : [ 4.83551642e+05, 2.76735701e+05, ], 'CountWeightedL1PrefireNom_rwgt11_pt300to450' : [ 3.48139798e+05, 3.47969709e+05, 3.48281377e+05, ], 'CountWeightedL1Prefire_rwgt11_pt300to450' : [ 3.48139798e+05, 3.45105904e+05, 3.51132814e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt11_pt300to450' : [ 4.65645102e+05, 4.21846975e+05, 3.85238026e+05, 3.84237299e+05, 3.48139798e+05, 3.17964240e+05, 3.22477241e+05, 2.92212230e+05, 2.66909682e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt11_pt300to450' : [ 4.65672143e+05, 2.66902176e+05, ], 'CountWeightedFullL1PrefireNom_rwgt11_pt300to450' : [ 3.48139798e+05, 3.47969709e+05, 3.48281377e+05, ], 'CountWeightedFullL1Prefire_rwgt11_pt300to450' : [ 3.48139798e+05, 3.45105904e+05, 3.51132814e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt11_pt300to450' : [ 4.65645102e+05, 4.21846975e+05, 3.85238026e+05, 3.84237299e+05, 3.48139798e+05, 3.17964240e+05, 3.22477241e+05, 2.92212230e+05, 2.66909682e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt11_pt300to450' : [ 4.65672143e+05, 2.66902176e+05, ], 'CountWeighted_rwgt11_ptGt450' : [ 9.79348319e+04, 9.79661089e+04, 9.79032464e+04, ], 'CountWeightedLHEWeightScale_rwgt11_ptGt450' : [ 1.32232148e+05, 1.17790682e+05, 1.05994957e+05, 1.09925145e+05, 9.79348319e+04, 8.81396170e+04, 9.28291945e+04, 8.27142578e+04, 7.44498051e+04, ], 'CountWeightedLHEEnvelope_rwgt11_ptGt450' : [ 1.32232842e+05, 7.44495772e+04, ], 'CountWeightedFull_rwgt11_ptGt450' : [ 9.79348319e+04, 9.79661089e+04, 9.79032464e+04, ], 'CountWeightedFullLHEWeightScale_rwgt11_ptGt450' : [ 1.32232148e+05, 1.17790682e+05, 1.05994957e+05, 1.09925145e+05, 9.79348319e+04, 8.81396170e+04, 9.28291945e+04, 8.27142578e+04, 7.44498051e+04, ], 'CountWeightedFullLHEEnvelope_rwgt11_ptGt450' : [ 1.32232842e+05, 7.44495772e+04, ], 'CountWeightedL1PrefireNom_rwgt11_ptGt450' : [ 9.48133592e+04, 9.48415652e+04, 9.47850145e+04, ], 'CountWeightedL1Prefire_rwgt11_ptGt450' : [ 9.48133592e+04, 9.40911374e+04, 9.55249860e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt11_ptGt450' : [ 1.27893318e+05, 1.14024783e+05, 1.02682553e+05, 1.06329246e+05, 9.48133592e+04, 8.53936913e+04, 8.98003112e+04, 8.00846761e+04, 7.21363738e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt11_ptGt450' : [ 1.27893994e+05, 7.21361540e+04, ], 'CountWeightedFullL1PrefireNom_rwgt11_ptGt450' : [ 9.48133592e+04, 9.48415652e+04, 9.47850145e+04, ], 'CountWeightedFullL1Prefire_rwgt11_ptGt450' : [ 9.48133592e+04, 9.40911374e+04, 9.55249860e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt11_ptGt450' : [ 1.27893318e+05, 1.14024783e+05, 1.02682553e+05, 1.06329246e+05, 9.48133592e+04, 8.53936913e+04, 8.98003112e+04, 8.00846761e+04, 7.21363738e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt11_ptGt450' : [ 1.27893994e+05, 7.21361540e+04, ], 'CountWeighted_rwgt12' : [ 1.50288663e+07, 1.50277603e+07, 1.50282198e+07, ], 'CountWeightedLHEWeightScale_rwgt12' : [ 1.97905318e+07, 1.83943968e+07, 1.71661178e+07, 1.61690663e+07, 1.50288663e+07, 1.40244013e+07, 1.34591104e+07, 1.25092091e+07, 1.16735834e+07, ], 'CountWeightedLHEEnvelope_rwgt12' : [ 1.98016061e+07, 1.16691982e+07, ], 'CountWeightedFull_rwgt12' : [ 1.50288663e+07, 1.50277603e+07, 1.50282198e+07, ], 'CountWeightedFullLHEWeightScale_rwgt12' : [ 1.97905318e+07, 1.83943968e+07, 1.71661178e+07, 1.61690663e+07, 1.50288663e+07, 1.40244013e+07, 1.34591104e+07, 1.25092091e+07, 1.16735834e+07, ], 'CountWeightedFullLHEEnvelope_rwgt12' : [ 1.98016061e+07, 1.16691982e+07, ], 'CountWeightedL1PrefireNom_rwgt12' : [ 1.45404483e+07, 1.45392623e+07, 1.45408162e+07, ], 'CountWeightedL1Prefire_rwgt12' : [ 1.45404483e+07, 1.44210603e+07, 1.46567348e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt12' : [ 1.91388586e+07, 1.77975260e+07, 1.66158338e+07, 1.56362117e+07, 1.45404483e+07, 1.35744569e+07, 1.30152688e+07, 1.21026785e+07, 1.12988001e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt12' : [ 1.91498125e+07, 1.12944583e+07, ], 'CountWeightedFullL1PrefireNom_rwgt12' : [ 1.45404483e+07, 1.45392623e+07, 1.45408162e+07, ], 'CountWeightedFullL1Prefire_rwgt12' : [ 1.45404483e+07, 1.44210603e+07, 1.46567348e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt12' : [ 1.91388586e+07, 1.77975260e+07, 1.66158338e+07, 1.56362117e+07, 1.45404483e+07, 1.35744569e+07, 1.30152688e+07, 1.21026785e+07, 1.12988001e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt12' : [ 1.91498125e+07, 1.12944583e+07, ], 'CountWeighted_rwgt12_fwd' : [ 2.22938655e+05, 2.23005912e+05, 2.22867024e+05, ], 'CountWeightedLHEWeightScale_rwgt12_fwd' : [ 2.95596685e+05, 2.73116225e+05, 2.54008033e+05, 2.41268112e+05, 2.22938655e+05, 2.07356099e+05, 2.00662159e+05, 1.85430796e+05, 1.72479481e+05, ], 'CountWeightedLHEEnvelope_rwgt12_fwd' : [ 2.95639270e+05, 1.72461160e+05, ], 'CountWeightedFull_rwgt12_fwd' : [ 2.22938655e+05, 2.23005912e+05, 2.22867024e+05, ], 'CountWeightedFullLHEWeightScale_rwgt12_fwd' : [ 2.95596685e+05, 2.73116225e+05, 2.54008033e+05, 2.41268112e+05, 2.22938655e+05, 2.07356099e+05, 2.00662159e+05, 1.85430796e+05, 1.72479481e+05, ], 'CountWeightedFullLHEEnvelope_rwgt12_fwd' : [ 2.95639270e+05, 1.72461160e+05, ], 'CountWeightedL1PrefireNom_rwgt12_fwd' : [ 1.91622065e+05, 1.91612015e+05, 1.91633414e+05, ], 'CountWeightedL1Prefire_rwgt12_fwd' : [ 1.91622065e+05, 1.84686723e+05, 1.98626268e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt12_fwd' : [ 2.53988452e+05, 2.34815183e+05, 2.18505055e+05, 2.07249382e+05, 1.91622065e+05, 1.78325666e+05, 1.72329263e+05, 1.59346832e+05, 1.48298919e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt12_fwd' : [ 2.54025659e+05, 1.48282997e+05, ], 'CountWeightedFullL1PrefireNom_rwgt12_fwd' : [ 1.91622065e+05, 1.91612015e+05, 1.91633414e+05, ], 'CountWeightedFullL1Prefire_rwgt12_fwd' : [ 1.91622065e+05, 1.84686723e+05, 1.98626268e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt12_fwd' : [ 2.53988452e+05, 2.34815183e+05, 2.18505055e+05, 2.07249382e+05, 1.91622065e+05, 1.78325666e+05, 1.72329263e+05, 1.59346832e+05, 1.48298919e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt12_fwd' : [ 2.54025659e+05, 1.48282997e+05, ], 'CountWeighted_rwgt12_pt0to60' : [ 3.34613676e+06, 3.34630204e+06, 3.34592283e+06, ], 'CountWeightedLHEWeightScale_rwgt12_pt0to60' : [ 4.37256890e+06, 4.10184939e+06, 3.85756509e+06, 3.56719308e+06, 3.34613676e+06, 3.14667209e+06, 2.96568368e+06, 2.78172745e+06, 2.61580737e+06, ], 'CountWeightedLHEEnvelope_rwgt12_pt0to60' : [ 4.37660365e+06, 2.61421905e+06, ], 'CountWeightedFull_rwgt12_pt0to60' : [ 3.34613676e+06, 3.34630204e+06, 3.34592283e+06, ], 'CountWeightedFullLHEWeightScale_rwgt12_pt0to60' : [ 4.37256890e+06, 4.10184939e+06, 3.85756509e+06, 3.56719308e+06, 3.34613676e+06, 3.14667209e+06, 2.96568368e+06, 2.78172745e+06, 2.61580737e+06, ], 'CountWeightedFullLHEEnvelope_rwgt12_pt0to60' : [ 4.37660365e+06, 2.61421905e+06, ], 'CountWeightedL1PrefireNom_rwgt12_pt0to60' : [ 3.25557363e+06, 3.25562079e+06, 3.25552610e+06, ], 'CountWeightedL1Prefire_rwgt12_pt0to60' : [ 3.25557363e+06, 3.23242913e+06, 3.27778205e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt12_pt0to60' : [ 4.25276620e+06, 3.99095779e+06, 3.75443972e+06, 3.46935021e+06, 3.25557363e+06, 3.06246238e+06, 2.88426761e+06, 2.70637945e+06, 2.54574404e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt12_pt0to60' : [ 4.25676113e+06, 2.54416952e+06, ], 'CountWeightedFullL1PrefireNom_rwgt12_pt0to60' : [ 3.25557363e+06, 3.25562079e+06, 3.25552610e+06, ], 'CountWeightedFullL1Prefire_rwgt12_pt0to60' : [ 3.25557363e+06, 3.23242913e+06, 3.27778205e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt12_pt0to60' : [ 4.25276620e+06, 3.99095779e+06, 3.75443972e+06, 3.46935021e+06, 3.25557363e+06, 3.06246238e+06, 2.88426761e+06, 2.70637945e+06, 2.54574404e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt12_pt0to60' : [ 4.25676113e+06, 2.54416952e+06, ], 'CountWeighted_rwgt12_pt60to120' : [ 5.30798581e+06, 5.30828680e+06, 5.30757268e+06, ], 'CountWeightedLHEWeightScale_rwgt12_pt60to120' : [ 6.97229312e+06, 6.51068687e+06, 6.09872255e+06, 5.68437455e+06, 5.30798581e+06, 4.97212694e+06, 4.72338173e+06, 4.41058599e+06, 4.13150756e+06, ], 'CountWeightedLHEEnvelope_rwgt12_pt60to120' : [ 6.97689809e+06, 4.12968767e+06, ], 'CountWeightedFull_rwgt12_pt60to120' : [ 5.30798581e+06, 5.30828680e+06, 5.30757268e+06, ], 'CountWeightedFullLHEWeightScale_rwgt12_pt60to120' : [ 6.97229312e+06, 6.51068687e+06, 6.09872255e+06, 5.68437455e+06, 5.30798581e+06, 4.97212694e+06, 4.72338173e+06, 4.41058599e+06, 4.13150756e+06, ], 'CountWeightedFullLHEEnvelope_rwgt12_pt60to120' : [ 6.97689809e+06, 4.12968767e+06, ], 'CountWeightedL1PrefireNom_rwgt12_pt60to120' : [ 5.15174467e+06, 5.15179442e+06, 5.15163907e+06, ], 'CountWeightedL1Prefire_rwgt12_pt60to120' : [ 5.15174467e+06, 5.11266902e+06, 5.18955088e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt12_pt60to120' : [ 6.76453204e+06, 6.31925533e+06, 5.92138176e+06, 5.51479880e+06, 5.15174467e+06, 4.82738076e+06, 4.58234206e+06, 4.28063500e+06, 4.01112183e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt12_pt60to120' : [ 6.76909000e+06, 4.00931919e+06, ], 'CountWeightedFullL1PrefireNom_rwgt12_pt60to120' : [ 5.15174467e+06, 5.15179442e+06, 5.15163907e+06, ], 'CountWeightedFullL1Prefire_rwgt12_pt60to120' : [ 5.15174467e+06, 5.11266902e+06, 5.18955088e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt12_pt60to120' : [ 6.76453204e+06, 6.31925533e+06, 5.92138176e+06, 5.51479880e+06, 5.15174467e+06, 4.82738076e+06, 4.58234206e+06, 4.28063500e+06, 4.01112183e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt12_pt60to120' : [ 6.76909000e+06, 4.00931919e+06, ], 'CountWeighted_rwgt12_pt120to200' : [ 3.85101364e+06, 3.85090157e+06, 3.85097545e+06, ], 'CountWeightedLHEWeightScale_rwgt12_pt120to200' : [ 5.08530574e+06, 4.71262791e+06, 4.38674177e+06, 4.15536704e+06, 3.85101364e+06, 3.58485176e+06, 3.45931272e+06, 3.20603041e+06, 2.98456299e+06, ], 'CountWeightedLHEEnvelope_rwgt12_pt120to200' : [ 5.08725112e+06, 2.98376771e+06, ], 'CountWeightedFull_rwgt12_pt120to200' : [ 3.85101364e+06, 3.85090157e+06, 3.85097545e+06, ], 'CountWeightedFullLHEWeightScale_rwgt12_pt120to200' : [ 5.08530574e+06, 4.71262791e+06, 4.38674177e+06, 4.15536704e+06, 3.85101364e+06, 3.58485176e+06, 3.45931272e+06, 3.20603041e+06, 2.98456299e+06, ], 'CountWeightedFullLHEEnvelope_rwgt12_pt120to200' : [ 5.08725112e+06, 2.98376771e+06, ], 'CountWeightedL1PrefireNom_rwgt12_pt120to200' : [ 3.72319488e+06, 3.72297720e+06, 3.72330453e+06, ], 'CountWeightedL1Prefire_rwgt12_pt120to200' : [ 3.72319488e+06, 3.69221382e+06, 3.75347164e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt12_pt120to200' : [ 4.91425724e+06, 4.55629650e+06, 4.24289163e+06, 4.01552798e+06, 3.72319488e+06, 3.46723606e+06, 3.34284964e+06, 3.09957693e+06, 2.88660098e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt12_pt120to200' : [ 4.91618159e+06, 2.88581377e+06, ], 'CountWeightedFullL1PrefireNom_rwgt12_pt120to200' : [ 3.72319488e+06, 3.72297720e+06, 3.72330453e+06, ], 'CountWeightedFullL1Prefire_rwgt12_pt120to200' : [ 3.72319488e+06, 3.69221382e+06, 3.75347164e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt12_pt120to200' : [ 4.91425724e+06, 4.55629650e+06, 4.24289163e+06, 4.01552798e+06, 3.72319488e+06, 3.46723606e+06, 3.34284964e+06, 3.09957693e+06, 2.88660098e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt12_pt120to200' : [ 4.91618159e+06, 2.88581377e+06, ], 'CountWeighted_rwgt12_pt200to300' : [ 1.58266032e+06, 1.58233729e+06, 1.58305715e+06, ], 'CountWeightedLHEWeightScale_rwgt12_pt200to300' : [ 2.10266105e+06, 1.92820040e+06, 1.77925449e+06, 1.72571729e+06, 1.58266032e+06, 1.46053253e+06, 1.44186565e+06, 1.32243705e+06, 1.22046639e+06, ], 'CountWeightedLHEEnvelope_rwgt12_pt200to300' : [ 2.10306456e+06, 1.22031476e+06, ], 'CountWeightedFull_rwgt12_pt200to300' : [ 1.58266032e+06, 1.58233729e+06, 1.58305715e+06, ], 'CountWeightedFullLHEWeightScale_rwgt12_pt200to300' : [ 2.10266105e+06, 1.92820040e+06, 1.77925449e+06, 1.72571729e+06, 1.58266032e+06, 1.46053253e+06, 1.44186565e+06, 1.32243705e+06, 1.22046639e+06, ], 'CountWeightedFullLHEEnvelope_rwgt12_pt200to300' : [ 2.10306456e+06, 1.22031476e+06, ], 'CountWeightedL1PrefireNom_rwgt12_pt200to300' : [ 1.52584361e+06, 1.52550037e+06, 1.52626154e+06, ], 'CountWeightedL1Prefire_rwgt12_pt200to300' : [ 1.52584361e+06, 1.51244857e+06, 1.53902887e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt12_pt200to300' : [ 2.02592587e+06, 1.85894624e+06, 1.71621257e+06, 1.66276694e+06, 1.52584361e+06, 1.40880572e+06, 1.38928949e+06, 1.27497819e+06, 1.17725732e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt12_pt200to300' : [ 2.02632460e+06, 1.17710754e+06, ], 'CountWeightedFullL1PrefireNom_rwgt12_pt200to300' : [ 1.52584361e+06, 1.52550037e+06, 1.52626154e+06, ], 'CountWeightedFullL1Prefire_rwgt12_pt200to300' : [ 1.52584361e+06, 1.51244857e+06, 1.53902887e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt12_pt200to300' : [ 2.02592587e+06, 1.85894624e+06, 1.71621257e+06, 1.66276694e+06, 1.52584361e+06, 1.40880572e+06, 1.38928949e+06, 1.27497819e+06, 1.17725732e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt12_pt200to300' : [ 2.02632460e+06, 1.17710754e+06, ], 'CountWeighted_rwgt12_ptGt300' : [ 7.17418076e+05, 7.17224090e+05, 7.17586783e+05, ], 'CountWeightedLHEWeightScale_rwgt12_ptGt300' : [ 9.62118987e+05, 8.67977827e+05, 7.89793763e+05, 7.95143471e+05, 7.17418076e+05, 6.52865998e+05, 6.68205644e+05, 6.02946861e+05, 5.48739369e+05, ], 'CountWeightedLHEEnvelope_rwgt12_ptGt300' : [ 9.62163145e+05, 5.48726974e+05, ], 'CountWeightedFull_rwgt12_ptGt300' : [ 7.17418076e+05, 7.17224090e+05, 7.17586783e+05, ], 'CountWeightedFullLHEWeightScale_rwgt12_ptGt300' : [ 9.62118987e+05, 8.67977827e+05, 7.89793763e+05, 7.95143471e+05, 7.17418076e+05, 6.52865998e+05, 6.68205644e+05, 6.02946861e+05, 5.48739369e+05, ], 'CountWeightedFullLHEEnvelope_rwgt12_ptGt300' : [ 9.62163145e+05, 5.48726974e+05, ], 'CountWeightedL1PrefireNom_rwgt12_ptGt300' : [ 6.92112885e+05, 6.91896851e+05, 6.92291597e+05, ], 'CountWeightedL1Prefire_rwgt12_ptGt300' : [ 6.92112885e+05, 6.86244216e+05, 6.97901401e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt12_ptGt300' : [ 9.27403676e+05, 8.37299678e+05, 7.62375906e+05, 7.66510314e+05, 6.92112885e+05, 6.30246835e+05, 6.44183638e+05, 5.81714075e+05, 5.29759429e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt12_ptGt300' : [ 9.27446994e+05, 5.29747357e+05, ], 'CountWeightedFullL1PrefireNom_rwgt12_ptGt300' : [ 6.92112885e+05, 6.91896851e+05, 6.92291597e+05, ], 'CountWeightedFullL1Prefire_rwgt12_ptGt300' : [ 6.92112885e+05, 6.86244216e+05, 6.97901401e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt12_ptGt300' : [ 9.27403676e+05, 8.37299678e+05, 7.62375906e+05, 7.66510314e+05, 6.92112885e+05, 6.30246835e+05, 6.44183638e+05, 5.81714075e+05, 5.29759429e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt12_ptGt300' : [ 9.27446994e+05, 5.29747357e+05, ], 'CountWeighted_rwgt12_pt300to450' : [ 5.64396088e+05, 5.64148761e+05, 5.64612971e+05, ], 'CountWeightedLHEWeightScale_rwgt12_pt300to450' : [ 7.55506360e+05, 6.83929849e+05, 6.24176627e+05, 6.23385397e+05, 5.64396088e+05, 5.15147852e+05, 5.23160064e+05, 4.73705789e+05, 4.32411526e+05, ], 'CountWeightedLHEEnvelope_rwgt12_pt300to450' : [ 7.55549420e+05, 4.32399496e+05, ], 'CountWeightedFull_rwgt12_pt300to450' : [ 5.64396088e+05, 5.64148761e+05, 5.64612971e+05, ], 'CountWeightedFullLHEWeightScale_rwgt12_pt300to450' : [ 7.55506360e+05, 6.83929849e+05, 6.24176627e+05, 6.23385397e+05, 5.64396088e+05, 5.15147852e+05, 5.23160064e+05, 4.73705789e+05, 4.32411526e+05, ], 'CountWeightedFullLHEEnvelope_rwgt12_pt300to450' : [ 7.55549420e+05, 4.32399496e+05, ], 'CountWeightedL1PrefireNom_rwgt12_pt300to450' : [ 5.43967794e+05, 5.43704693e+05, 5.44190048e+05, ], 'CountWeightedL1Prefire_rwgt12_pt300to450' : [ 5.43967794e+05, 5.39227442e+05, 5.48644351e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt12_pt300to450' : [ 7.27570469e+05, 6.59135951e+05, 6.01934415e+05, 6.00370802e+05, 5.43967794e+05, 4.96819181e+05, 5.03870695e+05, 4.56581684e+05, 4.17046351e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt12_pt300to450' : [ 7.27612722e+05, 4.17034627e+05, ], 'CountWeightedFullL1PrefireNom_rwgt12_pt300to450' : [ 5.43967794e+05, 5.43704693e+05, 5.44190048e+05, ], 'CountWeightedFullL1Prefire_rwgt12_pt300to450' : [ 5.43967794e+05, 5.39227442e+05, 5.48644351e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt12_pt300to450' : [ 7.27570469e+05, 6.59135951e+05, 6.01934415e+05, 6.00370802e+05, 5.43967794e+05, 4.96819181e+05, 5.03870695e+05, 4.56581684e+05, 4.17046351e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt12_pt300to450' : [ 7.27612722e+05, 4.17034627e+05, ], 'CountWeighted_rwgt12_ptGt450' : [ 1.53023133e+05, 1.53071989e+05, 1.52973938e+05, ], 'CountWeightedLHEWeightScale_rwgt12_ptGt450' : [ 2.06612725e+05, 1.84047953e+05, 1.65617122e+05, 1.71758049e+05, 1.53023133e+05, 1.37718147e+05, 1.45045616e+05, 1.29241037e+05, 1.16327817e+05, ], 'CountWeightedLHEEnvelope_rwgt12_ptGt450' : [ 2.06613811e+05, 1.16327461e+05, ], 'CountWeightedFull_rwgt12_ptGt450' : [ 1.53023133e+05, 1.53071989e+05, 1.52973938e+05, ], 'CountWeightedFullLHEWeightScale_rwgt12_ptGt450' : [ 2.06612725e+05, 1.84047953e+05, 1.65617122e+05, 1.71758049e+05, 1.53023133e+05, 1.37718147e+05, 1.45045616e+05, 1.29241037e+05, 1.16327817e+05, ], 'CountWeightedFullLHEEnvelope_rwgt12_ptGt450' : [ 2.06613811e+05, 1.16327461e+05, ], 'CountWeightedL1PrefireNom_rwgt12_ptGt450' : [ 1.48145857e+05, 1.48189912e+05, 1.48101665e+05, ], 'CountWeightedL1Prefire_rwgt12_ptGt450' : [ 1.48145857e+05, 1.47017380e+05, 1.49257770e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt12_ptGt450' : [ 1.99833309e+05, 1.78163724e+05, 1.60441494e+05, 1.66139457e+05, 1.48145857e+05, 1.33427642e+05, 1.40312986e+05, 1.25132317e+05, 1.12713079e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt12_ptGt450' : [ 1.99834367e+05, 1.12712736e+05, ], 'CountWeightedFullL1PrefireNom_rwgt12_ptGt450' : [ 1.48145857e+05, 1.48189912e+05, 1.48101665e+05, ], 'CountWeightedFullL1Prefire_rwgt12_ptGt450' : [ 1.48145857e+05, 1.47017380e+05, 1.49257770e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt12_ptGt450' : [ 1.99833309e+05, 1.78163724e+05, 1.60441494e+05, 1.66139457e+05, 1.48145857e+05, 1.33427642e+05, 1.40312986e+05, 1.25132317e+05, 1.12713079e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt12_ptGt450' : [ 1.99834367e+05, 1.12712736e+05, ], 'CountWeighted_rwgt13' : [ 2.16406378e+07, 2.16399811e+07, 2.16399367e+07, ], 'CountWeightedLHEWeightScale_rwgt13' : [ 2.84983910e+07, 2.64880030e+07, 2.47191977e+07, 2.32834500e+07, 2.16406378e+07, 2.01951306e+07, 1.93810796e+07, 1.80130978e+07, 1.68099107e+07, ], 'CountWeightedLHEEnvelope_rwgt13' : [ 2.85143442e+07, 1.68035901e+07, ], 'CountWeightedFull_rwgt13' : [ 2.16406378e+07, 2.16399811e+07, 2.16399367e+07, ], 'CountWeightedFullLHEWeightScale_rwgt13' : [ 2.84983910e+07, 2.64880030e+07, 2.47191977e+07, 2.32834500e+07, 2.16406378e+07, 2.01951306e+07, 1.93810796e+07, 1.80130978e+07, 1.68099107e+07, ], 'CountWeightedFullLHEEnvelope_rwgt13' : [ 2.85143442e+07, 1.68035901e+07, ], 'CountWeightedL1PrefireNom_rwgt13' : [ 2.09377992e+07, 2.09364370e+07, 2.09383650e+07, ], 'CountWeightedL1Prefire_rwgt13' : [ 2.09377992e+07, 2.07658725e+07, 2.11052485e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt13' : [ 2.75599854e+07, 2.56284912e+07, 2.39267886e+07, 2.25161355e+07, 2.09377992e+07, 1.95472053e+07, 1.87419476e+07, 1.74277440e+07, 1.62702289e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt13' : [ 2.75757651e+07, 1.62639725e+07, ], 'CountWeightedFullL1PrefireNom_rwgt13' : [ 2.09377992e+07, 2.09364370e+07, 2.09383650e+07, ], 'CountWeightedFullL1Prefire_rwgt13' : [ 2.09377992e+07, 2.07658725e+07, 2.11052485e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt13' : [ 2.75599854e+07, 2.56284912e+07, 2.39267886e+07, 2.25161355e+07, 2.09377992e+07, 1.95472053e+07, 1.87419476e+07, 1.74277440e+07, 1.62702289e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt13' : [ 2.75757651e+07, 1.62639725e+07, ], 'CountWeighted_rwgt13_fwd' : [ 3.21031858e+05, 3.21127853e+05, 3.20928644e+05, ], 'CountWeightedLHEWeightScale_rwgt13_fwd' : [ 4.25659245e+05, 3.93287337e+05, 3.65771580e+05, 3.47426078e+05, 3.21031858e+05, 2.98592799e+05, 2.88953480e+05, 2.67020347e+05, 2.48370481e+05, ], 'CountWeightedLHEEnvelope_rwgt13_fwd' : [ 4.25720571e+05, 2.48344098e+05, ], 'CountWeightedFull_rwgt13_fwd' : [ 3.21031858e+05, 3.21127853e+05, 3.20928644e+05, ], 'CountWeightedFullLHEWeightScale_rwgt13_fwd' : [ 4.25659245e+05, 3.93287337e+05, 3.65771580e+05, 3.47426078e+05, 3.21031858e+05, 2.98592799e+05, 2.88953480e+05, 2.67020347e+05, 2.48370481e+05, ], 'CountWeightedFullLHEEnvelope_rwgt13_fwd' : [ 4.25720571e+05, 2.48344098e+05, ], 'CountWeightedL1PrefireNom_rwgt13_fwd' : [ 2.75935820e+05, 2.75921247e+05, 2.75952112e+05, ], 'CountWeightedL1Prefire_rwgt13_fwd' : [ 2.75935820e+05, 2.65948916e+05, 2.86021829e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt13_fwd' : [ 3.65743353e+05, 3.38133878e+05, 3.14647277e+05, 2.98439116e+05, 2.75935820e+05, 2.56788967e+05, 2.48154138e+05, 2.29459434e+05, 2.13550436e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt13_fwd' : [ 3.65796929e+05, 2.13527506e+05, ], 'CountWeightedFullL1PrefireNom_rwgt13_fwd' : [ 2.75935820e+05, 2.75921247e+05, 2.75952112e+05, ], 'CountWeightedFullL1Prefire_rwgt13_fwd' : [ 2.75935820e+05, 2.65948916e+05, 2.86021829e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt13_fwd' : [ 3.65743353e+05, 3.38133878e+05, 3.14647277e+05, 2.98439116e+05, 2.75935820e+05, 2.56788967e+05, 2.48154138e+05, 2.29459434e+05, 2.13550436e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt13_fwd' : [ 3.65796929e+05, 2.13527506e+05, ], 'CountWeighted_rwgt13_pt0to60' : [ 4.81838723e+06, 4.81882625e+06, 4.81813353e+06, ], 'CountWeightedLHEWeightScale_rwgt13_pt0to60' : [ 6.29650069e+06, 5.90665932e+06, 5.55489490e+06, 5.13675904e+06, 4.81838723e+06, 4.53120612e+06, 4.27058474e+06, 4.00568601e+06, 3.76676263e+06, ], 'CountWeightedLHEEnvelope_rwgt13_pt0to60' : [ 6.30231054e+06, 3.76447478e+06, ], 'CountWeightedFull_rwgt13_pt0to60' : [ 4.81838723e+06, 4.81882625e+06, 4.81813353e+06, ], 'CountWeightedFullLHEWeightScale_rwgt13_pt0to60' : [ 6.29650069e+06, 5.90665932e+06, 5.55489490e+06, 5.13675904e+06, 4.81838723e+06, 4.53120612e+06, 4.27058474e+06, 4.00568601e+06, 3.76676263e+06, ], 'CountWeightedFullLHEEnvelope_rwgt13_pt0to60' : [ 6.30231054e+06, 3.76447478e+06, ], 'CountWeightedL1PrefireNom_rwgt13_pt0to60' : [ 4.68798764e+06, 4.68818417e+06, 4.68796091e+06, ], 'CountWeightedL1Prefire_rwgt13_pt0to60' : [ 4.68798764e+06, 4.65466900e+06, 4.71996964e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt13_pt0to60' : [ 6.12398264e+06, 5.74697801e+06, 5.40639396e+06, 4.99586505e+06, 4.68798764e+06, 4.40994481e+06, 4.15334508e+06, 3.89718488e+06, 3.66587072e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt13_pt0to60' : [ 6.12973509e+06, 3.66360294e+06, ], 'CountWeightedFullL1PrefireNom_rwgt13_pt0to60' : [ 4.68798764e+06, 4.68818417e+06, 4.68796091e+06, ], 'CountWeightedFullL1Prefire_rwgt13_pt0to60' : [ 4.68798764e+06, 4.65466900e+06, 4.71996964e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt13_pt0to60' : [ 6.12398264e+06, 5.74697801e+06, 5.40639396e+06, 4.99586505e+06, 4.68798764e+06, 4.40994481e+06, 4.15334508e+06, 3.89718488e+06, 3.66587072e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt13_pt0to60' : [ 6.12973509e+06, 3.66360294e+06, ], 'CountWeighted_rwgt13_pt60to120' : [ 7.64353193e+06, 7.64397149e+06, 7.64289926e+06, ], 'CountWeightedLHEWeightScale_rwgt13_pt60to120' : [ 1.00400949e+07, 9.37538594e+06, 8.78215896e+06, 8.18550117e+06, 7.64353193e+06, 7.15986278e+06, 6.80167096e+06, 6.35124092e+06, 5.94936522e+06, ], 'CountWeightedLHEEnvelope_rwgt13_pt60to120' : [ 1.00467243e+07, 5.94674446e+06, ], 'CountWeightedFull_rwgt13_pt60to120' : [ 7.64353193e+06, 7.64397149e+06, 7.64289926e+06, ], 'CountWeightedFullLHEWeightScale_rwgt13_pt60to120' : [ 1.00400949e+07, 9.37538594e+06, 8.78215896e+06, 8.18550117e+06, 7.64353193e+06, 7.15986278e+06, 6.80167096e+06, 6.35124092e+06, 5.94936522e+06, ], 'CountWeightedFullLHEEnvelope_rwgt13_pt60to120' : [ 1.00467243e+07, 5.94674446e+06, ], 'CountWeightedL1PrefireNom_rwgt13_pt60to120' : [ 7.41851710e+06, 7.41864543e+06, 7.41834768e+06, ], 'CountWeightedL1Prefire_rwgt13_pt60to120' : [ 7.41851710e+06, 7.36226584e+06, 7.47296442e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt13_pt60to120' : [ 9.74092317e+06, 9.09972862e+06, 8.52678490e+06, 7.94131240e+06, 7.41851710e+06, 6.95142780e+06, 6.59857313e+06, 6.16411433e+06, 5.77601115e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt13_pt60to120' : [ 9.74748449e+06, 5.77341489e+06, ], 'CountWeightedFullL1PrefireNom_rwgt13_pt60to120' : [ 7.41851710e+06, 7.41864543e+06, 7.41834768e+06, ], 'CountWeightedFullL1Prefire_rwgt13_pt60to120' : [ 7.41851710e+06, 7.36226584e+06, 7.47296442e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt13_pt60to120' : [ 9.74092317e+06, 9.09972862e+06, 8.52678490e+06, 7.94131240e+06, 7.41851710e+06, 6.95142780e+06, 6.59857313e+06, 6.16411433e+06, 5.77601115e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt13_pt60to120' : [ 9.74748449e+06, 5.77341489e+06, ], 'CountWeighted_rwgt13_pt120to200' : [ 5.54542275e+06, 5.54551129e+06, 5.54541465e+06, ], 'CountWeightedLHEWeightScale_rwgt13_pt120to200' : [ 7.32283999e+06, 6.78619070e+06, 6.31690761e+06, 5.98372766e+06, 5.54542275e+06, 5.16218576e+06, 4.98141037e+06, 4.61668047e+06, 4.29777114e+06, ], 'CountWeightedLHEEnvelope_rwgt13_pt120to200' : [ 7.32564126e+06, 4.29662602e+06, ], 'CountWeightedFull_rwgt13_pt120to200' : [ 5.54542275e+06, 5.54551129e+06, 5.54541465e+06, ], 'CountWeightedFullLHEWeightScale_rwgt13_pt120to200' : [ 7.32283999e+06, 6.78619070e+06, 6.31690761e+06, 5.98372766e+06, 5.54542275e+06, 5.16218576e+06, 4.98141037e+06, 4.61668047e+06, 4.29777114e+06, ], 'CountWeightedFullLHEEnvelope_rwgt13_pt120to200' : [ 7.32564126e+06, 4.29662602e+06, ], 'CountWeightedL1PrefireNom_rwgt13_pt120to200' : [ 5.36136683e+06, 5.36121651e+06, 5.36156612e+06, ], 'CountWeightedL1Prefire_rwgt13_pt120to200' : [ 5.36136683e+06, 5.31676556e+06, 5.40497018e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt13_pt120to200' : [ 7.07653082e+06, 6.56107169e+06, 6.10976394e+06, 5.78235789e+06, 5.36136683e+06, 4.99281934e+06, 4.81370382e+06, 4.46338854e+06, 4.15670560e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt13_pt120to200' : [ 7.07930172e+06, 4.15557225e+06, ], 'CountWeightedFullL1PrefireNom_rwgt13_pt120to200' : [ 5.36136683e+06, 5.36121651e+06, 5.36156612e+06, ], 'CountWeightedFullL1Prefire_rwgt13_pt120to200' : [ 5.36136683e+06, 5.31676556e+06, 5.40497018e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt13_pt120to200' : [ 7.07653082e+06, 6.56107169e+06, 6.10976394e+06, 5.78235789e+06, 5.36136683e+06, 4.99281934e+06, 4.81370382e+06, 4.46338854e+06, 4.15670560e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt13_pt120to200' : [ 7.07930172e+06, 4.15557225e+06, ], 'CountWeighted_rwgt13_pt200to300' : [ 2.27903322e+06, 2.27859770e+06, 2.27960623e+06, ], 'CountWeightedLHEWeightScale_rwgt13_pt200to300' : [ 3.02783225e+06, 2.77660882e+06, 2.56212623e+06, 2.48503278e+06, 2.27903322e+06, 2.10316699e+06, 2.07628646e+06, 1.90430948e+06, 1.75747155e+06, ], 'CountWeightedLHEEnvelope_rwgt13_pt200to300' : [ 3.02841319e+06, 1.75725318e+06, ], 'CountWeightedFull_rwgt13_pt200to300' : [ 2.27903322e+06, 2.27859770e+06, 2.27960623e+06, ], 'CountWeightedFullLHEWeightScale_rwgt13_pt200to300' : [ 3.02783225e+06, 2.77660882e+06, 2.56212623e+06, 2.48503278e+06, 2.27903322e+06, 2.10316699e+06, 2.07628646e+06, 1.90430948e+06, 1.75747155e+06, ], 'CountWeightedFullLHEEnvelope_rwgt13_pt200to300' : [ 3.02841319e+06, 1.75725318e+06, ], 'CountWeightedL1PrefireNom_rwgt13_pt200to300' : [ 2.19721832e+06, 2.19673899e+06, 2.19782014e+06, ], 'CountWeightedL1Prefire_rwgt13_pt200to300' : [ 2.19721832e+06, 2.17792908e+06, 2.21620400e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt13_pt200to300' : [ 2.91733379e+06, 2.67688282e+06, 2.47134619e+06, 2.39438430e+06, 2.19721832e+06, 2.02868050e+06, 2.00057697e+06, 1.83596836e+06, 1.69525043e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt13_pt200to300' : [ 2.91790796e+06, 1.69503474e+06, ], 'CountWeightedFullL1PrefireNom_rwgt13_pt200to300' : [ 2.19721832e+06, 2.19673899e+06, 2.19782014e+06, ], 'CountWeightedFullL1Prefire_rwgt13_pt200to300' : [ 2.19721832e+06, 2.17792908e+06, 2.21620400e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt13_pt200to300' : [ 2.91733379e+06, 2.67688282e+06, 2.47134619e+06, 2.39438430e+06, 2.19721832e+06, 2.02868050e+06, 2.00057697e+06, 1.83596836e+06, 1.69525043e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt13_pt200to300' : [ 2.91790796e+06, 1.69503474e+06, ], 'CountWeighted_rwgt13_ptGt300' : [ 1.03308814e+06, 1.03279190e+06, 1.03332668e+06, ], 'CountWeightedLHEWeightScale_rwgt13_ptGt300' : [ 1.38545133e+06, 1.24988800e+06, 1.13730292e+06, 1.14500655e+06, 1.03308814e+06, 9.40126823e+05, 9.62216247e+05, 8.68243500e+05, 7.90184703e+05, ], 'CountWeightedLHEEnvelope_rwgt13_ptGt300' : [ 1.38551491e+06, 7.90166859e+05, ], 'CountWeightedFull_rwgt13_ptGt300' : [ 1.03308814e+06, 1.03279190e+06, 1.03332668e+06, ], 'CountWeightedFullLHEWeightScale_rwgt13_ptGt300' : [ 1.38545133e+06, 1.24988800e+06, 1.13730292e+06, 1.14500655e+06, 1.03308814e+06, 9.40126823e+05, 9.62216247e+05, 8.68243500e+05, 7.90184703e+05, ], 'CountWeightedFullLHEEnvelope_rwgt13_ptGt300' : [ 1.38551491e+06, 7.90166859e+05, ], 'CountWeightedL1PrefireNom_rwgt13_ptGt300' : [ 9.96646272e+05, 9.96324716e+05, 9.96901077e+05, ], 'CountWeightedL1Prefire_rwgt13_ptGt300' : [ 9.96646272e+05, 9.88194920e+05, 1.00498183e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt13_ptGt300' : [ 1.33546133e+06, 1.20571155e+06, 1.09782124e+06, 1.10377471e+06, 9.96646272e+05, 9.07555296e+05, 9.27624533e+05, 8.37668222e+05, 7.62853600e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt13_ptGt300' : [ 1.33552372e+06, 7.62836205e+05, ], 'CountWeightedFullL1PrefireNom_rwgt13_ptGt300' : [ 9.96646272e+05, 9.96324716e+05, 9.96901077e+05, ], 'CountWeightedFullL1Prefire_rwgt13_ptGt300' : [ 9.96646272e+05, 9.88194920e+05, 1.00498183e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt13_ptGt300' : [ 1.33546133e+06, 1.20571155e+06, 1.09782124e+06, 1.10377471e+06, 9.96646272e+05, 9.07555296e+05, 9.27624533e+05, 8.37668222e+05, 7.62853600e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt13_ptGt300' : [ 1.33552372e+06, 7.62836205e+05, ], 'CountWeighted_rwgt13_pt300to450' : [ 8.12733195e+05, 8.12368780e+05, 8.13043565e+05, ], 'CountWeightedLHEWeightScale_rwgt13_pt300to450' : [ 1.08792908e+06, 9.84859004e+05, 8.98814227e+05, 8.97674928e+05, 8.12733195e+05, 7.41812806e+05, 7.53350499e+05, 6.82136394e+05, 6.22672604e+05, ], 'CountWeightedLHEEnvelope_rwgt13_pt300to450' : [ 1.08799111e+06, 6.22655269e+05, ], 'CountWeightedFull_rwgt13_pt300to450' : [ 8.12733195e+05, 8.12368780e+05, 8.13043565e+05, ], 'CountWeightedFullLHEWeightScale_rwgt13_pt300to450' : [ 1.08792908e+06, 9.84859004e+05, 8.98814227e+05, 8.97674928e+05, 8.12733195e+05, 7.41812806e+05, 7.53350499e+05, 6.82136394e+05, 6.22672604e+05, ], 'CountWeightedFullLHEEnvelope_rwgt13_pt300to450' : [ 1.08799111e+06, 6.22655269e+05, ], 'CountWeightedL1PrefireNom_rwgt13_pt300to450' : [ 7.83315228e+05, 7.82931634e+05, 7.83634294e+05, ], 'CountWeightedL1Prefire_rwgt13_pt300to450' : [ 7.83315228e+05, 7.76488868e+05, 7.90049523e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt13_pt300to450' : [ 1.04770142e+06, 9.49155771e+05, 8.66785544e+05, 8.64533848e+05, 7.83315228e+05, 7.15419536e+05, 7.25573839e+05, 6.57477665e+05, 6.00546742e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt13_pt300to450' : [ 1.04776228e+06, 6.00529846e+05, ], 'CountWeightedFullL1PrefireNom_rwgt13_pt300to450' : [ 7.83315228e+05, 7.82931634e+05, 7.83634294e+05, ], 'CountWeightedFullL1Prefire_rwgt13_pt300to450' : [ 7.83315228e+05, 7.76488868e+05, 7.90049523e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt13_pt300to450' : [ 1.04770142e+06, 9.49155771e+05, 8.66785544e+05, 8.64533848e+05, 7.83315228e+05, 7.15419536e+05, 7.25573839e+05, 6.57477665e+05, 6.00546742e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt13_pt300to450' : [ 1.04776228e+06, 6.00529846e+05, ], 'CountWeighted_rwgt13_ptGt450' : [ 2.20353459e+05, 2.20423536e+05, 2.20282482e+05, ], 'CountWeightedLHEWeightScale_rwgt13_ptGt450' : [ 2.97522327e+05, 2.65029043e+05, 2.38488661e+05, 2.47331577e+05, 2.20353459e+05, 1.98314145e+05, 2.08865696e+05, 1.86107093e+05, 1.67512052e+05, ], 'CountWeightedLHEEnvelope_rwgt13_ptGt450' : [ 2.97523892e+05, 1.67511540e+05, ], 'CountWeightedFull_rwgt13_ptGt450' : [ 2.20353459e+05, 2.20423536e+05, 2.20282482e+05, ], 'CountWeightedFullLHEWeightScale_rwgt13_ptGt450' : [ 2.97522327e+05, 2.65029043e+05, 2.38488661e+05, 2.47331577e+05, 2.20353459e+05, 1.98314145e+05, 2.08865696e+05, 1.86107093e+05, 1.67512052e+05, ], 'CountWeightedFullLHEEnvelope_rwgt13_ptGt450' : [ 2.97523892e+05, 1.67511540e+05, ], 'CountWeightedL1PrefireNom_rwgt13_ptGt450' : [ 2.13330128e+05, 2.13393413e+05, 2.13266391e+05, ], 'CountWeightedL1Prefire_rwgt13_ptGt450' : [ 2.13330128e+05, 2.11705124e+05, 2.14931286e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt13_ptGt450' : [ 2.87759970e+05, 2.56555754e+05, 2.31035747e+05, 2.39240811e+05, 2.13330128e+05, 1.92135813e+05, 2.02050706e+05, 1.80190535e+05, 1.62306838e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt13_ptGt450' : [ 2.87761492e+05, 1.62306344e+05, ], 'CountWeightedFullL1PrefireNom_rwgt13_ptGt450' : [ 2.13330128e+05, 2.13393413e+05, 2.13266391e+05, ], 'CountWeightedFullL1Prefire_rwgt13_ptGt450' : [ 2.13330128e+05, 2.11705124e+05, 2.14931286e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt13_ptGt450' : [ 2.87759970e+05, 2.56555754e+05, 2.31035747e+05, 2.39240811e+05, 2.13330128e+05, 1.92135813e+05, 2.02050706e+05, 1.80190535e+05, 1.62306838e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt13_ptGt450' : [ 2.87761492e+05, 1.62306344e+05, ], 'CountWeighted_rwgt14' : [ 3.84732078e+07, 3.84727852e+07, 3.84730181e+07, ], 'CountWeightedLHEWeightScale_rwgt14' : [ 5.06636858e+07, 4.70899131e+07, 4.39452202e+07, 4.13928089e+07, 3.84732078e+07, 3.59024821e+07, 3.44553784e+07, 3.20234849e+07, 2.98843391e+07, ], 'CountWeightedLHEEnvelope_rwgt14' : [ 5.06920147e+07, 2.98731063e+07, ], 'CountWeightedFull_rwgt14' : [ 3.84732078e+07, 3.84727852e+07, 3.84730181e+07, ], 'CountWeightedFullLHEWeightScale_rwgt14' : [ 5.06636858e+07, 4.70899131e+07, 4.39452202e+07, 4.13928089e+07, 3.84732078e+07, 3.59024821e+07, 3.44553784e+07, 3.20234849e+07, 2.98843391e+07, ], 'CountWeightedFullLHEEnvelope_rwgt14' : [ 5.06920147e+07, 2.98731063e+07, ], 'CountWeightedL1PrefireNom_rwgt14' : [ 3.72233058e+07, 3.72213464e+07, 3.72247568e+07, ], 'CountWeightedL1Prefire_rwgt14' : [ 3.72233058e+07, 3.69174899e+07, 3.75209003e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt14' : [ 4.89954076e+07, 4.55618362e+07, 4.25365064e+07, 4.00286897e+07, 3.72233058e+07, 3.47506180e+07, 3.33191227e+07, 3.09827412e+07, 2.89248952e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt14' : [ 4.90234389e+07, 2.89137751e+07, ], 'CountWeightedFullL1PrefireNom_rwgt14' : [ 3.72233058e+07, 3.72213464e+07, 3.72247568e+07, ], 'CountWeightedFullL1Prefire_rwgt14' : [ 3.72233058e+07, 3.69174899e+07, 3.75209003e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt14' : [ 4.89954076e+07, 4.55618362e+07, 4.25365064e+07, 4.00286897e+07, 3.72233058e+07, 3.47506180e+07, 3.33191227e+07, 3.09827412e+07, 2.89248952e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt14' : [ 4.90234389e+07, 2.89137751e+07, ], 'CountWeighted_rwgt14_fwd' : [ 5.70722669e+05, 5.70895506e+05, 5.70539428e+05, ], 'CountWeightedLHEWeightScale_rwgt14_fwd' : [ 7.56727588e+05, 6.99177546e+05, 6.50260520e+05, 6.17646316e+05, 5.70722669e+05, 5.30831663e+05, 5.13695097e+05, 4.74702778e+05, 4.41547516e+05, ], 'CountWeightedLHEEnvelope_rwgt14_fwd' : [ 7.56836604e+05, 4.41500614e+05, ], 'CountWeightedFull_rwgt14_fwd' : [ 5.70722669e+05, 5.70895506e+05, 5.70539428e+05, ], 'CountWeightedFullLHEWeightScale_rwgt14_fwd' : [ 7.56727588e+05, 6.99177546e+05, 6.50260520e+05, 6.17646316e+05, 5.70722669e+05, 5.30831663e+05, 5.13695097e+05, 4.74702778e+05, 4.41547516e+05, ], 'CountWeightedFullLHEEnvelope_rwgt14_fwd' : [ 7.56836604e+05, 4.41500614e+05, ], 'CountWeightedL1PrefireNom_rwgt14_fwd' : [ 4.90552540e+05, 4.90526735e+05, 4.90581538e+05, ], 'CountWeightedL1Prefire_rwgt14_fwd' : [ 4.90552540e+05, 4.72798046e+05, 5.08483262e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt14_fwd' : [ 6.50210433e+05, 6.01126894e+05, 5.59372922e+05, 5.30558440e+05, 4.90552540e+05, 4.56513701e+05, 4.41162922e+05, 4.07927897e+05, 3.79645240e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt14_fwd' : [ 6.50305681e+05, 3.79604475e+05, ], 'CountWeightedFullL1PrefireNom_rwgt14_fwd' : [ 4.90552540e+05, 4.90526735e+05, 4.90581538e+05, ], 'CountWeightedFullL1Prefire_rwgt14_fwd' : [ 4.90552540e+05, 4.72798046e+05, 5.08483262e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt14_fwd' : [ 6.50210433e+05, 6.01126894e+05, 5.59372922e+05, 5.30558440e+05, 4.90552540e+05, 4.56513701e+05, 4.41162922e+05, 4.07927897e+05, 3.79645240e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt14_fwd' : [ 6.50305681e+05, 3.79604475e+05, ], 'CountWeighted_rwgt14_pt0to60' : [ 8.56605569e+06, 8.56652128e+06, 8.56564247e+06, ], 'CountWeightedLHEWeightScale_rwgt14_pt0to60' : [ 1.11937752e+07, 1.05007316e+07, 9.87536811e+06, 9.13201659e+06, 8.56605569e+06, 8.05547988e+06, 7.59215061e+06, 7.12122068e+06, 6.69646717e+06, ], 'CountWeightedLHEEnvelope_rwgt14_pt0to60' : [ 1.12041048e+07, 6.69240032e+06, ], 'CountWeightedFull_rwgt14_pt0to60' : [ 8.56605569e+06, 8.56652128e+06, 8.56564247e+06, ], 'CountWeightedFullLHEWeightScale_rwgt14_pt0to60' : [ 1.11937752e+07, 1.05007316e+07, 9.87536811e+06, 9.13201659e+06, 8.56605569e+06, 8.05547988e+06, 7.59215061e+06, 7.12122068e+06, 6.69646717e+06, ], 'CountWeightedFullLHEEnvelope_rwgt14_pt0to60' : [ 1.12041048e+07, 6.69240032e+06, ], 'CountWeightedL1PrefireNom_rwgt14_pt0to60' : [ 8.33422746e+06, 8.33437795e+06, 8.33419967e+06, ], 'CountWeightedL1Prefire_rwgt14_pt0to60' : [ 8.33422746e+06, 8.27497835e+06, 8.39107872e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt14_pt0to60' : [ 1.08870812e+07, 1.02168502e+07, 9.61136655e+06, 8.88153921e+06, 8.33422746e+06, 7.83990351e+06, 7.38372521e+06, 6.92833032e+06, 6.51710442e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt14_pt0to60' : [ 1.08973078e+07, 6.51307341e+06, ], 'CountWeightedFullL1PrefireNom_rwgt14_pt0to60' : [ 8.33422746e+06, 8.33437795e+06, 8.33419967e+06, ], 'CountWeightedFullL1Prefire_rwgt14_pt0to60' : [ 8.33422746e+06, 8.27497835e+06, 8.39107872e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt14_pt0to60' : [ 1.08870812e+07, 1.02168502e+07, 9.61136655e+06, 8.88153921e+06, 8.33422746e+06, 7.83990351e+06, 7.38372521e+06, 6.92833032e+06, 6.51710442e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt14_pt0to60' : [ 1.08973078e+07, 6.51307341e+06, ], 'CountWeighted_rwgt14_pt60to120' : [ 1.35884562e+07, 1.35892778e+07, 1.35873519e+07, ], 'CountWeightedLHEWeightScale_rwgt14_pt60to120' : [ 1.78490675e+07, 1.66673563e+07, 1.56127300e+07, 1.45519973e+07, 1.35884562e+07, 1.27286481e+07, 1.20918603e+07, 1.12910991e+07, 1.05766575e+07, ], 'CountWeightedLHEEnvelope_rwgt14_pt60to120' : [ 1.78608573e+07, 1.05719986e+07, ], 'CountWeightedFull_rwgt14_pt60to120' : [ 1.35884562e+07, 1.35892778e+07, 1.35873519e+07, ], 'CountWeightedFullLHEWeightScale_rwgt14_pt60to120' : [ 1.78490675e+07, 1.66673563e+07, 1.56127300e+07, 1.45519973e+07, 1.35884562e+07, 1.27286481e+07, 1.20918603e+07, 1.12910991e+07, 1.05766575e+07, ], 'CountWeightedFullLHEEnvelope_rwgt14_pt60to120' : [ 1.78608573e+07, 1.05719986e+07, ], 'CountWeightedL1PrefireNom_rwgt14_pt60to120' : [ 1.31884774e+07, 1.31886220e+07, 1.31881866e+07, ], 'CountWeightedL1Prefire_rwgt14_pt60to120' : [ 1.31884774e+07, 1.30884499e+07, 1.32852408e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt14_pt60to120' : [ 1.73171981e+07, 1.61773009e+07, 1.51587334e+07, 1.41178841e+07, 1.31884774e+07, 1.23581015e+07, 1.17308003e+07, 1.09584245e+07, 1.02684692e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt14_pt60to120' : [ 1.73288661e+07, 1.02638543e+07, ], 'CountWeightedFullL1PrefireNom_rwgt14_pt60to120' : [ 1.31884774e+07, 1.31886220e+07, 1.31881866e+07, ], 'CountWeightedFullL1Prefire_rwgt14_pt60to120' : [ 1.31884774e+07, 1.30884499e+07, 1.32852408e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt14_pt60to120' : [ 1.73171981e+07, 1.61773009e+07, 1.51587334e+07, 1.41178841e+07, 1.31884774e+07, 1.23581015e+07, 1.17308003e+07, 1.09584245e+07, 1.02684692e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt14_pt60to120' : [ 1.73288661e+07, 1.02638543e+07, ], 'CountWeighted_rwgt14_pt120to200' : [ 9.85857154e+06, 9.85830967e+06, 9.85855249e+06, ], 'CountWeightedLHEWeightScale_rwgt14_pt120to200' : [ 1.30183820e+07, 1.20643356e+07, 1.12300610e+07, 1.06377375e+07, 9.85857154e+06, 9.17722025e+06, 8.85584157e+06, 8.20743350e+06, 7.64048145e+06, ], 'CountWeightedLHEEnvelope_rwgt14_pt120to200' : [ 1.30233620e+07, 7.63844575e+06, ], 'CountWeightedFull_rwgt14_pt120to200' : [ 9.85857154e+06, 9.85830967e+06, 9.85855249e+06, ], 'CountWeightedFullLHEWeightScale_rwgt14_pt120to200' : [ 1.30183820e+07, 1.20643356e+07, 1.12300610e+07, 1.06377375e+07, 9.85857154e+06, 9.17722025e+06, 8.85584157e+06, 8.20743350e+06, 7.64048145e+06, ], 'CountWeightedFullLHEEnvelope_rwgt14_pt120to200' : [ 1.30233620e+07, 7.63844575e+06, ], 'CountWeightedL1PrefireNom_rwgt14_pt120to200' : [ 9.53135511e+06, 9.53081615e+06, 9.53170277e+06, ], 'CountWeightedL1Prefire_rwgt14_pt120to200' : [ 9.53135511e+06, 9.45204176e+06, 9.60885772e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt14_pt120to200' : [ 1.25804997e+07, 1.16641261e+07, 1.08618025e+07, 1.02797498e+07, 9.53135511e+06, 8.87612575e+06, 8.55769636e+06, 7.93491459e+06, 7.38969884e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt14_pt120to200' : [ 1.25854257e+07, 7.38768382e+06, ], 'CountWeightedFullL1PrefireNom_rwgt14_pt120to200' : [ 9.53135511e+06, 9.53081615e+06, 9.53170277e+06, ], 'CountWeightedFullL1Prefire_rwgt14_pt120to200' : [ 9.53135511e+06, 9.45204176e+06, 9.60885772e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt14_pt120to200' : [ 1.25804997e+07, 1.16641261e+07, 1.08618025e+07, 1.02797498e+07, 9.53135511e+06, 8.87612575e+06, 8.55769636e+06, 7.93491459e+06, 7.38969884e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt14_pt120to200' : [ 1.25854257e+07, 7.38768382e+06, ], 'CountWeighted_rwgt14_pt200to300' : [ 4.05161857e+06, 4.05080469e+06, 4.05266705e+06, ], 'CountWeightedLHEWeightScale_rwgt14_pt200to300' : [ 5.38281231e+06, 4.93619364e+06, 4.55489108e+06, 4.41783623e+06, 4.05161857e+06, 3.73896379e+06, 3.69117659e+06, 3.38543854e+06, 3.12439424e+06, ], 'CountWeightedLHEEnvelope_rwgt14_pt200to300' : [ 5.38384518e+06, 3.12400608e+06, ], 'CountWeightedFull_rwgt14_pt200to300' : [ 4.05161857e+06, 4.05080469e+06, 4.05266705e+06, ], 'CountWeightedFullLHEWeightScale_rwgt14_pt200to300' : [ 5.38281231e+06, 4.93619364e+06, 4.55489108e+06, 4.41783623e+06, 4.05161857e+06, 3.73896379e+06, 3.69117659e+06, 3.38543854e+06, 3.12439424e+06, ], 'CountWeightedFullLHEEnvelope_rwgt14_pt200to300' : [ 5.38384518e+06, 3.12400608e+06, ], 'CountWeightedL1PrefireNom_rwgt14_pt200to300' : [ 3.90616540e+06, 3.90529420e+06, 3.90725345e+06, ], 'CountWeightedL1Prefire_rwgt14_pt200to300' : [ 3.90616540e+06, 3.87187342e+06, 3.93992048e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt14_pt200to300' : [ 5.18637111e+06, 4.75890352e+06, 4.39350383e+06, 4.25668370e+06, 3.90616540e+06, 3.60654240e+06, 3.55658111e+06, 3.26394315e+06, 3.01377891e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt14_pt200to300' : [ 5.18739196e+06, 3.01339547e+06, ], 'CountWeightedFullL1PrefireNom_rwgt14_pt200to300' : [ 3.90616540e+06, 3.90529420e+06, 3.90725345e+06, ], 'CountWeightedFullL1Prefire_rwgt14_pt200to300' : [ 3.90616540e+06, 3.87187342e+06, 3.93992048e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt14_pt200to300' : [ 5.18637111e+06, 4.75890352e+06, 4.39350383e+06, 4.25668370e+06, 3.90616540e+06, 3.60654240e+06, 3.55658111e+06, 3.26394315e+06, 3.01377891e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt14_pt200to300' : [ 5.18739196e+06, 3.01339547e+06, ], 'CountWeighted_rwgt14_ptGt300' : [ 1.83659603e+06, 1.83607427e+06, 1.83701973e+06, ], 'CountWeightedLHEWeightScale_rwgt14_ptGt300' : [ 2.46302501e+06, 2.22202286e+06, 2.02187201e+06, 2.03556708e+06, 1.83659603e+06, 1.67133699e+06, 1.71060647e+06, 1.54354356e+06, 1.40477292e+06, ], 'CountWeightedLHEEnvelope_rwgt14_ptGt300' : [ 2.46313802e+06, 1.40474120e+06, ], 'CountWeightedFull_rwgt14_ptGt300' : [ 1.83659603e+06, 1.83607427e+06, 1.83701973e+06, ], 'CountWeightedFullLHEWeightScale_rwgt14_ptGt300' : [ 2.46302501e+06, 2.22202286e+06, 2.02187201e+06, 2.03556708e+06, 1.83659603e+06, 1.67133699e+06, 1.71060647e+06, 1.54354356e+06, 1.40477292e+06, ], 'CountWeightedFullLHEEnvelope_rwgt14_ptGt300' : [ 2.46313802e+06, 1.40474120e+06, ], 'CountWeightedL1PrefireNom_rwgt14_ptGt300' : [ 1.77181280e+06, 1.77124394e+06, 1.77226529e+06, ], 'CountWeightedL1Prefire_rwgt14_ptGt300' : [ 1.77181280e+06, 1.75678832e+06, 1.78663118e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt14_ptGt300' : [ 2.37415375e+06, 2.14348686e+06, 1.95168246e+06, 1.96226618e+06, 1.77181280e+06, 1.61343186e+06, 1.64911019e+06, 1.48918766e+06, 1.35618427e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt14_ptGt300' : [ 2.37426466e+06, 1.35615336e+06, ], 'CountWeightedFullL1PrefireNom_rwgt14_ptGt300' : [ 1.77181280e+06, 1.77124394e+06, 1.77226529e+06, ], 'CountWeightedFullL1Prefire_rwgt14_ptGt300' : [ 1.77181280e+06, 1.75678832e+06, 1.78663118e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt14_ptGt300' : [ 2.37415375e+06, 2.14348686e+06, 1.95168246e+06, 1.96226618e+06, 1.77181280e+06, 1.61343186e+06, 1.64911019e+06, 1.48918766e+06, 1.35618427e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt14_ptGt300' : [ 2.37426466e+06, 1.35615336e+06, ], 'CountWeighted_rwgt14_pt300to450' : [ 1.44485687e+06, 1.44421213e+06, 1.44540714e+06, ], 'CountWeightedLHEWeightScale_rwgt14_pt300to450' : [ 1.93409631e+06, 1.75086023e+06, 1.59789221e+06, 1.59586664e+06, 1.44485687e+06, 1.31877840e+06, 1.33928967e+06, 1.21268657e+06, 1.10697363e+06, ], 'CountWeightedLHEEnvelope_rwgt14_pt300to450' : [ 1.93420657e+06, 1.10694281e+06, ], 'CountWeightedFull_rwgt14_pt300to450' : [ 1.44485687e+06, 1.44421213e+06, 1.44540714e+06, ], 'CountWeightedFullLHEWeightScale_rwgt14_pt300to450' : [ 1.93409631e+06, 1.75086023e+06, 1.59789221e+06, 1.59586664e+06, 1.44485687e+06, 1.31877840e+06, 1.33928967e+06, 1.21268657e+06, 1.10697363e+06, ], 'CountWeightedFullLHEEnvelope_rwgt14_pt300to450' : [ 1.93420657e+06, 1.10694281e+06, ], 'CountWeightedL1PrefireNom_rwgt14_pt300to450' : [ 1.39255919e+06, 1.39187884e+06, 1.39312551e+06, ], 'CountWeightedL1Prefire_rwgt14_pt300to450' : [ 1.39255919e+06, 1.38042362e+06, 1.40453126e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt14_pt300to450' : [ 1.86258041e+06, 1.68738790e+06, 1.54095210e+06, 1.53694919e+06, 1.39255919e+06, 1.27185696e+06, 1.28990896e+06, 1.16884892e+06, 1.06763873e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt14_pt300to450' : [ 1.86268857e+06, 1.06760870e+06, ], 'CountWeightedFullL1PrefireNom_rwgt14_pt300to450' : [ 1.39255919e+06, 1.39187884e+06, 1.39312551e+06, ], 'CountWeightedFullL1Prefire_rwgt14_pt300to450' : [ 1.39255919e+06, 1.38042362e+06, 1.40453126e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt14_pt300to450' : [ 1.86258041e+06, 1.68738790e+06, 1.54095210e+06, 1.53694919e+06, 1.39255919e+06, 1.27185696e+06, 1.28990896e+06, 1.16884892e+06, 1.06763873e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt14_pt300to450' : [ 1.86268857e+06, 1.06760870e+06, ], 'CountWeighted_rwgt14_ptGt450' : [ 3.91739328e+05, 3.91864436e+05, 3.91612986e+05, ], 'CountWeightedLHEWeightScale_rwgt14_ptGt450' : [ 5.28928590e+05, 4.71162727e+05, 4.23979829e+05, 4.39700581e+05, 3.91739328e+05, 3.52558468e+05, 3.71316778e+05, 3.30857031e+05, 2.97799220e+05, ], 'CountWeightedLHEEnvelope_rwgt14_ptGt450' : [ 5.28931370e+05, 2.97798309e+05, ], 'CountWeightedFull_rwgt14_ptGt450' : [ 3.91739328e+05, 3.91864436e+05, 3.91612986e+05, ], 'CountWeightedFullLHEWeightScale_rwgt14_ptGt450' : [ 5.28928590e+05, 4.71162727e+05, 4.23979829e+05, 4.39700581e+05, 3.91739328e+05, 3.52558468e+05, 3.71316778e+05, 3.30857031e+05, 2.97799220e+05, ], 'CountWeightedFullLHEEnvelope_rwgt14_ptGt450' : [ 5.28931370e+05, 2.97798309e+05, ], 'CountWeightedL1PrefireNom_rwgt14_ptGt450' : [ 3.79253437e+05, 3.79366261e+05, 3.79140058e+05, ], 'CountWeightedL1Prefire_rwgt14_ptGt450' : [ 3.79253437e+05, 3.76364549e+05, 3.82099944e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt14_ptGt450' : [ 5.11573271e+05, 4.56099132e+05, 4.10730214e+05, 4.25316983e+05, 3.79253437e+05, 3.41574765e+05, 3.59201245e+05, 3.20338704e+05, 2.88545495e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt14_ptGt450' : [ 5.11575975e+05, 2.88544616e+05, ], 'CountWeightedFullL1PrefireNom_rwgt14_ptGt450' : [ 3.79253437e+05, 3.79366261e+05, 3.79140058e+05, ], 'CountWeightedFullL1Prefire_rwgt14_ptGt450' : [ 3.79253437e+05, 3.76364549e+05, 3.82099944e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt14_ptGt450' : [ 5.11573271e+05, 4.56099132e+05, 4.10730214e+05, 4.25316983e+05, 3.79253437e+05, 3.41574765e+05, 3.59201245e+05, 3.20338704e+05, 2.88545495e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt14_ptGt450' : [ 5.11575975e+05, 2.88544616e+05, ], 'CountWeighted_rwgt15' : [ 8.65625510e+07, 8.65599245e+07, 8.65597467e+07, ], 'CountWeightedLHEWeightScale_rwgt15' : [ 1.13993564e+08, 1.05952012e+08, 9.88767908e+07, 9.31337999e+07, 8.65625510e+07, 8.07805223e+07, 7.75243184e+07, 7.20523911e+07, 6.72396426e+07, ], 'CountWeightedLHEEnvelope_rwgt15' : [ 1.14057377e+08, 6.72143605e+07, ], 'CountWeightedFull_rwgt15' : [ 8.65625510e+07, 8.65599245e+07, 8.65597467e+07, ], 'CountWeightedFullLHEWeightScale_rwgt15' : [ 1.13993564e+08, 1.05952012e+08, 9.88767908e+07, 9.31337999e+07, 8.65625510e+07, 8.07805223e+07, 7.75243184e+07, 7.20523911e+07, 6.72396426e+07, ], 'CountWeightedFullLHEEnvelope_rwgt15' : [ 1.14057377e+08, 6.72143605e+07, ], 'CountWeightedL1PrefireNom_rwgt15' : [ 8.37511969e+07, 8.37457481e+07, 8.37534598e+07, ], 'CountWeightedL1Prefire_rwgt15' : [ 8.37511969e+07, 8.30634901e+07, 8.44209941e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt15' : [ 1.10239942e+08, 1.02513965e+08, 9.57071545e+07, 9.00645419e+07, 8.37511969e+07, 7.81888212e+07, 7.49677906e+07, 6.97109760e+07, 6.50809155e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt15' : [ 1.10303061e+08, 6.50558901e+07, ], 'CountWeightedFullL1PrefireNom_rwgt15' : [ 8.37511969e+07, 8.37457481e+07, 8.37534598e+07, ], 'CountWeightedFullL1Prefire_rwgt15' : [ 8.37511969e+07, 8.30634901e+07, 8.44209941e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt15' : [ 1.10239942e+08, 1.02513965e+08, 9.57071545e+07, 9.00645419e+07, 8.37511969e+07, 7.81888212e+07, 7.49677906e+07, 6.97109760e+07, 6.50809155e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt15' : [ 1.10303061e+08, 6.50558901e+07, ], 'CountWeighted_rwgt15_fwd' : [ 1.28412743e+06, 1.28451141e+06, 1.28371458e+06, ], 'CountWeightedLHEWeightScale_rwgt15_fwd' : [ 1.70263698e+06, 1.57314935e+06, 1.46308632e+06, 1.38970431e+06, 1.28412743e+06, 1.19437120e+06, 1.15581392e+06, 1.06808139e+06, 9.93481924e+05, ], 'CountWeightedLHEEnvelope_rwgt15_fwd' : [ 1.70288228e+06, 9.93376392e+05, ], 'CountWeightedFull_rwgt15_fwd' : [ 1.28412743e+06, 1.28451141e+06, 1.28371458e+06, ], 'CountWeightedFullLHEWeightScale_rwgt15_fwd' : [ 1.70263698e+06, 1.57314935e+06, 1.46308632e+06, 1.38970431e+06, 1.28412743e+06, 1.19437120e+06, 1.15581392e+06, 1.06808139e+06, 9.93481924e+05, ], 'CountWeightedFullLHEEnvelope_rwgt15_fwd' : [ 1.70288228e+06, 9.93376392e+05, ], 'CountWeightedL1PrefireNom_rwgt15_fwd' : [ 1.10374328e+06, 1.10368499e+06, 1.10380845e+06, ], 'CountWeightedL1Prefire_rwgt15_fwd' : [ 1.10374328e+06, 1.06379566e+06, 1.14408732e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt15_fwd' : [ 1.46297341e+06, 1.35253551e+06, 1.25858911e+06, 1.19375647e+06, 1.10374328e+06, 1.02715587e+06, 9.92616550e+05, 9.17837737e+05, 8.54201745e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt15_fwd' : [ 1.46318771e+06, 8.54110025e+05, ], 'CountWeightedFullL1PrefireNom_rwgt15_fwd' : [ 1.10374328e+06, 1.10368499e+06, 1.10380845e+06, ], 'CountWeightedFullL1Prefire_rwgt15_fwd' : [ 1.10374328e+06, 1.06379566e+06, 1.14408732e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt15_fwd' : [ 1.46297341e+06, 1.35253551e+06, 1.25858911e+06, 1.19375647e+06, 1.10374328e+06, 1.02715587e+06, 9.92616550e+05, 9.17837737e+05, 8.54201745e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt15_fwd' : [ 1.46318771e+06, 8.54110025e+05, ], 'CountWeighted_rwgt15_pt0to60' : [ 1.92735489e+07, 1.92753050e+07, 1.92725341e+07, ], 'CountWeightedLHEWeightScale_rwgt15_pt0to60' : [ 2.51860028e+07, 2.36266373e+07, 2.22195796e+07, 2.05470362e+07, 1.92735489e+07, 1.81248245e+07, 1.70823390e+07, 1.60227440e+07, 1.50670505e+07, ], 'CountWeightedLHEEnvelope_rwgt15_pt0to60' : [ 2.52092422e+07, 1.50578991e+07, ], 'CountWeightedFull_rwgt15_pt0to60' : [ 1.92735489e+07, 1.92753050e+07, 1.92725341e+07, ], 'CountWeightedFullLHEWeightScale_rwgt15_pt0to60' : [ 2.51860028e+07, 2.36266373e+07, 2.22195796e+07, 2.05470362e+07, 1.92735489e+07, 1.81248245e+07, 1.70823390e+07, 1.60227440e+07, 1.50670505e+07, ], 'CountWeightedFullLHEEnvelope_rwgt15_pt0to60' : [ 2.52092422e+07, 1.50578991e+07, ], 'CountWeightedL1PrefireNom_rwgt15_pt0to60' : [ 1.87519505e+07, 1.87527367e+07, 1.87518436e+07, ], 'CountWeightedL1Prefire_rwgt15_pt0to60' : [ 1.87519505e+07, 1.86186760e+07, 1.88798786e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt15_pt0to60' : [ 2.44959306e+07, 2.29879121e+07, 2.16255758e+07, 1.99834602e+07, 1.87519505e+07, 1.76397792e+07, 1.66133803e+07, 1.55887395e+07, 1.46634829e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt15_pt0to60' : [ 2.45189404e+07, 1.46544117e+07, ], 'CountWeightedFullL1PrefireNom_rwgt15_pt0to60' : [ 1.87519505e+07, 1.87527367e+07, 1.87518436e+07, ], 'CountWeightedFullL1Prefire_rwgt15_pt0to60' : [ 1.87519505e+07, 1.86186760e+07, 1.88798786e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt15_pt0to60' : [ 2.44959306e+07, 2.29879121e+07, 2.16255758e+07, 1.99834602e+07, 1.87519505e+07, 1.76397792e+07, 1.66133803e+07, 1.55887395e+07, 1.46634829e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt15_pt0to60' : [ 2.45189404e+07, 1.46544117e+07, ], 'CountWeighted_rwgt15_pt60to120' : [ 3.05741277e+07, 3.05758859e+07, 3.05715970e+07, ], 'CountWeightedLHEWeightScale_rwgt15_pt60to120' : [ 4.01603797e+07, 3.75015438e+07, 3.51286358e+07, 3.27420047e+07, 3.05741277e+07, 2.86394511e+07, 2.72066838e+07, 2.54049637e+07, 2.37974609e+07, ], 'CountWeightedLHEEnvelope_rwgt15_pt60to120' : [ 4.01868974e+07, 2.37869779e+07, ], 'CountWeightedFull_rwgt15_pt60to120' : [ 3.05741277e+07, 3.05758859e+07, 3.05715970e+07, ], 'CountWeightedFullLHEWeightScale_rwgt15_pt60to120' : [ 4.01603797e+07, 3.75015438e+07, 3.51286358e+07, 3.27420047e+07, 3.05741277e+07, 2.86394511e+07, 2.72066838e+07, 2.54049637e+07, 2.37974609e+07, ], 'CountWeightedFullLHEEnvelope_rwgt15_pt60to120' : [ 4.01868974e+07, 2.37869779e+07, ], 'CountWeightedL1PrefireNom_rwgt15_pt60to120' : [ 2.96740684e+07, 2.96745817e+07, 2.96733907e+07, ], 'CountWeightedL1Prefire_rwgt15_pt60to120' : [ 2.96740684e+07, 2.94490633e+07, 2.98918577e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt15_pt60to120' : [ 3.89636927e+07, 3.63989145e+07, 3.41071396e+07, 3.17652496e+07, 2.96740684e+07, 2.78057112e+07, 2.63942925e+07, 2.46564573e+07, 2.31040446e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt15_pt60to120' : [ 3.89899379e+07, 2.30936596e+07, ], 'CountWeightedFullL1PrefireNom_rwgt15_pt60to120' : [ 2.96740684e+07, 2.96745817e+07, 2.96733907e+07, ], 'CountWeightedFullL1Prefire_rwgt15_pt60to120' : [ 2.96740684e+07, 2.94490633e+07, 2.98918577e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt15_pt60to120' : [ 3.89636927e+07, 3.63989145e+07, 3.41071396e+07, 3.17652496e+07, 2.96740684e+07, 2.78057112e+07, 2.63942925e+07, 2.46564573e+07, 2.31040446e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt15_pt60to120' : [ 3.89899379e+07, 2.30936596e+07, ], 'CountWeighted_rwgt15_pt120to200' : [ 2.21816910e+07, 2.21820452e+07, 2.21816586e+07, ], 'CountWeightedLHEWeightScale_rwgt15_pt120to200' : [ 2.92913600e+07, 2.71447628e+07, 2.52676304e+07, 2.39349106e+07, 2.21816910e+07, 2.06487431e+07, 1.99256415e+07, 1.84667219e+07, 1.71910846e+07, ], 'CountWeightedLHEEnvelope_rwgt15_pt120to200' : [ 2.93025650e+07, 1.71865041e+07, ], 'CountWeightedFull_rwgt15_pt120to200' : [ 2.21816910e+07, 2.21820452e+07, 2.21816586e+07, ], 'CountWeightedFullLHEWeightScale_rwgt15_pt120to200' : [ 2.92913600e+07, 2.71447628e+07, 2.52676304e+07, 2.39349106e+07, 2.21816910e+07, 2.06487431e+07, 1.99256415e+07, 1.84667219e+07, 1.71910846e+07, ], 'CountWeightedFullLHEEnvelope_rwgt15_pt120to200' : [ 2.93025650e+07, 1.71865041e+07, ], 'CountWeightedL1PrefireNom_rwgt15_pt120to200' : [ 2.14454673e+07, 2.14448661e+07, 2.14462645e+07, ], 'CountWeightedL1Prefire_rwgt15_pt120to200' : [ 2.14454673e+07, 2.12670622e+07, 2.16198807e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt15_pt120to200' : [ 2.83061233e+07, 2.62442868e+07, 2.44390558e+07, 2.31294315e+07, 2.14454673e+07, 1.99712774e+07, 1.92548153e+07, 1.78535541e+07, 1.66268224e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt15_pt120to200' : [ 2.83172069e+07, 1.66222890e+07, ], 'CountWeightedFullL1PrefireNom_rwgt15_pt120to200' : [ 2.14454673e+07, 2.14448661e+07, 2.14462645e+07, ], 'CountWeightedFullL1Prefire_rwgt15_pt120to200' : [ 2.14454673e+07, 2.12670622e+07, 2.16198807e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt15_pt120to200' : [ 2.83061233e+07, 2.62442868e+07, 2.44390558e+07, 2.31294315e+07, 2.14454673e+07, 1.99712774e+07, 1.92548153e+07, 1.78535541e+07, 1.66268224e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt15_pt120to200' : [ 2.83172069e+07, 1.66222890e+07, ], 'CountWeighted_rwgt15_pt200to300' : [ 9.11613288e+06, 9.11439079e+06, 9.11842493e+06, ], 'CountWeightedLHEWeightScale_rwgt15_pt200to300' : [ 1.21113290e+07, 1.11064353e+07, 1.02485049e+07, 9.94013111e+06, 9.11613288e+06, 8.41266798e+06, 8.30514583e+06, 7.61723792e+06, 7.02988621e+06, ], 'CountWeightedLHEEnvelope_rwgt15_pt200to300' : [ 1.21136528e+07, 7.02901273e+06, ], 'CountWeightedFull_rwgt15_pt200to300' : [ 9.11613288e+06, 9.11439079e+06, 9.11842493e+06, ], 'CountWeightedFullLHEWeightScale_rwgt15_pt200to300' : [ 1.21113290e+07, 1.11064353e+07, 1.02485049e+07, 9.94013111e+06, 9.11613288e+06, 8.41266798e+06, 8.30514583e+06, 7.61723792e+06, 7.02988621e+06, ], 'CountWeightedFullLHEEnvelope_rwgt15_pt200to300' : [ 1.21136528e+07, 7.02901273e+06, ], 'CountWeightedL1PrefireNom_rwgt15_pt200to300' : [ 8.78887327e+06, 8.78695596e+06, 8.79128057e+06, ], 'CountWeightedL1Prefire_rwgt15_pt200to300' : [ 8.78887327e+06, 8.71171632e+06, 8.86481600e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt15_pt200to300' : [ 1.16693352e+07, 1.07075313e+07, 9.88538475e+06, 9.57753720e+06, 8.78887327e+06, 8.11472201e+06, 8.00230790e+06, 7.34387343e+06, 6.78100170e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt15_pt200to300' : [ 1.16716318e+07, 6.78013897e+06, ], 'CountWeightedFullL1PrefireNom_rwgt15_pt200to300' : [ 8.78887327e+06, 8.78695596e+06, 8.79128057e+06, ], 'CountWeightedFullL1Prefire_rwgt15_pt200to300' : [ 8.78887327e+06, 8.71171632e+06, 8.86481600e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt15_pt200to300' : [ 1.16693352e+07, 1.07075313e+07, 9.88538475e+06, 9.57753720e+06, 8.78887327e+06, 8.11472201e+06, 8.00230790e+06, 7.34387343e+06, 6.78100170e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt15_pt200to300' : [ 1.16716318e+07, 6.78013897e+06, ], 'CountWeighted_rwgt15_ptGt300' : [ 4.13235256e+06, 4.13116759e+06, 4.13330672e+06, ], 'CountWeightedLHEWeightScale_rwgt15_ptGt300' : [ 5.54180530e+06, 4.99955201e+06, 4.54921166e+06, 4.58002619e+06, 4.13235256e+06, 3.76050729e+06, 3.84886499e+06, 3.47297400e+06, 3.16073881e+06, ], 'CountWeightedLHEEnvelope_rwgt15_ptGt300' : [ 5.54205962e+06, 3.16066744e+06, ], 'CountWeightedFull_rwgt15_ptGt300' : [ 4.13235256e+06, 4.13116759e+06, 4.13330672e+06, ], 'CountWeightedFullLHEWeightScale_rwgt15_ptGt300' : [ 5.54180530e+06, 4.99955201e+06, 4.54921166e+06, 4.58002619e+06, 4.13235256e+06, 3.76050729e+06, 3.84886499e+06, 3.47297400e+06, 3.16073881e+06, ], 'CountWeightedFullLHEEnvelope_rwgt15_ptGt300' : [ 5.54205962e+06, 3.16066744e+06, ], 'CountWeightedL1PrefireNom_rwgt15_ptGt300' : [ 3.98658509e+06, 3.98529887e+06, 3.98760431e+06, ], 'CountWeightedL1Prefire_rwgt15_ptGt300' : [ 3.98658509e+06, 3.95277968e+06, 4.01992732e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt15_ptGt300' : [ 5.34184533e+06, 4.82284620e+06, 4.39128494e+06, 4.41509882e+06, 3.98658509e+06, 3.63022118e+06, 3.71049813e+06, 3.35067289e+06, 3.05141440e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt15_ptGt300' : [ 5.34209487e+06, 3.05134482e+06, ], 'CountWeightedFullL1PrefireNom_rwgt15_ptGt300' : [ 3.98658509e+06, 3.98529887e+06, 3.98760431e+06, ], 'CountWeightedFullL1Prefire_rwgt15_ptGt300' : [ 3.98658509e+06, 3.95277968e+06, 4.01992732e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt15_ptGt300' : [ 5.34184533e+06, 4.82284620e+06, 4.39128494e+06, 4.41509882e+06, 3.98658509e+06, 3.63022118e+06, 3.71049813e+06, 3.35067289e+06, 3.05141440e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt15_ptGt300' : [ 5.34209487e+06, 3.05134482e+06, ], 'CountWeighted_rwgt15_pt300to450' : [ 3.25093278e+06, 3.24947512e+06, 3.25217426e+06, ], 'CountWeightedLHEWeightScale_rwgt15_pt300to450' : [ 4.35171633e+06, 3.93943601e+06, 3.59525691e+06, 3.59069971e+06, 3.25093278e+06, 2.96725122e+06, 3.01340200e+06, 2.72854558e+06, 2.49069042e+06, ], 'CountWeightedLHEEnvelope_rwgt15_pt300to450' : [ 4.35196445e+06, 2.49062108e+06, ], 'CountWeightedFull_rwgt15_pt300to450' : [ 3.25093278e+06, 3.24947512e+06, 3.25217426e+06, ], 'CountWeightedFullLHEWeightScale_rwgt15_pt300to450' : [ 4.35171633e+06, 3.93943601e+06, 3.59525691e+06, 3.59069971e+06, 3.25093278e+06, 2.96725122e+06, 3.01340200e+06, 2.72854558e+06, 2.49069042e+06, ], 'CountWeightedFullLHEEnvelope_rwgt15_pt300to450' : [ 4.35196445e+06, 2.49062108e+06, ], 'CountWeightedL1PrefireNom_rwgt15_pt300to450' : [ 3.13326091e+06, 3.13172654e+06, 3.13453718e+06, ], 'CountWeightedL1Prefire_rwgt15_pt300to450' : [ 3.13326091e+06, 3.10595547e+06, 3.16019809e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt15_pt300to450' : [ 4.19080568e+06, 3.79662309e+06, 3.46714218e+06, 3.45813539e+06, 3.13326091e+06, 2.86167814e+06, 2.90229536e+06, 2.62991066e+06, 2.40218697e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt15_pt300to450' : [ 4.19104913e+06, 2.40211938e+06, ], 'CountWeightedFullL1PrefireNom_rwgt15_pt300to450' : [ 3.13326091e+06, 3.13172654e+06, 3.13453718e+06, ], 'CountWeightedFullL1Prefire_rwgt15_pt300to450' : [ 3.13326091e+06, 3.10595547e+06, 3.16019809e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt15_pt300to450' : [ 4.19080568e+06, 3.79662309e+06, 3.46714218e+06, 3.45813539e+06, 3.13326091e+06, 2.86167814e+06, 2.90229536e+06, 2.62991066e+06, 2.40218697e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt15_pt300to450' : [ 4.19104913e+06, 2.40211938e+06, ], 'CountWeighted_rwgt15_ptGt450' : [ 8.81413836e+05, 8.81694142e+05, 8.81129929e+05, ], 'CountWeightedLHEWeightScale_rwgt15_ptGt450' : [ 1.19008931e+06, 1.06011617e+06, 9.53954642e+05, 9.89326307e+05, 8.81413836e+05, 7.93256580e+05, 8.35462785e+05, 7.44428373e+05, 6.70048209e+05, ], 'CountWeightedLHEEnvelope_rwgt15_ptGt450' : [ 1.19009557e+06, 6.70046159e+05, ], 'CountWeightedFull_rwgt15_ptGt450' : [ 8.81413836e+05, 8.81694142e+05, 8.81129929e+05, ], 'CountWeightedFullLHEWeightScale_rwgt15_ptGt450' : [ 1.19008931e+06, 1.06011617e+06, 9.53954642e+05, 9.89326307e+05, 8.81413836e+05, 7.93256580e+05, 8.35462785e+05, 7.44428373e+05, 6.70048209e+05, ], 'CountWeightedFullLHEEnvelope_rwgt15_ptGt450' : [ 1.19009557e+06, 6.70046159e+05, ], 'CountWeightedL1PrefireNom_rwgt15_ptGt450' : [ 8.53320513e+05, 8.53573651e+05, 8.53065564e+05, ], 'CountWeightedL1Prefire_rwgt15_ptGt450' : [ 8.53320513e+05, 8.46820497e+05, 8.59725144e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt15_ptGt450' : [ 1.15103988e+06, 1.02622302e+06, 9.24142989e+05, 9.56963243e+05, 8.53320513e+05, 7.68543251e+05, 8.08202825e+05, 7.20762139e+05, 6.49227353e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt15_ptGt450' : [ 1.15104597e+06, 6.49225376e+05, ], 'CountWeightedFullL1PrefireNom_rwgt15_ptGt450' : [ 8.53320513e+05, 8.53573651e+05, 8.53065564e+05, ], 'CountWeightedFullL1Prefire_rwgt15_ptGt450' : [ 8.53320513e+05, 8.46820497e+05, 8.59725144e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt15_ptGt450' : [ 1.15103988e+06, 1.02622302e+06, 9.24142989e+05, 9.56963243e+05, 8.53320513e+05, 7.68543251e+05, 8.08202825e+05, 7.20762139e+05, 6.49227353e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt15_ptGt450' : [ 1.15104597e+06, 6.49225376e+05, ], 'CountWeighted_rwgt17' : [ 3.84732078e+07, 3.84727852e+07, 3.84730181e+07, ], 'CountWeightedLHEWeightScale_rwgt17' : [ 5.06636858e+07, 4.70899131e+07, 4.39452202e+07, 4.13928089e+07, 3.84732078e+07, 3.59024821e+07, 3.44553784e+07, 3.20234849e+07, 2.98843391e+07, ], 'CountWeightedLHEEnvelope_rwgt17' : [ 5.06920147e+07, 2.98731063e+07, ], 'CountWeightedFull_rwgt17' : [ 3.84732078e+07, 3.84727852e+07, 3.84730181e+07, ], 'CountWeightedFullLHEWeightScale_rwgt17' : [ 5.06636858e+07, 4.70899131e+07, 4.39452202e+07, 4.13928089e+07, 3.84732078e+07, 3.59024821e+07, 3.44553784e+07, 3.20234849e+07, 2.98843391e+07, ], 'CountWeightedFullLHEEnvelope_rwgt17' : [ 5.06920147e+07, 2.98731063e+07, ], 'CountWeightedL1PrefireNom_rwgt17' : [ 3.72233058e+07, 3.72213464e+07, 3.72247568e+07, ], 'CountWeightedL1Prefire_rwgt17' : [ 3.72233058e+07, 3.69174899e+07, 3.75209003e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt17' : [ 4.89954076e+07, 4.55618362e+07, 4.25365064e+07, 4.00286897e+07, 3.72233058e+07, 3.47506180e+07, 3.33191227e+07, 3.09827412e+07, 2.89248952e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt17' : [ 4.90234389e+07, 2.89137751e+07, ], 'CountWeightedFullL1PrefireNom_rwgt17' : [ 3.72233058e+07, 3.72213464e+07, 3.72247568e+07, ], 'CountWeightedFullL1Prefire_rwgt17' : [ 3.72233058e+07, 3.69174899e+07, 3.75209003e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt17' : [ 4.89954076e+07, 4.55618362e+07, 4.25365064e+07, 4.00286897e+07, 3.72233058e+07, 3.47506180e+07, 3.33191227e+07, 3.09827412e+07, 2.89248952e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt17' : [ 4.90234389e+07, 2.89137751e+07, ], 'CountWeighted_rwgt17_fwd' : [ 5.70722669e+05, 5.70895506e+05, 5.70539428e+05, ], 'CountWeightedLHEWeightScale_rwgt17_fwd' : [ 7.56727588e+05, 6.99177546e+05, 6.50260520e+05, 6.17646316e+05, 5.70722669e+05, 5.30831663e+05, 5.13695097e+05, 4.74702778e+05, 4.41547516e+05, ], 'CountWeightedLHEEnvelope_rwgt17_fwd' : [ 7.56836604e+05, 4.41500614e+05, ], 'CountWeightedFull_rwgt17_fwd' : [ 5.70722669e+05, 5.70895506e+05, 5.70539428e+05, ], 'CountWeightedFullLHEWeightScale_rwgt17_fwd' : [ 7.56727588e+05, 6.99177546e+05, 6.50260520e+05, 6.17646316e+05, 5.70722669e+05, 5.30831663e+05, 5.13695097e+05, 4.74702778e+05, 4.41547516e+05, ], 'CountWeightedFullLHEEnvelope_rwgt17_fwd' : [ 7.56836604e+05, 4.41500614e+05, ], 'CountWeightedL1PrefireNom_rwgt17_fwd' : [ 4.90552540e+05, 4.90526735e+05, 4.90581538e+05, ], 'CountWeightedL1Prefire_rwgt17_fwd' : [ 4.90552540e+05, 4.72798046e+05, 5.08483262e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt17_fwd' : [ 6.50210433e+05, 6.01126894e+05, 5.59372922e+05, 5.30558440e+05, 4.90552540e+05, 4.56513701e+05, 4.41162922e+05, 4.07927897e+05, 3.79645240e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt17_fwd' : [ 6.50305681e+05, 3.79604475e+05, ], 'CountWeightedFullL1PrefireNom_rwgt17_fwd' : [ 4.90552540e+05, 4.90526735e+05, 4.90581538e+05, ], 'CountWeightedFullL1Prefire_rwgt17_fwd' : [ 4.90552540e+05, 4.72798046e+05, 5.08483262e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt17_fwd' : [ 6.50210433e+05, 6.01126894e+05, 5.59372922e+05, 5.30558440e+05, 4.90552540e+05, 4.56513701e+05, 4.41162922e+05, 4.07927897e+05, 3.79645240e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt17_fwd' : [ 6.50305681e+05, 3.79604475e+05, ], 'CountWeighted_rwgt17_pt0to60' : [ 8.56605569e+06, 8.56652128e+06, 8.56564247e+06, ], 'CountWeightedLHEWeightScale_rwgt17_pt0to60' : [ 1.11937752e+07, 1.05007316e+07, 9.87536811e+06, 9.13201659e+06, 8.56605569e+06, 8.05547988e+06, 7.59215061e+06, 7.12122068e+06, 6.69646717e+06, ], 'CountWeightedLHEEnvelope_rwgt17_pt0to60' : [ 1.12041048e+07, 6.69240032e+06, ], 'CountWeightedFull_rwgt17_pt0to60' : [ 8.56605569e+06, 8.56652128e+06, 8.56564247e+06, ], 'CountWeightedFullLHEWeightScale_rwgt17_pt0to60' : [ 1.11937752e+07, 1.05007316e+07, 9.87536811e+06, 9.13201659e+06, 8.56605569e+06, 8.05547988e+06, 7.59215061e+06, 7.12122068e+06, 6.69646717e+06, ], 'CountWeightedFullLHEEnvelope_rwgt17_pt0to60' : [ 1.12041048e+07, 6.69240032e+06, ], 'CountWeightedL1PrefireNom_rwgt17_pt0to60' : [ 8.33422746e+06, 8.33437795e+06, 8.33419967e+06, ], 'CountWeightedL1Prefire_rwgt17_pt0to60' : [ 8.33422746e+06, 8.27497835e+06, 8.39107872e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt17_pt0to60' : [ 1.08870812e+07, 1.02168502e+07, 9.61136655e+06, 8.88153921e+06, 8.33422746e+06, 7.83990351e+06, 7.38372521e+06, 6.92833032e+06, 6.51710442e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt17_pt0to60' : [ 1.08973078e+07, 6.51307341e+06, ], 'CountWeightedFullL1PrefireNom_rwgt17_pt0to60' : [ 8.33422746e+06, 8.33437795e+06, 8.33419967e+06, ], 'CountWeightedFullL1Prefire_rwgt17_pt0to60' : [ 8.33422746e+06, 8.27497835e+06, 8.39107872e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt17_pt0to60' : [ 1.08870812e+07, 1.02168502e+07, 9.61136655e+06, 8.88153921e+06, 8.33422746e+06, 7.83990351e+06, 7.38372521e+06, 6.92833032e+06, 6.51710442e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt17_pt0to60' : [ 1.08973078e+07, 6.51307341e+06, ], 'CountWeighted_rwgt17_pt60to120' : [ 1.35884562e+07, 1.35892778e+07, 1.35873519e+07, ], 'CountWeightedLHEWeightScale_rwgt17_pt60to120' : [ 1.78490675e+07, 1.66673563e+07, 1.56127300e+07, 1.45519973e+07, 1.35884562e+07, 1.27286481e+07, 1.20918603e+07, 1.12910991e+07, 1.05766575e+07, ], 'CountWeightedLHEEnvelope_rwgt17_pt60to120' : [ 1.78608573e+07, 1.05719986e+07, ], 'CountWeightedFull_rwgt17_pt60to120' : [ 1.35884562e+07, 1.35892778e+07, 1.35873519e+07, ], 'CountWeightedFullLHEWeightScale_rwgt17_pt60to120' : [ 1.78490675e+07, 1.66673563e+07, 1.56127300e+07, 1.45519973e+07, 1.35884562e+07, 1.27286481e+07, 1.20918603e+07, 1.12910991e+07, 1.05766575e+07, ], 'CountWeightedFullLHEEnvelope_rwgt17_pt60to120' : [ 1.78608573e+07, 1.05719986e+07, ], 'CountWeightedL1PrefireNom_rwgt17_pt60to120' : [ 1.31884774e+07, 1.31886220e+07, 1.31881866e+07, ], 'CountWeightedL1Prefire_rwgt17_pt60to120' : [ 1.31884774e+07, 1.30884499e+07, 1.32852408e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt17_pt60to120' : [ 1.73171981e+07, 1.61773009e+07, 1.51587334e+07, 1.41178841e+07, 1.31884774e+07, 1.23581015e+07, 1.17308003e+07, 1.09584245e+07, 1.02684692e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt17_pt60to120' : [ 1.73288661e+07, 1.02638543e+07, ], 'CountWeightedFullL1PrefireNom_rwgt17_pt60to120' : [ 1.31884774e+07, 1.31886220e+07, 1.31881866e+07, ], 'CountWeightedFullL1Prefire_rwgt17_pt60to120' : [ 1.31884774e+07, 1.30884499e+07, 1.32852408e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt17_pt60to120' : [ 1.73171981e+07, 1.61773009e+07, 1.51587334e+07, 1.41178841e+07, 1.31884774e+07, 1.23581015e+07, 1.17308003e+07, 1.09584245e+07, 1.02684692e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt17_pt60to120' : [ 1.73288661e+07, 1.02638543e+07, ], 'CountWeighted_rwgt17_pt120to200' : [ 9.85857154e+06, 9.85830967e+06, 9.85855249e+06, ], 'CountWeightedLHEWeightScale_rwgt17_pt120to200' : [ 1.30183820e+07, 1.20643356e+07, 1.12300610e+07, 1.06377375e+07, 9.85857154e+06, 9.17722025e+06, 8.85584157e+06, 8.20743350e+06, 7.64048145e+06, ], 'CountWeightedLHEEnvelope_rwgt17_pt120to200' : [ 1.30233620e+07, 7.63844575e+06, ], 'CountWeightedFull_rwgt17_pt120to200' : [ 9.85857154e+06, 9.85830967e+06, 9.85855249e+06, ], 'CountWeightedFullLHEWeightScale_rwgt17_pt120to200' : [ 1.30183820e+07, 1.20643356e+07, 1.12300610e+07, 1.06377375e+07, 9.85857154e+06, 9.17722025e+06, 8.85584157e+06, 8.20743350e+06, 7.64048145e+06, ], 'CountWeightedFullLHEEnvelope_rwgt17_pt120to200' : [ 1.30233620e+07, 7.63844575e+06, ], 'CountWeightedL1PrefireNom_rwgt17_pt120to200' : [ 9.53135511e+06, 9.53081615e+06, 9.53170277e+06, ], 'CountWeightedL1Prefire_rwgt17_pt120to200' : [ 9.53135511e+06, 9.45204176e+06, 9.60885772e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt17_pt120to200' : [ 1.25804997e+07, 1.16641261e+07, 1.08618025e+07, 1.02797498e+07, 9.53135511e+06, 8.87612575e+06, 8.55769636e+06, 7.93491459e+06, 7.38969884e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt17_pt120to200' : [ 1.25854257e+07, 7.38768382e+06, ], 'CountWeightedFullL1PrefireNom_rwgt17_pt120to200' : [ 9.53135511e+06, 9.53081615e+06, 9.53170277e+06, ], 'CountWeightedFullL1Prefire_rwgt17_pt120to200' : [ 9.53135511e+06, 9.45204176e+06, 9.60885772e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt17_pt120to200' : [ 1.25804997e+07, 1.16641261e+07, 1.08618025e+07, 1.02797498e+07, 9.53135511e+06, 8.87612575e+06, 8.55769636e+06, 7.93491459e+06, 7.38969884e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt17_pt120to200' : [ 1.25854257e+07, 7.38768382e+06, ], 'CountWeighted_rwgt17_pt200to300' : [ 4.05161857e+06, 4.05080469e+06, 4.05266705e+06, ], 'CountWeightedLHEWeightScale_rwgt17_pt200to300' : [ 5.38281231e+06, 4.93619364e+06, 4.55489108e+06, 4.41783623e+06, 4.05161857e+06, 3.73896379e+06, 3.69117659e+06, 3.38543854e+06, 3.12439424e+06, ], 'CountWeightedLHEEnvelope_rwgt17_pt200to300' : [ 5.38384518e+06, 3.12400608e+06, ], 'CountWeightedFull_rwgt17_pt200to300' : [ 4.05161857e+06, 4.05080469e+06, 4.05266705e+06, ], 'CountWeightedFullLHEWeightScale_rwgt17_pt200to300' : [ 5.38281231e+06, 4.93619364e+06, 4.55489108e+06, 4.41783623e+06, 4.05161857e+06, 3.73896379e+06, 3.69117659e+06, 3.38543854e+06, 3.12439424e+06, ], 'CountWeightedFullLHEEnvelope_rwgt17_pt200to300' : [ 5.38384518e+06, 3.12400608e+06, ], 'CountWeightedL1PrefireNom_rwgt17_pt200to300' : [ 3.90616540e+06, 3.90529420e+06, 3.90725345e+06, ], 'CountWeightedL1Prefire_rwgt17_pt200to300' : [ 3.90616540e+06, 3.87187342e+06, 3.93992048e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt17_pt200to300' : [ 5.18637111e+06, 4.75890352e+06, 4.39350383e+06, 4.25668370e+06, 3.90616540e+06, 3.60654240e+06, 3.55658111e+06, 3.26394315e+06, 3.01377891e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt17_pt200to300' : [ 5.18739196e+06, 3.01339547e+06, ], 'CountWeightedFullL1PrefireNom_rwgt17_pt200to300' : [ 3.90616540e+06, 3.90529420e+06, 3.90725345e+06, ], 'CountWeightedFullL1Prefire_rwgt17_pt200to300' : [ 3.90616540e+06, 3.87187342e+06, 3.93992048e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt17_pt200to300' : [ 5.18637111e+06, 4.75890352e+06, 4.39350383e+06, 4.25668370e+06, 3.90616540e+06, 3.60654240e+06, 3.55658111e+06, 3.26394315e+06, 3.01377891e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt17_pt200to300' : [ 5.18739196e+06, 3.01339547e+06, ], 'CountWeighted_rwgt17_ptGt300' : [ 1.83659603e+06, 1.83607427e+06, 1.83701973e+06, ], 'CountWeightedLHEWeightScale_rwgt17_ptGt300' : [ 2.46302501e+06, 2.22202286e+06, 2.02187201e+06, 2.03556708e+06, 1.83659603e+06, 1.67133699e+06, 1.71060647e+06, 1.54354356e+06, 1.40477292e+06, ], 'CountWeightedLHEEnvelope_rwgt17_ptGt300' : [ 2.46313802e+06, 1.40474120e+06, ], 'CountWeightedFull_rwgt17_ptGt300' : [ 1.83659603e+06, 1.83607427e+06, 1.83701973e+06, ], 'CountWeightedFullLHEWeightScale_rwgt17_ptGt300' : [ 2.46302501e+06, 2.22202286e+06, 2.02187201e+06, 2.03556708e+06, 1.83659603e+06, 1.67133699e+06, 1.71060647e+06, 1.54354356e+06, 1.40477292e+06, ], 'CountWeightedFullLHEEnvelope_rwgt17_ptGt300' : [ 2.46313802e+06, 1.40474120e+06, ], 'CountWeightedL1PrefireNom_rwgt17_ptGt300' : [ 1.77181280e+06, 1.77124394e+06, 1.77226529e+06, ], 'CountWeightedL1Prefire_rwgt17_ptGt300' : [ 1.77181280e+06, 1.75678832e+06, 1.78663118e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt17_ptGt300' : [ 2.37415375e+06, 2.14348686e+06, 1.95168246e+06, 1.96226618e+06, 1.77181280e+06, 1.61343186e+06, 1.64911019e+06, 1.48918766e+06, 1.35618427e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt17_ptGt300' : [ 2.37426466e+06, 1.35615336e+06, ], 'CountWeightedFullL1PrefireNom_rwgt17_ptGt300' : [ 1.77181280e+06, 1.77124394e+06, 1.77226529e+06, ], 'CountWeightedFullL1Prefire_rwgt17_ptGt300' : [ 1.77181280e+06, 1.75678832e+06, 1.78663118e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt17_ptGt300' : [ 2.37415375e+06, 2.14348686e+06, 1.95168246e+06, 1.96226618e+06, 1.77181280e+06, 1.61343186e+06, 1.64911019e+06, 1.48918766e+06, 1.35618427e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt17_ptGt300' : [ 2.37426466e+06, 1.35615336e+06, ], 'CountWeighted_rwgt17_pt300to450' : [ 1.44485687e+06, 1.44421213e+06, 1.44540714e+06, ], 'CountWeightedLHEWeightScale_rwgt17_pt300to450' : [ 1.93409631e+06, 1.75086023e+06, 1.59789221e+06, 1.59586664e+06, 1.44485687e+06, 1.31877840e+06, 1.33928967e+06, 1.21268657e+06, 1.10697363e+06, ], 'CountWeightedLHEEnvelope_rwgt17_pt300to450' : [ 1.93420657e+06, 1.10694281e+06, ], 'CountWeightedFull_rwgt17_pt300to450' : [ 1.44485687e+06, 1.44421213e+06, 1.44540714e+06, ], 'CountWeightedFullLHEWeightScale_rwgt17_pt300to450' : [ 1.93409631e+06, 1.75086023e+06, 1.59789221e+06, 1.59586664e+06, 1.44485687e+06, 1.31877840e+06, 1.33928967e+06, 1.21268657e+06, 1.10697363e+06, ], 'CountWeightedFullLHEEnvelope_rwgt17_pt300to450' : [ 1.93420657e+06, 1.10694281e+06, ], 'CountWeightedL1PrefireNom_rwgt17_pt300to450' : [ 1.39255919e+06, 1.39187884e+06, 1.39312551e+06, ], 'CountWeightedL1Prefire_rwgt17_pt300to450' : [ 1.39255919e+06, 1.38042362e+06, 1.40453126e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt17_pt300to450' : [ 1.86258041e+06, 1.68738790e+06, 1.54095210e+06, 1.53694919e+06, 1.39255919e+06, 1.27185696e+06, 1.28990896e+06, 1.16884892e+06, 1.06763873e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt17_pt300to450' : [ 1.86268857e+06, 1.06760870e+06, ], 'CountWeightedFullL1PrefireNom_rwgt17_pt300to450' : [ 1.39255919e+06, 1.39187884e+06, 1.39312551e+06, ], 'CountWeightedFullL1Prefire_rwgt17_pt300to450' : [ 1.39255919e+06, 1.38042362e+06, 1.40453126e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt17_pt300to450' : [ 1.86258041e+06, 1.68738790e+06, 1.54095210e+06, 1.53694919e+06, 1.39255919e+06, 1.27185696e+06, 1.28990896e+06, 1.16884892e+06, 1.06763873e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt17_pt300to450' : [ 1.86268857e+06, 1.06760870e+06, ], 'CountWeighted_rwgt17_ptGt450' : [ 3.91739328e+05, 3.91864436e+05, 3.91612986e+05, ], 'CountWeightedLHEWeightScale_rwgt17_ptGt450' : [ 5.28928590e+05, 4.71162727e+05, 4.23979829e+05, 4.39700581e+05, 3.91739328e+05, 3.52558468e+05, 3.71316778e+05, 3.30857031e+05, 2.97799220e+05, ], 'CountWeightedLHEEnvelope_rwgt17_ptGt450' : [ 5.28931370e+05, 2.97798309e+05, ], 'CountWeightedFull_rwgt17_ptGt450' : [ 3.91739328e+05, 3.91864436e+05, 3.91612986e+05, ], 'CountWeightedFullLHEWeightScale_rwgt17_ptGt450' : [ 5.28928590e+05, 4.71162727e+05, 4.23979829e+05, 4.39700581e+05, 3.91739328e+05, 3.52558468e+05, 3.71316778e+05, 3.30857031e+05, 2.97799220e+05, ], 'CountWeightedFullLHEEnvelope_rwgt17_ptGt450' : [ 5.28931370e+05, 2.97798309e+05, ], 'CountWeightedL1PrefireNom_rwgt17_ptGt450' : [ 3.79253437e+05, 3.79366261e+05, 3.79140058e+05, ], 'CountWeightedL1Prefire_rwgt17_ptGt450' : [ 3.79253437e+05, 3.76364549e+05, 3.82099944e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt17_ptGt450' : [ 5.11573271e+05, 4.56099132e+05, 4.10730214e+05, 4.25316983e+05, 3.79253437e+05, 3.41574765e+05, 3.59201245e+05, 3.20338704e+05, 2.88545495e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt17_ptGt450' : [ 5.11575975e+05, 2.88544616e+05, ], 'CountWeightedFullL1PrefireNom_rwgt17_ptGt450' : [ 3.79253437e+05, 3.79366261e+05, 3.79140058e+05, ], 'CountWeightedFullL1Prefire_rwgt17_ptGt450' : [ 3.79253437e+05, 3.76364549e+05, 3.82099944e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt17_ptGt450' : [ 5.11573271e+05, 4.56099132e+05, 4.10730214e+05, 4.25316983e+05, 3.79253437e+05, 3.41574765e+05, 3.59201245e+05, 3.20338704e+05, 2.88545495e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt17_ptGt450' : [ 5.11575975e+05, 2.88544616e+05, ], 'CountWeighted_rwgt19' : [ 1.50288663e+07, 1.50277603e+07, 1.50282198e+07, ], 'CountWeightedLHEWeightScale_rwgt19' : [ 1.97905318e+07, 1.83943968e+07, 1.71661178e+07, 1.61690663e+07, 1.50288663e+07, 1.40244013e+07, 1.34591104e+07, 1.25092091e+07, 1.16735834e+07, ], 'CountWeightedLHEEnvelope_rwgt19' : [ 1.98016061e+07, 1.16691982e+07, ], 'CountWeightedFull_rwgt19' : [ 1.50288663e+07, 1.50277603e+07, 1.50282198e+07, ], 'CountWeightedFullLHEWeightScale_rwgt19' : [ 1.97905318e+07, 1.83943968e+07, 1.71661178e+07, 1.61690663e+07, 1.50288663e+07, 1.40244013e+07, 1.34591104e+07, 1.25092091e+07, 1.16735834e+07, ], 'CountWeightedFullLHEEnvelope_rwgt19' : [ 1.98016061e+07, 1.16691982e+07, ], 'CountWeightedL1PrefireNom_rwgt19' : [ 1.45404483e+07, 1.45392623e+07, 1.45408162e+07, ], 'CountWeightedL1Prefire_rwgt19' : [ 1.45404483e+07, 1.44210603e+07, 1.46567348e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt19' : [ 1.91388586e+07, 1.77975260e+07, 1.66158338e+07, 1.56362117e+07, 1.45404483e+07, 1.35744569e+07, 1.30152688e+07, 1.21026785e+07, 1.12988001e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt19' : [ 1.91498125e+07, 1.12944583e+07, ], 'CountWeightedFullL1PrefireNom_rwgt19' : [ 1.45404483e+07, 1.45392623e+07, 1.45408162e+07, ], 'CountWeightedFullL1Prefire_rwgt19' : [ 1.45404483e+07, 1.44210603e+07, 1.46567348e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt19' : [ 1.91388586e+07, 1.77975260e+07, 1.66158338e+07, 1.56362117e+07, 1.45404483e+07, 1.35744569e+07, 1.30152688e+07, 1.21026785e+07, 1.12988001e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt19' : [ 1.91498125e+07, 1.12944583e+07, ], 'CountWeighted_rwgt19_fwd' : [ 2.22938655e+05, 2.23005912e+05, 2.22867024e+05, ], 'CountWeightedLHEWeightScale_rwgt19_fwd' : [ 2.95596685e+05, 2.73116225e+05, 2.54008033e+05, 2.41268112e+05, 2.22938655e+05, 2.07356099e+05, 2.00662159e+05, 1.85430796e+05, 1.72479481e+05, ], 'CountWeightedLHEEnvelope_rwgt19_fwd' : [ 2.95639270e+05, 1.72461160e+05, ], 'CountWeightedFull_rwgt19_fwd' : [ 2.22938655e+05, 2.23005912e+05, 2.22867024e+05, ], 'CountWeightedFullLHEWeightScale_rwgt19_fwd' : [ 2.95596685e+05, 2.73116225e+05, 2.54008033e+05, 2.41268112e+05, 2.22938655e+05, 2.07356099e+05, 2.00662159e+05, 1.85430796e+05, 1.72479481e+05, ], 'CountWeightedFullLHEEnvelope_rwgt19_fwd' : [ 2.95639270e+05, 1.72461160e+05, ], 'CountWeightedL1PrefireNom_rwgt19_fwd' : [ 1.91622065e+05, 1.91612015e+05, 1.91633414e+05, ], 'CountWeightedL1Prefire_rwgt19_fwd' : [ 1.91622065e+05, 1.84686723e+05, 1.98626268e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt19_fwd' : [ 2.53988452e+05, 2.34815183e+05, 2.18505055e+05, 2.07249382e+05, 1.91622065e+05, 1.78325666e+05, 1.72329263e+05, 1.59346832e+05, 1.48298919e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt19_fwd' : [ 2.54025659e+05, 1.48282997e+05, ], 'CountWeightedFullL1PrefireNom_rwgt19_fwd' : [ 1.91622065e+05, 1.91612015e+05, 1.91633414e+05, ], 'CountWeightedFullL1Prefire_rwgt19_fwd' : [ 1.91622065e+05, 1.84686723e+05, 1.98626268e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt19_fwd' : [ 2.53988452e+05, 2.34815183e+05, 2.18505055e+05, 2.07249382e+05, 1.91622065e+05, 1.78325666e+05, 1.72329263e+05, 1.59346832e+05, 1.48298919e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt19_fwd' : [ 2.54025659e+05, 1.48282997e+05, ], 'CountWeighted_rwgt19_pt0to60' : [ 3.34613676e+06, 3.34630204e+06, 3.34592283e+06, ], 'CountWeightedLHEWeightScale_rwgt19_pt0to60' : [ 4.37256890e+06, 4.10184939e+06, 3.85756509e+06, 3.56719308e+06, 3.34613676e+06, 3.14667209e+06, 2.96568368e+06, 2.78172745e+06, 2.61580737e+06, ], 'CountWeightedLHEEnvelope_rwgt19_pt0to60' : [ 4.37660365e+06, 2.61421905e+06, ], 'CountWeightedFull_rwgt19_pt0to60' : [ 3.34613676e+06, 3.34630204e+06, 3.34592283e+06, ], 'CountWeightedFullLHEWeightScale_rwgt19_pt0to60' : [ 4.37256890e+06, 4.10184939e+06, 3.85756509e+06, 3.56719308e+06, 3.34613676e+06, 3.14667209e+06, 2.96568368e+06, 2.78172745e+06, 2.61580737e+06, ], 'CountWeightedFullLHEEnvelope_rwgt19_pt0to60' : [ 4.37660365e+06, 2.61421905e+06, ], 'CountWeightedL1PrefireNom_rwgt19_pt0to60' : [ 3.25557363e+06, 3.25562079e+06, 3.25552610e+06, ], 'CountWeightedL1Prefire_rwgt19_pt0to60' : [ 3.25557363e+06, 3.23242913e+06, 3.27778205e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt19_pt0to60' : [ 4.25276620e+06, 3.99095779e+06, 3.75443972e+06, 3.46935021e+06, 3.25557363e+06, 3.06246238e+06, 2.88426761e+06, 2.70637945e+06, 2.54574404e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt19_pt0to60' : [ 4.25676113e+06, 2.54416952e+06, ], 'CountWeightedFullL1PrefireNom_rwgt19_pt0to60' : [ 3.25557363e+06, 3.25562079e+06, 3.25552610e+06, ], 'CountWeightedFullL1Prefire_rwgt19_pt0to60' : [ 3.25557363e+06, 3.23242913e+06, 3.27778205e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt19_pt0to60' : [ 4.25276620e+06, 3.99095779e+06, 3.75443972e+06, 3.46935021e+06, 3.25557363e+06, 3.06246238e+06, 2.88426761e+06, 2.70637945e+06, 2.54574404e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt19_pt0to60' : [ 4.25676113e+06, 2.54416952e+06, ], 'CountWeighted_rwgt19_pt60to120' : [ 5.30798581e+06, 5.30828680e+06, 5.30757268e+06, ], 'CountWeightedLHEWeightScale_rwgt19_pt60to120' : [ 6.97229312e+06, 6.51068687e+06, 6.09872255e+06, 5.68437455e+06, 5.30798581e+06, 4.97212694e+06, 4.72338173e+06, 4.41058599e+06, 4.13150756e+06, ], 'CountWeightedLHEEnvelope_rwgt19_pt60to120' : [ 6.97689809e+06, 4.12968767e+06, ], 'CountWeightedFull_rwgt19_pt60to120' : [ 5.30798581e+06, 5.30828680e+06, 5.30757268e+06, ], 'CountWeightedFullLHEWeightScale_rwgt19_pt60to120' : [ 6.97229312e+06, 6.51068687e+06, 6.09872255e+06, 5.68437455e+06, 5.30798581e+06, 4.97212694e+06, 4.72338173e+06, 4.41058599e+06, 4.13150756e+06, ], 'CountWeightedFullLHEEnvelope_rwgt19_pt60to120' : [ 6.97689809e+06, 4.12968767e+06, ], 'CountWeightedL1PrefireNom_rwgt19_pt60to120' : [ 5.15174467e+06, 5.15179442e+06, 5.15163907e+06, ], 'CountWeightedL1Prefire_rwgt19_pt60to120' : [ 5.15174467e+06, 5.11266902e+06, 5.18955088e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt19_pt60to120' : [ 6.76453204e+06, 6.31925533e+06, 5.92138176e+06, 5.51479880e+06, 5.15174467e+06, 4.82738076e+06, 4.58234206e+06, 4.28063500e+06, 4.01112183e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt19_pt60to120' : [ 6.76909000e+06, 4.00931919e+06, ], 'CountWeightedFullL1PrefireNom_rwgt19_pt60to120' : [ 5.15174467e+06, 5.15179442e+06, 5.15163907e+06, ], 'CountWeightedFullL1Prefire_rwgt19_pt60to120' : [ 5.15174467e+06, 5.11266902e+06, 5.18955088e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt19_pt60to120' : [ 6.76453204e+06, 6.31925533e+06, 5.92138176e+06, 5.51479880e+06, 5.15174467e+06, 4.82738076e+06, 4.58234206e+06, 4.28063500e+06, 4.01112183e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt19_pt60to120' : [ 6.76909000e+06, 4.00931919e+06, ], 'CountWeighted_rwgt19_pt120to200' : [ 3.85101364e+06, 3.85090157e+06, 3.85097545e+06, ], 'CountWeightedLHEWeightScale_rwgt19_pt120to200' : [ 5.08530574e+06, 4.71262791e+06, 4.38674177e+06, 4.15536704e+06, 3.85101364e+06, 3.58485176e+06, 3.45931272e+06, 3.20603041e+06, 2.98456299e+06, ], 'CountWeightedLHEEnvelope_rwgt19_pt120to200' : [ 5.08725112e+06, 2.98376771e+06, ], 'CountWeightedFull_rwgt19_pt120to200' : [ 3.85101364e+06, 3.85090157e+06, 3.85097545e+06, ], 'CountWeightedFullLHEWeightScale_rwgt19_pt120to200' : [ 5.08530574e+06, 4.71262791e+06, 4.38674177e+06, 4.15536704e+06, 3.85101364e+06, 3.58485176e+06, 3.45931272e+06, 3.20603041e+06, 2.98456299e+06, ], 'CountWeightedFullLHEEnvelope_rwgt19_pt120to200' : [ 5.08725112e+06, 2.98376771e+06, ], 'CountWeightedL1PrefireNom_rwgt19_pt120to200' : [ 3.72319488e+06, 3.72297720e+06, 3.72330453e+06, ], 'CountWeightedL1Prefire_rwgt19_pt120to200' : [ 3.72319488e+06, 3.69221382e+06, 3.75347164e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt19_pt120to200' : [ 4.91425724e+06, 4.55629650e+06, 4.24289163e+06, 4.01552798e+06, 3.72319488e+06, 3.46723606e+06, 3.34284964e+06, 3.09957693e+06, 2.88660098e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt19_pt120to200' : [ 4.91618159e+06, 2.88581377e+06, ], 'CountWeightedFullL1PrefireNom_rwgt19_pt120to200' : [ 3.72319488e+06, 3.72297720e+06, 3.72330453e+06, ], 'CountWeightedFullL1Prefire_rwgt19_pt120to200' : [ 3.72319488e+06, 3.69221382e+06, 3.75347164e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt19_pt120to200' : [ 4.91425724e+06, 4.55629650e+06, 4.24289163e+06, 4.01552798e+06, 3.72319488e+06, 3.46723606e+06, 3.34284964e+06, 3.09957693e+06, 2.88660098e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt19_pt120to200' : [ 4.91618159e+06, 2.88581377e+06, ], 'CountWeighted_rwgt19_pt200to300' : [ 1.58266032e+06, 1.58233729e+06, 1.58305715e+06, ], 'CountWeightedLHEWeightScale_rwgt19_pt200to300' : [ 2.10266105e+06, 1.92820040e+06, 1.77925449e+06, 1.72571729e+06, 1.58266032e+06, 1.46053253e+06, 1.44186565e+06, 1.32243705e+06, 1.22046639e+06, ], 'CountWeightedLHEEnvelope_rwgt19_pt200to300' : [ 2.10306456e+06, 1.22031476e+06, ], 'CountWeightedFull_rwgt19_pt200to300' : [ 1.58266032e+06, 1.58233729e+06, 1.58305715e+06, ], 'CountWeightedFullLHEWeightScale_rwgt19_pt200to300' : [ 2.10266105e+06, 1.92820040e+06, 1.77925449e+06, 1.72571729e+06, 1.58266032e+06, 1.46053253e+06, 1.44186565e+06, 1.32243705e+06, 1.22046639e+06, ], 'CountWeightedFullLHEEnvelope_rwgt19_pt200to300' : [ 2.10306456e+06, 1.22031476e+06, ], 'CountWeightedL1PrefireNom_rwgt19_pt200to300' : [ 1.52584361e+06, 1.52550037e+06, 1.52626154e+06, ], 'CountWeightedL1Prefire_rwgt19_pt200to300' : [ 1.52584361e+06, 1.51244857e+06, 1.53902887e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt19_pt200to300' : [ 2.02592587e+06, 1.85894624e+06, 1.71621257e+06, 1.66276694e+06, 1.52584361e+06, 1.40880572e+06, 1.38928949e+06, 1.27497819e+06, 1.17725732e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt19_pt200to300' : [ 2.02632460e+06, 1.17710754e+06, ], 'CountWeightedFullL1PrefireNom_rwgt19_pt200to300' : [ 1.52584361e+06, 1.52550037e+06, 1.52626154e+06, ], 'CountWeightedFullL1Prefire_rwgt19_pt200to300' : [ 1.52584361e+06, 1.51244857e+06, 1.53902887e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt19_pt200to300' : [ 2.02592587e+06, 1.85894624e+06, 1.71621257e+06, 1.66276694e+06, 1.52584361e+06, 1.40880572e+06, 1.38928949e+06, 1.27497819e+06, 1.17725732e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt19_pt200to300' : [ 2.02632460e+06, 1.17710754e+06, ], 'CountWeighted_rwgt19_ptGt300' : [ 7.17418076e+05, 7.17224090e+05, 7.17586783e+05, ], 'CountWeightedLHEWeightScale_rwgt19_ptGt300' : [ 9.62118987e+05, 8.67977827e+05, 7.89793763e+05, 7.95143471e+05, 7.17418076e+05, 6.52865998e+05, 6.68205644e+05, 6.02946861e+05, 5.48739369e+05, ], 'CountWeightedLHEEnvelope_rwgt19_ptGt300' : [ 9.62163145e+05, 5.48726974e+05, ], 'CountWeightedFull_rwgt19_ptGt300' : [ 7.17418076e+05, 7.17224090e+05, 7.17586783e+05, ], 'CountWeightedFullLHEWeightScale_rwgt19_ptGt300' : [ 9.62118987e+05, 8.67977827e+05, 7.89793763e+05, 7.95143471e+05, 7.17418076e+05, 6.52865998e+05, 6.68205644e+05, 6.02946861e+05, 5.48739369e+05, ], 'CountWeightedFullLHEEnvelope_rwgt19_ptGt300' : [ 9.62163145e+05, 5.48726974e+05, ], 'CountWeightedL1PrefireNom_rwgt19_ptGt300' : [ 6.92112885e+05, 6.91896851e+05, 6.92291597e+05, ], 'CountWeightedL1Prefire_rwgt19_ptGt300' : [ 6.92112885e+05, 6.86244216e+05, 6.97901401e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt19_ptGt300' : [ 9.27403676e+05, 8.37299678e+05, 7.62375906e+05, 7.66510314e+05, 6.92112885e+05, 6.30246835e+05, 6.44183638e+05, 5.81714075e+05, 5.29759429e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt19_ptGt300' : [ 9.27446994e+05, 5.29747357e+05, ], 'CountWeightedFullL1PrefireNom_rwgt19_ptGt300' : [ 6.92112885e+05, 6.91896851e+05, 6.92291597e+05, ], 'CountWeightedFullL1Prefire_rwgt19_ptGt300' : [ 6.92112885e+05, 6.86244216e+05, 6.97901401e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt19_ptGt300' : [ 9.27403676e+05, 8.37299678e+05, 7.62375906e+05, 7.66510314e+05, 6.92112885e+05, 6.30246835e+05, 6.44183638e+05, 5.81714075e+05, 5.29759429e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt19_ptGt300' : [ 9.27446994e+05, 5.29747357e+05, ], 'CountWeighted_rwgt19_pt300to450' : [ 5.64396088e+05, 5.64148761e+05, 5.64612971e+05, ], 'CountWeightedLHEWeightScale_rwgt19_pt300to450' : [ 7.55506360e+05, 6.83929849e+05, 6.24176627e+05, 6.23385397e+05, 5.64396088e+05, 5.15147852e+05, 5.23160064e+05, 4.73705789e+05, 4.32411526e+05, ], 'CountWeightedLHEEnvelope_rwgt19_pt300to450' : [ 7.55549420e+05, 4.32399496e+05, ], 'CountWeightedFull_rwgt19_pt300to450' : [ 5.64396088e+05, 5.64148761e+05, 5.64612971e+05, ], 'CountWeightedFullLHEWeightScale_rwgt19_pt300to450' : [ 7.55506360e+05, 6.83929849e+05, 6.24176627e+05, 6.23385397e+05, 5.64396088e+05, 5.15147852e+05, 5.23160064e+05, 4.73705789e+05, 4.32411526e+05, ], 'CountWeightedFullLHEEnvelope_rwgt19_pt300to450' : [ 7.55549420e+05, 4.32399496e+05, ], 'CountWeightedL1PrefireNom_rwgt19_pt300to450' : [ 5.43967794e+05, 5.43704693e+05, 5.44190048e+05, ], 'CountWeightedL1Prefire_rwgt19_pt300to450' : [ 5.43967794e+05, 5.39227442e+05, 5.48644351e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt19_pt300to450' : [ 7.27570469e+05, 6.59135951e+05, 6.01934415e+05, 6.00370802e+05, 5.43967794e+05, 4.96819181e+05, 5.03870695e+05, 4.56581684e+05, 4.17046351e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt19_pt300to450' : [ 7.27612722e+05, 4.17034627e+05, ], 'CountWeightedFullL1PrefireNom_rwgt19_pt300to450' : [ 5.43967794e+05, 5.43704693e+05, 5.44190048e+05, ], 'CountWeightedFullL1Prefire_rwgt19_pt300to450' : [ 5.43967794e+05, 5.39227442e+05, 5.48644351e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt19_pt300to450' : [ 7.27570469e+05, 6.59135951e+05, 6.01934415e+05, 6.00370802e+05, 5.43967794e+05, 4.96819181e+05, 5.03870695e+05, 4.56581684e+05, 4.17046351e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt19_pt300to450' : [ 7.27612722e+05, 4.17034627e+05, ], 'CountWeighted_rwgt19_ptGt450' : [ 1.53023133e+05, 1.53071989e+05, 1.52973938e+05, ], 'CountWeightedLHEWeightScale_rwgt19_ptGt450' : [ 2.06612725e+05, 1.84047953e+05, 1.65617122e+05, 1.71758049e+05, 1.53023133e+05, 1.37718147e+05, 1.45045616e+05, 1.29241037e+05, 1.16327817e+05, ], 'CountWeightedLHEEnvelope_rwgt19_ptGt450' : [ 2.06613811e+05, 1.16327461e+05, ], 'CountWeightedFull_rwgt19_ptGt450' : [ 1.53023133e+05, 1.53071989e+05, 1.52973938e+05, ], 'CountWeightedFullLHEWeightScale_rwgt19_ptGt450' : [ 2.06612725e+05, 1.84047953e+05, 1.65617122e+05, 1.71758049e+05, 1.53023133e+05, 1.37718147e+05, 1.45045616e+05, 1.29241037e+05, 1.16327817e+05, ], 'CountWeightedFullLHEEnvelope_rwgt19_ptGt450' : [ 2.06613811e+05, 1.16327461e+05, ], 'CountWeightedL1PrefireNom_rwgt19_ptGt450' : [ 1.48145857e+05, 1.48189912e+05, 1.48101665e+05, ], 'CountWeightedL1Prefire_rwgt19_ptGt450' : [ 1.48145857e+05, 1.47017380e+05, 1.49257770e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt19_ptGt450' : [ 1.99833309e+05, 1.78163724e+05, 1.60441494e+05, 1.66139457e+05, 1.48145857e+05, 1.33427642e+05, 1.40312986e+05, 1.25132317e+05, 1.12713079e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt19_ptGt450' : [ 1.99834367e+05, 1.12712736e+05, ], 'CountWeightedFullL1PrefireNom_rwgt19_ptGt450' : [ 1.48145857e+05, 1.48189912e+05, 1.48101665e+05, ], 'CountWeightedFullL1Prefire_rwgt19_ptGt450' : [ 1.48145857e+05, 1.47017380e+05, 1.49257770e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt19_ptGt450' : [ 1.99833309e+05, 1.78163724e+05, 1.60441494e+05, 1.66139457e+05, 1.48145857e+05, 1.33427642e+05, 1.40312986e+05, 1.25132317e+05, 1.12713079e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt19_ptGt450' : [ 1.99834367e+05, 1.12712736e+05, ], 'CountWeighted_rwgt20' : [ 9.61830195e+06, 9.61819631e+06, 9.61825452e+06, ], 'CountWeightedLHEWeightScale_rwgt20' : [ 1.26659214e+07, 1.17724783e+07, 1.09863050e+07, 1.03482022e+07, 9.61830195e+06, 8.97562053e+06, 8.61384461e+06, 8.00587122e+06, 7.47108478e+06, ], 'CountWeightedLHEEnvelope_rwgt20' : [ 1.26730037e+07, 7.46827658e+06, ], 'CountWeightedFull_rwgt20' : [ 9.61830195e+06, 9.61819631e+06, 9.61825452e+06, ], 'CountWeightedFullLHEWeightScale_rwgt20' : [ 1.26659214e+07, 1.17724783e+07, 1.09863050e+07, 1.03482022e+07, 9.61830195e+06, 8.97562053e+06, 8.61384461e+06, 8.00587122e+06, 7.47108478e+06, ], 'CountWeightedFullLHEEnvelope_rwgt20' : [ 1.26730037e+07, 7.46827658e+06, ], 'CountWeightedL1PrefireNom_rwgt20' : [ 9.30582646e+06, 9.30533659e+06, 9.30618920e+06, ], 'CountWeightedL1Prefire_rwgt20' : [ 9.30582646e+06, 9.22937247e+06, 9.38022506e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt20' : [ 1.22488519e+07, 1.13904591e+07, 1.06341266e+07, 1.00071724e+07, 9.30582646e+06, 8.68765449e+06, 8.32978067e+06, 7.74568529e+06, 7.23122381e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt20' : [ 1.22558597e+07, 7.22844376e+06, ], 'CountWeightedFullL1PrefireNom_rwgt20' : [ 9.30582646e+06, 9.30533659e+06, 9.30618920e+06, ], 'CountWeightedFullL1Prefire_rwgt20' : [ 9.30582646e+06, 9.22937247e+06, 9.38022506e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt20' : [ 1.22488519e+07, 1.13904591e+07, 1.06341266e+07, 1.00071724e+07, 9.30582646e+06, 8.68765449e+06, 8.32978067e+06, 7.74568529e+06, 7.23122381e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt20' : [ 1.22558597e+07, 7.22844376e+06, ], 'CountWeighted_rwgt20_fwd' : [ 1.42680667e+05, 1.42723877e+05, 1.42634857e+05, ], 'CountWeightedLHEWeightScale_rwgt20_fwd' : [ 1.89181897e+05, 1.74794387e+05, 1.62565130e+05, 1.54411579e+05, 1.42680667e+05, 1.32707916e+05, 1.28423774e+05, 1.18675694e+05, 1.10386879e+05, ], 'CountWeightedLHEEnvelope_rwgt20_fwd' : [ 1.89209151e+05, 1.10375153e+05, ], 'CountWeightedFull_rwgt20_fwd' : [ 1.42680667e+05, 1.42723877e+05, 1.42634857e+05, ], 'CountWeightedFullLHEWeightScale_rwgt20_fwd' : [ 1.89181897e+05, 1.74794387e+05, 1.62565130e+05, 1.54411579e+05, 1.42680667e+05, 1.32707916e+05, 1.28423774e+05, 1.18675694e+05, 1.10386879e+05, ], 'CountWeightedFullLHEEnvelope_rwgt20_fwd' : [ 1.89209151e+05, 1.10375153e+05, ], 'CountWeightedL1PrefireNom_rwgt20_fwd' : [ 1.22638135e+05, 1.22631684e+05, 1.22645385e+05, ], 'CountWeightedL1Prefire_rwgt20_fwd' : [ 1.22638135e+05, 1.18199512e+05, 1.27120816e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt20_fwd' : [ 1.62552608e+05, 1.50281724e+05, 1.39843231e+05, 1.32639610e+05, 1.22638135e+05, 1.14128425e+05, 1.10290731e+05, 1.01981974e+05, 9.49113099e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt20_fwd' : [ 1.62576420e+05, 9.49011188e+04, ], 'CountWeightedFullL1PrefireNom_rwgt20_fwd' : [ 1.22638135e+05, 1.22631684e+05, 1.22645385e+05, ], 'CountWeightedFullL1Prefire_rwgt20_fwd' : [ 1.22638135e+05, 1.18199512e+05, 1.27120816e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt20_fwd' : [ 1.62552608e+05, 1.50281724e+05, 1.39843231e+05, 1.32639610e+05, 1.22638135e+05, 1.14128425e+05, 1.10290731e+05, 1.01981974e+05, 9.49113099e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt20_fwd' : [ 1.62576420e+05, 9.49011188e+04, ], 'CountWeighted_rwgt20_pt0to60' : [ 2.14151392e+06, 2.14163032e+06, 2.14141062e+06, ], 'CountWeightedLHEWeightScale_rwgt20_pt0to60' : [ 2.79844380e+06, 2.62518290e+06, 2.46884203e+06, 2.28300415e+06, 2.14151392e+06, 2.01386997e+06, 1.89803765e+06, 1.78030517e+06, 1.67411679e+06, ], 'CountWeightedLHEEnvelope_rwgt20_pt0to60' : [ 2.80102619e+06, 1.67310008e+06, ], 'CountWeightedFull_rwgt20_pt0to60' : [ 2.14151392e+06, 2.14163032e+06, 2.14141062e+06, ], 'CountWeightedFullLHEWeightScale_rwgt20_pt0to60' : [ 2.79844380e+06, 2.62518290e+06, 2.46884203e+06, 2.28300415e+06, 2.14151392e+06, 2.01386997e+06, 1.89803765e+06, 1.78030517e+06, 1.67411679e+06, ], 'CountWeightedFullLHEEnvelope_rwgt20_pt0to60' : [ 2.80102619e+06, 1.67310008e+06, ], 'CountWeightedL1PrefireNom_rwgt20_pt0to60' : [ 2.08355686e+06, 2.08359449e+06, 2.08354992e+06, ], 'CountWeightedL1Prefire_rwgt20_pt0to60' : [ 2.08355686e+06, 2.06874459e+06, 2.09776968e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt20_pt0to60' : [ 2.72177031e+06, 2.55421255e+06, 2.40284164e+06, 2.22038480e+06, 2.08355686e+06, 1.95997588e+06, 1.84593130e+06, 1.73208258e+06, 1.62927610e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt20_pt0to60' : [ 2.72432695e+06, 1.62826835e+06, ], 'CountWeightedFullL1PrefireNom_rwgt20_pt0to60' : [ 2.08355686e+06, 2.08359449e+06, 2.08354992e+06, ], 'CountWeightedFullL1Prefire_rwgt20_pt0to60' : [ 2.08355686e+06, 2.06874459e+06, 2.09776968e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt20_pt0to60' : [ 2.72177031e+06, 2.55421255e+06, 2.40284164e+06, 2.22038480e+06, 2.08355686e+06, 1.95997588e+06, 1.84593130e+06, 1.73208258e+06, 1.62927610e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt20_pt0to60' : [ 2.72432695e+06, 1.62826835e+06, ], 'CountWeighted_rwgt20_pt60to120' : [ 3.39711404e+06, 3.39731944e+06, 3.39683797e+06, ], 'CountWeightedLHEWeightScale_rwgt20_pt60to120' : [ 4.46226686e+06, 4.16683909e+06, 3.90318250e+06, 3.63799933e+06, 3.39711404e+06, 3.18216202e+06, 3.02296507e+06, 2.82277478e+06, 2.64416436e+06, ], 'CountWeightedLHEEnvelope_rwgt20_pt60to120' : [ 4.46521434e+06, 2.64299966e+06, ], 'CountWeightedFull_rwgt20_pt60to120' : [ 3.39711404e+06, 3.39731944e+06, 3.39683797e+06, ], 'CountWeightedFullLHEWeightScale_rwgt20_pt60to120' : [ 4.46226686e+06, 4.16683909e+06, 3.90318250e+06, 3.63799933e+06, 3.39711404e+06, 3.18216202e+06, 3.02296507e+06, 2.82277478e+06, 2.64416436e+06, ], 'CountWeightedFullLHEEnvelope_rwgt20_pt60to120' : [ 4.46521434e+06, 2.64299966e+06, ], 'CountWeightedL1PrefireNom_rwgt20_pt60to120' : [ 3.29711935e+06, 3.29715549e+06, 3.29704666e+06, ], 'CountWeightedL1Prefire_rwgt20_pt60to120' : [ 3.29711935e+06, 3.27211248e+06, 3.32131019e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt20_pt60to120' : [ 4.32929952e+06, 4.04432523e+06, 3.78968335e+06, 3.52947104e+06, 3.29711935e+06, 3.08952538e+06, 2.93270009e+06, 2.73960612e+06, 2.56711731e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt20_pt60to120' : [ 4.33221652e+06, 2.56596358e+06, ], 'CountWeightedFullL1PrefireNom_rwgt20_pt60to120' : [ 3.29711935e+06, 3.29715549e+06, 3.29704666e+06, ], 'CountWeightedFullL1Prefire_rwgt20_pt60to120' : [ 3.29711935e+06, 3.27211248e+06, 3.32131019e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt20_pt60to120' : [ 4.32929952e+06, 4.04432523e+06, 3.78968335e+06, 3.52947104e+06, 3.29711935e+06, 3.08952538e+06, 2.93270009e+06, 2.73960612e+06, 2.56711731e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt20_pt60to120' : [ 4.33221652e+06, 2.56596358e+06, ], 'CountWeighted_rwgt20_pt120to200' : [ 2.46464288e+06, 2.46457742e+06, 2.46463812e+06, ], 'CountWeightedLHEWeightScale_rwgt20_pt120to200' : [ 3.25459550e+06, 3.01608389e+06, 2.80751524e+06, 2.65943437e+06, 2.46464288e+06, 2.29430506e+06, 2.21396039e+06, 2.05185838e+06, 1.91012036e+06, ], 'CountWeightedLHEEnvelope_rwgt20_pt120to200' : [ 3.25584050e+06, 1.90961144e+06, ], 'CountWeightedFull_rwgt20_pt120to200' : [ 2.46464288e+06, 2.46457742e+06, 2.46463812e+06, ], 'CountWeightedFullLHEWeightScale_rwgt20_pt120to200' : [ 3.25459550e+06, 3.01608389e+06, 2.80751524e+06, 2.65943437e+06, 2.46464288e+06, 2.29430506e+06, 2.21396039e+06, 2.05185838e+06, 1.91012036e+06, ], 'CountWeightedFullLHEEnvelope_rwgt20_pt120to200' : [ 3.25584050e+06, 1.90961144e+06, ], 'CountWeightedL1PrefireNom_rwgt20_pt120to200' : [ 2.38283878e+06, 2.38270404e+06, 2.38292569e+06, ], 'CountWeightedL1Prefire_rwgt20_pt120to200' : [ 2.38283878e+06, 2.36301044e+06, 2.40221443e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt20_pt120to200' : [ 3.14512494e+06, 2.91603153e+06, 2.71545063e+06, 2.56993744e+06, 2.38283878e+06, 2.21903144e+06, 2.13942409e+06, 1.98372865e+06, 1.84742471e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt20_pt120to200' : [ 3.14635643e+06, 1.84692096e+06, ], 'CountWeightedFullL1PrefireNom_rwgt20_pt120to200' : [ 2.38283878e+06, 2.38270404e+06, 2.38292569e+06, ], 'CountWeightedFullL1Prefire_rwgt20_pt120to200' : [ 2.38283878e+06, 2.36301044e+06, 2.40221443e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt20_pt120to200' : [ 3.14512494e+06, 2.91603153e+06, 2.71545063e+06, 2.56993744e+06, 2.38283878e+06, 2.21903144e+06, 2.13942409e+06, 1.98372865e+06, 1.84742471e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt20_pt120to200' : [ 3.14635643e+06, 1.84692096e+06, ], 'CountWeighted_rwgt20_pt200to300' : [ 1.01290464e+06, 1.01270117e+06, 1.01316676e+06, ], 'CountWeightedLHEWeightScale_rwgt20_pt200to300' : [ 1.34570308e+06, 1.23404841e+06, 1.13872277e+06, 1.10445906e+06, 1.01290464e+06, 9.34740948e+05, 9.22794148e+05, 8.46359636e+05, 7.81098560e+05, ], 'CountWeightedLHEEnvelope_rwgt20_pt200to300' : [ 1.34596129e+06, 7.81001521e+05, ], 'CountWeightedFull_rwgt20_pt200to300' : [ 1.01290464e+06, 1.01270117e+06, 1.01316676e+06, ], 'CountWeightedFullLHEWeightScale_rwgt20_pt200to300' : [ 1.34570308e+06, 1.23404841e+06, 1.13872277e+06, 1.10445906e+06, 1.01290464e+06, 9.34740948e+05, 9.22794148e+05, 8.46359636e+05, 7.81098560e+05, ], 'CountWeightedFullLHEEnvelope_rwgt20_pt200to300' : [ 1.34596129e+06, 7.81001521e+05, ], 'CountWeightedL1PrefireNom_rwgt20_pt200to300' : [ 9.76541350e+05, 9.76323549e+05, 9.76813362e+05, ], 'CountWeightedL1Prefire_rwgt20_pt200to300' : [ 9.76541350e+05, 9.67968355e+05, 9.84980119e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt20_pt200to300' : [ 1.29659278e+06, 1.18972588e+06, 1.09837596e+06, 1.06417092e+06, 9.76541350e+05, 9.01635601e+05, 8.89145278e+05, 8.15985788e+05, 7.53444728e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt20_pt200to300' : [ 1.29684799e+06, 7.53348867e+05, ], 'CountWeightedFullL1PrefireNom_rwgt20_pt200to300' : [ 9.76541350e+05, 9.76323549e+05, 9.76813362e+05, ], 'CountWeightedFullL1Prefire_rwgt20_pt200to300' : [ 9.76541350e+05, 9.67968355e+05, 9.84980119e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt20_pt200to300' : [ 1.29659278e+06, 1.18972588e+06, 1.09837596e+06, 1.06417092e+06, 9.76541350e+05, 9.01635601e+05, 8.89145278e+05, 8.15985788e+05, 7.53444728e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt20_pt200to300' : [ 1.29684799e+06, 7.53348867e+05, ], 'CountWeighted_rwgt20_ptGt300' : [ 4.59149008e+05, 4.59018567e+05, 4.59254932e+05, ], 'CountWeightedLHEWeightScale_rwgt20_ptGt300' : [ 6.15756253e+05, 5.55505714e+05, 5.05468003e+05, 5.08891769e+05, 4.59149008e+05, 4.17834249e+05, 4.27651618e+05, 3.85885889e+05, 3.51193231e+05, ], 'CountWeightedLHEEnvelope_rwgt20_ptGt300' : [ 6.15784504e+05, 3.51185300e+05, ], 'CountWeightedFull_rwgt20_ptGt300' : [ 4.59149008e+05, 4.59018567e+05, 4.59254932e+05, ], 'CountWeightedFullLHEWeightScale_rwgt20_ptGt300' : [ 6.15756253e+05, 5.55505714e+05, 5.05468003e+05, 5.08891769e+05, 4.59149008e+05, 4.17834249e+05, 4.27651618e+05, 3.85885889e+05, 3.51193231e+05, ], 'CountWeightedFullLHEEnvelope_rwgt20_ptGt300' : [ 6.15784504e+05, 3.51185300e+05, ], 'CountWeightedL1PrefireNom_rwgt20_ptGt300' : [ 4.42953199e+05, 4.42810985e+05, 4.43066321e+05, ], 'CountWeightedL1Prefire_rwgt20_ptGt300' : [ 4.42953199e+05, 4.39197081e+05, 4.46657796e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt20_ptGt300' : [ 5.93538437e+05, 5.35871715e+05, 4.87920616e+05, 4.90566544e+05, 4.42953199e+05, 4.03357966e+05, 4.12277546e+05, 3.72296914e+05, 3.39046067e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt20_ptGt300' : [ 5.93566165e+05, 3.39038339e+05, ], 'CountWeightedFullL1PrefireNom_rwgt20_ptGt300' : [ 4.42953199e+05, 4.42810985e+05, 4.43066321e+05, ], 'CountWeightedFullL1Prefire_rwgt20_ptGt300' : [ 4.42953199e+05, 4.39197081e+05, 4.46657796e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt20_ptGt300' : [ 5.93538437e+05, 5.35871715e+05, 4.87920616e+05, 4.90566544e+05, 4.42953199e+05, 4.03357966e+05, 4.12277546e+05, 3.72296914e+05, 3.39046067e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt20_ptGt300' : [ 5.93566165e+05, 3.39038339e+05, ], 'CountWeighted_rwgt20_pt300to450' : [ 3.61214218e+05, 3.61053032e+05, 3.61351784e+05, ], 'CountWeightedLHEWeightScale_rwgt20_pt300to450' : [ 4.83524077e+05, 4.37715058e+05, 3.99473052e+05, 3.98966659e+05, 3.61214218e+05, 3.29694599e+05, 3.34822417e+05, 3.03171643e+05, 2.76743406e+05, ], 'CountWeightedLHEEnvelope_rwgt20_pt300to450' : [ 4.83551642e+05, 2.76735701e+05, ], 'CountWeightedFull_rwgt20_pt300to450' : [ 3.61214218e+05, 3.61053032e+05, 3.61351784e+05, ], 'CountWeightedFullLHEWeightScale_rwgt20_pt300to450' : [ 4.83524077e+05, 4.37715058e+05, 3.99473052e+05, 3.98966659e+05, 3.61214218e+05, 3.29694599e+05, 3.34822417e+05, 3.03171643e+05, 2.76743406e+05, ], 'CountWeightedFullLHEEnvelope_rwgt20_pt300to450' : [ 4.83551642e+05, 2.76735701e+05, ], 'CountWeightedL1PrefireNom_rwgt20_pt300to450' : [ 3.48139798e+05, 3.47969709e+05, 3.48281377e+05, ], 'CountWeightedL1Prefire_rwgt20_pt300to450' : [ 3.48139798e+05, 3.45105904e+05, 3.51132814e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt20_pt300to450' : [ 4.65645102e+05, 4.21846975e+05, 3.85238026e+05, 3.84237299e+05, 3.48139798e+05, 3.17964240e+05, 3.22477241e+05, 2.92212230e+05, 2.66909682e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt20_pt300to450' : [ 4.65672143e+05, 2.66902176e+05, ], 'CountWeightedFullL1PrefireNom_rwgt20_pt300to450' : [ 3.48139798e+05, 3.47969709e+05, 3.48281377e+05, ], 'CountWeightedFullL1Prefire_rwgt20_pt300to450' : [ 3.48139798e+05, 3.45105904e+05, 3.51132814e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt20_pt300to450' : [ 4.65645102e+05, 4.21846975e+05, 3.85238026e+05, 3.84237299e+05, 3.48139798e+05, 3.17964240e+05, 3.22477241e+05, 2.92212230e+05, 2.66909682e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt20_pt300to450' : [ 4.65672143e+05, 2.66902176e+05, ], 'CountWeighted_rwgt20_ptGt450' : [ 9.79348319e+04, 9.79661089e+04, 9.79032464e+04, ], 'CountWeightedLHEWeightScale_rwgt20_ptGt450' : [ 1.32232148e+05, 1.17790682e+05, 1.05994957e+05, 1.09925145e+05, 9.79348319e+04, 8.81396170e+04, 9.28291945e+04, 8.27142578e+04, 7.44498051e+04, ], 'CountWeightedLHEEnvelope_rwgt20_ptGt450' : [ 1.32232842e+05, 7.44495772e+04, ], 'CountWeightedFull_rwgt20_ptGt450' : [ 9.79348319e+04, 9.79661089e+04, 9.79032464e+04, ], 'CountWeightedFullLHEWeightScale_rwgt20_ptGt450' : [ 1.32232148e+05, 1.17790682e+05, 1.05994957e+05, 1.09925145e+05, 9.79348319e+04, 8.81396170e+04, 9.28291945e+04, 8.27142578e+04, 7.44498051e+04, ], 'CountWeightedFullLHEEnvelope_rwgt20_ptGt450' : [ 1.32232842e+05, 7.44495772e+04, ], 'CountWeightedL1PrefireNom_rwgt20_ptGt450' : [ 9.48133592e+04, 9.48415652e+04, 9.47850145e+04, ], 'CountWeightedL1Prefire_rwgt20_ptGt450' : [ 9.48133592e+04, 9.40911374e+04, 9.55249860e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt20_ptGt450' : [ 1.27893318e+05, 1.14024783e+05, 1.02682553e+05, 1.06329246e+05, 9.48133592e+04, 8.53936913e+04, 8.98003112e+04, 8.00846761e+04, 7.21363738e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt20_ptGt450' : [ 1.27893994e+05, 7.21361540e+04, ], 'CountWeightedFullL1PrefireNom_rwgt20_ptGt450' : [ 9.48133592e+04, 9.48415652e+04, 9.47850145e+04, ], 'CountWeightedFullL1Prefire_rwgt20_ptGt450' : [ 9.48133592e+04, 9.40911374e+04, 9.55249860e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt20_ptGt450' : [ 1.27893318e+05, 1.14024783e+05, 1.02682553e+05, 1.06329246e+05, 9.48133592e+04, 8.53936913e+04, 8.98003112e+04, 8.00846761e+04, 7.21363738e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt20_ptGt450' : [ 1.27893994e+05, 7.21361540e+04, ], 'CountWeighted_rwgt22' : [ 2.40457549e+06, 2.40454908e+06, 2.40456363e+06, ], 'CountWeightedLHEWeightScale_rwgt22' : [ 3.16648036e+06, 2.94311957e+06, 2.74657626e+06, 2.58705056e+06, 2.40457549e+06, 2.24390513e+06, 2.15346115e+06, 2.00146780e+06, 1.86777120e+06, ], 'CountWeightedLHEEnvelope_rwgt22' : [ 3.16825092e+06, 1.86706914e+06, ], 'CountWeightedFull_rwgt22' : [ 2.40457549e+06, 2.40454908e+06, 2.40456363e+06, ], 'CountWeightedFullLHEWeightScale_rwgt22' : [ 3.16648036e+06, 2.94311957e+06, 2.74657626e+06, 2.58705056e+06, 2.40457549e+06, 2.24390513e+06, 2.15346115e+06, 2.00146780e+06, 1.86777120e+06, ], 'CountWeightedFullLHEEnvelope_rwgt22' : [ 3.16825092e+06, 1.86706914e+06, ], 'CountWeightedL1PrefireNom_rwgt22' : [ 2.32645661e+06, 2.32633415e+06, 2.32654730e+06, ], 'CountWeightedL1Prefire_rwgt22' : [ 2.32645661e+06, 2.30734312e+06, 2.34505627e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt22' : [ 3.06221298e+06, 2.84761477e+06, 2.65853165e+06, 2.50179311e+06, 2.32645661e+06, 2.17191362e+06, 2.08244517e+06, 1.93642132e+06, 1.80780595e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt22' : [ 3.06396493e+06, 1.80711094e+06, ], 'CountWeightedFullL1PrefireNom_rwgt22' : [ 2.32645661e+06, 2.32633415e+06, 2.32654730e+06, ], 'CountWeightedFullL1Prefire_rwgt22' : [ 2.32645661e+06, 2.30734312e+06, 2.34505627e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt22' : [ 3.06221298e+06, 2.84761477e+06, 2.65853165e+06, 2.50179311e+06, 2.32645661e+06, 2.17191362e+06, 2.08244517e+06, 1.93642132e+06, 1.80780595e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt22' : [ 3.06396493e+06, 1.80711094e+06, ], 'CountWeighted_rwgt22_fwd' : [ 3.56701668e+04, 3.56809691e+04, 3.56587142e+04, ], 'CountWeightedLHEWeightScale_rwgt22_fwd' : [ 4.72954743e+04, 4.36985966e+04, 4.06412825e+04, 3.86028947e+04, 3.56701668e+04, 3.31769790e+04, 3.21059435e+04, 2.96689236e+04, 2.75967198e+04, ], 'CountWeightedLHEEnvelope_rwgt22_fwd' : [ 4.73022877e+04, 2.75937884e+04, ], 'CountWeightedFull_rwgt22_fwd' : [ 3.56701668e+04, 3.56809691e+04, 3.56587142e+04, ], 'CountWeightedFullLHEWeightScale_rwgt22_fwd' : [ 4.72954743e+04, 4.36985966e+04, 4.06412825e+04, 3.86028947e+04, 3.56701668e+04, 3.31769790e+04, 3.21059435e+04, 2.96689236e+04, 2.75967198e+04, ], 'CountWeightedFullLHEEnvelope_rwgt22_fwd' : [ 4.73022877e+04, 2.75937884e+04, ], 'CountWeightedL1PrefireNom_rwgt22_fwd' : [ 3.06595338e+04, 3.06579209e+04, 3.06613461e+04, ], 'CountWeightedL1Prefire_rwgt22_fwd' : [ 3.06595338e+04, 2.95498779e+04, 3.17802039e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt22_fwd' : [ 4.06381521e+04, 3.75704309e+04, 3.49608076e+04, 3.31599025e+04, 3.06595338e+04, 2.85321063e+04, 2.75726827e+04, 2.54954936e+04, 2.37278275e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt22_fwd' : [ 4.06441051e+04, 2.37252797e+04, ], 'CountWeightedFullL1PrefireNom_rwgt22_fwd' : [ 3.06595338e+04, 3.06579209e+04, 3.06613461e+04, ], 'CountWeightedFullL1Prefire_rwgt22_fwd' : [ 3.06595338e+04, 2.95498779e+04, 3.17802039e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt22_fwd' : [ 4.06381521e+04, 3.75704309e+04, 3.49608076e+04, 3.31599025e+04, 3.06595338e+04, 2.85321063e+04, 2.75726827e+04, 2.54954936e+04, 2.37278275e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt22_fwd' : [ 4.06441051e+04, 2.37252797e+04, ], 'CountWeighted_rwgt22_pt0to60' : [ 5.35378480e+05, 5.35407580e+05, 5.35352654e+05, ], 'CountWeightedLHEWeightScale_rwgt22_pt0to60' : [ 6.99610950e+05, 6.56295726e+05, 6.17210507e+05, 5.70751037e+05, 5.35378480e+05, 5.03467492e+05, 4.74509413e+05, 4.45076293e+05, 4.18529198e+05, ], 'CountWeightedLHEEnvelope_rwgt22_pt0to60' : [ 7.00256547e+05, 4.18275020e+05, ], 'CountWeightedFull_rwgt22_pt0to60' : [ 5.35378480e+05, 5.35407580e+05, 5.35352654e+05, ], 'CountWeightedFullLHEWeightScale_rwgt22_pt0to60' : [ 6.99610950e+05, 6.56295726e+05, 6.17210507e+05, 5.70751037e+05, 5.35378480e+05, 5.03467492e+05, 4.74509413e+05, 4.45076293e+05, 4.18529198e+05, ], 'CountWeightedFullLHEEnvelope_rwgt22_pt0to60' : [ 7.00256547e+05, 4.18275020e+05, ], 'CountWeightedL1PrefireNom_rwgt22_pt0to60' : [ 5.20889216e+05, 5.20898622e+05, 5.20887480e+05, ], 'CountWeightedL1Prefire_rwgt22_pt0to60' : [ 5.20889216e+05, 5.17186147e+05, 5.24442420e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt22_pt0to60' : [ 6.80442578e+05, 6.38553138e+05, 6.00710409e+05, 5.55096201e+05, 5.20889216e+05, 4.89993970e+05, 4.61482825e+05, 4.33020645e+05, 4.07319026e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt22_pt0to60' : [ 6.81081738e+05, 4.07067088e+05, ], 'CountWeightedFullL1PrefireNom_rwgt22_pt0to60' : [ 5.20889216e+05, 5.20898622e+05, 5.20887480e+05, ], 'CountWeightedFullL1Prefire_rwgt22_pt0to60' : [ 5.20889216e+05, 5.17186147e+05, 5.24442420e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt22_pt0to60' : [ 6.80442578e+05, 6.38553138e+05, 6.00710409e+05, 5.55096201e+05, 5.20889216e+05, 4.89993970e+05, 4.61482825e+05, 4.33020645e+05, 4.07319026e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt22_pt0to60' : [ 6.81081738e+05, 4.07067088e+05, ], 'CountWeighted_rwgt22_pt60to120' : [ 8.49278511e+05, 8.49329860e+05, 8.49209492e+05, ], 'CountWeightedLHEWeightScale_rwgt22_pt60to120' : [ 1.11556672e+06, 1.04170977e+06, 9.75795626e+05, 9.09499833e+05, 8.49278511e+05, 7.95540505e+05, 7.55741267e+05, 7.05693695e+05, 6.61041091e+05, ], 'CountWeightedLHEEnvelope_rwgt22_pt60to120' : [ 1.11630358e+06, 6.60749915e+05, ], 'CountWeightedFull_rwgt22_pt60to120' : [ 8.49278511e+05, 8.49329860e+05, 8.49209492e+05, ], 'CountWeightedFullLHEWeightScale_rwgt22_pt60to120' : [ 1.11556672e+06, 1.04170977e+06, 9.75795626e+05, 9.09499833e+05, 8.49278511e+05, 7.95540505e+05, 7.55741267e+05, 7.05693695e+05, 6.61041091e+05, ], 'CountWeightedFullLHEEnvelope_rwgt22_pt60to120' : [ 1.11630358e+06, 6.60749915e+05, ], 'CountWeightedL1PrefireNom_rwgt22_pt60to120' : [ 8.24279837e+05, 8.24288873e+05, 8.24261665e+05, ], 'CountWeightedL1Prefire_rwgt22_pt60to120' : [ 8.24279837e+05, 8.18028120e+05, 8.30327547e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt22_pt60to120' : [ 1.08232488e+06, 1.01108131e+06, 9.47420837e+05, 8.82367759e+05, 8.24279837e+05, 7.72381346e+05, 7.33175022e+05, 6.84901530e+05, 6.41779326e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt22_pt60to120' : [ 1.08305413e+06, 6.41490894e+05, ], 'CountWeightedFullL1PrefireNom_rwgt22_pt60to120' : [ 8.24279837e+05, 8.24288873e+05, 8.24261665e+05, ], 'CountWeightedFullL1Prefire_rwgt22_pt60to120' : [ 8.24279837e+05, 8.18028120e+05, 8.30327547e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt22_pt60to120' : [ 1.08232488e+06, 1.01108131e+06, 9.47420837e+05, 8.82367759e+05, 8.24279837e+05, 7.72381346e+05, 7.33175022e+05, 6.84901530e+05, 6.41779326e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt22_pt60to120' : [ 1.08305413e+06, 6.41490894e+05, ], 'CountWeighted_rwgt22_pt120to200' : [ 6.16160721e+05, 6.16144355e+05, 6.16159530e+05, ], 'CountWeightedLHEWeightScale_rwgt22_pt120to200' : [ 8.13648875e+05, 7.54020973e+05, 7.01878810e+05, 6.64858594e+05, 6.16160721e+05, 5.73576266e+05, 5.53490098e+05, 5.12964594e+05, 4.77530091e+05, ], 'CountWeightedLHEEnvelope_rwgt22_pt120to200' : [ 8.13960126e+05, 4.77402859e+05, ], 'CountWeightedFull_rwgt22_pt120to200' : [ 6.16160721e+05, 6.16144355e+05, 6.16159530e+05, ], 'CountWeightedFullLHEWeightScale_rwgt22_pt120to200' : [ 8.13648875e+05, 7.54020973e+05, 7.01878810e+05, 6.64858594e+05, 6.16160721e+05, 5.73576266e+05, 5.53490098e+05, 5.12964594e+05, 4.77530091e+05, ], 'CountWeightedFullLHEEnvelope_rwgt22_pt120to200' : [ 8.13960126e+05, 4.77402859e+05, ], 'CountWeightedL1PrefireNom_rwgt22_pt120to200' : [ 5.95709695e+05, 5.95676009e+05, 5.95731423e+05, ], 'CountWeightedL1Prefire_rwgt22_pt120to200' : [ 5.95709695e+05, 5.90752610e+05, 6.00553608e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt22_pt120to200' : [ 7.86281234e+05, 7.29007882e+05, 6.78862657e+05, 6.42484361e+05, 5.95709695e+05, 5.54757859e+05, 5.34856022e+05, 4.95932162e+05, 4.61856177e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt22_pt120to200' : [ 7.86589108e+05, 4.61730239e+05, ], 'CountWeightedFullL1PrefireNom_rwgt22_pt120to200' : [ 5.95709695e+05, 5.95676009e+05, 5.95731423e+05, ], 'CountWeightedFullL1Prefire_rwgt22_pt120to200' : [ 5.95709695e+05, 5.90752610e+05, 6.00553608e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt22_pt120to200' : [ 7.86281234e+05, 7.29007882e+05, 6.78862657e+05, 6.42484361e+05, 5.95709695e+05, 5.54757859e+05, 5.34856022e+05, 4.95932162e+05, 4.61856177e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt22_pt120to200' : [ 7.86589108e+05, 4.61730239e+05, ], 'CountWeighted_rwgt22_pt200to300' : [ 2.53226161e+05, 2.53175293e+05, 2.53291691e+05, ], 'CountWeightedLHEWeightScale_rwgt22_pt200to300' : [ 3.36425770e+05, 3.08512102e+05, 2.84680692e+05, 2.76114764e+05, 2.53226161e+05, 2.33685237e+05, 2.30698537e+05, 2.11589909e+05, 1.95274640e+05, ], 'CountWeightedLHEEnvelope_rwgt22_pt200to300' : [ 3.36490323e+05, 1.95250380e+05, ], 'CountWeightedFull_rwgt22_pt200to300' : [ 2.53226161e+05, 2.53175293e+05, 2.53291691e+05, ], 'CountWeightedFullLHEWeightScale_rwgt22_pt200to300' : [ 3.36425770e+05, 3.08512102e+05, 2.84680692e+05, 2.76114764e+05, 2.53226161e+05, 2.33685237e+05, 2.30698537e+05, 2.11589909e+05, 1.95274640e+05, ], 'CountWeightedFullLHEEnvelope_rwgt22_pt200to300' : [ 3.36490323e+05, 1.95250380e+05, ], 'CountWeightedL1PrefireNom_rwgt22_pt200to300' : [ 2.44135338e+05, 2.44080887e+05, 2.44203340e+05, ], 'CountWeightedL1Prefire_rwgt22_pt200to300' : [ 2.44135338e+05, 2.41992089e+05, 2.46245030e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt22_pt200to300' : [ 3.24148194e+05, 2.97431470e+05, 2.74593990e+05, 2.66042731e+05, 2.44135338e+05, 2.25408900e+05, 2.22286320e+05, 2.03996447e+05, 1.88361182e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt22_pt200to300' : [ 3.24211998e+05, 1.88337217e+05, ], 'CountWeightedFullL1PrefireNom_rwgt22_pt200to300' : [ 2.44135338e+05, 2.44080887e+05, 2.44203340e+05, ], 'CountWeightedFullL1Prefire_rwgt22_pt200to300' : [ 2.44135338e+05, 2.41992089e+05, 2.46245030e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt22_pt200to300' : [ 3.24148194e+05, 2.97431470e+05, 2.74593990e+05, 2.66042731e+05, 2.44135338e+05, 2.25408900e+05, 2.22286320e+05, 2.03996447e+05, 1.88361182e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt22_pt200to300' : [ 3.24211998e+05, 1.88337217e+05, ], 'CountWeighted_rwgt22_ptGt300' : [ 1.14787252e+05, 1.14754642e+05, 1.14813733e+05, ], 'CountWeightedLHEWeightScale_rwgt22_ptGt300' : [ 1.53939063e+05, 1.38876429e+05, 1.26367001e+05, 1.27222942e+05, 1.14787252e+05, 1.04458562e+05, 1.06912904e+05, 9.64714723e+04, 8.77983077e+04, ], 'CountWeightedLHEEnvelope_rwgt22_ptGt300' : [ 1.53946126e+05, 8.77963250e+04, ], 'CountWeightedFull_rwgt22_ptGt300' : [ 1.14787252e+05, 1.14754642e+05, 1.14813733e+05, ], 'CountWeightedFullLHEWeightScale_rwgt22_ptGt300' : [ 1.53939063e+05, 1.38876429e+05, 1.26367001e+05, 1.27222942e+05, 1.14787252e+05, 1.04458562e+05, 1.06912904e+05, 9.64714723e+04, 8.77983077e+04, ], 'CountWeightedFullLHEEnvelope_rwgt22_ptGt300' : [ 1.53946126e+05, 8.77963250e+04, ], 'CountWeightedL1PrefireNom_rwgt22_ptGt300' : [ 1.10738300e+05, 1.10702746e+05, 1.10766580e+05, ], 'CountWeightedL1Prefire_rwgt22_ptGt300' : [ 1.10738300e+05, 1.09799270e+05, 1.11664449e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt22_ptGt300' : [ 1.48384609e+05, 1.33967929e+05, 1.21980154e+05, 1.22641636e+05, 1.10738300e+05, 1.00839492e+05, 1.03069387e+05, 9.30742286e+04, 8.47615167e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt22_ptGt300' : [ 1.48391541e+05, 8.47595848e+04, ], 'CountWeightedFullL1PrefireNom_rwgt22_ptGt300' : [ 1.10738300e+05, 1.10702746e+05, 1.10766580e+05, ], 'CountWeightedFullL1Prefire_rwgt22_ptGt300' : [ 1.10738300e+05, 1.09799270e+05, 1.11664449e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt22_ptGt300' : [ 1.48384609e+05, 1.33967929e+05, 1.21980154e+05, 1.22641636e+05, 1.10738300e+05, 1.00839492e+05, 1.03069387e+05, 9.30742286e+04, 8.47615167e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt22_ptGt300' : [ 1.48391541e+05, 8.47595848e+04, ], 'CountWeighted_rwgt22_pt300to450' : [ 9.03035546e+04, 9.02632579e+04, 9.03379461e+04, ], 'CountWeightedLHEWeightScale_rwgt22_pt300to450' : [ 1.20881019e+05, 1.09428764e+05, 9.98682629e+04, 9.97416649e+04, 9.03035546e+04, 8.24236499e+04, 8.37056044e+04, 7.57929107e+04, 6.91858516e+04, ], 'CountWeightedLHEEnvelope_rwgt22_pt300to450' : [ 1.20887910e+05, 6.91839254e+04, ], 'CountWeightedFull_rwgt22_pt300to450' : [ 9.03035546e+04, 9.02632579e+04, 9.03379461e+04, ], 'CountWeightedFullLHEWeightScale_rwgt22_pt300to450' : [ 1.20881019e+05, 1.09428764e+05, 9.98682629e+04, 9.97416649e+04, 9.03035546e+04, 8.24236499e+04, 8.37056044e+04, 7.57929107e+04, 6.91858516e+04, ], 'CountWeightedFullLHEEnvelope_rwgt22_pt300to450' : [ 1.20887910e+05, 6.91839254e+04, ], 'CountWeightedL1PrefireNom_rwgt22_pt300to450' : [ 8.70349494e+04, 8.69924273e+04, 8.70703443e+04, ], 'CountWeightedL1Prefire_rwgt22_pt300to450' : [ 8.70349494e+04, 8.62764760e+04, 8.77832035e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt22_pt300to450' : [ 1.16411276e+05, 1.05461744e+05, 9.63095064e+04, 9.60593246e+04, 8.70349494e+04, 7.94910600e+04, 8.06193102e+04, 7.30530576e+04, 6.67274205e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt22_pt300to450' : [ 1.16418036e+05, 6.67255439e+04, ], 'CountWeightedFullL1PrefireNom_rwgt22_pt300to450' : [ 8.70349494e+04, 8.69924273e+04, 8.70703443e+04, ], 'CountWeightedFullL1Prefire_rwgt22_pt300to450' : [ 8.70349494e+04, 8.62764760e+04, 8.77832035e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt22_pt300to450' : [ 1.16411276e+05, 1.05461744e+05, 9.63095064e+04, 9.60593246e+04, 8.70349494e+04, 7.94910600e+04, 8.06193102e+04, 7.30530576e+04, 6.67274205e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt22_pt300to450' : [ 1.16418036e+05, 6.67255439e+04, ], 'CountWeighted_rwgt22_ptGt450' : [ 2.44837080e+04, 2.44915272e+04, 2.44758116e+04, ], 'CountWeightedLHEWeightScale_rwgt22_ptGt450' : [ 3.30580369e+04, 2.94476704e+04, 2.64987393e+04, 2.74812863e+04, 2.44837080e+04, 2.20349043e+04, 2.32072986e+04, 2.06785645e+04, 1.86124513e+04, ], 'CountWeightedLHEEnvelope_rwgt22_ptGt450' : [ 3.30582106e+04, 1.86123943e+04, ], 'CountWeightedFull_rwgt22_ptGt450' : [ 2.44837080e+04, 2.44915272e+04, 2.44758116e+04, ], 'CountWeightedFullLHEWeightScale_rwgt22_ptGt450' : [ 3.30580369e+04, 2.94476704e+04, 2.64987393e+04, 2.74812863e+04, 2.44837080e+04, 2.20349043e+04, 2.32072986e+04, 2.06785645e+04, 1.86124513e+04, ], 'CountWeightedFullLHEEnvelope_rwgt22_ptGt450' : [ 3.30582106e+04, 1.86123943e+04, ], 'CountWeightedL1PrefireNom_rwgt22_ptGt450' : [ 2.37033398e+04, 2.37103913e+04, 2.36962536e+04, ], 'CountWeightedL1Prefire_rwgt22_ptGt450' : [ 2.37033398e+04, 2.35227843e+04, 2.38812465e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt22_ptGt450' : [ 3.19733294e+04, 2.85061957e+04, 2.56706384e+04, 2.65823114e+04, 2.37033398e+04, 2.13484228e+04, 2.24500778e+04, 2.00211690e+04, 1.80340935e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt22_ptGt450' : [ 3.19734984e+04, 1.80340385e+04, ], 'CountWeightedFullL1PrefireNom_rwgt22_ptGt450' : [ 2.37033398e+04, 2.37103913e+04, 2.36962536e+04, ], 'CountWeightedFullL1Prefire_rwgt22_ptGt450' : [ 2.37033398e+04, 2.35227843e+04, 2.38812465e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt22_ptGt450' : [ 3.19733294e+04, 2.85061957e+04, 2.56706384e+04, 2.65823114e+04, 2.37033398e+04, 2.13484228e+04, 2.24500778e+04, 2.00211690e+04, 1.80340935e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt22_ptGt450' : [ 3.19734984e+04, 1.80340385e+04, ], 'CountWeighted_rwgt23' : [ 6.01142199e+05, 6.01127399e+05, 6.01132785e+05, ], 'CountWeightedLHEWeightScale_rwgt23' : [ 7.91613918e+05, 7.35774104e+05, 6.86638575e+05, 6.46757482e+05, 6.01142199e+05, 5.60971852e+05, 5.38361028e+05, 5.00363029e+05, 4.66939110e+05, ], 'CountWeightedLHEEnvelope_rwgt23' : [ 7.92056545e+05, 4.66763597e+05, ], 'CountWeightedFull_rwgt23' : [ 6.01142199e+05, 6.01127399e+05, 6.01132785e+05, ], 'CountWeightedFullLHEWeightScale_rwgt23' : [ 7.91613918e+05, 7.35774104e+05, 6.86638575e+05, 6.46757482e+05, 6.01142199e+05, 5.60971852e+05, 5.38361028e+05, 5.00363029e+05, 4.66939110e+05, ], 'CountWeightedFullLHEEnvelope_rwgt23' : [ 7.92056545e+05, 4.66763597e+05, ], 'CountWeightedL1PrefireNom_rwgt23' : [ 5.81611039e+05, 5.81576257e+05, 5.81630510e+05, ], 'CountWeightedL1Prefire_rwgt23' : [ 5.81611039e+05, 5.76832755e+05, 5.86261096e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt23' : [ 7.65547182e+05, 7.11898053e+05, 6.64627610e+05, 6.25443266e+05, 5.81611039e+05, 5.42974126e+05, 5.20607168e+05, 4.84101535e+05, 4.51947895e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt23' : [ 7.65985165e+05, 4.51774148e+05, ], 'CountWeightedFullL1PrefireNom_rwgt23' : [ 5.81611039e+05, 5.81576257e+05, 5.81630510e+05, ], 'CountWeightedFullL1Prefire_rwgt23' : [ 5.81611039e+05, 5.76832755e+05, 5.86261096e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt23' : [ 7.65547182e+05, 7.11898053e+05, 6.64627610e+05, 6.25443266e+05, 5.81611039e+05, 5.42974126e+05, 5.20607168e+05, 4.84101535e+05, 4.51947895e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt23' : [ 7.65985165e+05, 4.51774148e+05, ], 'CountWeighted_rwgt23_fwd' : [ 8.91747458e+03, 8.92016722e+03, 8.91460746e+03, ], 'CountWeightedLHEWeightScale_rwgt23_fwd' : [ 1.18237743e+04, 1.09245623e+04, 1.01602396e+04, 9.65064661e+03, 8.91747458e+03, 8.29417842e+03, 8.02642220e+03, 7.41717212e+03, 6.89912456e+03, ], 'CountWeightedLHEEnvelope_rwgt23_fwd' : [ 1.18254776e+04, 6.89839169e+03, ], 'CountWeightedFull_rwgt23_fwd' : [ 8.91747458e+03, 8.92016722e+03, 8.91460746e+03, ], 'CountWeightedFullLHEWeightScale_rwgt23_fwd' : [ 1.18237743e+04, 1.09245623e+04, 1.01602396e+04, 9.65064661e+03, 8.91747458e+03, 8.29417842e+03, 8.02642220e+03, 7.41717212e+03, 6.89912456e+03, ], 'CountWeightedFullLHEEnvelope_rwgt23_fwd' : [ 1.18254776e+04, 6.89839169e+03, ], 'CountWeightedL1PrefireNom_rwgt23_fwd' : [ 7.66482207e+03, 7.66441900e+03, 7.66527541e+03, ], 'CountWeightedL1Prefire_rwgt23_fwd' : [ 7.66482207e+03, 7.38741073e+03, 7.94498798e+03, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt23_fwd' : [ 1.01594570e+04, 9.39253287e+03, 8.74013226e+03, 8.28990982e+03, 7.66482207e+03, 7.13296982e+03, 6.89311569e+03, 6.37382263e+03, 5.93190964e+03, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt23_fwd' : [ 1.01609453e+04, 5.93127267e+03, ], 'CountWeightedFullL1PrefireNom_rwgt23_fwd' : [ 7.66482207e+03, 7.66441900e+03, 7.66527541e+03, ], 'CountWeightedFullL1Prefire_rwgt23_fwd' : [ 7.66482207e+03, 7.38741073e+03, 7.94498798e+03, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt23_fwd' : [ 1.01594570e+04, 9.39253287e+03, 8.74013226e+03, 8.28990982e+03, 7.66482207e+03, 7.13296982e+03, 6.89311569e+03, 6.37382263e+03, 5.93190964e+03, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt23_fwd' : [ 1.01609453e+04, 5.93127267e+03, ], 'CountWeighted_rwgt23_pt0to60' : [ 1.33843401e+05, 1.33850655e+05, 1.33837037e+05, ], 'CountWeightedLHEWeightScale_rwgt23_pt0to60' : [ 1.74901355e+05, 1.64072630e+05, 1.54301397e+05, 1.42686628e+05, 1.33843401e+05, 1.25865873e+05, 1.18626403e+05, 1.11268195e+05, 1.04631475e+05, ], 'CountWeightedLHEEnvelope_rwgt23_pt0to60' : [ 1.75062753e+05, 1.04567933e+05, ], 'CountWeightedFull_rwgt23_pt0to60' : [ 1.33843401e+05, 1.33850655e+05, 1.33837037e+05, ], 'CountWeightedFullLHEWeightScale_rwgt23_pt0to60' : [ 1.74901355e+05, 1.64072630e+05, 1.54301397e+05, 1.42686628e+05, 1.33843401e+05, 1.25865873e+05, 1.18626403e+05, 1.11268195e+05, 1.04631475e+05, ], 'CountWeightedFullLHEEnvelope_rwgt23_pt0to60' : [ 1.75062753e+05, 1.04567933e+05, ], 'CountWeightedL1PrefireNom_rwgt23_pt0to60' : [ 1.30221186e+05, 1.30223513e+05, 1.30220808e+05, ], 'CountWeightedL1Prefire_rwgt23_pt0to60' : [ 1.30221186e+05, 1.29295419e+05, 1.31109475e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt23_pt0to60' : [ 1.70109295e+05, 1.59637019e+05, 1.50176403e+05, 1.38772955e+05, 1.30221186e+05, 1.22497526e+05, 1.15369784e+05, 1.08254304e+05, 1.01828952e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt23_pt0to60' : [ 1.70269081e+05, 1.01765970e+05, ], 'CountWeightedFullL1PrefireNom_rwgt23_pt0to60' : [ 1.30221186e+05, 1.30223513e+05, 1.30220808e+05, ], 'CountWeightedFullL1Prefire_rwgt23_pt0to60' : [ 1.30221186e+05, 1.29295419e+05, 1.31109475e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt23_pt0to60' : [ 1.70109295e+05, 1.59637019e+05, 1.50176403e+05, 1.38772955e+05, 1.30221186e+05, 1.22497526e+05, 1.15369784e+05, 1.08254304e+05, 1.01828952e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt23_pt0to60' : [ 1.70269081e+05, 1.01765970e+05, ], 'CountWeighted_rwgt23_pt60to120' : [ 2.12317981e+05, 2.12330604e+05, 2.12300215e+05, ], 'CountWeightedLHEWeightScale_rwgt23_pt60to120' : [ 2.78889458e+05, 2.60425350e+05, 2.43946968e+05, 2.27373154e+05, 2.12317981e+05, 1.98883536e+05, 1.88933804e+05, 1.76422039e+05, 1.65258951e+05, ], 'CountWeightedLHEEnvelope_rwgt23_pt60to120' : [ 2.79073670e+05, 1.65186158e+05, ], 'CountWeightedFull_rwgt23_pt60to120' : [ 2.12317981e+05, 2.12330604e+05, 2.12300215e+05, ], 'CountWeightedFullLHEWeightScale_rwgt23_pt60to120' : [ 2.78889458e+05, 2.60425350e+05, 2.43946968e+05, 2.27373154e+05, 2.12317981e+05, 1.98883536e+05, 1.88933804e+05, 1.76422039e+05, 1.65258951e+05, ], 'CountWeightedFullLHEEnvelope_rwgt23_pt60to120' : [ 2.79073670e+05, 1.65186158e+05, ], 'CountWeightedL1PrefireNom_rwgt23_pt60to120' : [ 2.06068310e+05, 2.06070502e+05, 2.06063470e+05, ], 'CountWeightedL1Prefire_rwgt23_pt60to120' : [ 2.06068310e+05, 2.04505395e+05, 2.07580255e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt23_pt60to120' : [ 2.70579057e+05, 2.52768316e+05, 2.36853324e+05, 2.20590187e+05, 2.06068310e+05, 1.93093790e+05, 1.83292290e+05, 1.71224030e+05, 1.60443555e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt23_pt60to120' : [ 2.70761369e+05, 1.60371449e+05, ], 'CountWeightedFullL1PrefireNom_rwgt23_pt60to120' : [ 2.06068310e+05, 2.06070502e+05, 2.06063470e+05, ], 'CountWeightedFullL1Prefire_rwgt23_pt60to120' : [ 2.06068310e+05, 2.04505395e+05, 2.07580255e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt23_pt60to120' : [ 2.70579057e+05, 2.52768316e+05, 2.36853324e+05, 2.20590187e+05, 2.06068310e+05, 1.93093790e+05, 1.83292290e+05, 1.71224030e+05, 1.60443555e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt23_pt60to120' : [ 2.70761369e+05, 1.60371449e+05, ], 'CountWeighted_rwgt23_pt120to200' : [ 1.54038820e+05, 1.54034700e+05, 1.54038443e+05, ], 'CountWeightedLHEWeightScale_rwgt23_pt120to200' : [ 2.03410613e+05, 1.88503749e+05, 1.75468308e+05, 1.66213320e+05, 1.54038820e+05, 1.43392933e+05, 1.38371438e+05, 1.28240137e+05, 1.19381582e+05, ], 'CountWeightedLHEEnvelope_rwgt23_pt120to200' : [ 2.03488423e+05, 1.19349773e+05, ], 'CountWeightedFull_rwgt23_pt120to200' : [ 1.54038820e+05, 1.54034700e+05, 1.54038443e+05, ], 'CountWeightedFullLHEWeightScale_rwgt23_pt120to200' : [ 2.03410613e+05, 1.88503749e+05, 1.75468308e+05, 1.66213320e+05, 1.54038820e+05, 1.43392933e+05, 1.38371438e+05, 1.28240137e+05, 1.19381582e+05, ], 'CountWeightedFullLHEEnvelope_rwgt23_pt120to200' : [ 2.03488423e+05, 1.19349773e+05, ], 'CountWeightedL1PrefireNom_rwgt23_pt120to200' : [ 1.48926158e+05, 1.48917733e+05, 1.48931559e+05, ], 'CountWeightedL1Prefire_rwgt23_pt120to200' : [ 1.48926158e+05, 1.47686896e+05, 1.50137135e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt23_pt120to200' : [ 1.96568762e+05, 1.82250526e+05, 1.69714316e+05, 1.60619812e+05, 1.48926158e+05, 1.38688365e+05, 1.33712950e+05, 1.23982063e+05, 1.15463129e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt23_pt120to200' : [ 1.96645731e+05, 1.15431643e+05, ], 'CountWeightedFullL1PrefireNom_rwgt23_pt120to200' : [ 1.48926158e+05, 1.48917733e+05, 1.48931559e+05, ], 'CountWeightedFullL1Prefire_rwgt23_pt120to200' : [ 1.48926158e+05, 1.47686896e+05, 1.50137135e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt23_pt120to200' : [ 1.96568762e+05, 1.82250526e+05, 1.69714316e+05, 1.60619812e+05, 1.48926158e+05, 1.38688365e+05, 1.33712950e+05, 1.23982063e+05, 1.15463129e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt23_pt120to200' : [ 1.96645731e+05, 1.15431643e+05, ], 'CountWeighted_rwgt23_pt200to300' : [ 6.33059311e+04, 6.32933158e+04, 6.33224732e+04, ], 'CountWeightedLHEWeightScale_rwgt23_pt200to300' : [ 8.41057779e+04, 7.71274129e+04, 7.11696062e+04, 6.90281443e+04, 6.33059311e+04, 5.84208445e+04, 5.76741742e+04, 5.28970586e+04, 4.88182711e+04, ], 'CountWeightedLHEEnvelope_rwgt23_pt200to300' : [ 8.41219161e+04, 4.88122062e+04, ], 'CountWeightedFull_rwgt23_pt200to300' : [ 6.33059311e+04, 6.32933158e+04, 6.33224732e+04, ], 'CountWeightedFullLHEWeightScale_rwgt23_pt200to300' : [ 8.41057779e+04, 7.71274129e+04, 7.11696062e+04, 6.90281443e+04, 6.33059311e+04, 5.84208445e+04, 5.76741742e+04, 5.28970586e+04, 4.88182711e+04, ], 'CountWeightedFullLHEEnvelope_rwgt23_pt200to300' : [ 8.41219161e+04, 4.88122062e+04, ], 'CountWeightedL1PrefireNom_rwgt23_pt200to300' : [ 6.10332949e+04, 6.10197396e+04, 6.10503794e+04, ], 'CountWeightedL1Prefire_rwgt23_pt200to300' : [ 6.10332949e+04, 6.04974821e+04, 6.15607127e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt23_pt200to300' : [ 8.10364068e+04, 7.43572744e+04, 6.86479506e+04, 6.65101543e+04, 6.10332949e+04, 5.63517776e+04, 5.55711411e+04, 5.09987095e+04, 4.70899218e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt23_pt200to300' : [ 8.10523576e+04, 4.70839310e+04, ], 'CountWeightedFullL1PrefireNom_rwgt23_pt200to300' : [ 6.10332949e+04, 6.10197396e+04, 6.10503794e+04, ], 'CountWeightedFullL1Prefire_rwgt23_pt200to300' : [ 6.10332949e+04, 6.04974821e+04, 6.15607127e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt23_pt200to300' : [ 8.10364068e+04, 7.43572744e+04, 6.86479506e+04, 6.65101543e+04, 6.10332949e+04, 5.63517776e+04, 5.55711411e+04, 5.09987095e+04, 4.70899218e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt23_pt200to300' : [ 8.10523576e+04, 4.70839310e+04, ], 'CountWeighted_rwgt23_ptGt300' : [ 2.86965797e+04, 2.86884625e+04, 2.87032112e+04, ], 'CountWeightedLHEWeightScale_rwgt23_ptGt300' : [ 3.84844568e+04, 3.47188338e+04, 3.15915005e+04, 3.18054824e+04, 2.86965797e+04, 2.61144319e+04, 2.67280142e+04, 2.41176790e+04, 2.19494021e+04, ], 'CountWeightedLHEEnvelope_rwgt23_ptGt300' : [ 3.84862232e+04, 2.19489064e+04, ], 'CountWeightedFull_rwgt23_ptGt300' : [ 2.86965797e+04, 2.86884625e+04, 2.87032112e+04, ], 'CountWeightedFullLHEWeightScale_rwgt23_ptGt300' : [ 3.84844568e+04, 3.47188338e+04, 3.15915005e+04, 3.18054824e+04, 2.86965797e+04, 2.61144319e+04, 2.67280142e+04, 2.41176790e+04, 2.19494021e+04, ], 'CountWeightedFullLHEEnvelope_rwgt23_ptGt300' : [ 3.84862232e+04, 2.19489064e+04, ], 'CountWeightedL1PrefireNom_rwgt23_ptGt300' : [ 2.76843531e+04, 2.76754848e+04, 2.76914286e+04, ], 'CountWeightedL1Prefire_rwgt23_ptGt300' : [ 2.76843531e+04, 2.74495981e+04, 2.79158882e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt23_ptGt300' : [ 3.70958562e+04, 3.34917172e+04, 3.04947956e+04, 3.06601657e+04, 2.76843531e+04, 2.52096720e+04, 2.57671421e+04, 2.32683740e+04, 2.11902105e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt23_ptGt300' : [ 3.70975889e+04, 2.11897275e+04, ], 'CountWeightedFullL1PrefireNom_rwgt23_ptGt300' : [ 2.76843531e+04, 2.76754848e+04, 2.76914286e+04, ], 'CountWeightedFullL1Prefire_rwgt23_ptGt300' : [ 2.76843531e+04, 2.74495981e+04, 2.79158882e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt23_ptGt300' : [ 3.70958562e+04, 3.34917172e+04, 3.04947956e+04, 3.06601657e+04, 2.76843531e+04, 2.52096720e+04, 2.57671421e+04, 2.32683740e+04, 2.11902105e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt23_ptGt300' : [ 3.70975889e+04, 2.11897275e+04, ], 'CountWeighted_rwgt23_pt300to450' : [ 2.25757156e+04, 2.25656541e+04, 2.25843115e+04, ], 'CountWeightedLHEWeightScale_rwgt23_pt300to450' : [ 3.02200146e+04, 2.73569751e+04, 2.49668674e+04, 2.49352164e+04, 2.25757156e+04, 2.06057489e+04, 2.09262346e+04, 1.89480784e+04, 1.72963256e+04, ], 'CountWeightedLHEEnvelope_rwgt23_pt300to450' : [ 3.02217373e+04, 1.72958439e+04, ], 'CountWeightedFull_rwgt23_pt300to450' : [ 2.25757156e+04, 2.25656541e+04, 2.25843115e+04, ], 'CountWeightedFullLHEWeightScale_rwgt23_pt300to450' : [ 3.02200146e+04, 2.73569751e+04, 2.49668674e+04, 2.49352164e+04, 2.25757156e+04, 2.06057489e+04, 2.09262346e+04, 1.89480784e+04, 1.72963256e+04, ], 'CountWeightedFullLHEEnvelope_rwgt23_pt300to450' : [ 3.02217373e+04, 1.72958439e+04, ], 'CountWeightedL1PrefireNom_rwgt23_pt300to450' : [ 2.17585681e+04, 2.17479446e+04, 2.17674154e+04, ], 'CountWeightedL1Prefire_rwgt23_pt300to450' : [ 2.17585681e+04, 2.15689517e+04, 2.19456308e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt23_pt300to450' : [ 2.91025879e+04, 2.63652267e+04, 2.40771859e+04, 2.40146398e+04, 2.17585681e+04, 1.98726072e+04, 2.01546670e+04, 1.82631209e+04, 1.66817224e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt23_pt300to450' : [ 2.91042783e+04, 1.66812530e+04, ], 'CountWeightedFullL1PrefireNom_rwgt23_pt300to450' : [ 2.17585681e+04, 2.17479446e+04, 2.17674154e+04, ], 'CountWeightedFullL1Prefire_rwgt23_pt300to450' : [ 2.17585681e+04, 2.15689517e+04, 2.19456308e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt23_pt300to450' : [ 2.91025879e+04, 2.63652267e+04, 2.40771859e+04, 2.40146398e+04, 2.17585681e+04, 1.98726072e+04, 2.01546670e+04, 1.82631209e+04, 1.66817224e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt23_pt300to450' : [ 2.91042783e+04, 1.66812530e+04, ], 'CountWeighted_rwgt23_ptGt450' : [ 6.12087945e+03, 6.12283195e+03, 6.11890593e+03, ], 'CountWeightedLHEWeightScale_rwgt23_ptGt450' : [ 8.26444374e+03, 7.36185940e+03, 6.62463236e+03, 6.87026713e+03, 6.12087945e+03, 5.50868244e+03, 5.80177859e+03, 5.16960015e+03, 4.65307586e+03, ], 'CountWeightedLHEEnvelope_rwgt23_ptGt450' : [ 8.26448715e+03, 4.65306163e+03, ], 'CountWeightedFull_rwgt23_ptGt450' : [ 6.12087945e+03, 6.12283195e+03, 6.11890593e+03, ], 'CountWeightedFullLHEWeightScale_rwgt23_ptGt450' : [ 8.26444374e+03, 7.36185940e+03, 6.62463236e+03, 6.87026713e+03, 6.12087945e+03, 5.50868244e+03, 5.80177859e+03, 5.16960015e+03, 4.65307586e+03, ], 'CountWeightedFullLHEEnvelope_rwgt23_ptGt450' : [ 8.26448715e+03, 4.65306163e+03, ], 'CountWeightedL1PrefireNom_rwgt23_ptGt450' : [ 5.92578861e+03, 5.92754993e+03, 5.92401745e+03, ], 'CountWeightedL1Prefire_rwgt23_ptGt450' : [ 5.92578861e+03, 5.88065001e+03, 5.97026488e+03, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt23_ptGt450' : [ 7.99326883e+03, 7.12649228e+03, 6.41760871e+03, 6.64552514e+03, 5.92578861e+03, 5.33706334e+03, 5.61247473e+03, 5.00525262e+03, 4.50848755e+03, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt23_ptGt450' : [ 7.99331106e+03, 4.50847382e+03, ], 'CountWeightedFullL1PrefireNom_rwgt23_ptGt450' : [ 5.92578861e+03, 5.92754993e+03, 5.92401745e+03, ], 'CountWeightedFullL1Prefire_rwgt23_ptGt450' : [ 5.92578861e+03, 5.88065001e+03, 5.97026488e+03, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt23_ptGt450' : [ 7.99326883e+03, 7.12649228e+03, 6.41760871e+03, 6.64552514e+03, 5.92578861e+03, 5.33706334e+03, 5.61247473e+03, 5.00525262e+03, 4.50848755e+03, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt23_ptGt450' : [ 7.99331106e+03, 4.50847382e+03, ], 'CountWeighted_rwgt25' : [ 6.01142199e+05, 6.01127399e+05, 6.01132785e+05, ], 'CountWeightedLHEWeightScale_rwgt25' : [ 7.91613918e+05, 7.35774104e+05, 6.86638575e+05, 6.46757482e+05, 6.01142199e+05, 5.60971852e+05, 5.38361028e+05, 5.00363029e+05, 4.66939110e+05, ], 'CountWeightedLHEEnvelope_rwgt25' : [ 7.92056545e+05, 4.66763597e+05, ], 'CountWeightedFull_rwgt25' : [ 6.01142199e+05, 6.01127399e+05, 6.01132785e+05, ], 'CountWeightedFullLHEWeightScale_rwgt25' : [ 7.91613918e+05, 7.35774104e+05, 6.86638575e+05, 6.46757482e+05, 6.01142199e+05, 5.60971852e+05, 5.38361028e+05, 5.00363029e+05, 4.66939110e+05, ], 'CountWeightedFullLHEEnvelope_rwgt25' : [ 7.92056545e+05, 4.66763597e+05, ], 'CountWeightedL1PrefireNom_rwgt25' : [ 5.81611039e+05, 5.81576257e+05, 5.81630510e+05, ], 'CountWeightedL1Prefire_rwgt25' : [ 5.81611039e+05, 5.76832755e+05, 5.86261096e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt25' : [ 7.65547182e+05, 7.11898053e+05, 6.64627610e+05, 6.25443266e+05, 5.81611039e+05, 5.42974126e+05, 5.20607168e+05, 4.84101535e+05, 4.51947895e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt25' : [ 7.65985165e+05, 4.51774148e+05, ], 'CountWeightedFullL1PrefireNom_rwgt25' : [ 5.81611039e+05, 5.81576257e+05, 5.81630510e+05, ], 'CountWeightedFullL1Prefire_rwgt25' : [ 5.81611039e+05, 5.76832755e+05, 5.86261096e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt25' : [ 7.65547182e+05, 7.11898053e+05, 6.64627610e+05, 6.25443266e+05, 5.81611039e+05, 5.42974126e+05, 5.20607168e+05, 4.84101535e+05, 4.51947895e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt25' : [ 7.65985165e+05, 4.51774148e+05, ], 'CountWeighted_rwgt25_fwd' : [ 8.91747458e+03, 8.92016722e+03, 8.91460746e+03, ], 'CountWeightedLHEWeightScale_rwgt25_fwd' : [ 1.18237743e+04, 1.09245623e+04, 1.01602396e+04, 9.65064661e+03, 8.91747458e+03, 8.29417842e+03, 8.02642220e+03, 7.41717212e+03, 6.89912456e+03, ], 'CountWeightedLHEEnvelope_rwgt25_fwd' : [ 1.18254776e+04, 6.89839169e+03, ], 'CountWeightedFull_rwgt25_fwd' : [ 8.91747458e+03, 8.92016722e+03, 8.91460746e+03, ], 'CountWeightedFullLHEWeightScale_rwgt25_fwd' : [ 1.18237743e+04, 1.09245623e+04, 1.01602396e+04, 9.65064661e+03, 8.91747458e+03, 8.29417842e+03, 8.02642220e+03, 7.41717212e+03, 6.89912456e+03, ], 'CountWeightedFullLHEEnvelope_rwgt25_fwd' : [ 1.18254776e+04, 6.89839169e+03, ], 'CountWeightedL1PrefireNom_rwgt25_fwd' : [ 7.66482207e+03, 7.66441900e+03, 7.66527541e+03, ], 'CountWeightedL1Prefire_rwgt25_fwd' : [ 7.66482207e+03, 7.38741073e+03, 7.94498798e+03, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt25_fwd' : [ 1.01594570e+04, 9.39253287e+03, 8.74013226e+03, 8.28990982e+03, 7.66482207e+03, 7.13296982e+03, 6.89311569e+03, 6.37382263e+03, 5.93190964e+03, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt25_fwd' : [ 1.01609453e+04, 5.93127267e+03, ], 'CountWeightedFullL1PrefireNom_rwgt25_fwd' : [ 7.66482207e+03, 7.66441900e+03, 7.66527541e+03, ], 'CountWeightedFullL1Prefire_rwgt25_fwd' : [ 7.66482207e+03, 7.38741073e+03, 7.94498798e+03, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt25_fwd' : [ 1.01594570e+04, 9.39253287e+03, 8.74013226e+03, 8.28990982e+03, 7.66482207e+03, 7.13296982e+03, 6.89311569e+03, 6.37382263e+03, 5.93190964e+03, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt25_fwd' : [ 1.01609453e+04, 5.93127267e+03, ], 'CountWeighted_rwgt25_pt0to60' : [ 1.33843401e+05, 1.33850655e+05, 1.33837037e+05, ], 'CountWeightedLHEWeightScale_rwgt25_pt0to60' : [ 1.74901355e+05, 1.64072630e+05, 1.54301397e+05, 1.42686628e+05, 1.33843401e+05, 1.25865873e+05, 1.18626403e+05, 1.11268195e+05, 1.04631475e+05, ], 'CountWeightedLHEEnvelope_rwgt25_pt0to60' : [ 1.75062753e+05, 1.04567933e+05, ], 'CountWeightedFull_rwgt25_pt0to60' : [ 1.33843401e+05, 1.33850655e+05, 1.33837037e+05, ], 'CountWeightedFullLHEWeightScale_rwgt25_pt0to60' : [ 1.74901355e+05, 1.64072630e+05, 1.54301397e+05, 1.42686628e+05, 1.33843401e+05, 1.25865873e+05, 1.18626403e+05, 1.11268195e+05, 1.04631475e+05, ], 'CountWeightedFullLHEEnvelope_rwgt25_pt0to60' : [ 1.75062753e+05, 1.04567933e+05, ], 'CountWeightedL1PrefireNom_rwgt25_pt0to60' : [ 1.30221186e+05, 1.30223513e+05, 1.30220808e+05, ], 'CountWeightedL1Prefire_rwgt25_pt0to60' : [ 1.30221186e+05, 1.29295419e+05, 1.31109475e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt25_pt0to60' : [ 1.70109295e+05, 1.59637019e+05, 1.50176403e+05, 1.38772955e+05, 1.30221186e+05, 1.22497526e+05, 1.15369784e+05, 1.08254304e+05, 1.01828952e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt25_pt0to60' : [ 1.70269081e+05, 1.01765970e+05, ], 'CountWeightedFullL1PrefireNom_rwgt25_pt0to60' : [ 1.30221186e+05, 1.30223513e+05, 1.30220808e+05, ], 'CountWeightedFullL1Prefire_rwgt25_pt0to60' : [ 1.30221186e+05, 1.29295419e+05, 1.31109475e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt25_pt0to60' : [ 1.70109295e+05, 1.59637019e+05, 1.50176403e+05, 1.38772955e+05, 1.30221186e+05, 1.22497526e+05, 1.15369784e+05, 1.08254304e+05, 1.01828952e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt25_pt0to60' : [ 1.70269081e+05, 1.01765970e+05, ], 'CountWeighted_rwgt25_pt60to120' : [ 2.12317981e+05, 2.12330604e+05, 2.12300215e+05, ], 'CountWeightedLHEWeightScale_rwgt25_pt60to120' : [ 2.78889458e+05, 2.60425350e+05, 2.43946968e+05, 2.27373154e+05, 2.12317981e+05, 1.98883536e+05, 1.88933804e+05, 1.76422039e+05, 1.65258951e+05, ], 'CountWeightedLHEEnvelope_rwgt25_pt60to120' : [ 2.79073670e+05, 1.65186158e+05, ], 'CountWeightedFull_rwgt25_pt60to120' : [ 2.12317981e+05, 2.12330604e+05, 2.12300215e+05, ], 'CountWeightedFullLHEWeightScale_rwgt25_pt60to120' : [ 2.78889458e+05, 2.60425350e+05, 2.43946968e+05, 2.27373154e+05, 2.12317981e+05, 1.98883536e+05, 1.88933804e+05, 1.76422039e+05, 1.65258951e+05, ], 'CountWeightedFullLHEEnvelope_rwgt25_pt60to120' : [ 2.79073670e+05, 1.65186158e+05, ], 'CountWeightedL1PrefireNom_rwgt25_pt60to120' : [ 2.06068310e+05, 2.06070502e+05, 2.06063470e+05, ], 'CountWeightedL1Prefire_rwgt25_pt60to120' : [ 2.06068310e+05, 2.04505395e+05, 2.07580255e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt25_pt60to120' : [ 2.70579057e+05, 2.52768316e+05, 2.36853324e+05, 2.20590187e+05, 2.06068310e+05, 1.93093790e+05, 1.83292290e+05, 1.71224030e+05, 1.60443555e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt25_pt60to120' : [ 2.70761369e+05, 1.60371449e+05, ], 'CountWeightedFullL1PrefireNom_rwgt25_pt60to120' : [ 2.06068310e+05, 2.06070502e+05, 2.06063470e+05, ], 'CountWeightedFullL1Prefire_rwgt25_pt60to120' : [ 2.06068310e+05, 2.04505395e+05, 2.07580255e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt25_pt60to120' : [ 2.70579057e+05, 2.52768316e+05, 2.36853324e+05, 2.20590187e+05, 2.06068310e+05, 1.93093790e+05, 1.83292290e+05, 1.71224030e+05, 1.60443555e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt25_pt60to120' : [ 2.70761369e+05, 1.60371449e+05, ], 'CountWeighted_rwgt25_pt120to200' : [ 1.54038820e+05, 1.54034700e+05, 1.54038443e+05, ], 'CountWeightedLHEWeightScale_rwgt25_pt120to200' : [ 2.03410613e+05, 1.88503749e+05, 1.75468308e+05, 1.66213320e+05, 1.54038820e+05, 1.43392933e+05, 1.38371438e+05, 1.28240137e+05, 1.19381582e+05, ], 'CountWeightedLHEEnvelope_rwgt25_pt120to200' : [ 2.03488423e+05, 1.19349773e+05, ], 'CountWeightedFull_rwgt25_pt120to200' : [ 1.54038820e+05, 1.54034700e+05, 1.54038443e+05, ], 'CountWeightedFullLHEWeightScale_rwgt25_pt120to200' : [ 2.03410613e+05, 1.88503749e+05, 1.75468308e+05, 1.66213320e+05, 1.54038820e+05, 1.43392933e+05, 1.38371438e+05, 1.28240137e+05, 1.19381582e+05, ], 'CountWeightedFullLHEEnvelope_rwgt25_pt120to200' : [ 2.03488423e+05, 1.19349773e+05, ], 'CountWeightedL1PrefireNom_rwgt25_pt120to200' : [ 1.48926158e+05, 1.48917733e+05, 1.48931559e+05, ], 'CountWeightedL1Prefire_rwgt25_pt120to200' : [ 1.48926158e+05, 1.47686896e+05, 1.50137135e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt25_pt120to200' : [ 1.96568762e+05, 1.82250526e+05, 1.69714316e+05, 1.60619812e+05, 1.48926158e+05, 1.38688365e+05, 1.33712950e+05, 1.23982063e+05, 1.15463129e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt25_pt120to200' : [ 1.96645731e+05, 1.15431643e+05, ], 'CountWeightedFullL1PrefireNom_rwgt25_pt120to200' : [ 1.48926158e+05, 1.48917733e+05, 1.48931559e+05, ], 'CountWeightedFullL1Prefire_rwgt25_pt120to200' : [ 1.48926158e+05, 1.47686896e+05, 1.50137135e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt25_pt120to200' : [ 1.96568762e+05, 1.82250526e+05, 1.69714316e+05, 1.60619812e+05, 1.48926158e+05, 1.38688365e+05, 1.33712950e+05, 1.23982063e+05, 1.15463129e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt25_pt120to200' : [ 1.96645731e+05, 1.15431643e+05, ], 'CountWeighted_rwgt25_pt200to300' : [ 6.33059311e+04, 6.32933158e+04, 6.33224732e+04, ], 'CountWeightedLHEWeightScale_rwgt25_pt200to300' : [ 8.41057779e+04, 7.71274129e+04, 7.11696062e+04, 6.90281443e+04, 6.33059311e+04, 5.84208445e+04, 5.76741742e+04, 5.28970586e+04, 4.88182711e+04, ], 'CountWeightedLHEEnvelope_rwgt25_pt200to300' : [ 8.41219161e+04, 4.88122062e+04, ], 'CountWeightedFull_rwgt25_pt200to300' : [ 6.33059311e+04, 6.32933158e+04, 6.33224732e+04, ], 'CountWeightedFullLHEWeightScale_rwgt25_pt200to300' : [ 8.41057779e+04, 7.71274129e+04, 7.11696062e+04, 6.90281443e+04, 6.33059311e+04, 5.84208445e+04, 5.76741742e+04, 5.28970586e+04, 4.88182711e+04, ], 'CountWeightedFullLHEEnvelope_rwgt25_pt200to300' : [ 8.41219161e+04, 4.88122062e+04, ], 'CountWeightedL1PrefireNom_rwgt25_pt200to300' : [ 6.10332949e+04, 6.10197396e+04, 6.10503794e+04, ], 'CountWeightedL1Prefire_rwgt25_pt200to300' : [ 6.10332949e+04, 6.04974821e+04, 6.15607127e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt25_pt200to300' : [ 8.10364068e+04, 7.43572744e+04, 6.86479506e+04, 6.65101543e+04, 6.10332949e+04, 5.63517776e+04, 5.55711411e+04, 5.09987095e+04, 4.70899218e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt25_pt200to300' : [ 8.10523576e+04, 4.70839310e+04, ], 'CountWeightedFullL1PrefireNom_rwgt25_pt200to300' : [ 6.10332949e+04, 6.10197396e+04, 6.10503794e+04, ], 'CountWeightedFullL1Prefire_rwgt25_pt200to300' : [ 6.10332949e+04, 6.04974821e+04, 6.15607127e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt25_pt200to300' : [ 8.10364068e+04, 7.43572744e+04, 6.86479506e+04, 6.65101543e+04, 6.10332949e+04, 5.63517776e+04, 5.55711411e+04, 5.09987095e+04, 4.70899218e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt25_pt200to300' : [ 8.10523576e+04, 4.70839310e+04, ], 'CountWeighted_rwgt25_ptGt300' : [ 2.86965797e+04, 2.86884625e+04, 2.87032112e+04, ], 'CountWeightedLHEWeightScale_rwgt25_ptGt300' : [ 3.84844568e+04, 3.47188338e+04, 3.15915005e+04, 3.18054824e+04, 2.86965797e+04, 2.61144319e+04, 2.67280142e+04, 2.41176790e+04, 2.19494021e+04, ], 'CountWeightedLHEEnvelope_rwgt25_ptGt300' : [ 3.84862232e+04, 2.19489064e+04, ], 'CountWeightedFull_rwgt25_ptGt300' : [ 2.86965797e+04, 2.86884625e+04, 2.87032112e+04, ], 'CountWeightedFullLHEWeightScale_rwgt25_ptGt300' : [ 3.84844568e+04, 3.47188338e+04, 3.15915005e+04, 3.18054824e+04, 2.86965797e+04, 2.61144319e+04, 2.67280142e+04, 2.41176790e+04, 2.19494021e+04, ], 'CountWeightedFullLHEEnvelope_rwgt25_ptGt300' : [ 3.84862232e+04, 2.19489064e+04, ], 'CountWeightedL1PrefireNom_rwgt25_ptGt300' : [ 2.76843531e+04, 2.76754848e+04, 2.76914286e+04, ], 'CountWeightedL1Prefire_rwgt25_ptGt300' : [ 2.76843531e+04, 2.74495981e+04, 2.79158882e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt25_ptGt300' : [ 3.70958562e+04, 3.34917172e+04, 3.04947956e+04, 3.06601657e+04, 2.76843531e+04, 2.52096720e+04, 2.57671421e+04, 2.32683740e+04, 2.11902105e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt25_ptGt300' : [ 3.70975889e+04, 2.11897275e+04, ], 'CountWeightedFullL1PrefireNom_rwgt25_ptGt300' : [ 2.76843531e+04, 2.76754848e+04, 2.76914286e+04, ], 'CountWeightedFullL1Prefire_rwgt25_ptGt300' : [ 2.76843531e+04, 2.74495981e+04, 2.79158882e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt25_ptGt300' : [ 3.70958562e+04, 3.34917172e+04, 3.04947956e+04, 3.06601657e+04, 2.76843531e+04, 2.52096720e+04, 2.57671421e+04, 2.32683740e+04, 2.11902105e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt25_ptGt300' : [ 3.70975889e+04, 2.11897275e+04, ], 'CountWeighted_rwgt25_pt300to450' : [ 2.25757156e+04, 2.25656541e+04, 2.25843115e+04, ], 'CountWeightedLHEWeightScale_rwgt25_pt300to450' : [ 3.02200146e+04, 2.73569751e+04, 2.49668674e+04, 2.49352164e+04, 2.25757156e+04, 2.06057489e+04, 2.09262346e+04, 1.89480784e+04, 1.72963256e+04, ], 'CountWeightedLHEEnvelope_rwgt25_pt300to450' : [ 3.02217373e+04, 1.72958439e+04, ], 'CountWeightedFull_rwgt25_pt300to450' : [ 2.25757156e+04, 2.25656541e+04, 2.25843115e+04, ], 'CountWeightedFullLHEWeightScale_rwgt25_pt300to450' : [ 3.02200146e+04, 2.73569751e+04, 2.49668674e+04, 2.49352164e+04, 2.25757156e+04, 2.06057489e+04, 2.09262346e+04, 1.89480784e+04, 1.72963256e+04, ], 'CountWeightedFullLHEEnvelope_rwgt25_pt300to450' : [ 3.02217373e+04, 1.72958439e+04, ], 'CountWeightedL1PrefireNom_rwgt25_pt300to450' : [ 2.17585681e+04, 2.17479446e+04, 2.17674154e+04, ], 'CountWeightedL1Prefire_rwgt25_pt300to450' : [ 2.17585681e+04, 2.15689517e+04, 2.19456308e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt25_pt300to450' : [ 2.91025879e+04, 2.63652267e+04, 2.40771859e+04, 2.40146398e+04, 2.17585681e+04, 1.98726072e+04, 2.01546670e+04, 1.82631209e+04, 1.66817224e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt25_pt300to450' : [ 2.91042783e+04, 1.66812530e+04, ], 'CountWeightedFullL1PrefireNom_rwgt25_pt300to450' : [ 2.17585681e+04, 2.17479446e+04, 2.17674154e+04, ], 'CountWeightedFullL1Prefire_rwgt25_pt300to450' : [ 2.17585681e+04, 2.15689517e+04, 2.19456308e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt25_pt300to450' : [ 2.91025879e+04, 2.63652267e+04, 2.40771859e+04, 2.40146398e+04, 2.17585681e+04, 1.98726072e+04, 2.01546670e+04, 1.82631209e+04, 1.66817224e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt25_pt300to450' : [ 2.91042783e+04, 1.66812530e+04, ], 'CountWeighted_rwgt25_ptGt450' : [ 6.12087945e+03, 6.12283195e+03, 6.11890593e+03, ], 'CountWeightedLHEWeightScale_rwgt25_ptGt450' : [ 8.26444374e+03, 7.36185940e+03, 6.62463236e+03, 6.87026713e+03, 6.12087945e+03, 5.50868244e+03, 5.80177859e+03, 5.16960015e+03, 4.65307586e+03, ], 'CountWeightedLHEEnvelope_rwgt25_ptGt450' : [ 8.26448715e+03, 4.65306163e+03, ], 'CountWeightedFull_rwgt25_ptGt450' : [ 6.12087945e+03, 6.12283195e+03, 6.11890593e+03, ], 'CountWeightedFullLHEWeightScale_rwgt25_ptGt450' : [ 8.26444374e+03, 7.36185940e+03, 6.62463236e+03, 6.87026713e+03, 6.12087945e+03, 5.50868244e+03, 5.80177859e+03, 5.16960015e+03, 4.65307586e+03, ], 'CountWeightedFullLHEEnvelope_rwgt25_ptGt450' : [ 8.26448715e+03, 4.65306163e+03, ], 'CountWeightedL1PrefireNom_rwgt25_ptGt450' : [ 5.92578861e+03, 5.92754993e+03, 5.92401745e+03, ], 'CountWeightedL1Prefire_rwgt25_ptGt450' : [ 5.92578861e+03, 5.88065001e+03, 5.97026488e+03, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt25_ptGt450' : [ 7.99326883e+03, 7.12649228e+03, 6.41760871e+03, 6.64552514e+03, 5.92578861e+03, 5.33706334e+03, 5.61247473e+03, 5.00525262e+03, 4.50848755e+03, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt25_ptGt450' : [ 7.99331106e+03, 4.50847382e+03, ], 'CountWeightedFullL1PrefireNom_rwgt25_ptGt450' : [ 5.92578861e+03, 5.92754993e+03, 5.92401745e+03, ], 'CountWeightedFullL1Prefire_rwgt25_ptGt450' : [ 5.92578861e+03, 5.88065001e+03, 5.97026488e+03, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt25_ptGt450' : [ 7.99326883e+03, 7.12649228e+03, 6.41760871e+03, 6.64552514e+03, 5.92578861e+03, 5.33706334e+03, 5.61247473e+03, 5.00525262e+03, 4.50848755e+03, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt25_ptGt450' : [ 7.99331106e+03, 4.50847382e+03, ], 'CountWeighted_rwgt26' : [ 2.40457549e+06, 2.40454908e+06, 2.40456363e+06, ], 'CountWeightedLHEWeightScale_rwgt26' : [ 3.16648036e+06, 2.94311957e+06, 2.74657626e+06, 2.58705056e+06, 2.40457549e+06, 2.24390513e+06, 2.15346115e+06, 2.00146780e+06, 1.86777120e+06, ], 'CountWeightedLHEEnvelope_rwgt26' : [ 3.16825092e+06, 1.86706914e+06, ], 'CountWeightedFull_rwgt26' : [ 2.40457549e+06, 2.40454908e+06, 2.40456363e+06, ], 'CountWeightedFullLHEWeightScale_rwgt26' : [ 3.16648036e+06, 2.94311957e+06, 2.74657626e+06, 2.58705056e+06, 2.40457549e+06, 2.24390513e+06, 2.15346115e+06, 2.00146780e+06, 1.86777120e+06, ], 'CountWeightedFullLHEEnvelope_rwgt26' : [ 3.16825092e+06, 1.86706914e+06, ], 'CountWeightedL1PrefireNom_rwgt26' : [ 2.32645661e+06, 2.32633415e+06, 2.32654730e+06, ], 'CountWeightedL1Prefire_rwgt26' : [ 2.32645661e+06, 2.30734312e+06, 2.34505627e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt26' : [ 3.06221298e+06, 2.84761477e+06, 2.65853165e+06, 2.50179311e+06, 2.32645661e+06, 2.17191362e+06, 2.08244517e+06, 1.93642132e+06, 1.80780595e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt26' : [ 3.06396493e+06, 1.80711094e+06, ], 'CountWeightedFullL1PrefireNom_rwgt26' : [ 2.32645661e+06, 2.32633415e+06, 2.32654730e+06, ], 'CountWeightedFullL1Prefire_rwgt26' : [ 2.32645661e+06, 2.30734312e+06, 2.34505627e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt26' : [ 3.06221298e+06, 2.84761477e+06, 2.65853165e+06, 2.50179311e+06, 2.32645661e+06, 2.17191362e+06, 2.08244517e+06, 1.93642132e+06, 1.80780595e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt26' : [ 3.06396493e+06, 1.80711094e+06, ], 'CountWeighted_rwgt26_fwd' : [ 3.56701668e+04, 3.56809691e+04, 3.56587142e+04, ], 'CountWeightedLHEWeightScale_rwgt26_fwd' : [ 4.72954743e+04, 4.36985966e+04, 4.06412825e+04, 3.86028947e+04, 3.56701668e+04, 3.31769790e+04, 3.21059435e+04, 2.96689236e+04, 2.75967198e+04, ], 'CountWeightedLHEEnvelope_rwgt26_fwd' : [ 4.73022877e+04, 2.75937884e+04, ], 'CountWeightedFull_rwgt26_fwd' : [ 3.56701668e+04, 3.56809691e+04, 3.56587142e+04, ], 'CountWeightedFullLHEWeightScale_rwgt26_fwd' : [ 4.72954743e+04, 4.36985966e+04, 4.06412825e+04, 3.86028947e+04, 3.56701668e+04, 3.31769790e+04, 3.21059435e+04, 2.96689236e+04, 2.75967198e+04, ], 'CountWeightedFullLHEEnvelope_rwgt26_fwd' : [ 4.73022877e+04, 2.75937884e+04, ], 'CountWeightedL1PrefireNom_rwgt26_fwd' : [ 3.06595338e+04, 3.06579209e+04, 3.06613461e+04, ], 'CountWeightedL1Prefire_rwgt26_fwd' : [ 3.06595338e+04, 2.95498779e+04, 3.17802039e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt26_fwd' : [ 4.06381521e+04, 3.75704309e+04, 3.49608076e+04, 3.31599025e+04, 3.06595338e+04, 2.85321063e+04, 2.75726827e+04, 2.54954936e+04, 2.37278275e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt26_fwd' : [ 4.06441051e+04, 2.37252797e+04, ], 'CountWeightedFullL1PrefireNom_rwgt26_fwd' : [ 3.06595338e+04, 3.06579209e+04, 3.06613461e+04, ], 'CountWeightedFullL1Prefire_rwgt26_fwd' : [ 3.06595338e+04, 2.95498779e+04, 3.17802039e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt26_fwd' : [ 4.06381521e+04, 3.75704309e+04, 3.49608076e+04, 3.31599025e+04, 3.06595338e+04, 2.85321063e+04, 2.75726827e+04, 2.54954936e+04, 2.37278275e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt26_fwd' : [ 4.06441051e+04, 2.37252797e+04, ], 'CountWeighted_rwgt26_pt0to60' : [ 5.35378480e+05, 5.35407580e+05, 5.35352654e+05, ], 'CountWeightedLHEWeightScale_rwgt26_pt0to60' : [ 6.99610950e+05, 6.56295726e+05, 6.17210507e+05, 5.70751037e+05, 5.35378480e+05, 5.03467492e+05, 4.74509413e+05, 4.45076293e+05, 4.18529198e+05, ], 'CountWeightedLHEEnvelope_rwgt26_pt0to60' : [ 7.00256547e+05, 4.18275020e+05, ], 'CountWeightedFull_rwgt26_pt0to60' : [ 5.35378480e+05, 5.35407580e+05, 5.35352654e+05, ], 'CountWeightedFullLHEWeightScale_rwgt26_pt0to60' : [ 6.99610950e+05, 6.56295726e+05, 6.17210507e+05, 5.70751037e+05, 5.35378480e+05, 5.03467492e+05, 4.74509413e+05, 4.45076293e+05, 4.18529198e+05, ], 'CountWeightedFullLHEEnvelope_rwgt26_pt0to60' : [ 7.00256547e+05, 4.18275020e+05, ], 'CountWeightedL1PrefireNom_rwgt26_pt0to60' : [ 5.20889216e+05, 5.20898622e+05, 5.20887480e+05, ], 'CountWeightedL1Prefire_rwgt26_pt0to60' : [ 5.20889216e+05, 5.17186147e+05, 5.24442420e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt26_pt0to60' : [ 6.80442578e+05, 6.38553138e+05, 6.00710409e+05, 5.55096201e+05, 5.20889216e+05, 4.89993970e+05, 4.61482825e+05, 4.33020645e+05, 4.07319026e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt26_pt0to60' : [ 6.81081738e+05, 4.07067088e+05, ], 'CountWeightedFullL1PrefireNom_rwgt26_pt0to60' : [ 5.20889216e+05, 5.20898622e+05, 5.20887480e+05, ], 'CountWeightedFullL1Prefire_rwgt26_pt0to60' : [ 5.20889216e+05, 5.17186147e+05, 5.24442420e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt26_pt0to60' : [ 6.80442578e+05, 6.38553138e+05, 6.00710409e+05, 5.55096201e+05, 5.20889216e+05, 4.89993970e+05, 4.61482825e+05, 4.33020645e+05, 4.07319026e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt26_pt0to60' : [ 6.81081738e+05, 4.07067088e+05, ], 'CountWeighted_rwgt26_pt60to120' : [ 8.49278511e+05, 8.49329860e+05, 8.49209492e+05, ], 'CountWeightedLHEWeightScale_rwgt26_pt60to120' : [ 1.11556672e+06, 1.04170977e+06, 9.75795626e+05, 9.09499833e+05, 8.49278511e+05, 7.95540505e+05, 7.55741267e+05, 7.05693695e+05, 6.61041091e+05, ], 'CountWeightedLHEEnvelope_rwgt26_pt60to120' : [ 1.11630358e+06, 6.60749915e+05, ], 'CountWeightedFull_rwgt26_pt60to120' : [ 8.49278511e+05, 8.49329860e+05, 8.49209492e+05, ], 'CountWeightedFullLHEWeightScale_rwgt26_pt60to120' : [ 1.11556672e+06, 1.04170977e+06, 9.75795626e+05, 9.09499833e+05, 8.49278511e+05, 7.95540505e+05, 7.55741267e+05, 7.05693695e+05, 6.61041091e+05, ], 'CountWeightedFullLHEEnvelope_rwgt26_pt60to120' : [ 1.11630358e+06, 6.60749915e+05, ], 'CountWeightedL1PrefireNom_rwgt26_pt60to120' : [ 8.24279837e+05, 8.24288873e+05, 8.24261665e+05, ], 'CountWeightedL1Prefire_rwgt26_pt60to120' : [ 8.24279837e+05, 8.18028120e+05, 8.30327547e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt26_pt60to120' : [ 1.08232488e+06, 1.01108131e+06, 9.47420837e+05, 8.82367759e+05, 8.24279837e+05, 7.72381346e+05, 7.33175022e+05, 6.84901530e+05, 6.41779326e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt26_pt60to120' : [ 1.08305413e+06, 6.41490894e+05, ], 'CountWeightedFullL1PrefireNom_rwgt26_pt60to120' : [ 8.24279837e+05, 8.24288873e+05, 8.24261665e+05, ], 'CountWeightedFullL1Prefire_rwgt26_pt60to120' : [ 8.24279837e+05, 8.18028120e+05, 8.30327547e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt26_pt60to120' : [ 1.08232488e+06, 1.01108131e+06, 9.47420837e+05, 8.82367759e+05, 8.24279837e+05, 7.72381346e+05, 7.33175022e+05, 6.84901530e+05, 6.41779326e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt26_pt60to120' : [ 1.08305413e+06, 6.41490894e+05, ], 'CountWeighted_rwgt26_pt120to200' : [ 6.16160721e+05, 6.16144355e+05, 6.16159530e+05, ], 'CountWeightedLHEWeightScale_rwgt26_pt120to200' : [ 8.13648875e+05, 7.54020973e+05, 7.01878810e+05, 6.64858594e+05, 6.16160721e+05, 5.73576266e+05, 5.53490098e+05, 5.12964594e+05, 4.77530091e+05, ], 'CountWeightedLHEEnvelope_rwgt26_pt120to200' : [ 8.13960126e+05, 4.77402859e+05, ], 'CountWeightedFull_rwgt26_pt120to200' : [ 6.16160721e+05, 6.16144355e+05, 6.16159530e+05, ], 'CountWeightedFullLHEWeightScale_rwgt26_pt120to200' : [ 8.13648875e+05, 7.54020973e+05, 7.01878810e+05, 6.64858594e+05, 6.16160721e+05, 5.73576266e+05, 5.53490098e+05, 5.12964594e+05, 4.77530091e+05, ], 'CountWeightedFullLHEEnvelope_rwgt26_pt120to200' : [ 8.13960126e+05, 4.77402859e+05, ], 'CountWeightedL1PrefireNom_rwgt26_pt120to200' : [ 5.95709695e+05, 5.95676009e+05, 5.95731423e+05, ], 'CountWeightedL1Prefire_rwgt26_pt120to200' : [ 5.95709695e+05, 5.90752610e+05, 6.00553608e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt26_pt120to200' : [ 7.86281234e+05, 7.29007882e+05, 6.78862657e+05, 6.42484361e+05, 5.95709695e+05, 5.54757859e+05, 5.34856022e+05, 4.95932162e+05, 4.61856177e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt26_pt120to200' : [ 7.86589108e+05, 4.61730239e+05, ], 'CountWeightedFullL1PrefireNom_rwgt26_pt120to200' : [ 5.95709695e+05, 5.95676009e+05, 5.95731423e+05, ], 'CountWeightedFullL1Prefire_rwgt26_pt120to200' : [ 5.95709695e+05, 5.90752610e+05, 6.00553608e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt26_pt120to200' : [ 7.86281234e+05, 7.29007882e+05, 6.78862657e+05, 6.42484361e+05, 5.95709695e+05, 5.54757859e+05, 5.34856022e+05, 4.95932162e+05, 4.61856177e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt26_pt120to200' : [ 7.86589108e+05, 4.61730239e+05, ], 'CountWeighted_rwgt26_pt200to300' : [ 2.53226161e+05, 2.53175293e+05, 2.53291691e+05, ], 'CountWeightedLHEWeightScale_rwgt26_pt200to300' : [ 3.36425770e+05, 3.08512102e+05, 2.84680692e+05, 2.76114764e+05, 2.53226161e+05, 2.33685237e+05, 2.30698537e+05, 2.11589909e+05, 1.95274640e+05, ], 'CountWeightedLHEEnvelope_rwgt26_pt200to300' : [ 3.36490323e+05, 1.95250380e+05, ], 'CountWeightedFull_rwgt26_pt200to300' : [ 2.53226161e+05, 2.53175293e+05, 2.53291691e+05, ], 'CountWeightedFullLHEWeightScale_rwgt26_pt200to300' : [ 3.36425770e+05, 3.08512102e+05, 2.84680692e+05, 2.76114764e+05, 2.53226161e+05, 2.33685237e+05, 2.30698537e+05, 2.11589909e+05, 1.95274640e+05, ], 'CountWeightedFullLHEEnvelope_rwgt26_pt200to300' : [ 3.36490323e+05, 1.95250380e+05, ], 'CountWeightedL1PrefireNom_rwgt26_pt200to300' : [ 2.44135338e+05, 2.44080887e+05, 2.44203340e+05, ], 'CountWeightedL1Prefire_rwgt26_pt200to300' : [ 2.44135338e+05, 2.41992089e+05, 2.46245030e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt26_pt200to300' : [ 3.24148194e+05, 2.97431470e+05, 2.74593990e+05, 2.66042731e+05, 2.44135338e+05, 2.25408900e+05, 2.22286320e+05, 2.03996447e+05, 1.88361182e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt26_pt200to300' : [ 3.24211998e+05, 1.88337217e+05, ], 'CountWeightedFullL1PrefireNom_rwgt26_pt200to300' : [ 2.44135338e+05, 2.44080887e+05, 2.44203340e+05, ], 'CountWeightedFullL1Prefire_rwgt26_pt200to300' : [ 2.44135338e+05, 2.41992089e+05, 2.46245030e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt26_pt200to300' : [ 3.24148194e+05, 2.97431470e+05, 2.74593990e+05, 2.66042731e+05, 2.44135338e+05, 2.25408900e+05, 2.22286320e+05, 2.03996447e+05, 1.88361182e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt26_pt200to300' : [ 3.24211998e+05, 1.88337217e+05, ], 'CountWeighted_rwgt26_ptGt300' : [ 1.14787252e+05, 1.14754642e+05, 1.14813733e+05, ], 'CountWeightedLHEWeightScale_rwgt26_ptGt300' : [ 1.53939063e+05, 1.38876429e+05, 1.26367001e+05, 1.27222942e+05, 1.14787252e+05, 1.04458562e+05, 1.06912904e+05, 9.64714723e+04, 8.77983077e+04, ], 'CountWeightedLHEEnvelope_rwgt26_ptGt300' : [ 1.53946126e+05, 8.77963250e+04, ], 'CountWeightedFull_rwgt26_ptGt300' : [ 1.14787252e+05, 1.14754642e+05, 1.14813733e+05, ], 'CountWeightedFullLHEWeightScale_rwgt26_ptGt300' : [ 1.53939063e+05, 1.38876429e+05, 1.26367001e+05, 1.27222942e+05, 1.14787252e+05, 1.04458562e+05, 1.06912904e+05, 9.64714723e+04, 8.77983077e+04, ], 'CountWeightedFullLHEEnvelope_rwgt26_ptGt300' : [ 1.53946126e+05, 8.77963250e+04, ], 'CountWeightedL1PrefireNom_rwgt26_ptGt300' : [ 1.10738300e+05, 1.10702746e+05, 1.10766580e+05, ], 'CountWeightedL1Prefire_rwgt26_ptGt300' : [ 1.10738300e+05, 1.09799270e+05, 1.11664449e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt26_ptGt300' : [ 1.48384609e+05, 1.33967929e+05, 1.21980154e+05, 1.22641636e+05, 1.10738300e+05, 1.00839492e+05, 1.03069387e+05, 9.30742286e+04, 8.47615167e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt26_ptGt300' : [ 1.48391541e+05, 8.47595848e+04, ], 'CountWeightedFullL1PrefireNom_rwgt26_ptGt300' : [ 1.10738300e+05, 1.10702746e+05, 1.10766580e+05, ], 'CountWeightedFullL1Prefire_rwgt26_ptGt300' : [ 1.10738300e+05, 1.09799270e+05, 1.11664449e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt26_ptGt300' : [ 1.48384609e+05, 1.33967929e+05, 1.21980154e+05, 1.22641636e+05, 1.10738300e+05, 1.00839492e+05, 1.03069387e+05, 9.30742286e+04, 8.47615167e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt26_ptGt300' : [ 1.48391541e+05, 8.47595848e+04, ], 'CountWeighted_rwgt26_pt300to450' : [ 9.03035546e+04, 9.02632579e+04, 9.03379461e+04, ], 'CountWeightedLHEWeightScale_rwgt26_pt300to450' : [ 1.20881019e+05, 1.09428764e+05, 9.98682629e+04, 9.97416649e+04, 9.03035546e+04, 8.24236499e+04, 8.37056044e+04, 7.57929107e+04, 6.91858516e+04, ], 'CountWeightedLHEEnvelope_rwgt26_pt300to450' : [ 1.20887910e+05, 6.91839254e+04, ], 'CountWeightedFull_rwgt26_pt300to450' : [ 9.03035546e+04, 9.02632579e+04, 9.03379461e+04, ], 'CountWeightedFullLHEWeightScale_rwgt26_pt300to450' : [ 1.20881019e+05, 1.09428764e+05, 9.98682629e+04, 9.97416649e+04, 9.03035546e+04, 8.24236499e+04, 8.37056044e+04, 7.57929107e+04, 6.91858516e+04, ], 'CountWeightedFullLHEEnvelope_rwgt26_pt300to450' : [ 1.20887910e+05, 6.91839254e+04, ], 'CountWeightedL1PrefireNom_rwgt26_pt300to450' : [ 8.70349494e+04, 8.69924273e+04, 8.70703443e+04, ], 'CountWeightedL1Prefire_rwgt26_pt300to450' : [ 8.70349494e+04, 8.62764760e+04, 8.77832035e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt26_pt300to450' : [ 1.16411276e+05, 1.05461744e+05, 9.63095064e+04, 9.60593246e+04, 8.70349494e+04, 7.94910600e+04, 8.06193102e+04, 7.30530576e+04, 6.67274205e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt26_pt300to450' : [ 1.16418036e+05, 6.67255439e+04, ], 'CountWeightedFullL1PrefireNom_rwgt26_pt300to450' : [ 8.70349494e+04, 8.69924273e+04, 8.70703443e+04, ], 'CountWeightedFullL1Prefire_rwgt26_pt300to450' : [ 8.70349494e+04, 8.62764760e+04, 8.77832035e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt26_pt300to450' : [ 1.16411276e+05, 1.05461744e+05, 9.63095064e+04, 9.60593246e+04, 8.70349494e+04, 7.94910600e+04, 8.06193102e+04, 7.30530576e+04, 6.67274205e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt26_pt300to450' : [ 1.16418036e+05, 6.67255439e+04, ], 'CountWeighted_rwgt26_ptGt450' : [ 2.44837080e+04, 2.44915272e+04, 2.44758116e+04, ], 'CountWeightedLHEWeightScale_rwgt26_ptGt450' : [ 3.30580369e+04, 2.94476704e+04, 2.64987393e+04, 2.74812863e+04, 2.44837080e+04, 2.20349043e+04, 2.32072986e+04, 2.06785645e+04, 1.86124513e+04, ], 'CountWeightedLHEEnvelope_rwgt26_ptGt450' : [ 3.30582106e+04, 1.86123943e+04, ], 'CountWeightedFull_rwgt26_ptGt450' : [ 2.44837080e+04, 2.44915272e+04, 2.44758116e+04, ], 'CountWeightedFullLHEWeightScale_rwgt26_ptGt450' : [ 3.30580369e+04, 2.94476704e+04, 2.64987393e+04, 2.74812863e+04, 2.44837080e+04, 2.20349043e+04, 2.32072986e+04, 2.06785645e+04, 1.86124513e+04, ], 'CountWeightedFullLHEEnvelope_rwgt26_ptGt450' : [ 3.30582106e+04, 1.86123943e+04, ], 'CountWeightedL1PrefireNom_rwgt26_ptGt450' : [ 2.37033398e+04, 2.37103913e+04, 2.36962536e+04, ], 'CountWeightedL1Prefire_rwgt26_ptGt450' : [ 2.37033398e+04, 2.35227843e+04, 2.38812465e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt26_ptGt450' : [ 3.19733294e+04, 2.85061957e+04, 2.56706384e+04, 2.65823114e+04, 2.37033398e+04, 2.13484228e+04, 2.24500778e+04, 2.00211690e+04, 1.80340935e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt26_ptGt450' : [ 3.19734984e+04, 1.80340385e+04, ], 'CountWeightedFullL1PrefireNom_rwgt26_ptGt450' : [ 2.37033398e+04, 2.37103913e+04, 2.36962536e+04, ], 'CountWeightedFullL1Prefire_rwgt26_ptGt450' : [ 2.37033398e+04, 2.35227843e+04, 2.38812465e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt26_ptGt450' : [ 3.19733294e+04, 2.85061957e+04, 2.56706384e+04, 2.65823114e+04, 2.37033398e+04, 2.13484228e+04, 2.24500778e+04, 2.00211690e+04, 1.80340935e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt26_ptGt450' : [ 3.19734984e+04, 1.80340385e+04, ], 'CountWeighted_rwgt28' : [ 9.61830195e+06, 9.61819631e+06, 9.61825452e+06, ], 'CountWeightedLHEWeightScale_rwgt28' : [ 1.26659214e+07, 1.17724783e+07, 1.09863050e+07, 1.03482022e+07, 9.61830195e+06, 8.97562053e+06, 8.61384461e+06, 8.00587122e+06, 7.47108478e+06, ], 'CountWeightedLHEEnvelope_rwgt28' : [ 1.26730037e+07, 7.46827658e+06, ], 'CountWeightedFull_rwgt28' : [ 9.61830195e+06, 9.61819631e+06, 9.61825452e+06, ], 'CountWeightedFullLHEWeightScale_rwgt28' : [ 1.26659214e+07, 1.17724783e+07, 1.09863050e+07, 1.03482022e+07, 9.61830195e+06, 8.97562053e+06, 8.61384461e+06, 8.00587122e+06, 7.47108478e+06, ], 'CountWeightedFullLHEEnvelope_rwgt28' : [ 1.26730037e+07, 7.46827658e+06, ], 'CountWeightedL1PrefireNom_rwgt28' : [ 9.30582646e+06, 9.30533659e+06, 9.30618920e+06, ], 'CountWeightedL1Prefire_rwgt28' : [ 9.30582646e+06, 9.22937247e+06, 9.38022506e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt28' : [ 1.22488519e+07, 1.13904591e+07, 1.06341266e+07, 1.00071724e+07, 9.30582646e+06, 8.68765449e+06, 8.32978067e+06, 7.74568529e+06, 7.23122381e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt28' : [ 1.22558597e+07, 7.22844376e+06, ], 'CountWeightedFullL1PrefireNom_rwgt28' : [ 9.30582646e+06, 9.30533659e+06, 9.30618920e+06, ], 'CountWeightedFullL1Prefire_rwgt28' : [ 9.30582646e+06, 9.22937247e+06, 9.38022506e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt28' : [ 1.22488519e+07, 1.13904591e+07, 1.06341266e+07, 1.00071724e+07, 9.30582646e+06, 8.68765449e+06, 8.32978067e+06, 7.74568529e+06, 7.23122381e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt28' : [ 1.22558597e+07, 7.22844376e+06, ], 'CountWeighted_rwgt28_fwd' : [ 1.42680667e+05, 1.42723877e+05, 1.42634857e+05, ], 'CountWeightedLHEWeightScale_rwgt28_fwd' : [ 1.89181897e+05, 1.74794387e+05, 1.62565130e+05, 1.54411579e+05, 1.42680667e+05, 1.32707916e+05, 1.28423774e+05, 1.18675694e+05, 1.10386879e+05, ], 'CountWeightedLHEEnvelope_rwgt28_fwd' : [ 1.89209151e+05, 1.10375153e+05, ], 'CountWeightedFull_rwgt28_fwd' : [ 1.42680667e+05, 1.42723877e+05, 1.42634857e+05, ], 'CountWeightedFullLHEWeightScale_rwgt28_fwd' : [ 1.89181897e+05, 1.74794387e+05, 1.62565130e+05, 1.54411579e+05, 1.42680667e+05, 1.32707916e+05, 1.28423774e+05, 1.18675694e+05, 1.10386879e+05, ], 'CountWeightedFullLHEEnvelope_rwgt28_fwd' : [ 1.89209151e+05, 1.10375153e+05, ], 'CountWeightedL1PrefireNom_rwgt28_fwd' : [ 1.22638135e+05, 1.22631684e+05, 1.22645385e+05, ], 'CountWeightedL1Prefire_rwgt28_fwd' : [ 1.22638135e+05, 1.18199512e+05, 1.27120816e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt28_fwd' : [ 1.62552608e+05, 1.50281724e+05, 1.39843231e+05, 1.32639610e+05, 1.22638135e+05, 1.14128425e+05, 1.10290731e+05, 1.01981974e+05, 9.49113099e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt28_fwd' : [ 1.62576420e+05, 9.49011188e+04, ], 'CountWeightedFullL1PrefireNom_rwgt28_fwd' : [ 1.22638135e+05, 1.22631684e+05, 1.22645385e+05, ], 'CountWeightedFullL1Prefire_rwgt28_fwd' : [ 1.22638135e+05, 1.18199512e+05, 1.27120816e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt28_fwd' : [ 1.62552608e+05, 1.50281724e+05, 1.39843231e+05, 1.32639610e+05, 1.22638135e+05, 1.14128425e+05, 1.10290731e+05, 1.01981974e+05, 9.49113099e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt28_fwd' : [ 1.62576420e+05, 9.49011188e+04, ], 'CountWeighted_rwgt28_pt0to60' : [ 2.14151392e+06, 2.14163032e+06, 2.14141062e+06, ], 'CountWeightedLHEWeightScale_rwgt28_pt0to60' : [ 2.79844380e+06, 2.62518290e+06, 2.46884203e+06, 2.28300415e+06, 2.14151392e+06, 2.01386997e+06, 1.89803765e+06, 1.78030517e+06, 1.67411679e+06, ], 'CountWeightedLHEEnvelope_rwgt28_pt0to60' : [ 2.80102619e+06, 1.67310008e+06, ], 'CountWeightedFull_rwgt28_pt0to60' : [ 2.14151392e+06, 2.14163032e+06, 2.14141062e+06, ], 'CountWeightedFullLHEWeightScale_rwgt28_pt0to60' : [ 2.79844380e+06, 2.62518290e+06, 2.46884203e+06, 2.28300415e+06, 2.14151392e+06, 2.01386997e+06, 1.89803765e+06, 1.78030517e+06, 1.67411679e+06, ], 'CountWeightedFullLHEEnvelope_rwgt28_pt0to60' : [ 2.80102619e+06, 1.67310008e+06, ], 'CountWeightedL1PrefireNom_rwgt28_pt0to60' : [ 2.08355686e+06, 2.08359449e+06, 2.08354992e+06, ], 'CountWeightedL1Prefire_rwgt28_pt0to60' : [ 2.08355686e+06, 2.06874459e+06, 2.09776968e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt28_pt0to60' : [ 2.72177031e+06, 2.55421255e+06, 2.40284164e+06, 2.22038480e+06, 2.08355686e+06, 1.95997588e+06, 1.84593130e+06, 1.73208258e+06, 1.62927610e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt28_pt0to60' : [ 2.72432695e+06, 1.62826835e+06, ], 'CountWeightedFullL1PrefireNom_rwgt28_pt0to60' : [ 2.08355686e+06, 2.08359449e+06, 2.08354992e+06, ], 'CountWeightedFullL1Prefire_rwgt28_pt0to60' : [ 2.08355686e+06, 2.06874459e+06, 2.09776968e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt28_pt0to60' : [ 2.72177031e+06, 2.55421255e+06, 2.40284164e+06, 2.22038480e+06, 2.08355686e+06, 1.95997588e+06, 1.84593130e+06, 1.73208258e+06, 1.62927610e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt28_pt0to60' : [ 2.72432695e+06, 1.62826835e+06, ], 'CountWeighted_rwgt28_pt60to120' : [ 3.39711404e+06, 3.39731944e+06, 3.39683797e+06, ], 'CountWeightedLHEWeightScale_rwgt28_pt60to120' : [ 4.46226686e+06, 4.16683909e+06, 3.90318250e+06, 3.63799933e+06, 3.39711404e+06, 3.18216202e+06, 3.02296507e+06, 2.82277478e+06, 2.64416436e+06, ], 'CountWeightedLHEEnvelope_rwgt28_pt60to120' : [ 4.46521434e+06, 2.64299966e+06, ], 'CountWeightedFull_rwgt28_pt60to120' : [ 3.39711404e+06, 3.39731944e+06, 3.39683797e+06, ], 'CountWeightedFullLHEWeightScale_rwgt28_pt60to120' : [ 4.46226686e+06, 4.16683909e+06, 3.90318250e+06, 3.63799933e+06, 3.39711404e+06, 3.18216202e+06, 3.02296507e+06, 2.82277478e+06, 2.64416436e+06, ], 'CountWeightedFullLHEEnvelope_rwgt28_pt60to120' : [ 4.46521434e+06, 2.64299966e+06, ], 'CountWeightedL1PrefireNom_rwgt28_pt60to120' : [ 3.29711935e+06, 3.29715549e+06, 3.29704666e+06, ], 'CountWeightedL1Prefire_rwgt28_pt60to120' : [ 3.29711935e+06, 3.27211248e+06, 3.32131019e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt28_pt60to120' : [ 4.32929952e+06, 4.04432523e+06, 3.78968335e+06, 3.52947104e+06, 3.29711935e+06, 3.08952538e+06, 2.93270009e+06, 2.73960612e+06, 2.56711731e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt28_pt60to120' : [ 4.33221652e+06, 2.56596358e+06, ], 'CountWeightedFullL1PrefireNom_rwgt28_pt60to120' : [ 3.29711935e+06, 3.29715549e+06, 3.29704666e+06, ], 'CountWeightedFullL1Prefire_rwgt28_pt60to120' : [ 3.29711935e+06, 3.27211248e+06, 3.32131019e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt28_pt60to120' : [ 4.32929952e+06, 4.04432523e+06, 3.78968335e+06, 3.52947104e+06, 3.29711935e+06, 3.08952538e+06, 2.93270009e+06, 2.73960612e+06, 2.56711731e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt28_pt60to120' : [ 4.33221652e+06, 2.56596358e+06, ], 'CountWeighted_rwgt28_pt120to200' : [ 2.46464288e+06, 2.46457742e+06, 2.46463812e+06, ], 'CountWeightedLHEWeightScale_rwgt28_pt120to200' : [ 3.25459550e+06, 3.01608389e+06, 2.80751524e+06, 2.65943437e+06, 2.46464288e+06, 2.29430506e+06, 2.21396039e+06, 2.05185838e+06, 1.91012036e+06, ], 'CountWeightedLHEEnvelope_rwgt28_pt120to200' : [ 3.25584050e+06, 1.90961144e+06, ], 'CountWeightedFull_rwgt28_pt120to200' : [ 2.46464288e+06, 2.46457742e+06, 2.46463812e+06, ], 'CountWeightedFullLHEWeightScale_rwgt28_pt120to200' : [ 3.25459550e+06, 3.01608389e+06, 2.80751524e+06, 2.65943437e+06, 2.46464288e+06, 2.29430506e+06, 2.21396039e+06, 2.05185838e+06, 1.91012036e+06, ], 'CountWeightedFullLHEEnvelope_rwgt28_pt120to200' : [ 3.25584050e+06, 1.90961144e+06, ], 'CountWeightedL1PrefireNom_rwgt28_pt120to200' : [ 2.38283878e+06, 2.38270404e+06, 2.38292569e+06, ], 'CountWeightedL1Prefire_rwgt28_pt120to200' : [ 2.38283878e+06, 2.36301044e+06, 2.40221443e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt28_pt120to200' : [ 3.14512494e+06, 2.91603153e+06, 2.71545063e+06, 2.56993744e+06, 2.38283878e+06, 2.21903144e+06, 2.13942409e+06, 1.98372865e+06, 1.84742471e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt28_pt120to200' : [ 3.14635643e+06, 1.84692096e+06, ], 'CountWeightedFullL1PrefireNom_rwgt28_pt120to200' : [ 2.38283878e+06, 2.38270404e+06, 2.38292569e+06, ], 'CountWeightedFullL1Prefire_rwgt28_pt120to200' : [ 2.38283878e+06, 2.36301044e+06, 2.40221443e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt28_pt120to200' : [ 3.14512494e+06, 2.91603153e+06, 2.71545063e+06, 2.56993744e+06, 2.38283878e+06, 2.21903144e+06, 2.13942409e+06, 1.98372865e+06, 1.84742471e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt28_pt120to200' : [ 3.14635643e+06, 1.84692096e+06, ], 'CountWeighted_rwgt28_pt200to300' : [ 1.01290464e+06, 1.01270117e+06, 1.01316676e+06, ], 'CountWeightedLHEWeightScale_rwgt28_pt200to300' : [ 1.34570308e+06, 1.23404841e+06, 1.13872277e+06, 1.10445906e+06, 1.01290464e+06, 9.34740948e+05, 9.22794148e+05, 8.46359636e+05, 7.81098560e+05, ], 'CountWeightedLHEEnvelope_rwgt28_pt200to300' : [ 1.34596129e+06, 7.81001521e+05, ], 'CountWeightedFull_rwgt28_pt200to300' : [ 1.01290464e+06, 1.01270117e+06, 1.01316676e+06, ], 'CountWeightedFullLHEWeightScale_rwgt28_pt200to300' : [ 1.34570308e+06, 1.23404841e+06, 1.13872277e+06, 1.10445906e+06, 1.01290464e+06, 9.34740948e+05, 9.22794148e+05, 8.46359636e+05, 7.81098560e+05, ], 'CountWeightedFullLHEEnvelope_rwgt28_pt200to300' : [ 1.34596129e+06, 7.81001521e+05, ], 'CountWeightedL1PrefireNom_rwgt28_pt200to300' : [ 9.76541350e+05, 9.76323549e+05, 9.76813362e+05, ], 'CountWeightedL1Prefire_rwgt28_pt200to300' : [ 9.76541350e+05, 9.67968355e+05, 9.84980119e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt28_pt200to300' : [ 1.29659278e+06, 1.18972588e+06, 1.09837596e+06, 1.06417092e+06, 9.76541350e+05, 9.01635601e+05, 8.89145278e+05, 8.15985788e+05, 7.53444728e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt28_pt200to300' : [ 1.29684799e+06, 7.53348867e+05, ], 'CountWeightedFullL1PrefireNom_rwgt28_pt200to300' : [ 9.76541350e+05, 9.76323549e+05, 9.76813362e+05, ], 'CountWeightedFullL1Prefire_rwgt28_pt200to300' : [ 9.76541350e+05, 9.67968355e+05, 9.84980119e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt28_pt200to300' : [ 1.29659278e+06, 1.18972588e+06, 1.09837596e+06, 1.06417092e+06, 9.76541350e+05, 9.01635601e+05, 8.89145278e+05, 8.15985788e+05, 7.53444728e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt28_pt200to300' : [ 1.29684799e+06, 7.53348867e+05, ], 'CountWeighted_rwgt28_ptGt300' : [ 4.59149008e+05, 4.59018567e+05, 4.59254932e+05, ], 'CountWeightedLHEWeightScale_rwgt28_ptGt300' : [ 6.15756253e+05, 5.55505714e+05, 5.05468003e+05, 5.08891769e+05, 4.59149008e+05, 4.17834249e+05, 4.27651618e+05, 3.85885889e+05, 3.51193231e+05, ], 'CountWeightedLHEEnvelope_rwgt28_ptGt300' : [ 6.15784504e+05, 3.51185300e+05, ], 'CountWeightedFull_rwgt28_ptGt300' : [ 4.59149008e+05, 4.59018567e+05, 4.59254932e+05, ], 'CountWeightedFullLHEWeightScale_rwgt28_ptGt300' : [ 6.15756253e+05, 5.55505714e+05, 5.05468003e+05, 5.08891769e+05, 4.59149008e+05, 4.17834249e+05, 4.27651618e+05, 3.85885889e+05, 3.51193231e+05, ], 'CountWeightedFullLHEEnvelope_rwgt28_ptGt300' : [ 6.15784504e+05, 3.51185300e+05, ], 'CountWeightedL1PrefireNom_rwgt28_ptGt300' : [ 4.42953199e+05, 4.42810985e+05, 4.43066321e+05, ], 'CountWeightedL1Prefire_rwgt28_ptGt300' : [ 4.42953199e+05, 4.39197081e+05, 4.46657796e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt28_ptGt300' : [ 5.93538437e+05, 5.35871715e+05, 4.87920616e+05, 4.90566544e+05, 4.42953199e+05, 4.03357966e+05, 4.12277546e+05, 3.72296914e+05, 3.39046067e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt28_ptGt300' : [ 5.93566165e+05, 3.39038339e+05, ], 'CountWeightedFullL1PrefireNom_rwgt28_ptGt300' : [ 4.42953199e+05, 4.42810985e+05, 4.43066321e+05, ], 'CountWeightedFullL1Prefire_rwgt28_ptGt300' : [ 4.42953199e+05, 4.39197081e+05, 4.46657796e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt28_ptGt300' : [ 5.93538437e+05, 5.35871715e+05, 4.87920616e+05, 4.90566544e+05, 4.42953199e+05, 4.03357966e+05, 4.12277546e+05, 3.72296914e+05, 3.39046067e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt28_ptGt300' : [ 5.93566165e+05, 3.39038339e+05, ], 'CountWeighted_rwgt28_pt300to450' : [ 3.61214218e+05, 3.61053032e+05, 3.61351784e+05, ], 'CountWeightedLHEWeightScale_rwgt28_pt300to450' : [ 4.83524077e+05, 4.37715058e+05, 3.99473052e+05, 3.98966659e+05, 3.61214218e+05, 3.29694599e+05, 3.34822417e+05, 3.03171643e+05, 2.76743406e+05, ], 'CountWeightedLHEEnvelope_rwgt28_pt300to450' : [ 4.83551642e+05, 2.76735701e+05, ], 'CountWeightedFull_rwgt28_pt300to450' : [ 3.61214218e+05, 3.61053032e+05, 3.61351784e+05, ], 'CountWeightedFullLHEWeightScale_rwgt28_pt300to450' : [ 4.83524077e+05, 4.37715058e+05, 3.99473052e+05, 3.98966659e+05, 3.61214218e+05, 3.29694599e+05, 3.34822417e+05, 3.03171643e+05, 2.76743406e+05, ], 'CountWeightedFullLHEEnvelope_rwgt28_pt300to450' : [ 4.83551642e+05, 2.76735701e+05, ], 'CountWeightedL1PrefireNom_rwgt28_pt300to450' : [ 3.48139798e+05, 3.47969709e+05, 3.48281377e+05, ], 'CountWeightedL1Prefire_rwgt28_pt300to450' : [ 3.48139798e+05, 3.45105904e+05, 3.51132814e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt28_pt300to450' : [ 4.65645102e+05, 4.21846975e+05, 3.85238026e+05, 3.84237299e+05, 3.48139798e+05, 3.17964240e+05, 3.22477241e+05, 2.92212230e+05, 2.66909682e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt28_pt300to450' : [ 4.65672143e+05, 2.66902176e+05, ], 'CountWeightedFullL1PrefireNom_rwgt28_pt300to450' : [ 3.48139798e+05, 3.47969709e+05, 3.48281377e+05, ], 'CountWeightedFullL1Prefire_rwgt28_pt300to450' : [ 3.48139798e+05, 3.45105904e+05, 3.51132814e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt28_pt300to450' : [ 4.65645102e+05, 4.21846975e+05, 3.85238026e+05, 3.84237299e+05, 3.48139798e+05, 3.17964240e+05, 3.22477241e+05, 2.92212230e+05, 2.66909682e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt28_pt300to450' : [ 4.65672143e+05, 2.66902176e+05, ], 'CountWeighted_rwgt28_ptGt450' : [ 9.79348319e+04, 9.79661089e+04, 9.79032464e+04, ], 'CountWeightedLHEWeightScale_rwgt28_ptGt450' : [ 1.32232148e+05, 1.17790682e+05, 1.05994957e+05, 1.09925145e+05, 9.79348319e+04, 8.81396170e+04, 9.28291945e+04, 8.27142578e+04, 7.44498051e+04, ], 'CountWeightedLHEEnvelope_rwgt28_ptGt450' : [ 1.32232842e+05, 7.44495772e+04, ], 'CountWeightedFull_rwgt28_ptGt450' : [ 9.79348319e+04, 9.79661089e+04, 9.79032464e+04, ], 'CountWeightedFullLHEWeightScale_rwgt28_ptGt450' : [ 1.32232148e+05, 1.17790682e+05, 1.05994957e+05, 1.09925145e+05, 9.79348319e+04, 8.81396170e+04, 9.28291945e+04, 8.27142578e+04, 7.44498051e+04, ], 'CountWeightedFullLHEEnvelope_rwgt28_ptGt450' : [ 1.32232842e+05, 7.44495772e+04, ], 'CountWeightedL1PrefireNom_rwgt28_ptGt450' : [ 9.48133592e+04, 9.48415652e+04, 9.47850145e+04, ], 'CountWeightedL1Prefire_rwgt28_ptGt450' : [ 9.48133592e+04, 9.40911374e+04, 9.55249860e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt28_ptGt450' : [ 1.27893318e+05, 1.14024783e+05, 1.02682553e+05, 1.06329246e+05, 9.48133592e+04, 8.53936913e+04, 8.98003112e+04, 8.00846761e+04, 7.21363738e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt28_ptGt450' : [ 1.27893994e+05, 7.21361540e+04, ], 'CountWeightedFullL1PrefireNom_rwgt28_ptGt450' : [ 9.48133592e+04, 9.48415652e+04, 9.47850145e+04, ], 'CountWeightedFullL1Prefire_rwgt28_ptGt450' : [ 9.48133592e+04, 9.40911374e+04, 9.55249860e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt28_ptGt450' : [ 1.27893318e+05, 1.14024783e+05, 1.02682553e+05, 1.06329246e+05, 9.48133592e+04, 8.53936913e+04, 8.98003112e+04, 8.00846761e+04, 7.21363738e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt28_ptGt450' : [ 1.27893994e+05, 7.21361540e+04, ], 'CountWeighted_rwgt29' : [ 1.50288663e+07, 1.50277603e+07, 1.50282198e+07, ], 'CountWeightedLHEWeightScale_rwgt29' : [ 1.97905318e+07, 1.83943968e+07, 1.71661178e+07, 1.61690663e+07, 1.50288663e+07, 1.40244013e+07, 1.34591104e+07, 1.25092091e+07, 1.16735834e+07, ], 'CountWeightedLHEEnvelope_rwgt29' : [ 1.98016061e+07, 1.16691982e+07, ], 'CountWeightedFull_rwgt29' : [ 1.50288663e+07, 1.50277603e+07, 1.50282198e+07, ], 'CountWeightedFullLHEWeightScale_rwgt29' : [ 1.97905318e+07, 1.83943968e+07, 1.71661178e+07, 1.61690663e+07, 1.50288663e+07, 1.40244013e+07, 1.34591104e+07, 1.25092091e+07, 1.16735834e+07, ], 'CountWeightedFullLHEEnvelope_rwgt29' : [ 1.98016061e+07, 1.16691982e+07, ], 'CountWeightedL1PrefireNom_rwgt29' : [ 1.45404483e+07, 1.45392623e+07, 1.45408162e+07, ], 'CountWeightedL1Prefire_rwgt29' : [ 1.45404483e+07, 1.44210603e+07, 1.46567348e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt29' : [ 1.91388586e+07, 1.77975260e+07, 1.66158338e+07, 1.56362117e+07, 1.45404483e+07, 1.35744569e+07, 1.30152688e+07, 1.21026785e+07, 1.12988001e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt29' : [ 1.91498125e+07, 1.12944583e+07, ], 'CountWeightedFullL1PrefireNom_rwgt29' : [ 1.45404483e+07, 1.45392623e+07, 1.45408162e+07, ], 'CountWeightedFullL1Prefire_rwgt29' : [ 1.45404483e+07, 1.44210603e+07, 1.46567348e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt29' : [ 1.91388586e+07, 1.77975260e+07, 1.66158338e+07, 1.56362117e+07, 1.45404483e+07, 1.35744569e+07, 1.30152688e+07, 1.21026785e+07, 1.12988001e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt29' : [ 1.91498125e+07, 1.12944583e+07, ], 'CountWeighted_rwgt29_fwd' : [ 2.22938655e+05, 2.23005912e+05, 2.22867024e+05, ], 'CountWeightedLHEWeightScale_rwgt29_fwd' : [ 2.95596685e+05, 2.73116225e+05, 2.54008033e+05, 2.41268112e+05, 2.22938655e+05, 2.07356099e+05, 2.00662159e+05, 1.85430796e+05, 1.72479481e+05, ], 'CountWeightedLHEEnvelope_rwgt29_fwd' : [ 2.95639270e+05, 1.72461160e+05, ], 'CountWeightedFull_rwgt29_fwd' : [ 2.22938655e+05, 2.23005912e+05, 2.22867024e+05, ], 'CountWeightedFullLHEWeightScale_rwgt29_fwd' : [ 2.95596685e+05, 2.73116225e+05, 2.54008033e+05, 2.41268112e+05, 2.22938655e+05, 2.07356099e+05, 2.00662159e+05, 1.85430796e+05, 1.72479481e+05, ], 'CountWeightedFullLHEEnvelope_rwgt29_fwd' : [ 2.95639270e+05, 1.72461160e+05, ], 'CountWeightedL1PrefireNom_rwgt29_fwd' : [ 1.91622065e+05, 1.91612015e+05, 1.91633414e+05, ], 'CountWeightedL1Prefire_rwgt29_fwd' : [ 1.91622065e+05, 1.84686723e+05, 1.98626268e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt29_fwd' : [ 2.53988452e+05, 2.34815183e+05, 2.18505055e+05, 2.07249382e+05, 1.91622065e+05, 1.78325666e+05, 1.72329263e+05, 1.59346832e+05, 1.48298919e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt29_fwd' : [ 2.54025659e+05, 1.48282997e+05, ], 'CountWeightedFullL1PrefireNom_rwgt29_fwd' : [ 1.91622065e+05, 1.91612015e+05, 1.91633414e+05, ], 'CountWeightedFullL1Prefire_rwgt29_fwd' : [ 1.91622065e+05, 1.84686723e+05, 1.98626268e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt29_fwd' : [ 2.53988452e+05, 2.34815183e+05, 2.18505055e+05, 2.07249382e+05, 1.91622065e+05, 1.78325666e+05, 1.72329263e+05, 1.59346832e+05, 1.48298919e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt29_fwd' : [ 2.54025659e+05, 1.48282997e+05, ], 'CountWeighted_rwgt29_pt0to60' : [ 3.34613676e+06, 3.34630204e+06, 3.34592283e+06, ], 'CountWeightedLHEWeightScale_rwgt29_pt0to60' : [ 4.37256890e+06, 4.10184939e+06, 3.85756509e+06, 3.56719308e+06, 3.34613676e+06, 3.14667209e+06, 2.96568368e+06, 2.78172745e+06, 2.61580737e+06, ], 'CountWeightedLHEEnvelope_rwgt29_pt0to60' : [ 4.37660365e+06, 2.61421905e+06, ], 'CountWeightedFull_rwgt29_pt0to60' : [ 3.34613676e+06, 3.34630204e+06, 3.34592283e+06, ], 'CountWeightedFullLHEWeightScale_rwgt29_pt0to60' : [ 4.37256890e+06, 4.10184939e+06, 3.85756509e+06, 3.56719308e+06, 3.34613676e+06, 3.14667209e+06, 2.96568368e+06, 2.78172745e+06, 2.61580737e+06, ], 'CountWeightedFullLHEEnvelope_rwgt29_pt0to60' : [ 4.37660365e+06, 2.61421905e+06, ], 'CountWeightedL1PrefireNom_rwgt29_pt0to60' : [ 3.25557363e+06, 3.25562079e+06, 3.25552610e+06, ], 'CountWeightedL1Prefire_rwgt29_pt0to60' : [ 3.25557363e+06, 3.23242913e+06, 3.27778205e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt29_pt0to60' : [ 4.25276620e+06, 3.99095779e+06, 3.75443972e+06, 3.46935021e+06, 3.25557363e+06, 3.06246238e+06, 2.88426761e+06, 2.70637945e+06, 2.54574404e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt29_pt0to60' : [ 4.25676113e+06, 2.54416952e+06, ], 'CountWeightedFullL1PrefireNom_rwgt29_pt0to60' : [ 3.25557363e+06, 3.25562079e+06, 3.25552610e+06, ], 'CountWeightedFullL1Prefire_rwgt29_pt0to60' : [ 3.25557363e+06, 3.23242913e+06, 3.27778205e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt29_pt0to60' : [ 4.25276620e+06, 3.99095779e+06, 3.75443972e+06, 3.46935021e+06, 3.25557363e+06, 3.06246238e+06, 2.88426761e+06, 2.70637945e+06, 2.54574404e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt29_pt0to60' : [ 4.25676113e+06, 2.54416952e+06, ], 'CountWeighted_rwgt29_pt60to120' : [ 5.30798581e+06, 5.30828680e+06, 5.30757268e+06, ], 'CountWeightedLHEWeightScale_rwgt29_pt60to120' : [ 6.97229312e+06, 6.51068687e+06, 6.09872255e+06, 5.68437455e+06, 5.30798581e+06, 4.97212694e+06, 4.72338173e+06, 4.41058599e+06, 4.13150756e+06, ], 'CountWeightedLHEEnvelope_rwgt29_pt60to120' : [ 6.97689809e+06, 4.12968767e+06, ], 'CountWeightedFull_rwgt29_pt60to120' : [ 5.30798581e+06, 5.30828680e+06, 5.30757268e+06, ], 'CountWeightedFullLHEWeightScale_rwgt29_pt60to120' : [ 6.97229312e+06, 6.51068687e+06, 6.09872255e+06, 5.68437455e+06, 5.30798581e+06, 4.97212694e+06, 4.72338173e+06, 4.41058599e+06, 4.13150756e+06, ], 'CountWeightedFullLHEEnvelope_rwgt29_pt60to120' : [ 6.97689809e+06, 4.12968767e+06, ], 'CountWeightedL1PrefireNom_rwgt29_pt60to120' : [ 5.15174467e+06, 5.15179442e+06, 5.15163907e+06, ], 'CountWeightedL1Prefire_rwgt29_pt60to120' : [ 5.15174467e+06, 5.11266902e+06, 5.18955088e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt29_pt60to120' : [ 6.76453204e+06, 6.31925533e+06, 5.92138176e+06, 5.51479880e+06, 5.15174467e+06, 4.82738076e+06, 4.58234206e+06, 4.28063500e+06, 4.01112183e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt29_pt60to120' : [ 6.76909000e+06, 4.00931919e+06, ], 'CountWeightedFullL1PrefireNom_rwgt29_pt60to120' : [ 5.15174467e+06, 5.15179442e+06, 5.15163907e+06, ], 'CountWeightedFullL1Prefire_rwgt29_pt60to120' : [ 5.15174467e+06, 5.11266902e+06, 5.18955088e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt29_pt60to120' : [ 6.76453204e+06, 6.31925533e+06, 5.92138176e+06, 5.51479880e+06, 5.15174467e+06, 4.82738076e+06, 4.58234206e+06, 4.28063500e+06, 4.01112183e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt29_pt60to120' : [ 6.76909000e+06, 4.00931919e+06, ], 'CountWeighted_rwgt29_pt120to200' : [ 3.85101364e+06, 3.85090157e+06, 3.85097545e+06, ], 'CountWeightedLHEWeightScale_rwgt29_pt120to200' : [ 5.08530574e+06, 4.71262791e+06, 4.38674177e+06, 4.15536704e+06, 3.85101364e+06, 3.58485176e+06, 3.45931272e+06, 3.20603041e+06, 2.98456299e+06, ], 'CountWeightedLHEEnvelope_rwgt29_pt120to200' : [ 5.08725112e+06, 2.98376771e+06, ], 'CountWeightedFull_rwgt29_pt120to200' : [ 3.85101364e+06, 3.85090157e+06, 3.85097545e+06, ], 'CountWeightedFullLHEWeightScale_rwgt29_pt120to200' : [ 5.08530574e+06, 4.71262791e+06, 4.38674177e+06, 4.15536704e+06, 3.85101364e+06, 3.58485176e+06, 3.45931272e+06, 3.20603041e+06, 2.98456299e+06, ], 'CountWeightedFullLHEEnvelope_rwgt29_pt120to200' : [ 5.08725112e+06, 2.98376771e+06, ], 'CountWeightedL1PrefireNom_rwgt29_pt120to200' : [ 3.72319488e+06, 3.72297720e+06, 3.72330453e+06, ], 'CountWeightedL1Prefire_rwgt29_pt120to200' : [ 3.72319488e+06, 3.69221382e+06, 3.75347164e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt29_pt120to200' : [ 4.91425724e+06, 4.55629650e+06, 4.24289163e+06, 4.01552798e+06, 3.72319488e+06, 3.46723606e+06, 3.34284964e+06, 3.09957693e+06, 2.88660098e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt29_pt120to200' : [ 4.91618159e+06, 2.88581377e+06, ], 'CountWeightedFullL1PrefireNom_rwgt29_pt120to200' : [ 3.72319488e+06, 3.72297720e+06, 3.72330453e+06, ], 'CountWeightedFullL1Prefire_rwgt29_pt120to200' : [ 3.72319488e+06, 3.69221382e+06, 3.75347164e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt29_pt120to200' : [ 4.91425724e+06, 4.55629650e+06, 4.24289163e+06, 4.01552798e+06, 3.72319488e+06, 3.46723606e+06, 3.34284964e+06, 3.09957693e+06, 2.88660098e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt29_pt120to200' : [ 4.91618159e+06, 2.88581377e+06, ], 'CountWeighted_rwgt29_pt200to300' : [ 1.58266032e+06, 1.58233729e+06, 1.58305715e+06, ], 'CountWeightedLHEWeightScale_rwgt29_pt200to300' : [ 2.10266105e+06, 1.92820040e+06, 1.77925449e+06, 1.72571729e+06, 1.58266032e+06, 1.46053253e+06, 1.44186565e+06, 1.32243705e+06, 1.22046639e+06, ], 'CountWeightedLHEEnvelope_rwgt29_pt200to300' : [ 2.10306456e+06, 1.22031476e+06, ], 'CountWeightedFull_rwgt29_pt200to300' : [ 1.58266032e+06, 1.58233729e+06, 1.58305715e+06, ], 'CountWeightedFullLHEWeightScale_rwgt29_pt200to300' : [ 2.10266105e+06, 1.92820040e+06, 1.77925449e+06, 1.72571729e+06, 1.58266032e+06, 1.46053253e+06, 1.44186565e+06, 1.32243705e+06, 1.22046639e+06, ], 'CountWeightedFullLHEEnvelope_rwgt29_pt200to300' : [ 2.10306456e+06, 1.22031476e+06, ], 'CountWeightedL1PrefireNom_rwgt29_pt200to300' : [ 1.52584361e+06, 1.52550037e+06, 1.52626154e+06, ], 'CountWeightedL1Prefire_rwgt29_pt200to300' : [ 1.52584361e+06, 1.51244857e+06, 1.53902887e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt29_pt200to300' : [ 2.02592587e+06, 1.85894624e+06, 1.71621257e+06, 1.66276694e+06, 1.52584361e+06, 1.40880572e+06, 1.38928949e+06, 1.27497819e+06, 1.17725732e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt29_pt200to300' : [ 2.02632460e+06, 1.17710754e+06, ], 'CountWeightedFullL1PrefireNom_rwgt29_pt200to300' : [ 1.52584361e+06, 1.52550037e+06, 1.52626154e+06, ], 'CountWeightedFullL1Prefire_rwgt29_pt200to300' : [ 1.52584361e+06, 1.51244857e+06, 1.53902887e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt29_pt200to300' : [ 2.02592587e+06, 1.85894624e+06, 1.71621257e+06, 1.66276694e+06, 1.52584361e+06, 1.40880572e+06, 1.38928949e+06, 1.27497819e+06, 1.17725732e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt29_pt200to300' : [ 2.02632460e+06, 1.17710754e+06, ], 'CountWeighted_rwgt29_ptGt300' : [ 7.17418076e+05, 7.17224090e+05, 7.17586783e+05, ], 'CountWeightedLHEWeightScale_rwgt29_ptGt300' : [ 9.62118987e+05, 8.67977827e+05, 7.89793763e+05, 7.95143471e+05, 7.17418076e+05, 6.52865998e+05, 6.68205644e+05, 6.02946861e+05, 5.48739369e+05, ], 'CountWeightedLHEEnvelope_rwgt29_ptGt300' : [ 9.62163145e+05, 5.48726974e+05, ], 'CountWeightedFull_rwgt29_ptGt300' : [ 7.17418076e+05, 7.17224090e+05, 7.17586783e+05, ], 'CountWeightedFullLHEWeightScale_rwgt29_ptGt300' : [ 9.62118987e+05, 8.67977827e+05, 7.89793763e+05, 7.95143471e+05, 7.17418076e+05, 6.52865998e+05, 6.68205644e+05, 6.02946861e+05, 5.48739369e+05, ], 'CountWeightedFullLHEEnvelope_rwgt29_ptGt300' : [ 9.62163145e+05, 5.48726974e+05, ], 'CountWeightedL1PrefireNom_rwgt29_ptGt300' : [ 6.92112885e+05, 6.91896851e+05, 6.92291597e+05, ], 'CountWeightedL1Prefire_rwgt29_ptGt300' : [ 6.92112885e+05, 6.86244216e+05, 6.97901401e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt29_ptGt300' : [ 9.27403676e+05, 8.37299678e+05, 7.62375906e+05, 7.66510314e+05, 6.92112885e+05, 6.30246835e+05, 6.44183638e+05, 5.81714075e+05, 5.29759429e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt29_ptGt300' : [ 9.27446994e+05, 5.29747357e+05, ], 'CountWeightedFullL1PrefireNom_rwgt29_ptGt300' : [ 6.92112885e+05, 6.91896851e+05, 6.92291597e+05, ], 'CountWeightedFullL1Prefire_rwgt29_ptGt300' : [ 6.92112885e+05, 6.86244216e+05, 6.97901401e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt29_ptGt300' : [ 9.27403676e+05, 8.37299678e+05, 7.62375906e+05, 7.66510314e+05, 6.92112885e+05, 6.30246835e+05, 6.44183638e+05, 5.81714075e+05, 5.29759429e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt29_ptGt300' : [ 9.27446994e+05, 5.29747357e+05, ], 'CountWeighted_rwgt29_pt300to450' : [ 5.64396088e+05, 5.64148761e+05, 5.64612971e+05, ], 'CountWeightedLHEWeightScale_rwgt29_pt300to450' : [ 7.55506360e+05, 6.83929849e+05, 6.24176627e+05, 6.23385397e+05, 5.64396088e+05, 5.15147852e+05, 5.23160064e+05, 4.73705789e+05, 4.32411526e+05, ], 'CountWeightedLHEEnvelope_rwgt29_pt300to450' : [ 7.55549420e+05, 4.32399496e+05, ], 'CountWeightedFull_rwgt29_pt300to450' : [ 5.64396088e+05, 5.64148761e+05, 5.64612971e+05, ], 'CountWeightedFullLHEWeightScale_rwgt29_pt300to450' : [ 7.55506360e+05, 6.83929849e+05, 6.24176627e+05, 6.23385397e+05, 5.64396088e+05, 5.15147852e+05, 5.23160064e+05, 4.73705789e+05, 4.32411526e+05, ], 'CountWeightedFullLHEEnvelope_rwgt29_pt300to450' : [ 7.55549420e+05, 4.32399496e+05, ], 'CountWeightedL1PrefireNom_rwgt29_pt300to450' : [ 5.43967794e+05, 5.43704693e+05, 5.44190048e+05, ], 'CountWeightedL1Prefire_rwgt29_pt300to450' : [ 5.43967794e+05, 5.39227442e+05, 5.48644351e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt29_pt300to450' : [ 7.27570469e+05, 6.59135951e+05, 6.01934415e+05, 6.00370802e+05, 5.43967794e+05, 4.96819181e+05, 5.03870695e+05, 4.56581684e+05, 4.17046351e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt29_pt300to450' : [ 7.27612722e+05, 4.17034627e+05, ], 'CountWeightedFullL1PrefireNom_rwgt29_pt300to450' : [ 5.43967794e+05, 5.43704693e+05, 5.44190048e+05, ], 'CountWeightedFullL1Prefire_rwgt29_pt300to450' : [ 5.43967794e+05, 5.39227442e+05, 5.48644351e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt29_pt300to450' : [ 7.27570469e+05, 6.59135951e+05, 6.01934415e+05, 6.00370802e+05, 5.43967794e+05, 4.96819181e+05, 5.03870695e+05, 4.56581684e+05, 4.17046351e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt29_pt300to450' : [ 7.27612722e+05, 4.17034627e+05, ], 'CountWeighted_rwgt29_ptGt450' : [ 1.53023133e+05, 1.53071989e+05, 1.52973938e+05, ], 'CountWeightedLHEWeightScale_rwgt29_ptGt450' : [ 2.06612725e+05, 1.84047953e+05, 1.65617122e+05, 1.71758049e+05, 1.53023133e+05, 1.37718147e+05, 1.45045616e+05, 1.29241037e+05, 1.16327817e+05, ], 'CountWeightedLHEEnvelope_rwgt29_ptGt450' : [ 2.06613811e+05, 1.16327461e+05, ], 'CountWeightedFull_rwgt29_ptGt450' : [ 1.53023133e+05, 1.53071989e+05, 1.52973938e+05, ], 'CountWeightedFullLHEWeightScale_rwgt29_ptGt450' : [ 2.06612725e+05, 1.84047953e+05, 1.65617122e+05, 1.71758049e+05, 1.53023133e+05, 1.37718147e+05, 1.45045616e+05, 1.29241037e+05, 1.16327817e+05, ], 'CountWeightedFullLHEEnvelope_rwgt29_ptGt450' : [ 2.06613811e+05, 1.16327461e+05, ], 'CountWeightedL1PrefireNom_rwgt29_ptGt450' : [ 1.48145857e+05, 1.48189912e+05, 1.48101665e+05, ], 'CountWeightedL1Prefire_rwgt29_ptGt450' : [ 1.48145857e+05, 1.47017380e+05, 1.49257770e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt29_ptGt450' : [ 1.99833309e+05, 1.78163724e+05, 1.60441494e+05, 1.66139457e+05, 1.48145857e+05, 1.33427642e+05, 1.40312986e+05, 1.25132317e+05, 1.12713079e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt29_ptGt450' : [ 1.99834367e+05, 1.12712736e+05, ], 'CountWeightedFullL1PrefireNom_rwgt29_ptGt450' : [ 1.48145857e+05, 1.48189912e+05, 1.48101665e+05, ], 'CountWeightedFullL1Prefire_rwgt29_ptGt450' : [ 1.48145857e+05, 1.47017380e+05, 1.49257770e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt29_ptGt450' : [ 1.99833309e+05, 1.78163724e+05, 1.60441494e+05, 1.66139457e+05, 1.48145857e+05, 1.33427642e+05, 1.40312986e+05, 1.25132317e+05, 1.12713079e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt29_ptGt450' : [ 1.99834367e+05, 1.12712736e+05, ], 'CountWeighted_rwgt31' : [ 3.84732078e+07, 3.84727852e+07, 3.84730181e+07, ], 'CountWeightedLHEWeightScale_rwgt31' : [ 5.06636858e+07, 4.70899131e+07, 4.39452202e+07, 4.13928089e+07, 3.84732078e+07, 3.59024821e+07, 3.44553784e+07, 3.20234849e+07, 2.98843391e+07, ], 'CountWeightedLHEEnvelope_rwgt31' : [ 5.06920147e+07, 2.98731063e+07, ], 'CountWeightedFull_rwgt31' : [ 3.84732078e+07, 3.84727852e+07, 3.84730181e+07, ], 'CountWeightedFullLHEWeightScale_rwgt31' : [ 5.06636858e+07, 4.70899131e+07, 4.39452202e+07, 4.13928089e+07, 3.84732078e+07, 3.59024821e+07, 3.44553784e+07, 3.20234849e+07, 2.98843391e+07, ], 'CountWeightedFullLHEEnvelope_rwgt31' : [ 5.06920147e+07, 2.98731063e+07, ], 'CountWeightedL1PrefireNom_rwgt31' : [ 3.72233058e+07, 3.72213464e+07, 3.72247568e+07, ], 'CountWeightedL1Prefire_rwgt31' : [ 3.72233058e+07, 3.69174899e+07, 3.75209003e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt31' : [ 4.89954076e+07, 4.55618362e+07, 4.25365064e+07, 4.00286897e+07, 3.72233058e+07, 3.47506180e+07, 3.33191227e+07, 3.09827412e+07, 2.89248952e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt31' : [ 4.90234389e+07, 2.89137751e+07, ], 'CountWeightedFullL1PrefireNom_rwgt31' : [ 3.72233058e+07, 3.72213464e+07, 3.72247568e+07, ], 'CountWeightedFullL1Prefire_rwgt31' : [ 3.72233058e+07, 3.69174899e+07, 3.75209003e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt31' : [ 4.89954076e+07, 4.55618362e+07, 4.25365064e+07, 4.00286897e+07, 3.72233058e+07, 3.47506180e+07, 3.33191227e+07, 3.09827412e+07, 2.89248952e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt31' : [ 4.90234389e+07, 2.89137751e+07, ], 'CountWeighted_rwgt31_fwd' : [ 5.70722669e+05, 5.70895506e+05, 5.70539428e+05, ], 'CountWeightedLHEWeightScale_rwgt31_fwd' : [ 7.56727588e+05, 6.99177546e+05, 6.50260520e+05, 6.17646316e+05, 5.70722669e+05, 5.30831663e+05, 5.13695097e+05, 4.74702778e+05, 4.41547516e+05, ], 'CountWeightedLHEEnvelope_rwgt31_fwd' : [ 7.56836604e+05, 4.41500614e+05, ], 'CountWeightedFull_rwgt31_fwd' : [ 5.70722669e+05, 5.70895506e+05, 5.70539428e+05, ], 'CountWeightedFullLHEWeightScale_rwgt31_fwd' : [ 7.56727588e+05, 6.99177546e+05, 6.50260520e+05, 6.17646316e+05, 5.70722669e+05, 5.30831663e+05, 5.13695097e+05, 4.74702778e+05, 4.41547516e+05, ], 'CountWeightedFullLHEEnvelope_rwgt31_fwd' : [ 7.56836604e+05, 4.41500614e+05, ], 'CountWeightedL1PrefireNom_rwgt31_fwd' : [ 4.90552540e+05, 4.90526735e+05, 4.90581538e+05, ], 'CountWeightedL1Prefire_rwgt31_fwd' : [ 4.90552540e+05, 4.72798046e+05, 5.08483262e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt31_fwd' : [ 6.50210433e+05, 6.01126894e+05, 5.59372922e+05, 5.30558440e+05, 4.90552540e+05, 4.56513701e+05, 4.41162922e+05, 4.07927897e+05, 3.79645240e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt31_fwd' : [ 6.50305681e+05, 3.79604475e+05, ], 'CountWeightedFullL1PrefireNom_rwgt31_fwd' : [ 4.90552540e+05, 4.90526735e+05, 4.90581538e+05, ], 'CountWeightedFullL1Prefire_rwgt31_fwd' : [ 4.90552540e+05, 4.72798046e+05, 5.08483262e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt31_fwd' : [ 6.50210433e+05, 6.01126894e+05, 5.59372922e+05, 5.30558440e+05, 4.90552540e+05, 4.56513701e+05, 4.41162922e+05, 4.07927897e+05, 3.79645240e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt31_fwd' : [ 6.50305681e+05, 3.79604475e+05, ], 'CountWeighted_rwgt31_pt0to60' : [ 8.56605569e+06, 8.56652128e+06, 8.56564247e+06, ], 'CountWeightedLHEWeightScale_rwgt31_pt0to60' : [ 1.11937752e+07, 1.05007316e+07, 9.87536811e+06, 9.13201659e+06, 8.56605569e+06, 8.05547988e+06, 7.59215061e+06, 7.12122068e+06, 6.69646717e+06, ], 'CountWeightedLHEEnvelope_rwgt31_pt0to60' : [ 1.12041048e+07, 6.69240032e+06, ], 'CountWeightedFull_rwgt31_pt0to60' : [ 8.56605569e+06, 8.56652128e+06, 8.56564247e+06, ], 'CountWeightedFullLHEWeightScale_rwgt31_pt0to60' : [ 1.11937752e+07, 1.05007316e+07, 9.87536811e+06, 9.13201659e+06, 8.56605569e+06, 8.05547988e+06, 7.59215061e+06, 7.12122068e+06, 6.69646717e+06, ], 'CountWeightedFullLHEEnvelope_rwgt31_pt0to60' : [ 1.12041048e+07, 6.69240032e+06, ], 'CountWeightedL1PrefireNom_rwgt31_pt0to60' : [ 8.33422746e+06, 8.33437795e+06, 8.33419967e+06, ], 'CountWeightedL1Prefire_rwgt31_pt0to60' : [ 8.33422746e+06, 8.27497835e+06, 8.39107872e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt31_pt0to60' : [ 1.08870812e+07, 1.02168502e+07, 9.61136655e+06, 8.88153921e+06, 8.33422746e+06, 7.83990351e+06, 7.38372521e+06, 6.92833032e+06, 6.51710442e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt31_pt0to60' : [ 1.08973078e+07, 6.51307341e+06, ], 'CountWeightedFullL1PrefireNom_rwgt31_pt0to60' : [ 8.33422746e+06, 8.33437795e+06, 8.33419967e+06, ], 'CountWeightedFullL1Prefire_rwgt31_pt0to60' : [ 8.33422746e+06, 8.27497835e+06, 8.39107872e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt31_pt0to60' : [ 1.08870812e+07, 1.02168502e+07, 9.61136655e+06, 8.88153921e+06, 8.33422746e+06, 7.83990351e+06, 7.38372521e+06, 6.92833032e+06, 6.51710442e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt31_pt0to60' : [ 1.08973078e+07, 6.51307341e+06, ], 'CountWeighted_rwgt31_pt60to120' : [ 1.35884562e+07, 1.35892778e+07, 1.35873519e+07, ], 'CountWeightedLHEWeightScale_rwgt31_pt60to120' : [ 1.78490675e+07, 1.66673563e+07, 1.56127300e+07, 1.45519973e+07, 1.35884562e+07, 1.27286481e+07, 1.20918603e+07, 1.12910991e+07, 1.05766575e+07, ], 'CountWeightedLHEEnvelope_rwgt31_pt60to120' : [ 1.78608573e+07, 1.05719986e+07, ], 'CountWeightedFull_rwgt31_pt60to120' : [ 1.35884562e+07, 1.35892778e+07, 1.35873519e+07, ], 'CountWeightedFullLHEWeightScale_rwgt31_pt60to120' : [ 1.78490675e+07, 1.66673563e+07, 1.56127300e+07, 1.45519973e+07, 1.35884562e+07, 1.27286481e+07, 1.20918603e+07, 1.12910991e+07, 1.05766575e+07, ], 'CountWeightedFullLHEEnvelope_rwgt31_pt60to120' : [ 1.78608573e+07, 1.05719986e+07, ], 'CountWeightedL1PrefireNom_rwgt31_pt60to120' : [ 1.31884774e+07, 1.31886220e+07, 1.31881866e+07, ], 'CountWeightedL1Prefire_rwgt31_pt60to120' : [ 1.31884774e+07, 1.30884499e+07, 1.32852408e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt31_pt60to120' : [ 1.73171981e+07, 1.61773009e+07, 1.51587334e+07, 1.41178841e+07, 1.31884774e+07, 1.23581015e+07, 1.17308003e+07, 1.09584245e+07, 1.02684692e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt31_pt60to120' : [ 1.73288661e+07, 1.02638543e+07, ], 'CountWeightedFullL1PrefireNom_rwgt31_pt60to120' : [ 1.31884774e+07, 1.31886220e+07, 1.31881866e+07, ], 'CountWeightedFullL1Prefire_rwgt31_pt60to120' : [ 1.31884774e+07, 1.30884499e+07, 1.32852408e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt31_pt60to120' : [ 1.73171981e+07, 1.61773009e+07, 1.51587334e+07, 1.41178841e+07, 1.31884774e+07, 1.23581015e+07, 1.17308003e+07, 1.09584245e+07, 1.02684692e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt31_pt60to120' : [ 1.73288661e+07, 1.02638543e+07, ], 'CountWeighted_rwgt31_pt120to200' : [ 9.85857154e+06, 9.85830967e+06, 9.85855249e+06, ], 'CountWeightedLHEWeightScale_rwgt31_pt120to200' : [ 1.30183820e+07, 1.20643356e+07, 1.12300610e+07, 1.06377375e+07, 9.85857154e+06, 9.17722025e+06, 8.85584157e+06, 8.20743350e+06, 7.64048145e+06, ], 'CountWeightedLHEEnvelope_rwgt31_pt120to200' : [ 1.30233620e+07, 7.63844575e+06, ], 'CountWeightedFull_rwgt31_pt120to200' : [ 9.85857154e+06, 9.85830967e+06, 9.85855249e+06, ], 'CountWeightedFullLHEWeightScale_rwgt31_pt120to200' : [ 1.30183820e+07, 1.20643356e+07, 1.12300610e+07, 1.06377375e+07, 9.85857154e+06, 9.17722025e+06, 8.85584157e+06, 8.20743350e+06, 7.64048145e+06, ], 'CountWeightedFullLHEEnvelope_rwgt31_pt120to200' : [ 1.30233620e+07, 7.63844575e+06, ], 'CountWeightedL1PrefireNom_rwgt31_pt120to200' : [ 9.53135511e+06, 9.53081615e+06, 9.53170277e+06, ], 'CountWeightedL1Prefire_rwgt31_pt120to200' : [ 9.53135511e+06, 9.45204176e+06, 9.60885772e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt31_pt120to200' : [ 1.25804997e+07, 1.16641261e+07, 1.08618025e+07, 1.02797498e+07, 9.53135511e+06, 8.87612575e+06, 8.55769636e+06, 7.93491459e+06, 7.38969884e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt31_pt120to200' : [ 1.25854257e+07, 7.38768382e+06, ], 'CountWeightedFullL1PrefireNom_rwgt31_pt120to200' : [ 9.53135511e+06, 9.53081615e+06, 9.53170277e+06, ], 'CountWeightedFullL1Prefire_rwgt31_pt120to200' : [ 9.53135511e+06, 9.45204176e+06, 9.60885772e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt31_pt120to200' : [ 1.25804997e+07, 1.16641261e+07, 1.08618025e+07, 1.02797498e+07, 9.53135511e+06, 8.87612575e+06, 8.55769636e+06, 7.93491459e+06, 7.38969884e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt31_pt120to200' : [ 1.25854257e+07, 7.38768382e+06, ], 'CountWeighted_rwgt31_pt200to300' : [ 4.05161857e+06, 4.05080469e+06, 4.05266705e+06, ], 'CountWeightedLHEWeightScale_rwgt31_pt200to300' : [ 5.38281231e+06, 4.93619364e+06, 4.55489108e+06, 4.41783623e+06, 4.05161857e+06, 3.73896379e+06, 3.69117659e+06, 3.38543854e+06, 3.12439424e+06, ], 'CountWeightedLHEEnvelope_rwgt31_pt200to300' : [ 5.38384518e+06, 3.12400608e+06, ], 'CountWeightedFull_rwgt31_pt200to300' : [ 4.05161857e+06, 4.05080469e+06, 4.05266705e+06, ], 'CountWeightedFullLHEWeightScale_rwgt31_pt200to300' : [ 5.38281231e+06, 4.93619364e+06, 4.55489108e+06, 4.41783623e+06, 4.05161857e+06, 3.73896379e+06, 3.69117659e+06, 3.38543854e+06, 3.12439424e+06, ], 'CountWeightedFullLHEEnvelope_rwgt31_pt200to300' : [ 5.38384518e+06, 3.12400608e+06, ], 'CountWeightedL1PrefireNom_rwgt31_pt200to300' : [ 3.90616540e+06, 3.90529420e+06, 3.90725345e+06, ], 'CountWeightedL1Prefire_rwgt31_pt200to300' : [ 3.90616540e+06, 3.87187342e+06, 3.93992048e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt31_pt200to300' : [ 5.18637111e+06, 4.75890352e+06, 4.39350383e+06, 4.25668370e+06, 3.90616540e+06, 3.60654240e+06, 3.55658111e+06, 3.26394315e+06, 3.01377891e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt31_pt200to300' : [ 5.18739196e+06, 3.01339547e+06, ], 'CountWeightedFullL1PrefireNom_rwgt31_pt200to300' : [ 3.90616540e+06, 3.90529420e+06, 3.90725345e+06, ], 'CountWeightedFullL1Prefire_rwgt31_pt200to300' : [ 3.90616540e+06, 3.87187342e+06, 3.93992048e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt31_pt200to300' : [ 5.18637111e+06, 4.75890352e+06, 4.39350383e+06, 4.25668370e+06, 3.90616540e+06, 3.60654240e+06, 3.55658111e+06, 3.26394315e+06, 3.01377891e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt31_pt200to300' : [ 5.18739196e+06, 3.01339547e+06, ], 'CountWeighted_rwgt31_ptGt300' : [ 1.83659603e+06, 1.83607427e+06, 1.83701973e+06, ], 'CountWeightedLHEWeightScale_rwgt31_ptGt300' : [ 2.46302501e+06, 2.22202286e+06, 2.02187201e+06, 2.03556708e+06, 1.83659603e+06, 1.67133699e+06, 1.71060647e+06, 1.54354356e+06, 1.40477292e+06, ], 'CountWeightedLHEEnvelope_rwgt31_ptGt300' : [ 2.46313802e+06, 1.40474120e+06, ], 'CountWeightedFull_rwgt31_ptGt300' : [ 1.83659603e+06, 1.83607427e+06, 1.83701973e+06, ], 'CountWeightedFullLHEWeightScale_rwgt31_ptGt300' : [ 2.46302501e+06, 2.22202286e+06, 2.02187201e+06, 2.03556708e+06, 1.83659603e+06, 1.67133699e+06, 1.71060647e+06, 1.54354356e+06, 1.40477292e+06, ], 'CountWeightedFullLHEEnvelope_rwgt31_ptGt300' : [ 2.46313802e+06, 1.40474120e+06, ], 'CountWeightedL1PrefireNom_rwgt31_ptGt300' : [ 1.77181280e+06, 1.77124394e+06, 1.77226529e+06, ], 'CountWeightedL1Prefire_rwgt31_ptGt300' : [ 1.77181280e+06, 1.75678832e+06, 1.78663118e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt31_ptGt300' : [ 2.37415375e+06, 2.14348686e+06, 1.95168246e+06, 1.96226618e+06, 1.77181280e+06, 1.61343186e+06, 1.64911019e+06, 1.48918766e+06, 1.35618427e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt31_ptGt300' : [ 2.37426466e+06, 1.35615336e+06, ], 'CountWeightedFullL1PrefireNom_rwgt31_ptGt300' : [ 1.77181280e+06, 1.77124394e+06, 1.77226529e+06, ], 'CountWeightedFullL1Prefire_rwgt31_ptGt300' : [ 1.77181280e+06, 1.75678832e+06, 1.78663118e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt31_ptGt300' : [ 2.37415375e+06, 2.14348686e+06, 1.95168246e+06, 1.96226618e+06, 1.77181280e+06, 1.61343186e+06, 1.64911019e+06, 1.48918766e+06, 1.35618427e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt31_ptGt300' : [ 2.37426466e+06, 1.35615336e+06, ], 'CountWeighted_rwgt31_pt300to450' : [ 1.44485687e+06, 1.44421213e+06, 1.44540714e+06, ], 'CountWeightedLHEWeightScale_rwgt31_pt300to450' : [ 1.93409631e+06, 1.75086023e+06, 1.59789221e+06, 1.59586664e+06, 1.44485687e+06, 1.31877840e+06, 1.33928967e+06, 1.21268657e+06, 1.10697363e+06, ], 'CountWeightedLHEEnvelope_rwgt31_pt300to450' : [ 1.93420657e+06, 1.10694281e+06, ], 'CountWeightedFull_rwgt31_pt300to450' : [ 1.44485687e+06, 1.44421213e+06, 1.44540714e+06, ], 'CountWeightedFullLHEWeightScale_rwgt31_pt300to450' : [ 1.93409631e+06, 1.75086023e+06, 1.59789221e+06, 1.59586664e+06, 1.44485687e+06, 1.31877840e+06, 1.33928967e+06, 1.21268657e+06, 1.10697363e+06, ], 'CountWeightedFullLHEEnvelope_rwgt31_pt300to450' : [ 1.93420657e+06, 1.10694281e+06, ], 'CountWeightedL1PrefireNom_rwgt31_pt300to450' : [ 1.39255919e+06, 1.39187884e+06, 1.39312551e+06, ], 'CountWeightedL1Prefire_rwgt31_pt300to450' : [ 1.39255919e+06, 1.38042362e+06, 1.40453126e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt31_pt300to450' : [ 1.86258041e+06, 1.68738790e+06, 1.54095210e+06, 1.53694919e+06, 1.39255919e+06, 1.27185696e+06, 1.28990896e+06, 1.16884892e+06, 1.06763873e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt31_pt300to450' : [ 1.86268857e+06, 1.06760870e+06, ], 'CountWeightedFullL1PrefireNom_rwgt31_pt300to450' : [ 1.39255919e+06, 1.39187884e+06, 1.39312551e+06, ], 'CountWeightedFullL1Prefire_rwgt31_pt300to450' : [ 1.39255919e+06, 1.38042362e+06, 1.40453126e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt31_pt300to450' : [ 1.86258041e+06, 1.68738790e+06, 1.54095210e+06, 1.53694919e+06, 1.39255919e+06, 1.27185696e+06, 1.28990896e+06, 1.16884892e+06, 1.06763873e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt31_pt300to450' : [ 1.86268857e+06, 1.06760870e+06, ], 'CountWeighted_rwgt31_ptGt450' : [ 3.91739328e+05, 3.91864436e+05, 3.91612986e+05, ], 'CountWeightedLHEWeightScale_rwgt31_ptGt450' : [ 5.28928590e+05, 4.71162727e+05, 4.23979829e+05, 4.39700581e+05, 3.91739328e+05, 3.52558468e+05, 3.71316778e+05, 3.30857031e+05, 2.97799220e+05, ], 'CountWeightedLHEEnvelope_rwgt31_ptGt450' : [ 5.28931370e+05, 2.97798309e+05, ], 'CountWeightedFull_rwgt31_ptGt450' : [ 3.91739328e+05, 3.91864436e+05, 3.91612986e+05, ], 'CountWeightedFullLHEWeightScale_rwgt31_ptGt450' : [ 5.28928590e+05, 4.71162727e+05, 4.23979829e+05, 4.39700581e+05, 3.91739328e+05, 3.52558468e+05, 3.71316778e+05, 3.30857031e+05, 2.97799220e+05, ], 'CountWeightedFullLHEEnvelope_rwgt31_ptGt450' : [ 5.28931370e+05, 2.97798309e+05, ], 'CountWeightedL1PrefireNom_rwgt31_ptGt450' : [ 3.79253437e+05, 3.79366261e+05, 3.79140058e+05, ], 'CountWeightedL1Prefire_rwgt31_ptGt450' : [ 3.79253437e+05, 3.76364549e+05, 3.82099944e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt31_ptGt450' : [ 5.11573271e+05, 4.56099132e+05, 4.10730214e+05, 4.25316983e+05, 3.79253437e+05, 3.41574765e+05, 3.59201245e+05, 3.20338704e+05, 2.88545495e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt31_ptGt450' : [ 5.11575975e+05, 2.88544616e+05, ], 'CountWeightedFullL1PrefireNom_rwgt31_ptGt450' : [ 3.79253437e+05, 3.79366261e+05, 3.79140058e+05, ], 'CountWeightedFullL1Prefire_rwgt31_ptGt450' : [ 3.79253437e+05, 3.76364549e+05, 3.82099944e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt31_ptGt450' : [ 5.11573271e+05, 4.56099132e+05, 4.10730214e+05, 4.25316983e+05, 3.79253437e+05, 3.41574765e+05, 3.59201245e+05, 3.20338704e+05, 2.88545495e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt31_ptGt450' : [ 5.11575975e+05, 2.88544616e+05, ], 'CountWeighted_rwgt33' : [ 8.65625510e+07, 8.65599245e+07, 8.65597467e+07, ], 'CountWeightedLHEWeightScale_rwgt33' : [ 1.13993564e+08, 1.05952012e+08, 9.88767908e+07, 9.31337999e+07, 8.65625510e+07, 8.07805223e+07, 7.75243184e+07, 7.20523911e+07, 6.72396426e+07, ], 'CountWeightedLHEEnvelope_rwgt33' : [ 1.14057377e+08, 6.72143605e+07, ], 'CountWeightedFull_rwgt33' : [ 8.65625510e+07, 8.65599245e+07, 8.65597467e+07, ], 'CountWeightedFullLHEWeightScale_rwgt33' : [ 1.13993564e+08, 1.05952012e+08, 9.88767908e+07, 9.31337999e+07, 8.65625510e+07, 8.07805223e+07, 7.75243184e+07, 7.20523911e+07, 6.72396426e+07, ], 'CountWeightedFullLHEEnvelope_rwgt33' : [ 1.14057377e+08, 6.72143605e+07, ], 'CountWeightedL1PrefireNom_rwgt33' : [ 8.37511969e+07, 8.37457481e+07, 8.37534598e+07, ], 'CountWeightedL1Prefire_rwgt33' : [ 8.37511969e+07, 8.30634901e+07, 8.44209941e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt33' : [ 1.10239942e+08, 1.02513965e+08, 9.57071545e+07, 9.00645419e+07, 8.37511969e+07, 7.81888212e+07, 7.49677906e+07, 6.97109760e+07, 6.50809155e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt33' : [ 1.10303061e+08, 6.50558901e+07, ], 'CountWeightedFullL1PrefireNom_rwgt33' : [ 8.37511969e+07, 8.37457481e+07, 8.37534598e+07, ], 'CountWeightedFullL1Prefire_rwgt33' : [ 8.37511969e+07, 8.30634901e+07, 8.44209941e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt33' : [ 1.10239942e+08, 1.02513965e+08, 9.57071545e+07, 9.00645419e+07, 8.37511969e+07, 7.81888212e+07, 7.49677906e+07, 6.97109760e+07, 6.50809155e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt33' : [ 1.10303061e+08, 6.50558901e+07, ], 'CountWeighted_rwgt33_fwd' : [ 1.28412743e+06, 1.28451141e+06, 1.28371458e+06, ], 'CountWeightedLHEWeightScale_rwgt33_fwd' : [ 1.70263698e+06, 1.57314935e+06, 1.46308632e+06, 1.38970431e+06, 1.28412743e+06, 1.19437120e+06, 1.15581392e+06, 1.06808139e+06, 9.93481924e+05, ], 'CountWeightedLHEEnvelope_rwgt33_fwd' : [ 1.70288228e+06, 9.93376392e+05, ], 'CountWeightedFull_rwgt33_fwd' : [ 1.28412743e+06, 1.28451141e+06, 1.28371458e+06, ], 'CountWeightedFullLHEWeightScale_rwgt33_fwd' : [ 1.70263698e+06, 1.57314935e+06, 1.46308632e+06, 1.38970431e+06, 1.28412743e+06, 1.19437120e+06, 1.15581392e+06, 1.06808139e+06, 9.93481924e+05, ], 'CountWeightedFullLHEEnvelope_rwgt33_fwd' : [ 1.70288228e+06, 9.93376392e+05, ], 'CountWeightedL1PrefireNom_rwgt33_fwd' : [ 1.10374328e+06, 1.10368499e+06, 1.10380845e+06, ], 'CountWeightedL1Prefire_rwgt33_fwd' : [ 1.10374328e+06, 1.06379566e+06, 1.14408732e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt33_fwd' : [ 1.46297341e+06, 1.35253551e+06, 1.25858911e+06, 1.19375647e+06, 1.10374328e+06, 1.02715587e+06, 9.92616550e+05, 9.17837737e+05, 8.54201745e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt33_fwd' : [ 1.46318771e+06, 8.54110025e+05, ], 'CountWeightedFullL1PrefireNom_rwgt33_fwd' : [ 1.10374328e+06, 1.10368499e+06, 1.10380845e+06, ], 'CountWeightedFullL1Prefire_rwgt33_fwd' : [ 1.10374328e+06, 1.06379566e+06, 1.14408732e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt33_fwd' : [ 1.46297341e+06, 1.35253551e+06, 1.25858911e+06, 1.19375647e+06, 1.10374328e+06, 1.02715587e+06, 9.92616550e+05, 9.17837737e+05, 8.54201745e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt33_fwd' : [ 1.46318771e+06, 8.54110025e+05, ], 'CountWeighted_rwgt33_pt0to60' : [ 1.92735489e+07, 1.92753050e+07, 1.92725341e+07, ], 'CountWeightedLHEWeightScale_rwgt33_pt0to60' : [ 2.51860028e+07, 2.36266373e+07, 2.22195796e+07, 2.05470362e+07, 1.92735489e+07, 1.81248245e+07, 1.70823390e+07, 1.60227440e+07, 1.50670505e+07, ], 'CountWeightedLHEEnvelope_rwgt33_pt0to60' : [ 2.52092422e+07, 1.50578991e+07, ], 'CountWeightedFull_rwgt33_pt0to60' : [ 1.92735489e+07, 1.92753050e+07, 1.92725341e+07, ], 'CountWeightedFullLHEWeightScale_rwgt33_pt0to60' : [ 2.51860028e+07, 2.36266373e+07, 2.22195796e+07, 2.05470362e+07, 1.92735489e+07, 1.81248245e+07, 1.70823390e+07, 1.60227440e+07, 1.50670505e+07, ], 'CountWeightedFullLHEEnvelope_rwgt33_pt0to60' : [ 2.52092422e+07, 1.50578991e+07, ], 'CountWeightedL1PrefireNom_rwgt33_pt0to60' : [ 1.87519505e+07, 1.87527367e+07, 1.87518436e+07, ], 'CountWeightedL1Prefire_rwgt33_pt0to60' : [ 1.87519505e+07, 1.86186760e+07, 1.88798786e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt33_pt0to60' : [ 2.44959306e+07, 2.29879121e+07, 2.16255758e+07, 1.99834602e+07, 1.87519505e+07, 1.76397792e+07, 1.66133803e+07, 1.55887395e+07, 1.46634829e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt33_pt0to60' : [ 2.45189404e+07, 1.46544117e+07, ], 'CountWeightedFullL1PrefireNom_rwgt33_pt0to60' : [ 1.87519505e+07, 1.87527367e+07, 1.87518436e+07, ], 'CountWeightedFullL1Prefire_rwgt33_pt0to60' : [ 1.87519505e+07, 1.86186760e+07, 1.88798786e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt33_pt0to60' : [ 2.44959306e+07, 2.29879121e+07, 2.16255758e+07, 1.99834602e+07, 1.87519505e+07, 1.76397792e+07, 1.66133803e+07, 1.55887395e+07, 1.46634829e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt33_pt0to60' : [ 2.45189404e+07, 1.46544117e+07, ], 'CountWeighted_rwgt33_pt60to120' : [ 3.05741277e+07, 3.05758859e+07, 3.05715970e+07, ], 'CountWeightedLHEWeightScale_rwgt33_pt60to120' : [ 4.01603797e+07, 3.75015438e+07, 3.51286358e+07, 3.27420047e+07, 3.05741277e+07, 2.86394511e+07, 2.72066838e+07, 2.54049637e+07, 2.37974609e+07, ], 'CountWeightedLHEEnvelope_rwgt33_pt60to120' : [ 4.01868974e+07, 2.37869779e+07, ], 'CountWeightedFull_rwgt33_pt60to120' : [ 3.05741277e+07, 3.05758859e+07, 3.05715970e+07, ], 'CountWeightedFullLHEWeightScale_rwgt33_pt60to120' : [ 4.01603797e+07, 3.75015438e+07, 3.51286358e+07, 3.27420047e+07, 3.05741277e+07, 2.86394511e+07, 2.72066838e+07, 2.54049637e+07, 2.37974609e+07, ], 'CountWeightedFullLHEEnvelope_rwgt33_pt60to120' : [ 4.01868974e+07, 2.37869779e+07, ], 'CountWeightedL1PrefireNom_rwgt33_pt60to120' : [ 2.96740684e+07, 2.96745817e+07, 2.96733907e+07, ], 'CountWeightedL1Prefire_rwgt33_pt60to120' : [ 2.96740684e+07, 2.94490633e+07, 2.98918577e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt33_pt60to120' : [ 3.89636927e+07, 3.63989145e+07, 3.41071396e+07, 3.17652496e+07, 2.96740684e+07, 2.78057112e+07, 2.63942925e+07, 2.46564573e+07, 2.31040446e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt33_pt60to120' : [ 3.89899379e+07, 2.30936596e+07, ], 'CountWeightedFullL1PrefireNom_rwgt33_pt60to120' : [ 2.96740684e+07, 2.96745817e+07, 2.96733907e+07, ], 'CountWeightedFullL1Prefire_rwgt33_pt60to120' : [ 2.96740684e+07, 2.94490633e+07, 2.98918577e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt33_pt60to120' : [ 3.89636927e+07, 3.63989145e+07, 3.41071396e+07, 3.17652496e+07, 2.96740684e+07, 2.78057112e+07, 2.63942925e+07, 2.46564573e+07, 2.31040446e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt33_pt60to120' : [ 3.89899379e+07, 2.30936596e+07, ], 'CountWeighted_rwgt33_pt120to200' : [ 2.21816910e+07, 2.21820452e+07, 2.21816586e+07, ], 'CountWeightedLHEWeightScale_rwgt33_pt120to200' : [ 2.92913600e+07, 2.71447628e+07, 2.52676304e+07, 2.39349106e+07, 2.21816910e+07, 2.06487431e+07, 1.99256415e+07, 1.84667219e+07, 1.71910846e+07, ], 'CountWeightedLHEEnvelope_rwgt33_pt120to200' : [ 2.93025650e+07, 1.71865041e+07, ], 'CountWeightedFull_rwgt33_pt120to200' : [ 2.21816910e+07, 2.21820452e+07, 2.21816586e+07, ], 'CountWeightedFullLHEWeightScale_rwgt33_pt120to200' : [ 2.92913600e+07, 2.71447628e+07, 2.52676304e+07, 2.39349106e+07, 2.21816910e+07, 2.06487431e+07, 1.99256415e+07, 1.84667219e+07, 1.71910846e+07, ], 'CountWeightedFullLHEEnvelope_rwgt33_pt120to200' : [ 2.93025650e+07, 1.71865041e+07, ], 'CountWeightedL1PrefireNom_rwgt33_pt120to200' : [ 2.14454673e+07, 2.14448661e+07, 2.14462645e+07, ], 'CountWeightedL1Prefire_rwgt33_pt120to200' : [ 2.14454673e+07, 2.12670622e+07, 2.16198807e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt33_pt120to200' : [ 2.83061233e+07, 2.62442868e+07, 2.44390558e+07, 2.31294315e+07, 2.14454673e+07, 1.99712774e+07, 1.92548153e+07, 1.78535541e+07, 1.66268224e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt33_pt120to200' : [ 2.83172069e+07, 1.66222890e+07, ], 'CountWeightedFullL1PrefireNom_rwgt33_pt120to200' : [ 2.14454673e+07, 2.14448661e+07, 2.14462645e+07, ], 'CountWeightedFullL1Prefire_rwgt33_pt120to200' : [ 2.14454673e+07, 2.12670622e+07, 2.16198807e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt33_pt120to200' : [ 2.83061233e+07, 2.62442868e+07, 2.44390558e+07, 2.31294315e+07, 2.14454673e+07, 1.99712774e+07, 1.92548153e+07, 1.78535541e+07, 1.66268224e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt33_pt120to200' : [ 2.83172069e+07, 1.66222890e+07, ], 'CountWeighted_rwgt33_pt200to300' : [ 9.11613288e+06, 9.11439079e+06, 9.11842493e+06, ], 'CountWeightedLHEWeightScale_rwgt33_pt200to300' : [ 1.21113290e+07, 1.11064353e+07, 1.02485049e+07, 9.94013111e+06, 9.11613288e+06, 8.41266798e+06, 8.30514583e+06, 7.61723792e+06, 7.02988621e+06, ], 'CountWeightedLHEEnvelope_rwgt33_pt200to300' : [ 1.21136528e+07, 7.02901273e+06, ], 'CountWeightedFull_rwgt33_pt200to300' : [ 9.11613288e+06, 9.11439079e+06, 9.11842493e+06, ], 'CountWeightedFullLHEWeightScale_rwgt33_pt200to300' : [ 1.21113290e+07, 1.11064353e+07, 1.02485049e+07, 9.94013111e+06, 9.11613288e+06, 8.41266798e+06, 8.30514583e+06, 7.61723792e+06, 7.02988621e+06, ], 'CountWeightedFullLHEEnvelope_rwgt33_pt200to300' : [ 1.21136528e+07, 7.02901273e+06, ], 'CountWeightedL1PrefireNom_rwgt33_pt200to300' : [ 8.78887327e+06, 8.78695596e+06, 8.79128057e+06, ], 'CountWeightedL1Prefire_rwgt33_pt200to300' : [ 8.78887327e+06, 8.71171632e+06, 8.86481600e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt33_pt200to300' : [ 1.16693352e+07, 1.07075313e+07, 9.88538475e+06, 9.57753720e+06, 8.78887327e+06, 8.11472201e+06, 8.00230790e+06, 7.34387343e+06, 6.78100170e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt33_pt200to300' : [ 1.16716318e+07, 6.78013897e+06, ], 'CountWeightedFullL1PrefireNom_rwgt33_pt200to300' : [ 8.78887327e+06, 8.78695596e+06, 8.79128057e+06, ], 'CountWeightedFullL1Prefire_rwgt33_pt200to300' : [ 8.78887327e+06, 8.71171632e+06, 8.86481600e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt33_pt200to300' : [ 1.16693352e+07, 1.07075313e+07, 9.88538475e+06, 9.57753720e+06, 8.78887327e+06, 8.11472201e+06, 8.00230790e+06, 7.34387343e+06, 6.78100170e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt33_pt200to300' : [ 1.16716318e+07, 6.78013897e+06, ], 'CountWeighted_rwgt33_ptGt300' : [ 4.13235256e+06, 4.13116759e+06, 4.13330672e+06, ], 'CountWeightedLHEWeightScale_rwgt33_ptGt300' : [ 5.54180530e+06, 4.99955201e+06, 4.54921166e+06, 4.58002619e+06, 4.13235256e+06, 3.76050729e+06, 3.84886499e+06, 3.47297400e+06, 3.16073881e+06, ], 'CountWeightedLHEEnvelope_rwgt33_ptGt300' : [ 5.54205962e+06, 3.16066744e+06, ], 'CountWeightedFull_rwgt33_ptGt300' : [ 4.13235256e+06, 4.13116759e+06, 4.13330672e+06, ], 'CountWeightedFullLHEWeightScale_rwgt33_ptGt300' : [ 5.54180530e+06, 4.99955201e+06, 4.54921166e+06, 4.58002619e+06, 4.13235256e+06, 3.76050729e+06, 3.84886499e+06, 3.47297400e+06, 3.16073881e+06, ], 'CountWeightedFullLHEEnvelope_rwgt33_ptGt300' : [ 5.54205962e+06, 3.16066744e+06, ], 'CountWeightedL1PrefireNom_rwgt33_ptGt300' : [ 3.98658509e+06, 3.98529887e+06, 3.98760431e+06, ], 'CountWeightedL1Prefire_rwgt33_ptGt300' : [ 3.98658509e+06, 3.95277968e+06, 4.01992732e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt33_ptGt300' : [ 5.34184533e+06, 4.82284620e+06, 4.39128494e+06, 4.41509882e+06, 3.98658509e+06, 3.63022118e+06, 3.71049813e+06, 3.35067289e+06, 3.05141440e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt33_ptGt300' : [ 5.34209487e+06, 3.05134482e+06, ], 'CountWeightedFullL1PrefireNom_rwgt33_ptGt300' : [ 3.98658509e+06, 3.98529887e+06, 3.98760431e+06, ], 'CountWeightedFullL1Prefire_rwgt33_ptGt300' : [ 3.98658509e+06, 3.95277968e+06, 4.01992732e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt33_ptGt300' : [ 5.34184533e+06, 4.82284620e+06, 4.39128494e+06, 4.41509882e+06, 3.98658509e+06, 3.63022118e+06, 3.71049813e+06, 3.35067289e+06, 3.05141440e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt33_ptGt300' : [ 5.34209487e+06, 3.05134482e+06, ], 'CountWeighted_rwgt33_pt300to450' : [ 3.25093278e+06, 3.24947512e+06, 3.25217426e+06, ], 'CountWeightedLHEWeightScale_rwgt33_pt300to450' : [ 4.35171633e+06, 3.93943601e+06, 3.59525691e+06, 3.59069971e+06, 3.25093278e+06, 2.96725122e+06, 3.01340200e+06, 2.72854558e+06, 2.49069042e+06, ], 'CountWeightedLHEEnvelope_rwgt33_pt300to450' : [ 4.35196445e+06, 2.49062108e+06, ], 'CountWeightedFull_rwgt33_pt300to450' : [ 3.25093278e+06, 3.24947512e+06, 3.25217426e+06, ], 'CountWeightedFullLHEWeightScale_rwgt33_pt300to450' : [ 4.35171633e+06, 3.93943601e+06, 3.59525691e+06, 3.59069971e+06, 3.25093278e+06, 2.96725122e+06, 3.01340200e+06, 2.72854558e+06, 2.49069042e+06, ], 'CountWeightedFullLHEEnvelope_rwgt33_pt300to450' : [ 4.35196445e+06, 2.49062108e+06, ], 'CountWeightedL1PrefireNom_rwgt33_pt300to450' : [ 3.13326091e+06, 3.13172654e+06, 3.13453718e+06, ], 'CountWeightedL1Prefire_rwgt33_pt300to450' : [ 3.13326091e+06, 3.10595547e+06, 3.16019809e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt33_pt300to450' : [ 4.19080568e+06, 3.79662309e+06, 3.46714218e+06, 3.45813539e+06, 3.13326091e+06, 2.86167814e+06, 2.90229536e+06, 2.62991066e+06, 2.40218697e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt33_pt300to450' : [ 4.19104913e+06, 2.40211938e+06, ], 'CountWeightedFullL1PrefireNom_rwgt33_pt300to450' : [ 3.13326091e+06, 3.13172654e+06, 3.13453718e+06, ], 'CountWeightedFullL1Prefire_rwgt33_pt300to450' : [ 3.13326091e+06, 3.10595547e+06, 3.16019809e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt33_pt300to450' : [ 4.19080568e+06, 3.79662309e+06, 3.46714218e+06, 3.45813539e+06, 3.13326091e+06, 2.86167814e+06, 2.90229536e+06, 2.62991066e+06, 2.40218697e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt33_pt300to450' : [ 4.19104913e+06, 2.40211938e+06, ], 'CountWeighted_rwgt33_ptGt450' : [ 8.81413836e+05, 8.81694142e+05, 8.81129929e+05, ], 'CountWeightedLHEWeightScale_rwgt33_ptGt450' : [ 1.19008931e+06, 1.06011617e+06, 9.53954642e+05, 9.89326307e+05, 8.81413836e+05, 7.93256580e+05, 8.35462785e+05, 7.44428373e+05, 6.70048209e+05, ], 'CountWeightedLHEEnvelope_rwgt33_ptGt450' : [ 1.19009557e+06, 6.70046159e+05, ], 'CountWeightedFull_rwgt33_ptGt450' : [ 8.81413836e+05, 8.81694142e+05, 8.81129929e+05, ], 'CountWeightedFullLHEWeightScale_rwgt33_ptGt450' : [ 1.19008931e+06, 1.06011617e+06, 9.53954642e+05, 9.89326307e+05, 8.81413836e+05, 7.93256580e+05, 8.35462785e+05, 7.44428373e+05, 6.70048209e+05, ], 'CountWeightedFullLHEEnvelope_rwgt33_ptGt450' : [ 1.19009557e+06, 6.70046159e+05, ], 'CountWeightedL1PrefireNom_rwgt33_ptGt450' : [ 8.53320513e+05, 8.53573651e+05, 8.53065564e+05, ], 'CountWeightedL1Prefire_rwgt33_ptGt450' : [ 8.53320513e+05, 8.46820497e+05, 8.59725144e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt33_ptGt450' : [ 1.15103988e+06, 1.02622302e+06, 9.24142989e+05, 9.56963243e+05, 8.53320513e+05, 7.68543251e+05, 8.08202825e+05, 7.20762139e+05, 6.49227353e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt33_ptGt450' : [ 1.15104597e+06, 6.49225376e+05, ], 'CountWeightedFullL1PrefireNom_rwgt33_ptGt450' : [ 8.53320513e+05, 8.53573651e+05, 8.53065564e+05, ], 'CountWeightedFullL1Prefire_rwgt33_ptGt450' : [ 8.53320513e+05, 8.46820497e+05, 8.59725144e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt33_ptGt450' : [ 1.15103988e+06, 1.02622302e+06, 9.24142989e+05, 9.56963243e+05, 8.53320513e+05, 7.68543251e+05, 8.08202825e+05, 7.20762139e+05, 6.49227353e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt33_ptGt450' : [ 1.15104597e+06, 6.49225376e+05, ], 'CountWeighted_rwgt34' : [ 3.84732078e+07, 3.84727852e+07, 3.84730181e+07, ], 'CountWeightedLHEWeightScale_rwgt34' : [ 5.06636858e+07, 4.70899131e+07, 4.39452202e+07, 4.13928089e+07, 3.84732078e+07, 3.59024821e+07, 3.44553784e+07, 3.20234849e+07, 2.98843391e+07, ], 'CountWeightedLHEEnvelope_rwgt34' : [ 5.06920147e+07, 2.98731063e+07, ], 'CountWeightedFull_rwgt34' : [ 3.84732078e+07, 3.84727852e+07, 3.84730181e+07, ], 'CountWeightedFullLHEWeightScale_rwgt34' : [ 5.06636858e+07, 4.70899131e+07, 4.39452202e+07, 4.13928089e+07, 3.84732078e+07, 3.59024821e+07, 3.44553784e+07, 3.20234849e+07, 2.98843391e+07, ], 'CountWeightedFullLHEEnvelope_rwgt34' : [ 5.06920147e+07, 2.98731063e+07, ], 'CountWeightedL1PrefireNom_rwgt34' : [ 3.72233058e+07, 3.72213464e+07, 3.72247568e+07, ], 'CountWeightedL1Prefire_rwgt34' : [ 3.72233058e+07, 3.69174899e+07, 3.75209003e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt34' : [ 4.89954076e+07, 4.55618362e+07, 4.25365064e+07, 4.00286897e+07, 3.72233058e+07, 3.47506180e+07, 3.33191227e+07, 3.09827412e+07, 2.89248952e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt34' : [ 4.90234389e+07, 2.89137751e+07, ], 'CountWeightedFullL1PrefireNom_rwgt34' : [ 3.72233058e+07, 3.72213464e+07, 3.72247568e+07, ], 'CountWeightedFullL1Prefire_rwgt34' : [ 3.72233058e+07, 3.69174899e+07, 3.75209003e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt34' : [ 4.89954076e+07, 4.55618362e+07, 4.25365064e+07, 4.00286897e+07, 3.72233058e+07, 3.47506180e+07, 3.33191227e+07, 3.09827412e+07, 2.89248952e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt34' : [ 4.90234389e+07, 2.89137751e+07, ], 'CountWeighted_rwgt34_fwd' : [ 5.70722669e+05, 5.70895506e+05, 5.70539428e+05, ], 'CountWeightedLHEWeightScale_rwgt34_fwd' : [ 7.56727588e+05, 6.99177546e+05, 6.50260520e+05, 6.17646316e+05, 5.70722669e+05, 5.30831663e+05, 5.13695097e+05, 4.74702778e+05, 4.41547516e+05, ], 'CountWeightedLHEEnvelope_rwgt34_fwd' : [ 7.56836604e+05, 4.41500614e+05, ], 'CountWeightedFull_rwgt34_fwd' : [ 5.70722669e+05, 5.70895506e+05, 5.70539428e+05, ], 'CountWeightedFullLHEWeightScale_rwgt34_fwd' : [ 7.56727588e+05, 6.99177546e+05, 6.50260520e+05, 6.17646316e+05, 5.70722669e+05, 5.30831663e+05, 5.13695097e+05, 4.74702778e+05, 4.41547516e+05, ], 'CountWeightedFullLHEEnvelope_rwgt34_fwd' : [ 7.56836604e+05, 4.41500614e+05, ], 'CountWeightedL1PrefireNom_rwgt34_fwd' : [ 4.90552540e+05, 4.90526735e+05, 4.90581538e+05, ], 'CountWeightedL1Prefire_rwgt34_fwd' : [ 4.90552540e+05, 4.72798046e+05, 5.08483262e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt34_fwd' : [ 6.50210433e+05, 6.01126894e+05, 5.59372922e+05, 5.30558440e+05, 4.90552540e+05, 4.56513701e+05, 4.41162922e+05, 4.07927897e+05, 3.79645240e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt34_fwd' : [ 6.50305681e+05, 3.79604475e+05, ], 'CountWeightedFullL1PrefireNom_rwgt34_fwd' : [ 4.90552540e+05, 4.90526735e+05, 4.90581538e+05, ], 'CountWeightedFullL1Prefire_rwgt34_fwd' : [ 4.90552540e+05, 4.72798046e+05, 5.08483262e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt34_fwd' : [ 6.50210433e+05, 6.01126894e+05, 5.59372922e+05, 5.30558440e+05, 4.90552540e+05, 4.56513701e+05, 4.41162922e+05, 4.07927897e+05, 3.79645240e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt34_fwd' : [ 6.50305681e+05, 3.79604475e+05, ], 'CountWeighted_rwgt34_pt0to60' : [ 8.56605569e+06, 8.56652128e+06, 8.56564247e+06, ], 'CountWeightedLHEWeightScale_rwgt34_pt0to60' : [ 1.11937752e+07, 1.05007316e+07, 9.87536811e+06, 9.13201659e+06, 8.56605569e+06, 8.05547988e+06, 7.59215061e+06, 7.12122068e+06, 6.69646717e+06, ], 'CountWeightedLHEEnvelope_rwgt34_pt0to60' : [ 1.12041048e+07, 6.69240032e+06, ], 'CountWeightedFull_rwgt34_pt0to60' : [ 8.56605569e+06, 8.56652128e+06, 8.56564247e+06, ], 'CountWeightedFullLHEWeightScale_rwgt34_pt0to60' : [ 1.11937752e+07, 1.05007316e+07, 9.87536811e+06, 9.13201659e+06, 8.56605569e+06, 8.05547988e+06, 7.59215061e+06, 7.12122068e+06, 6.69646717e+06, ], 'CountWeightedFullLHEEnvelope_rwgt34_pt0to60' : [ 1.12041048e+07, 6.69240032e+06, ], 'CountWeightedL1PrefireNom_rwgt34_pt0to60' : [ 8.33422746e+06, 8.33437795e+06, 8.33419967e+06, ], 'CountWeightedL1Prefire_rwgt34_pt0to60' : [ 8.33422746e+06, 8.27497835e+06, 8.39107872e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt34_pt0to60' : [ 1.08870812e+07, 1.02168502e+07, 9.61136655e+06, 8.88153921e+06, 8.33422746e+06, 7.83990351e+06, 7.38372521e+06, 6.92833032e+06, 6.51710442e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt34_pt0to60' : [ 1.08973078e+07, 6.51307341e+06, ], 'CountWeightedFullL1PrefireNom_rwgt34_pt0to60' : [ 8.33422746e+06, 8.33437795e+06, 8.33419967e+06, ], 'CountWeightedFullL1Prefire_rwgt34_pt0to60' : [ 8.33422746e+06, 8.27497835e+06, 8.39107872e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt34_pt0to60' : [ 1.08870812e+07, 1.02168502e+07, 9.61136655e+06, 8.88153921e+06, 8.33422746e+06, 7.83990351e+06, 7.38372521e+06, 6.92833032e+06, 6.51710442e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt34_pt0to60' : [ 1.08973078e+07, 6.51307341e+06, ], 'CountWeighted_rwgt34_pt60to120' : [ 1.35884562e+07, 1.35892778e+07, 1.35873519e+07, ], 'CountWeightedLHEWeightScale_rwgt34_pt60to120' : [ 1.78490675e+07, 1.66673563e+07, 1.56127300e+07, 1.45519973e+07, 1.35884562e+07, 1.27286481e+07, 1.20918603e+07, 1.12910991e+07, 1.05766575e+07, ], 'CountWeightedLHEEnvelope_rwgt34_pt60to120' : [ 1.78608573e+07, 1.05719986e+07, ], 'CountWeightedFull_rwgt34_pt60to120' : [ 1.35884562e+07, 1.35892778e+07, 1.35873519e+07, ], 'CountWeightedFullLHEWeightScale_rwgt34_pt60to120' : [ 1.78490675e+07, 1.66673563e+07, 1.56127300e+07, 1.45519973e+07, 1.35884562e+07, 1.27286481e+07, 1.20918603e+07, 1.12910991e+07, 1.05766575e+07, ], 'CountWeightedFullLHEEnvelope_rwgt34_pt60to120' : [ 1.78608573e+07, 1.05719986e+07, ], 'CountWeightedL1PrefireNom_rwgt34_pt60to120' : [ 1.31884774e+07, 1.31886220e+07, 1.31881866e+07, ], 'CountWeightedL1Prefire_rwgt34_pt60to120' : [ 1.31884774e+07, 1.30884499e+07, 1.32852408e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt34_pt60to120' : [ 1.73171981e+07, 1.61773009e+07, 1.51587334e+07, 1.41178841e+07, 1.31884774e+07, 1.23581015e+07, 1.17308003e+07, 1.09584245e+07, 1.02684692e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt34_pt60to120' : [ 1.73288661e+07, 1.02638543e+07, ], 'CountWeightedFullL1PrefireNom_rwgt34_pt60to120' : [ 1.31884774e+07, 1.31886220e+07, 1.31881866e+07, ], 'CountWeightedFullL1Prefire_rwgt34_pt60to120' : [ 1.31884774e+07, 1.30884499e+07, 1.32852408e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt34_pt60to120' : [ 1.73171981e+07, 1.61773009e+07, 1.51587334e+07, 1.41178841e+07, 1.31884774e+07, 1.23581015e+07, 1.17308003e+07, 1.09584245e+07, 1.02684692e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt34_pt60to120' : [ 1.73288661e+07, 1.02638543e+07, ], 'CountWeighted_rwgt34_pt120to200' : [ 9.85857154e+06, 9.85830967e+06, 9.85855249e+06, ], 'CountWeightedLHEWeightScale_rwgt34_pt120to200' : [ 1.30183820e+07, 1.20643356e+07, 1.12300610e+07, 1.06377375e+07, 9.85857154e+06, 9.17722025e+06, 8.85584157e+06, 8.20743350e+06, 7.64048145e+06, ], 'CountWeightedLHEEnvelope_rwgt34_pt120to200' : [ 1.30233620e+07, 7.63844575e+06, ], 'CountWeightedFull_rwgt34_pt120to200' : [ 9.85857154e+06, 9.85830967e+06, 9.85855249e+06, ], 'CountWeightedFullLHEWeightScale_rwgt34_pt120to200' : [ 1.30183820e+07, 1.20643356e+07, 1.12300610e+07, 1.06377375e+07, 9.85857154e+06, 9.17722025e+06, 8.85584157e+06, 8.20743350e+06, 7.64048145e+06, ], 'CountWeightedFullLHEEnvelope_rwgt34_pt120to200' : [ 1.30233620e+07, 7.63844575e+06, ], 'CountWeightedL1PrefireNom_rwgt34_pt120to200' : [ 9.53135511e+06, 9.53081615e+06, 9.53170277e+06, ], 'CountWeightedL1Prefire_rwgt34_pt120to200' : [ 9.53135511e+06, 9.45204176e+06, 9.60885772e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt34_pt120to200' : [ 1.25804997e+07, 1.16641261e+07, 1.08618025e+07, 1.02797498e+07, 9.53135511e+06, 8.87612575e+06, 8.55769636e+06, 7.93491459e+06, 7.38969884e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt34_pt120to200' : [ 1.25854257e+07, 7.38768382e+06, ], 'CountWeightedFullL1PrefireNom_rwgt34_pt120to200' : [ 9.53135511e+06, 9.53081615e+06, 9.53170277e+06, ], 'CountWeightedFullL1Prefire_rwgt34_pt120to200' : [ 9.53135511e+06, 9.45204176e+06, 9.60885772e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt34_pt120to200' : [ 1.25804997e+07, 1.16641261e+07, 1.08618025e+07, 1.02797498e+07, 9.53135511e+06, 8.87612575e+06, 8.55769636e+06, 7.93491459e+06, 7.38969884e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt34_pt120to200' : [ 1.25854257e+07, 7.38768382e+06, ], 'CountWeighted_rwgt34_pt200to300' : [ 4.05161857e+06, 4.05080469e+06, 4.05266705e+06, ], 'CountWeightedLHEWeightScale_rwgt34_pt200to300' : [ 5.38281231e+06, 4.93619364e+06, 4.55489108e+06, 4.41783623e+06, 4.05161857e+06, 3.73896379e+06, 3.69117659e+06, 3.38543854e+06, 3.12439424e+06, ], 'CountWeightedLHEEnvelope_rwgt34_pt200to300' : [ 5.38384518e+06, 3.12400608e+06, ], 'CountWeightedFull_rwgt34_pt200to300' : [ 4.05161857e+06, 4.05080469e+06, 4.05266705e+06, ], 'CountWeightedFullLHEWeightScale_rwgt34_pt200to300' : [ 5.38281231e+06, 4.93619364e+06, 4.55489108e+06, 4.41783623e+06, 4.05161857e+06, 3.73896379e+06, 3.69117659e+06, 3.38543854e+06, 3.12439424e+06, ], 'CountWeightedFullLHEEnvelope_rwgt34_pt200to300' : [ 5.38384518e+06, 3.12400608e+06, ], 'CountWeightedL1PrefireNom_rwgt34_pt200to300' : [ 3.90616540e+06, 3.90529420e+06, 3.90725345e+06, ], 'CountWeightedL1Prefire_rwgt34_pt200to300' : [ 3.90616540e+06, 3.87187342e+06, 3.93992048e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt34_pt200to300' : [ 5.18637111e+06, 4.75890352e+06, 4.39350383e+06, 4.25668370e+06, 3.90616540e+06, 3.60654240e+06, 3.55658111e+06, 3.26394315e+06, 3.01377891e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt34_pt200to300' : [ 5.18739196e+06, 3.01339547e+06, ], 'CountWeightedFullL1PrefireNom_rwgt34_pt200to300' : [ 3.90616540e+06, 3.90529420e+06, 3.90725345e+06, ], 'CountWeightedFullL1Prefire_rwgt34_pt200to300' : [ 3.90616540e+06, 3.87187342e+06, 3.93992048e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt34_pt200to300' : [ 5.18637111e+06, 4.75890352e+06, 4.39350383e+06, 4.25668370e+06, 3.90616540e+06, 3.60654240e+06, 3.55658111e+06, 3.26394315e+06, 3.01377891e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt34_pt200to300' : [ 5.18739196e+06, 3.01339547e+06, ], 'CountWeighted_rwgt34_ptGt300' : [ 1.83659603e+06, 1.83607427e+06, 1.83701973e+06, ], 'CountWeightedLHEWeightScale_rwgt34_ptGt300' : [ 2.46302501e+06, 2.22202286e+06, 2.02187201e+06, 2.03556708e+06, 1.83659603e+06, 1.67133699e+06, 1.71060647e+06, 1.54354356e+06, 1.40477292e+06, ], 'CountWeightedLHEEnvelope_rwgt34_ptGt300' : [ 2.46313802e+06, 1.40474120e+06, ], 'CountWeightedFull_rwgt34_ptGt300' : [ 1.83659603e+06, 1.83607427e+06, 1.83701973e+06, ], 'CountWeightedFullLHEWeightScale_rwgt34_ptGt300' : [ 2.46302501e+06, 2.22202286e+06, 2.02187201e+06, 2.03556708e+06, 1.83659603e+06, 1.67133699e+06, 1.71060647e+06, 1.54354356e+06, 1.40477292e+06, ], 'CountWeightedFullLHEEnvelope_rwgt34_ptGt300' : [ 2.46313802e+06, 1.40474120e+06, ], 'CountWeightedL1PrefireNom_rwgt34_ptGt300' : [ 1.77181280e+06, 1.77124394e+06, 1.77226529e+06, ], 'CountWeightedL1Prefire_rwgt34_ptGt300' : [ 1.77181280e+06, 1.75678832e+06, 1.78663118e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt34_ptGt300' : [ 2.37415375e+06, 2.14348686e+06, 1.95168246e+06, 1.96226618e+06, 1.77181280e+06, 1.61343186e+06, 1.64911019e+06, 1.48918766e+06, 1.35618427e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt34_ptGt300' : [ 2.37426466e+06, 1.35615336e+06, ], 'CountWeightedFullL1PrefireNom_rwgt34_ptGt300' : [ 1.77181280e+06, 1.77124394e+06, 1.77226529e+06, ], 'CountWeightedFullL1Prefire_rwgt34_ptGt300' : [ 1.77181280e+06, 1.75678832e+06, 1.78663118e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt34_ptGt300' : [ 2.37415375e+06, 2.14348686e+06, 1.95168246e+06, 1.96226618e+06, 1.77181280e+06, 1.61343186e+06, 1.64911019e+06, 1.48918766e+06, 1.35618427e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt34_ptGt300' : [ 2.37426466e+06, 1.35615336e+06, ], 'CountWeighted_rwgt34_pt300to450' : [ 1.44485687e+06, 1.44421213e+06, 1.44540714e+06, ], 'CountWeightedLHEWeightScale_rwgt34_pt300to450' : [ 1.93409631e+06, 1.75086023e+06, 1.59789221e+06, 1.59586664e+06, 1.44485687e+06, 1.31877840e+06, 1.33928967e+06, 1.21268657e+06, 1.10697363e+06, ], 'CountWeightedLHEEnvelope_rwgt34_pt300to450' : [ 1.93420657e+06, 1.10694281e+06, ], 'CountWeightedFull_rwgt34_pt300to450' : [ 1.44485687e+06, 1.44421213e+06, 1.44540714e+06, ], 'CountWeightedFullLHEWeightScale_rwgt34_pt300to450' : [ 1.93409631e+06, 1.75086023e+06, 1.59789221e+06, 1.59586664e+06, 1.44485687e+06, 1.31877840e+06, 1.33928967e+06, 1.21268657e+06, 1.10697363e+06, ], 'CountWeightedFullLHEEnvelope_rwgt34_pt300to450' : [ 1.93420657e+06, 1.10694281e+06, ], 'CountWeightedL1PrefireNom_rwgt34_pt300to450' : [ 1.39255919e+06, 1.39187884e+06, 1.39312551e+06, ], 'CountWeightedL1Prefire_rwgt34_pt300to450' : [ 1.39255919e+06, 1.38042362e+06, 1.40453126e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt34_pt300to450' : [ 1.86258041e+06, 1.68738790e+06, 1.54095210e+06, 1.53694919e+06, 1.39255919e+06, 1.27185696e+06, 1.28990896e+06, 1.16884892e+06, 1.06763873e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt34_pt300to450' : [ 1.86268857e+06, 1.06760870e+06, ], 'CountWeightedFullL1PrefireNom_rwgt34_pt300to450' : [ 1.39255919e+06, 1.39187884e+06, 1.39312551e+06, ], 'CountWeightedFullL1Prefire_rwgt34_pt300to450' : [ 1.39255919e+06, 1.38042362e+06, 1.40453126e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt34_pt300to450' : [ 1.86258041e+06, 1.68738790e+06, 1.54095210e+06, 1.53694919e+06, 1.39255919e+06, 1.27185696e+06, 1.28990896e+06, 1.16884892e+06, 1.06763873e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt34_pt300to450' : [ 1.86268857e+06, 1.06760870e+06, ], 'CountWeighted_rwgt34_ptGt450' : [ 3.91739328e+05, 3.91864436e+05, 3.91612986e+05, ], 'CountWeightedLHEWeightScale_rwgt34_ptGt450' : [ 5.28928590e+05, 4.71162727e+05, 4.23979829e+05, 4.39700581e+05, 3.91739328e+05, 3.52558468e+05, 3.71316778e+05, 3.30857031e+05, 2.97799220e+05, ], 'CountWeightedLHEEnvelope_rwgt34_ptGt450' : [ 5.28931370e+05, 2.97798309e+05, ], 'CountWeightedFull_rwgt34_ptGt450' : [ 3.91739328e+05, 3.91864436e+05, 3.91612986e+05, ], 'CountWeightedFullLHEWeightScale_rwgt34_ptGt450' : [ 5.28928590e+05, 4.71162727e+05, 4.23979829e+05, 4.39700581e+05, 3.91739328e+05, 3.52558468e+05, 3.71316778e+05, 3.30857031e+05, 2.97799220e+05, ], 'CountWeightedFullLHEEnvelope_rwgt34_ptGt450' : [ 5.28931370e+05, 2.97798309e+05, ], 'CountWeightedL1PrefireNom_rwgt34_ptGt450' : [ 3.79253437e+05, 3.79366261e+05, 3.79140058e+05, ], 'CountWeightedL1Prefire_rwgt34_ptGt450' : [ 3.79253437e+05, 3.76364549e+05, 3.82099944e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt34_ptGt450' : [ 5.11573271e+05, 4.56099132e+05, 4.10730214e+05, 4.25316983e+05, 3.79253437e+05, 3.41574765e+05, 3.59201245e+05, 3.20338704e+05, 2.88545495e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt34_ptGt450' : [ 5.11575975e+05, 2.88544616e+05, ], 'CountWeightedFullL1PrefireNom_rwgt34_ptGt450' : [ 3.79253437e+05, 3.79366261e+05, 3.79140058e+05, ], 'CountWeightedFullL1Prefire_rwgt34_ptGt450' : [ 3.79253437e+05, 3.76364549e+05, 3.82099944e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt34_ptGt450' : [ 5.11573271e+05, 4.56099132e+05, 4.10730214e+05, 4.25316983e+05, 3.79253437e+05, 3.41574765e+05, 3.59201245e+05, 3.20338704e+05, 2.88545495e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt34_ptGt450' : [ 5.11575975e+05, 2.88544616e+05, ], 'CountWeighted_rwgt36' : [ 1.50288663e+07, 1.50277603e+07, 1.50282198e+07, ], 'CountWeightedLHEWeightScale_rwgt36' : [ 1.97905318e+07, 1.83943968e+07, 1.71661178e+07, 1.61690663e+07, 1.50288663e+07, 1.40244013e+07, 1.34591104e+07, 1.25092091e+07, 1.16735834e+07, ], 'CountWeightedLHEEnvelope_rwgt36' : [ 1.98016061e+07, 1.16691982e+07, ], 'CountWeightedFull_rwgt36' : [ 1.50288663e+07, 1.50277603e+07, 1.50282198e+07, ], 'CountWeightedFullLHEWeightScale_rwgt36' : [ 1.97905318e+07, 1.83943968e+07, 1.71661178e+07, 1.61690663e+07, 1.50288663e+07, 1.40244013e+07, 1.34591104e+07, 1.25092091e+07, 1.16735834e+07, ], 'CountWeightedFullLHEEnvelope_rwgt36' : [ 1.98016061e+07, 1.16691982e+07, ], 'CountWeightedL1PrefireNom_rwgt36' : [ 1.45404483e+07, 1.45392623e+07, 1.45408162e+07, ], 'CountWeightedL1Prefire_rwgt36' : [ 1.45404483e+07, 1.44210603e+07, 1.46567348e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt36' : [ 1.91388586e+07, 1.77975260e+07, 1.66158338e+07, 1.56362117e+07, 1.45404483e+07, 1.35744569e+07, 1.30152688e+07, 1.21026785e+07, 1.12988001e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt36' : [ 1.91498125e+07, 1.12944583e+07, ], 'CountWeightedFullL1PrefireNom_rwgt36' : [ 1.45404483e+07, 1.45392623e+07, 1.45408162e+07, ], 'CountWeightedFullL1Prefire_rwgt36' : [ 1.45404483e+07, 1.44210603e+07, 1.46567348e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt36' : [ 1.91388586e+07, 1.77975260e+07, 1.66158338e+07, 1.56362117e+07, 1.45404483e+07, 1.35744569e+07, 1.30152688e+07, 1.21026785e+07, 1.12988001e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt36' : [ 1.91498125e+07, 1.12944583e+07, ], 'CountWeighted_rwgt36_fwd' : [ 2.22938655e+05, 2.23005912e+05, 2.22867024e+05, ], 'CountWeightedLHEWeightScale_rwgt36_fwd' : [ 2.95596685e+05, 2.73116225e+05, 2.54008033e+05, 2.41268112e+05, 2.22938655e+05, 2.07356099e+05, 2.00662159e+05, 1.85430796e+05, 1.72479481e+05, ], 'CountWeightedLHEEnvelope_rwgt36_fwd' : [ 2.95639270e+05, 1.72461160e+05, ], 'CountWeightedFull_rwgt36_fwd' : [ 2.22938655e+05, 2.23005912e+05, 2.22867024e+05, ], 'CountWeightedFullLHEWeightScale_rwgt36_fwd' : [ 2.95596685e+05, 2.73116225e+05, 2.54008033e+05, 2.41268112e+05, 2.22938655e+05, 2.07356099e+05, 2.00662159e+05, 1.85430796e+05, 1.72479481e+05, ], 'CountWeightedFullLHEEnvelope_rwgt36_fwd' : [ 2.95639270e+05, 1.72461160e+05, ], 'CountWeightedL1PrefireNom_rwgt36_fwd' : [ 1.91622065e+05, 1.91612015e+05, 1.91633414e+05, ], 'CountWeightedL1Prefire_rwgt36_fwd' : [ 1.91622065e+05, 1.84686723e+05, 1.98626268e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt36_fwd' : [ 2.53988452e+05, 2.34815183e+05, 2.18505055e+05, 2.07249382e+05, 1.91622065e+05, 1.78325666e+05, 1.72329263e+05, 1.59346832e+05, 1.48298919e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt36_fwd' : [ 2.54025659e+05, 1.48282997e+05, ], 'CountWeightedFullL1PrefireNom_rwgt36_fwd' : [ 1.91622065e+05, 1.91612015e+05, 1.91633414e+05, ], 'CountWeightedFullL1Prefire_rwgt36_fwd' : [ 1.91622065e+05, 1.84686723e+05, 1.98626268e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt36_fwd' : [ 2.53988452e+05, 2.34815183e+05, 2.18505055e+05, 2.07249382e+05, 1.91622065e+05, 1.78325666e+05, 1.72329263e+05, 1.59346832e+05, 1.48298919e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt36_fwd' : [ 2.54025659e+05, 1.48282997e+05, ], 'CountWeighted_rwgt36_pt0to60' : [ 3.34613676e+06, 3.34630204e+06, 3.34592283e+06, ], 'CountWeightedLHEWeightScale_rwgt36_pt0to60' : [ 4.37256890e+06, 4.10184939e+06, 3.85756509e+06, 3.56719308e+06, 3.34613676e+06, 3.14667209e+06, 2.96568368e+06, 2.78172745e+06, 2.61580737e+06, ], 'CountWeightedLHEEnvelope_rwgt36_pt0to60' : [ 4.37660365e+06, 2.61421905e+06, ], 'CountWeightedFull_rwgt36_pt0to60' : [ 3.34613676e+06, 3.34630204e+06, 3.34592283e+06, ], 'CountWeightedFullLHEWeightScale_rwgt36_pt0to60' : [ 4.37256890e+06, 4.10184939e+06, 3.85756509e+06, 3.56719308e+06, 3.34613676e+06, 3.14667209e+06, 2.96568368e+06, 2.78172745e+06, 2.61580737e+06, ], 'CountWeightedFullLHEEnvelope_rwgt36_pt0to60' : [ 4.37660365e+06, 2.61421905e+06, ], 'CountWeightedL1PrefireNom_rwgt36_pt0to60' : [ 3.25557363e+06, 3.25562079e+06, 3.25552610e+06, ], 'CountWeightedL1Prefire_rwgt36_pt0to60' : [ 3.25557363e+06, 3.23242913e+06, 3.27778205e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt36_pt0to60' : [ 4.25276620e+06, 3.99095779e+06, 3.75443972e+06, 3.46935021e+06, 3.25557363e+06, 3.06246238e+06, 2.88426761e+06, 2.70637945e+06, 2.54574404e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt36_pt0to60' : [ 4.25676113e+06, 2.54416952e+06, ], 'CountWeightedFullL1PrefireNom_rwgt36_pt0to60' : [ 3.25557363e+06, 3.25562079e+06, 3.25552610e+06, ], 'CountWeightedFullL1Prefire_rwgt36_pt0to60' : [ 3.25557363e+06, 3.23242913e+06, 3.27778205e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt36_pt0to60' : [ 4.25276620e+06, 3.99095779e+06, 3.75443972e+06, 3.46935021e+06, 3.25557363e+06, 3.06246238e+06, 2.88426761e+06, 2.70637945e+06, 2.54574404e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt36_pt0to60' : [ 4.25676113e+06, 2.54416952e+06, ], 'CountWeighted_rwgt36_pt60to120' : [ 5.30798581e+06, 5.30828680e+06, 5.30757268e+06, ], 'CountWeightedLHEWeightScale_rwgt36_pt60to120' : [ 6.97229312e+06, 6.51068687e+06, 6.09872255e+06, 5.68437455e+06, 5.30798581e+06, 4.97212694e+06, 4.72338173e+06, 4.41058599e+06, 4.13150756e+06, ], 'CountWeightedLHEEnvelope_rwgt36_pt60to120' : [ 6.97689809e+06, 4.12968767e+06, ], 'CountWeightedFull_rwgt36_pt60to120' : [ 5.30798581e+06, 5.30828680e+06, 5.30757268e+06, ], 'CountWeightedFullLHEWeightScale_rwgt36_pt60to120' : [ 6.97229312e+06, 6.51068687e+06, 6.09872255e+06, 5.68437455e+06, 5.30798581e+06, 4.97212694e+06, 4.72338173e+06, 4.41058599e+06, 4.13150756e+06, ], 'CountWeightedFullLHEEnvelope_rwgt36_pt60to120' : [ 6.97689809e+06, 4.12968767e+06, ], 'CountWeightedL1PrefireNom_rwgt36_pt60to120' : [ 5.15174467e+06, 5.15179442e+06, 5.15163907e+06, ], 'CountWeightedL1Prefire_rwgt36_pt60to120' : [ 5.15174467e+06, 5.11266902e+06, 5.18955088e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt36_pt60to120' : [ 6.76453204e+06, 6.31925533e+06, 5.92138176e+06, 5.51479880e+06, 5.15174467e+06, 4.82738076e+06, 4.58234206e+06, 4.28063500e+06, 4.01112183e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt36_pt60to120' : [ 6.76909000e+06, 4.00931919e+06, ], 'CountWeightedFullL1PrefireNom_rwgt36_pt60to120' : [ 5.15174467e+06, 5.15179442e+06, 5.15163907e+06, ], 'CountWeightedFullL1Prefire_rwgt36_pt60to120' : [ 5.15174467e+06, 5.11266902e+06, 5.18955088e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt36_pt60to120' : [ 6.76453204e+06, 6.31925533e+06, 5.92138176e+06, 5.51479880e+06, 5.15174467e+06, 4.82738076e+06, 4.58234206e+06, 4.28063500e+06, 4.01112183e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt36_pt60to120' : [ 6.76909000e+06, 4.00931919e+06, ], 'CountWeighted_rwgt36_pt120to200' : [ 3.85101364e+06, 3.85090157e+06, 3.85097545e+06, ], 'CountWeightedLHEWeightScale_rwgt36_pt120to200' : [ 5.08530574e+06, 4.71262791e+06, 4.38674177e+06, 4.15536704e+06, 3.85101364e+06, 3.58485176e+06, 3.45931272e+06, 3.20603041e+06, 2.98456299e+06, ], 'CountWeightedLHEEnvelope_rwgt36_pt120to200' : [ 5.08725112e+06, 2.98376771e+06, ], 'CountWeightedFull_rwgt36_pt120to200' : [ 3.85101364e+06, 3.85090157e+06, 3.85097545e+06, ], 'CountWeightedFullLHEWeightScale_rwgt36_pt120to200' : [ 5.08530574e+06, 4.71262791e+06, 4.38674177e+06, 4.15536704e+06, 3.85101364e+06, 3.58485176e+06, 3.45931272e+06, 3.20603041e+06, 2.98456299e+06, ], 'CountWeightedFullLHEEnvelope_rwgt36_pt120to200' : [ 5.08725112e+06, 2.98376771e+06, ], 'CountWeightedL1PrefireNom_rwgt36_pt120to200' : [ 3.72319488e+06, 3.72297720e+06, 3.72330453e+06, ], 'CountWeightedL1Prefire_rwgt36_pt120to200' : [ 3.72319488e+06, 3.69221382e+06, 3.75347164e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt36_pt120to200' : [ 4.91425724e+06, 4.55629650e+06, 4.24289163e+06, 4.01552798e+06, 3.72319488e+06, 3.46723606e+06, 3.34284964e+06, 3.09957693e+06, 2.88660098e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt36_pt120to200' : [ 4.91618159e+06, 2.88581377e+06, ], 'CountWeightedFullL1PrefireNom_rwgt36_pt120to200' : [ 3.72319488e+06, 3.72297720e+06, 3.72330453e+06, ], 'CountWeightedFullL1Prefire_rwgt36_pt120to200' : [ 3.72319488e+06, 3.69221382e+06, 3.75347164e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt36_pt120to200' : [ 4.91425724e+06, 4.55629650e+06, 4.24289163e+06, 4.01552798e+06, 3.72319488e+06, 3.46723606e+06, 3.34284964e+06, 3.09957693e+06, 2.88660098e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt36_pt120to200' : [ 4.91618159e+06, 2.88581377e+06, ], 'CountWeighted_rwgt36_pt200to300' : [ 1.58266032e+06, 1.58233729e+06, 1.58305715e+06, ], 'CountWeightedLHEWeightScale_rwgt36_pt200to300' : [ 2.10266105e+06, 1.92820040e+06, 1.77925449e+06, 1.72571729e+06, 1.58266032e+06, 1.46053253e+06, 1.44186565e+06, 1.32243705e+06, 1.22046639e+06, ], 'CountWeightedLHEEnvelope_rwgt36_pt200to300' : [ 2.10306456e+06, 1.22031476e+06, ], 'CountWeightedFull_rwgt36_pt200to300' : [ 1.58266032e+06, 1.58233729e+06, 1.58305715e+06, ], 'CountWeightedFullLHEWeightScale_rwgt36_pt200to300' : [ 2.10266105e+06, 1.92820040e+06, 1.77925449e+06, 1.72571729e+06, 1.58266032e+06, 1.46053253e+06, 1.44186565e+06, 1.32243705e+06, 1.22046639e+06, ], 'CountWeightedFullLHEEnvelope_rwgt36_pt200to300' : [ 2.10306456e+06, 1.22031476e+06, ], 'CountWeightedL1PrefireNom_rwgt36_pt200to300' : [ 1.52584361e+06, 1.52550037e+06, 1.52626154e+06, ], 'CountWeightedL1Prefire_rwgt36_pt200to300' : [ 1.52584361e+06, 1.51244857e+06, 1.53902887e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt36_pt200to300' : [ 2.02592587e+06, 1.85894624e+06, 1.71621257e+06, 1.66276694e+06, 1.52584361e+06, 1.40880572e+06, 1.38928949e+06, 1.27497819e+06, 1.17725732e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt36_pt200to300' : [ 2.02632460e+06, 1.17710754e+06, ], 'CountWeightedFullL1PrefireNom_rwgt36_pt200to300' : [ 1.52584361e+06, 1.52550037e+06, 1.52626154e+06, ], 'CountWeightedFullL1Prefire_rwgt36_pt200to300' : [ 1.52584361e+06, 1.51244857e+06, 1.53902887e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt36_pt200to300' : [ 2.02592587e+06, 1.85894624e+06, 1.71621257e+06, 1.66276694e+06, 1.52584361e+06, 1.40880572e+06, 1.38928949e+06, 1.27497819e+06, 1.17725732e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt36_pt200to300' : [ 2.02632460e+06, 1.17710754e+06, ], 'CountWeighted_rwgt36_ptGt300' : [ 7.17418076e+05, 7.17224090e+05, 7.17586783e+05, ], 'CountWeightedLHEWeightScale_rwgt36_ptGt300' : [ 9.62118987e+05, 8.67977827e+05, 7.89793763e+05, 7.95143471e+05, 7.17418076e+05, 6.52865998e+05, 6.68205644e+05, 6.02946861e+05, 5.48739369e+05, ], 'CountWeightedLHEEnvelope_rwgt36_ptGt300' : [ 9.62163145e+05, 5.48726974e+05, ], 'CountWeightedFull_rwgt36_ptGt300' : [ 7.17418076e+05, 7.17224090e+05, 7.17586783e+05, ], 'CountWeightedFullLHEWeightScale_rwgt36_ptGt300' : [ 9.62118987e+05, 8.67977827e+05, 7.89793763e+05, 7.95143471e+05, 7.17418076e+05, 6.52865998e+05, 6.68205644e+05, 6.02946861e+05, 5.48739369e+05, ], 'CountWeightedFullLHEEnvelope_rwgt36_ptGt300' : [ 9.62163145e+05, 5.48726974e+05, ], 'CountWeightedL1PrefireNom_rwgt36_ptGt300' : [ 6.92112885e+05, 6.91896851e+05, 6.92291597e+05, ], 'CountWeightedL1Prefire_rwgt36_ptGt300' : [ 6.92112885e+05, 6.86244216e+05, 6.97901401e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt36_ptGt300' : [ 9.27403676e+05, 8.37299678e+05, 7.62375906e+05, 7.66510314e+05, 6.92112885e+05, 6.30246835e+05, 6.44183638e+05, 5.81714075e+05, 5.29759429e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt36_ptGt300' : [ 9.27446994e+05, 5.29747357e+05, ], 'CountWeightedFullL1PrefireNom_rwgt36_ptGt300' : [ 6.92112885e+05, 6.91896851e+05, 6.92291597e+05, ], 'CountWeightedFullL1Prefire_rwgt36_ptGt300' : [ 6.92112885e+05, 6.86244216e+05, 6.97901401e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt36_ptGt300' : [ 9.27403676e+05, 8.37299678e+05, 7.62375906e+05, 7.66510314e+05, 6.92112885e+05, 6.30246835e+05, 6.44183638e+05, 5.81714075e+05, 5.29759429e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt36_ptGt300' : [ 9.27446994e+05, 5.29747357e+05, ], 'CountWeighted_rwgt36_pt300to450' : [ 5.64396088e+05, 5.64148761e+05, 5.64612971e+05, ], 'CountWeightedLHEWeightScale_rwgt36_pt300to450' : [ 7.55506360e+05, 6.83929849e+05, 6.24176627e+05, 6.23385397e+05, 5.64396088e+05, 5.15147852e+05, 5.23160064e+05, 4.73705789e+05, 4.32411526e+05, ], 'CountWeightedLHEEnvelope_rwgt36_pt300to450' : [ 7.55549420e+05, 4.32399496e+05, ], 'CountWeightedFull_rwgt36_pt300to450' : [ 5.64396088e+05, 5.64148761e+05, 5.64612971e+05, ], 'CountWeightedFullLHEWeightScale_rwgt36_pt300to450' : [ 7.55506360e+05, 6.83929849e+05, 6.24176627e+05, 6.23385397e+05, 5.64396088e+05, 5.15147852e+05, 5.23160064e+05, 4.73705789e+05, 4.32411526e+05, ], 'CountWeightedFullLHEEnvelope_rwgt36_pt300to450' : [ 7.55549420e+05, 4.32399496e+05, ], 'CountWeightedL1PrefireNom_rwgt36_pt300to450' : [ 5.43967794e+05, 5.43704693e+05, 5.44190048e+05, ], 'CountWeightedL1Prefire_rwgt36_pt300to450' : [ 5.43967794e+05, 5.39227442e+05, 5.48644351e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt36_pt300to450' : [ 7.27570469e+05, 6.59135951e+05, 6.01934415e+05, 6.00370802e+05, 5.43967794e+05, 4.96819181e+05, 5.03870695e+05, 4.56581684e+05, 4.17046351e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt36_pt300to450' : [ 7.27612722e+05, 4.17034627e+05, ], 'CountWeightedFullL1PrefireNom_rwgt36_pt300to450' : [ 5.43967794e+05, 5.43704693e+05, 5.44190048e+05, ], 'CountWeightedFullL1Prefire_rwgt36_pt300to450' : [ 5.43967794e+05, 5.39227442e+05, 5.48644351e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt36_pt300to450' : [ 7.27570469e+05, 6.59135951e+05, 6.01934415e+05, 6.00370802e+05, 5.43967794e+05, 4.96819181e+05, 5.03870695e+05, 4.56581684e+05, 4.17046351e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt36_pt300to450' : [ 7.27612722e+05, 4.17034627e+05, ], 'CountWeighted_rwgt36_ptGt450' : [ 1.53023133e+05, 1.53071989e+05, 1.52973938e+05, ], 'CountWeightedLHEWeightScale_rwgt36_ptGt450' : [ 2.06612725e+05, 1.84047953e+05, 1.65617122e+05, 1.71758049e+05, 1.53023133e+05, 1.37718147e+05, 1.45045616e+05, 1.29241037e+05, 1.16327817e+05, ], 'CountWeightedLHEEnvelope_rwgt36_ptGt450' : [ 2.06613811e+05, 1.16327461e+05, ], 'CountWeightedFull_rwgt36_ptGt450' : [ 1.53023133e+05, 1.53071989e+05, 1.52973938e+05, ], 'CountWeightedFullLHEWeightScale_rwgt36_ptGt450' : [ 2.06612725e+05, 1.84047953e+05, 1.65617122e+05, 1.71758049e+05, 1.53023133e+05, 1.37718147e+05, 1.45045616e+05, 1.29241037e+05, 1.16327817e+05, ], 'CountWeightedFullLHEEnvelope_rwgt36_ptGt450' : [ 2.06613811e+05, 1.16327461e+05, ], 'CountWeightedL1PrefireNom_rwgt36_ptGt450' : [ 1.48145857e+05, 1.48189912e+05, 1.48101665e+05, ], 'CountWeightedL1Prefire_rwgt36_ptGt450' : [ 1.48145857e+05, 1.47017380e+05, 1.49257770e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt36_ptGt450' : [ 1.99833309e+05, 1.78163724e+05, 1.60441494e+05, 1.66139457e+05, 1.48145857e+05, 1.33427642e+05, 1.40312986e+05, 1.25132317e+05, 1.12713079e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt36_ptGt450' : [ 1.99834367e+05, 1.12712736e+05, ], 'CountWeightedFullL1PrefireNom_rwgt36_ptGt450' : [ 1.48145857e+05, 1.48189912e+05, 1.48101665e+05, ], 'CountWeightedFullL1Prefire_rwgt36_ptGt450' : [ 1.48145857e+05, 1.47017380e+05, 1.49257770e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt36_ptGt450' : [ 1.99833309e+05, 1.78163724e+05, 1.60441494e+05, 1.66139457e+05, 1.48145857e+05, 1.33427642e+05, 1.40312986e+05, 1.25132317e+05, 1.12713079e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt36_ptGt450' : [ 1.99834367e+05, 1.12712736e+05, ], 'CountWeighted_rwgt46' : [ 1.50288663e+07, 1.50277603e+07, 1.50282198e+07, ], 'CountWeightedLHEWeightScale_rwgt46' : [ 1.97905318e+07, 1.83943968e+07, 1.71661178e+07, 1.61690663e+07, 1.50288663e+07, 1.40244013e+07, 1.34591104e+07, 1.25092091e+07, 1.16735834e+07, ], 'CountWeightedLHEEnvelope_rwgt46' : [ 1.98016061e+07, 1.16691982e+07, ], 'CountWeightedFull_rwgt46' : [ 1.50288663e+07, 1.50277603e+07, 1.50282198e+07, ], 'CountWeightedFullLHEWeightScale_rwgt46' : [ 1.97905318e+07, 1.83943968e+07, 1.71661178e+07, 1.61690663e+07, 1.50288663e+07, 1.40244013e+07, 1.34591104e+07, 1.25092091e+07, 1.16735834e+07, ], 'CountWeightedFullLHEEnvelope_rwgt46' : [ 1.98016061e+07, 1.16691982e+07, ], 'CountWeightedL1PrefireNom_rwgt46' : [ 1.45404483e+07, 1.45392623e+07, 1.45408162e+07, ], 'CountWeightedL1Prefire_rwgt46' : [ 1.45404483e+07, 1.44210603e+07, 1.46567348e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt46' : [ 1.91388586e+07, 1.77975260e+07, 1.66158338e+07, 1.56362117e+07, 1.45404483e+07, 1.35744569e+07, 1.30152688e+07, 1.21026785e+07, 1.12988001e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt46' : [ 1.91498125e+07, 1.12944583e+07, ], 'CountWeightedFullL1PrefireNom_rwgt46' : [ 1.45404483e+07, 1.45392623e+07, 1.45408162e+07, ], 'CountWeightedFullL1Prefire_rwgt46' : [ 1.45404483e+07, 1.44210603e+07, 1.46567348e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt46' : [ 1.91388586e+07, 1.77975260e+07, 1.66158338e+07, 1.56362117e+07, 1.45404483e+07, 1.35744569e+07, 1.30152688e+07, 1.21026785e+07, 1.12988001e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt46' : [ 1.91498125e+07, 1.12944583e+07, ], 'CountWeighted_rwgt46_fwd' : [ 2.22938655e+05, 2.23005912e+05, 2.22867024e+05, ], 'CountWeightedLHEWeightScale_rwgt46_fwd' : [ 2.95596685e+05, 2.73116225e+05, 2.54008033e+05, 2.41268112e+05, 2.22938655e+05, 2.07356099e+05, 2.00662159e+05, 1.85430796e+05, 1.72479481e+05, ], 'CountWeightedLHEEnvelope_rwgt46_fwd' : [ 2.95639270e+05, 1.72461160e+05, ], 'CountWeightedFull_rwgt46_fwd' : [ 2.22938655e+05, 2.23005912e+05, 2.22867024e+05, ], 'CountWeightedFullLHEWeightScale_rwgt46_fwd' : [ 2.95596685e+05, 2.73116225e+05, 2.54008033e+05, 2.41268112e+05, 2.22938655e+05, 2.07356099e+05, 2.00662159e+05, 1.85430796e+05, 1.72479481e+05, ], 'CountWeightedFullLHEEnvelope_rwgt46_fwd' : [ 2.95639270e+05, 1.72461160e+05, ], 'CountWeightedL1PrefireNom_rwgt46_fwd' : [ 1.91622065e+05, 1.91612015e+05, 1.91633414e+05, ], 'CountWeightedL1Prefire_rwgt46_fwd' : [ 1.91622065e+05, 1.84686723e+05, 1.98626268e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt46_fwd' : [ 2.53988452e+05, 2.34815183e+05, 2.18505055e+05, 2.07249382e+05, 1.91622065e+05, 1.78325666e+05, 1.72329263e+05, 1.59346832e+05, 1.48298919e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt46_fwd' : [ 2.54025659e+05, 1.48282997e+05, ], 'CountWeightedFullL1PrefireNom_rwgt46_fwd' : [ 1.91622065e+05, 1.91612015e+05, 1.91633414e+05, ], 'CountWeightedFullL1Prefire_rwgt46_fwd' : [ 1.91622065e+05, 1.84686723e+05, 1.98626268e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt46_fwd' : [ 2.53988452e+05, 2.34815183e+05, 2.18505055e+05, 2.07249382e+05, 1.91622065e+05, 1.78325666e+05, 1.72329263e+05, 1.59346832e+05, 1.48298919e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt46_fwd' : [ 2.54025659e+05, 1.48282997e+05, ], 'CountWeighted_rwgt46_pt0to60' : [ 3.34613676e+06, 3.34630204e+06, 3.34592283e+06, ], 'CountWeightedLHEWeightScale_rwgt46_pt0to60' : [ 4.37256890e+06, 4.10184939e+06, 3.85756509e+06, 3.56719308e+06, 3.34613676e+06, 3.14667209e+06, 2.96568368e+06, 2.78172745e+06, 2.61580737e+06, ], 'CountWeightedLHEEnvelope_rwgt46_pt0to60' : [ 4.37660365e+06, 2.61421905e+06, ], 'CountWeightedFull_rwgt46_pt0to60' : [ 3.34613676e+06, 3.34630204e+06, 3.34592283e+06, ], 'CountWeightedFullLHEWeightScale_rwgt46_pt0to60' : [ 4.37256890e+06, 4.10184939e+06, 3.85756509e+06, 3.56719308e+06, 3.34613676e+06, 3.14667209e+06, 2.96568368e+06, 2.78172745e+06, 2.61580737e+06, ], 'CountWeightedFullLHEEnvelope_rwgt46_pt0to60' : [ 4.37660365e+06, 2.61421905e+06, ], 'CountWeightedL1PrefireNom_rwgt46_pt0to60' : [ 3.25557363e+06, 3.25562079e+06, 3.25552610e+06, ], 'CountWeightedL1Prefire_rwgt46_pt0to60' : [ 3.25557363e+06, 3.23242913e+06, 3.27778205e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt46_pt0to60' : [ 4.25276620e+06, 3.99095779e+06, 3.75443972e+06, 3.46935021e+06, 3.25557363e+06, 3.06246238e+06, 2.88426761e+06, 2.70637945e+06, 2.54574404e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt46_pt0to60' : [ 4.25676113e+06, 2.54416952e+06, ], 'CountWeightedFullL1PrefireNom_rwgt46_pt0to60' : [ 3.25557363e+06, 3.25562079e+06, 3.25552610e+06, ], 'CountWeightedFullL1Prefire_rwgt46_pt0to60' : [ 3.25557363e+06, 3.23242913e+06, 3.27778205e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt46_pt0to60' : [ 4.25276620e+06, 3.99095779e+06, 3.75443972e+06, 3.46935021e+06, 3.25557363e+06, 3.06246238e+06, 2.88426761e+06, 2.70637945e+06, 2.54574404e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt46_pt0to60' : [ 4.25676113e+06, 2.54416952e+06, ], 'CountWeighted_rwgt46_pt60to120' : [ 5.30798581e+06, 5.30828680e+06, 5.30757268e+06, ], 'CountWeightedLHEWeightScale_rwgt46_pt60to120' : [ 6.97229312e+06, 6.51068687e+06, 6.09872255e+06, 5.68437455e+06, 5.30798581e+06, 4.97212694e+06, 4.72338173e+06, 4.41058599e+06, 4.13150756e+06, ], 'CountWeightedLHEEnvelope_rwgt46_pt60to120' : [ 6.97689809e+06, 4.12968767e+06, ], 'CountWeightedFull_rwgt46_pt60to120' : [ 5.30798581e+06, 5.30828680e+06, 5.30757268e+06, ], 'CountWeightedFullLHEWeightScale_rwgt46_pt60to120' : [ 6.97229312e+06, 6.51068687e+06, 6.09872255e+06, 5.68437455e+06, 5.30798581e+06, 4.97212694e+06, 4.72338173e+06, 4.41058599e+06, 4.13150756e+06, ], 'CountWeightedFullLHEEnvelope_rwgt46_pt60to120' : [ 6.97689809e+06, 4.12968767e+06, ], 'CountWeightedL1PrefireNom_rwgt46_pt60to120' : [ 5.15174467e+06, 5.15179442e+06, 5.15163907e+06, ], 'CountWeightedL1Prefire_rwgt46_pt60to120' : [ 5.15174467e+06, 5.11266902e+06, 5.18955088e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt46_pt60to120' : [ 6.76453204e+06, 6.31925533e+06, 5.92138176e+06, 5.51479880e+06, 5.15174467e+06, 4.82738076e+06, 4.58234206e+06, 4.28063500e+06, 4.01112183e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt46_pt60to120' : [ 6.76909000e+06, 4.00931919e+06, ], 'CountWeightedFullL1PrefireNom_rwgt46_pt60to120' : [ 5.15174467e+06, 5.15179442e+06, 5.15163907e+06, ], 'CountWeightedFullL1Prefire_rwgt46_pt60to120' : [ 5.15174467e+06, 5.11266902e+06, 5.18955088e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt46_pt60to120' : [ 6.76453204e+06, 6.31925533e+06, 5.92138176e+06, 5.51479880e+06, 5.15174467e+06, 4.82738076e+06, 4.58234206e+06, 4.28063500e+06, 4.01112183e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt46_pt60to120' : [ 6.76909000e+06, 4.00931919e+06, ], 'CountWeighted_rwgt46_pt120to200' : [ 3.85101364e+06, 3.85090157e+06, 3.85097545e+06, ], 'CountWeightedLHEWeightScale_rwgt46_pt120to200' : [ 5.08530574e+06, 4.71262791e+06, 4.38674177e+06, 4.15536704e+06, 3.85101364e+06, 3.58485176e+06, 3.45931272e+06, 3.20603041e+06, 2.98456299e+06, ], 'CountWeightedLHEEnvelope_rwgt46_pt120to200' : [ 5.08725112e+06, 2.98376771e+06, ], 'CountWeightedFull_rwgt46_pt120to200' : [ 3.85101364e+06, 3.85090157e+06, 3.85097545e+06, ], 'CountWeightedFullLHEWeightScale_rwgt46_pt120to200' : [ 5.08530574e+06, 4.71262791e+06, 4.38674177e+06, 4.15536704e+06, 3.85101364e+06, 3.58485176e+06, 3.45931272e+06, 3.20603041e+06, 2.98456299e+06, ], 'CountWeightedFullLHEEnvelope_rwgt46_pt120to200' : [ 5.08725112e+06, 2.98376771e+06, ], 'CountWeightedL1PrefireNom_rwgt46_pt120to200' : [ 3.72319488e+06, 3.72297720e+06, 3.72330453e+06, ], 'CountWeightedL1Prefire_rwgt46_pt120to200' : [ 3.72319488e+06, 3.69221382e+06, 3.75347164e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt46_pt120to200' : [ 4.91425724e+06, 4.55629650e+06, 4.24289163e+06, 4.01552798e+06, 3.72319488e+06, 3.46723606e+06, 3.34284964e+06, 3.09957693e+06, 2.88660098e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt46_pt120to200' : [ 4.91618159e+06, 2.88581377e+06, ], 'CountWeightedFullL1PrefireNom_rwgt46_pt120to200' : [ 3.72319488e+06, 3.72297720e+06, 3.72330453e+06, ], 'CountWeightedFullL1Prefire_rwgt46_pt120to200' : [ 3.72319488e+06, 3.69221382e+06, 3.75347164e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt46_pt120to200' : [ 4.91425724e+06, 4.55629650e+06, 4.24289163e+06, 4.01552798e+06, 3.72319488e+06, 3.46723606e+06, 3.34284964e+06, 3.09957693e+06, 2.88660098e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt46_pt120to200' : [ 4.91618159e+06, 2.88581377e+06, ], 'CountWeighted_rwgt46_pt200to300' : [ 1.58266032e+06, 1.58233729e+06, 1.58305715e+06, ], 'CountWeightedLHEWeightScale_rwgt46_pt200to300' : [ 2.10266105e+06, 1.92820040e+06, 1.77925449e+06, 1.72571729e+06, 1.58266032e+06, 1.46053253e+06, 1.44186565e+06, 1.32243705e+06, 1.22046639e+06, ], 'CountWeightedLHEEnvelope_rwgt46_pt200to300' : [ 2.10306456e+06, 1.22031476e+06, ], 'CountWeightedFull_rwgt46_pt200to300' : [ 1.58266032e+06, 1.58233729e+06, 1.58305715e+06, ], 'CountWeightedFullLHEWeightScale_rwgt46_pt200to300' : [ 2.10266105e+06, 1.92820040e+06, 1.77925449e+06, 1.72571729e+06, 1.58266032e+06, 1.46053253e+06, 1.44186565e+06, 1.32243705e+06, 1.22046639e+06, ], 'CountWeightedFullLHEEnvelope_rwgt46_pt200to300' : [ 2.10306456e+06, 1.22031476e+06, ], 'CountWeightedL1PrefireNom_rwgt46_pt200to300' : [ 1.52584361e+06, 1.52550037e+06, 1.52626154e+06, ], 'CountWeightedL1Prefire_rwgt46_pt200to300' : [ 1.52584361e+06, 1.51244857e+06, 1.53902887e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt46_pt200to300' : [ 2.02592587e+06, 1.85894624e+06, 1.71621257e+06, 1.66276694e+06, 1.52584361e+06, 1.40880572e+06, 1.38928949e+06, 1.27497819e+06, 1.17725732e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt46_pt200to300' : [ 2.02632460e+06, 1.17710754e+06, ], 'CountWeightedFullL1PrefireNom_rwgt46_pt200to300' : [ 1.52584361e+06, 1.52550037e+06, 1.52626154e+06, ], 'CountWeightedFullL1Prefire_rwgt46_pt200to300' : [ 1.52584361e+06, 1.51244857e+06, 1.53902887e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt46_pt200to300' : [ 2.02592587e+06, 1.85894624e+06, 1.71621257e+06, 1.66276694e+06, 1.52584361e+06, 1.40880572e+06, 1.38928949e+06, 1.27497819e+06, 1.17725732e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt46_pt200to300' : [ 2.02632460e+06, 1.17710754e+06, ], 'CountWeighted_rwgt46_ptGt300' : [ 7.17418076e+05, 7.17224090e+05, 7.17586783e+05, ], 'CountWeightedLHEWeightScale_rwgt46_ptGt300' : [ 9.62118987e+05, 8.67977827e+05, 7.89793763e+05, 7.95143471e+05, 7.17418076e+05, 6.52865998e+05, 6.68205644e+05, 6.02946861e+05, 5.48739369e+05, ], 'CountWeightedLHEEnvelope_rwgt46_ptGt300' : [ 9.62163145e+05, 5.48726974e+05, ], 'CountWeightedFull_rwgt46_ptGt300' : [ 7.17418076e+05, 7.17224090e+05, 7.17586783e+05, ], 'CountWeightedFullLHEWeightScale_rwgt46_ptGt300' : [ 9.62118987e+05, 8.67977827e+05, 7.89793763e+05, 7.95143471e+05, 7.17418076e+05, 6.52865998e+05, 6.68205644e+05, 6.02946861e+05, 5.48739369e+05, ], 'CountWeightedFullLHEEnvelope_rwgt46_ptGt300' : [ 9.62163145e+05, 5.48726974e+05, ], 'CountWeightedL1PrefireNom_rwgt46_ptGt300' : [ 6.92112885e+05, 6.91896851e+05, 6.92291597e+05, ], 'CountWeightedL1Prefire_rwgt46_ptGt300' : [ 6.92112885e+05, 6.86244216e+05, 6.97901401e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt46_ptGt300' : [ 9.27403676e+05, 8.37299678e+05, 7.62375906e+05, 7.66510314e+05, 6.92112885e+05, 6.30246835e+05, 6.44183638e+05, 5.81714075e+05, 5.29759429e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt46_ptGt300' : [ 9.27446994e+05, 5.29747357e+05, ], 'CountWeightedFullL1PrefireNom_rwgt46_ptGt300' : [ 6.92112885e+05, 6.91896851e+05, 6.92291597e+05, ], 'CountWeightedFullL1Prefire_rwgt46_ptGt300' : [ 6.92112885e+05, 6.86244216e+05, 6.97901401e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt46_ptGt300' : [ 9.27403676e+05, 8.37299678e+05, 7.62375906e+05, 7.66510314e+05, 6.92112885e+05, 6.30246835e+05, 6.44183638e+05, 5.81714075e+05, 5.29759429e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt46_ptGt300' : [ 9.27446994e+05, 5.29747357e+05, ], 'CountWeighted_rwgt46_pt300to450' : [ 5.64396088e+05, 5.64148761e+05, 5.64612971e+05, ], 'CountWeightedLHEWeightScale_rwgt46_pt300to450' : [ 7.55506360e+05, 6.83929849e+05, 6.24176627e+05, 6.23385397e+05, 5.64396088e+05, 5.15147852e+05, 5.23160064e+05, 4.73705789e+05, 4.32411526e+05, ], 'CountWeightedLHEEnvelope_rwgt46_pt300to450' : [ 7.55549420e+05, 4.32399496e+05, ], 'CountWeightedFull_rwgt46_pt300to450' : [ 5.64396088e+05, 5.64148761e+05, 5.64612971e+05, ], 'CountWeightedFullLHEWeightScale_rwgt46_pt300to450' : [ 7.55506360e+05, 6.83929849e+05, 6.24176627e+05, 6.23385397e+05, 5.64396088e+05, 5.15147852e+05, 5.23160064e+05, 4.73705789e+05, 4.32411526e+05, ], 'CountWeightedFullLHEEnvelope_rwgt46_pt300to450' : [ 7.55549420e+05, 4.32399496e+05, ], 'CountWeightedL1PrefireNom_rwgt46_pt300to450' : [ 5.43967794e+05, 5.43704693e+05, 5.44190048e+05, ], 'CountWeightedL1Prefire_rwgt46_pt300to450' : [ 5.43967794e+05, 5.39227442e+05, 5.48644351e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt46_pt300to450' : [ 7.27570469e+05, 6.59135951e+05, 6.01934415e+05, 6.00370802e+05, 5.43967794e+05, 4.96819181e+05, 5.03870695e+05, 4.56581684e+05, 4.17046351e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt46_pt300to450' : [ 7.27612722e+05, 4.17034627e+05, ], 'CountWeightedFullL1PrefireNom_rwgt46_pt300to450' : [ 5.43967794e+05, 5.43704693e+05, 5.44190048e+05, ], 'CountWeightedFullL1Prefire_rwgt46_pt300to450' : [ 5.43967794e+05, 5.39227442e+05, 5.48644351e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt46_pt300to450' : [ 7.27570469e+05, 6.59135951e+05, 6.01934415e+05, 6.00370802e+05, 5.43967794e+05, 4.96819181e+05, 5.03870695e+05, 4.56581684e+05, 4.17046351e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt46_pt300to450' : [ 7.27612722e+05, 4.17034627e+05, ], 'CountWeighted_rwgt46_ptGt450' : [ 1.53023133e+05, 1.53071989e+05, 1.52973938e+05, ], 'CountWeightedLHEWeightScale_rwgt46_ptGt450' : [ 2.06612725e+05, 1.84047953e+05, 1.65617122e+05, 1.71758049e+05, 1.53023133e+05, 1.37718147e+05, 1.45045616e+05, 1.29241037e+05, 1.16327817e+05, ], 'CountWeightedLHEEnvelope_rwgt46_ptGt450' : [ 2.06613811e+05, 1.16327461e+05, ], 'CountWeightedFull_rwgt46_ptGt450' : [ 1.53023133e+05, 1.53071989e+05, 1.52973938e+05, ], 'CountWeightedFullLHEWeightScale_rwgt46_ptGt450' : [ 2.06612725e+05, 1.84047953e+05, 1.65617122e+05, 1.71758049e+05, 1.53023133e+05, 1.37718147e+05, 1.45045616e+05, 1.29241037e+05, 1.16327817e+05, ], 'CountWeightedFullLHEEnvelope_rwgt46_ptGt450' : [ 2.06613811e+05, 1.16327461e+05, ], 'CountWeightedL1PrefireNom_rwgt46_ptGt450' : [ 1.48145857e+05, 1.48189912e+05, 1.48101665e+05, ], 'CountWeightedL1Prefire_rwgt46_ptGt450' : [ 1.48145857e+05, 1.47017380e+05, 1.49257770e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt46_ptGt450' : [ 1.99833309e+05, 1.78163724e+05, 1.60441494e+05, 1.66139457e+05, 1.48145857e+05, 1.33427642e+05, 1.40312986e+05, 1.25132317e+05, 1.12713079e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt46_ptGt450' : [ 1.99834367e+05, 1.12712736e+05, ], 'CountWeightedFullL1PrefireNom_rwgt46_ptGt450' : [ 1.48145857e+05, 1.48189912e+05, 1.48101665e+05, ], 'CountWeightedFullL1Prefire_rwgt46_ptGt450' : [ 1.48145857e+05, 1.47017380e+05, 1.49257770e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt46_ptGt450' : [ 1.99833309e+05, 1.78163724e+05, 1.60441494e+05, 1.66139457e+05, 1.48145857e+05, 1.33427642e+05, 1.40312986e+05, 1.25132317e+05, 1.12713079e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt46_ptGt450' : [ 1.99834367e+05, 1.12712736e+05, ], 'CountWeighted_rwgt48' : [ 3.84732078e+07, 3.84727852e+07, 3.84730181e+07, ], 'CountWeightedLHEWeightScale_rwgt48' : [ 5.06636858e+07, 4.70899131e+07, 4.39452202e+07, 4.13928089e+07, 3.84732078e+07, 3.59024821e+07, 3.44553784e+07, 3.20234849e+07, 2.98843391e+07, ], 'CountWeightedLHEEnvelope_rwgt48' : [ 5.06920147e+07, 2.98731063e+07, ], 'CountWeightedFull_rwgt48' : [ 3.84732078e+07, 3.84727852e+07, 3.84730181e+07, ], 'CountWeightedFullLHEWeightScale_rwgt48' : [ 5.06636858e+07, 4.70899131e+07, 4.39452202e+07, 4.13928089e+07, 3.84732078e+07, 3.59024821e+07, 3.44553784e+07, 3.20234849e+07, 2.98843391e+07, ], 'CountWeightedFullLHEEnvelope_rwgt48' : [ 5.06920147e+07, 2.98731063e+07, ], 'CountWeightedL1PrefireNom_rwgt48' : [ 3.72233058e+07, 3.72213464e+07, 3.72247568e+07, ], 'CountWeightedL1Prefire_rwgt48' : [ 3.72233058e+07, 3.69174899e+07, 3.75209003e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt48' : [ 4.89954076e+07, 4.55618362e+07, 4.25365064e+07, 4.00286897e+07, 3.72233058e+07, 3.47506180e+07, 3.33191227e+07, 3.09827412e+07, 2.89248952e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt48' : [ 4.90234389e+07, 2.89137751e+07, ], 'CountWeightedFullL1PrefireNom_rwgt48' : [ 3.72233058e+07, 3.72213464e+07, 3.72247568e+07, ], 'CountWeightedFullL1Prefire_rwgt48' : [ 3.72233058e+07, 3.69174899e+07, 3.75209003e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt48' : [ 4.89954076e+07, 4.55618362e+07, 4.25365064e+07, 4.00286897e+07, 3.72233058e+07, 3.47506180e+07, 3.33191227e+07, 3.09827412e+07, 2.89248952e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt48' : [ 4.90234389e+07, 2.89137751e+07, ], 'CountWeighted_rwgt48_fwd' : [ 5.70722669e+05, 5.70895506e+05, 5.70539428e+05, ], 'CountWeightedLHEWeightScale_rwgt48_fwd' : [ 7.56727588e+05, 6.99177546e+05, 6.50260520e+05, 6.17646316e+05, 5.70722669e+05, 5.30831663e+05, 5.13695097e+05, 4.74702778e+05, 4.41547516e+05, ], 'CountWeightedLHEEnvelope_rwgt48_fwd' : [ 7.56836604e+05, 4.41500614e+05, ], 'CountWeightedFull_rwgt48_fwd' : [ 5.70722669e+05, 5.70895506e+05, 5.70539428e+05, ], 'CountWeightedFullLHEWeightScale_rwgt48_fwd' : [ 7.56727588e+05, 6.99177546e+05, 6.50260520e+05, 6.17646316e+05, 5.70722669e+05, 5.30831663e+05, 5.13695097e+05, 4.74702778e+05, 4.41547516e+05, ], 'CountWeightedFullLHEEnvelope_rwgt48_fwd' : [ 7.56836604e+05, 4.41500614e+05, ], 'CountWeightedL1PrefireNom_rwgt48_fwd' : [ 4.90552540e+05, 4.90526735e+05, 4.90581538e+05, ], 'CountWeightedL1Prefire_rwgt48_fwd' : [ 4.90552540e+05, 4.72798046e+05, 5.08483262e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt48_fwd' : [ 6.50210433e+05, 6.01126894e+05, 5.59372922e+05, 5.30558440e+05, 4.90552540e+05, 4.56513701e+05, 4.41162922e+05, 4.07927897e+05, 3.79645240e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt48_fwd' : [ 6.50305681e+05, 3.79604475e+05, ], 'CountWeightedFullL1PrefireNom_rwgt48_fwd' : [ 4.90552540e+05, 4.90526735e+05, 4.90581538e+05, ], 'CountWeightedFullL1Prefire_rwgt48_fwd' : [ 4.90552540e+05, 4.72798046e+05, 5.08483262e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt48_fwd' : [ 6.50210433e+05, 6.01126894e+05, 5.59372922e+05, 5.30558440e+05, 4.90552540e+05, 4.56513701e+05, 4.41162922e+05, 4.07927897e+05, 3.79645240e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt48_fwd' : [ 6.50305681e+05, 3.79604475e+05, ], 'CountWeighted_rwgt48_pt0to60' : [ 8.56605569e+06, 8.56652128e+06, 8.56564247e+06, ], 'CountWeightedLHEWeightScale_rwgt48_pt0to60' : [ 1.11937752e+07, 1.05007316e+07, 9.87536811e+06, 9.13201659e+06, 8.56605569e+06, 8.05547988e+06, 7.59215061e+06, 7.12122068e+06, 6.69646717e+06, ], 'CountWeightedLHEEnvelope_rwgt48_pt0to60' : [ 1.12041048e+07, 6.69240032e+06, ], 'CountWeightedFull_rwgt48_pt0to60' : [ 8.56605569e+06, 8.56652128e+06, 8.56564247e+06, ], 'CountWeightedFullLHEWeightScale_rwgt48_pt0to60' : [ 1.11937752e+07, 1.05007316e+07, 9.87536811e+06, 9.13201659e+06, 8.56605569e+06, 8.05547988e+06, 7.59215061e+06, 7.12122068e+06, 6.69646717e+06, ], 'CountWeightedFullLHEEnvelope_rwgt48_pt0to60' : [ 1.12041048e+07, 6.69240032e+06, ], 'CountWeightedL1PrefireNom_rwgt48_pt0to60' : [ 8.33422746e+06, 8.33437795e+06, 8.33419967e+06, ], 'CountWeightedL1Prefire_rwgt48_pt0to60' : [ 8.33422746e+06, 8.27497835e+06, 8.39107872e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt48_pt0to60' : [ 1.08870812e+07, 1.02168502e+07, 9.61136655e+06, 8.88153921e+06, 8.33422746e+06, 7.83990351e+06, 7.38372521e+06, 6.92833032e+06, 6.51710442e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt48_pt0to60' : [ 1.08973078e+07, 6.51307341e+06, ], 'CountWeightedFullL1PrefireNom_rwgt48_pt0to60' : [ 8.33422746e+06, 8.33437795e+06, 8.33419967e+06, ], 'CountWeightedFullL1Prefire_rwgt48_pt0to60' : [ 8.33422746e+06, 8.27497835e+06, 8.39107872e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt48_pt0to60' : [ 1.08870812e+07, 1.02168502e+07, 9.61136655e+06, 8.88153921e+06, 8.33422746e+06, 7.83990351e+06, 7.38372521e+06, 6.92833032e+06, 6.51710442e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt48_pt0to60' : [ 1.08973078e+07, 6.51307341e+06, ], 'CountWeighted_rwgt48_pt60to120' : [ 1.35884562e+07, 1.35892778e+07, 1.35873519e+07, ], 'CountWeightedLHEWeightScale_rwgt48_pt60to120' : [ 1.78490675e+07, 1.66673563e+07, 1.56127300e+07, 1.45519973e+07, 1.35884562e+07, 1.27286481e+07, 1.20918603e+07, 1.12910991e+07, 1.05766575e+07, ], 'CountWeightedLHEEnvelope_rwgt48_pt60to120' : [ 1.78608573e+07, 1.05719986e+07, ], 'CountWeightedFull_rwgt48_pt60to120' : [ 1.35884562e+07, 1.35892778e+07, 1.35873519e+07, ], 'CountWeightedFullLHEWeightScale_rwgt48_pt60to120' : [ 1.78490675e+07, 1.66673563e+07, 1.56127300e+07, 1.45519973e+07, 1.35884562e+07, 1.27286481e+07, 1.20918603e+07, 1.12910991e+07, 1.05766575e+07, ], 'CountWeightedFullLHEEnvelope_rwgt48_pt60to120' : [ 1.78608573e+07, 1.05719986e+07, ], 'CountWeightedL1PrefireNom_rwgt48_pt60to120' : [ 1.31884774e+07, 1.31886220e+07, 1.31881866e+07, ], 'CountWeightedL1Prefire_rwgt48_pt60to120' : [ 1.31884774e+07, 1.30884499e+07, 1.32852408e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt48_pt60to120' : [ 1.73171981e+07, 1.61773009e+07, 1.51587334e+07, 1.41178841e+07, 1.31884774e+07, 1.23581015e+07, 1.17308003e+07, 1.09584245e+07, 1.02684692e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt48_pt60to120' : [ 1.73288661e+07, 1.02638543e+07, ], 'CountWeightedFullL1PrefireNom_rwgt48_pt60to120' : [ 1.31884774e+07, 1.31886220e+07, 1.31881866e+07, ], 'CountWeightedFullL1Prefire_rwgt48_pt60to120' : [ 1.31884774e+07, 1.30884499e+07, 1.32852408e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt48_pt60to120' : [ 1.73171981e+07, 1.61773009e+07, 1.51587334e+07, 1.41178841e+07, 1.31884774e+07, 1.23581015e+07, 1.17308003e+07, 1.09584245e+07, 1.02684692e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt48_pt60to120' : [ 1.73288661e+07, 1.02638543e+07, ], 'CountWeighted_rwgt48_pt120to200' : [ 9.85857154e+06, 9.85830967e+06, 9.85855249e+06, ], 'CountWeightedLHEWeightScale_rwgt48_pt120to200' : [ 1.30183820e+07, 1.20643356e+07, 1.12300610e+07, 1.06377375e+07, 9.85857154e+06, 9.17722025e+06, 8.85584157e+06, 8.20743350e+06, 7.64048145e+06, ], 'CountWeightedLHEEnvelope_rwgt48_pt120to200' : [ 1.30233620e+07, 7.63844575e+06, ], 'CountWeightedFull_rwgt48_pt120to200' : [ 9.85857154e+06, 9.85830967e+06, 9.85855249e+06, ], 'CountWeightedFullLHEWeightScale_rwgt48_pt120to200' : [ 1.30183820e+07, 1.20643356e+07, 1.12300610e+07, 1.06377375e+07, 9.85857154e+06, 9.17722025e+06, 8.85584157e+06, 8.20743350e+06, 7.64048145e+06, ], 'CountWeightedFullLHEEnvelope_rwgt48_pt120to200' : [ 1.30233620e+07, 7.63844575e+06, ], 'CountWeightedL1PrefireNom_rwgt48_pt120to200' : [ 9.53135511e+06, 9.53081615e+06, 9.53170277e+06, ], 'CountWeightedL1Prefire_rwgt48_pt120to200' : [ 9.53135511e+06, 9.45204176e+06, 9.60885772e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt48_pt120to200' : [ 1.25804997e+07, 1.16641261e+07, 1.08618025e+07, 1.02797498e+07, 9.53135511e+06, 8.87612575e+06, 8.55769636e+06, 7.93491459e+06, 7.38969884e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt48_pt120to200' : [ 1.25854257e+07, 7.38768382e+06, ], 'CountWeightedFullL1PrefireNom_rwgt48_pt120to200' : [ 9.53135511e+06, 9.53081615e+06, 9.53170277e+06, ], 'CountWeightedFullL1Prefire_rwgt48_pt120to200' : [ 9.53135511e+06, 9.45204176e+06, 9.60885772e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt48_pt120to200' : [ 1.25804997e+07, 1.16641261e+07, 1.08618025e+07, 1.02797498e+07, 9.53135511e+06, 8.87612575e+06, 8.55769636e+06, 7.93491459e+06, 7.38969884e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt48_pt120to200' : [ 1.25854257e+07, 7.38768382e+06, ], 'CountWeighted_rwgt48_pt200to300' : [ 4.05161857e+06, 4.05080469e+06, 4.05266705e+06, ], 'CountWeightedLHEWeightScale_rwgt48_pt200to300' : [ 5.38281231e+06, 4.93619364e+06, 4.55489108e+06, 4.41783623e+06, 4.05161857e+06, 3.73896379e+06, 3.69117659e+06, 3.38543854e+06, 3.12439424e+06, ], 'CountWeightedLHEEnvelope_rwgt48_pt200to300' : [ 5.38384518e+06, 3.12400608e+06, ], 'CountWeightedFull_rwgt48_pt200to300' : [ 4.05161857e+06, 4.05080469e+06, 4.05266705e+06, ], 'CountWeightedFullLHEWeightScale_rwgt48_pt200to300' : [ 5.38281231e+06, 4.93619364e+06, 4.55489108e+06, 4.41783623e+06, 4.05161857e+06, 3.73896379e+06, 3.69117659e+06, 3.38543854e+06, 3.12439424e+06, ], 'CountWeightedFullLHEEnvelope_rwgt48_pt200to300' : [ 5.38384518e+06, 3.12400608e+06, ], 'CountWeightedL1PrefireNom_rwgt48_pt200to300' : [ 3.90616540e+06, 3.90529420e+06, 3.90725345e+06, ], 'CountWeightedL1Prefire_rwgt48_pt200to300' : [ 3.90616540e+06, 3.87187342e+06, 3.93992048e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt48_pt200to300' : [ 5.18637111e+06, 4.75890352e+06, 4.39350383e+06, 4.25668370e+06, 3.90616540e+06, 3.60654240e+06, 3.55658111e+06, 3.26394315e+06, 3.01377891e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt48_pt200to300' : [ 5.18739196e+06, 3.01339547e+06, ], 'CountWeightedFullL1PrefireNom_rwgt48_pt200to300' : [ 3.90616540e+06, 3.90529420e+06, 3.90725345e+06, ], 'CountWeightedFullL1Prefire_rwgt48_pt200to300' : [ 3.90616540e+06, 3.87187342e+06, 3.93992048e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt48_pt200to300' : [ 5.18637111e+06, 4.75890352e+06, 4.39350383e+06, 4.25668370e+06, 3.90616540e+06, 3.60654240e+06, 3.55658111e+06, 3.26394315e+06, 3.01377891e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt48_pt200to300' : [ 5.18739196e+06, 3.01339547e+06, ], 'CountWeighted_rwgt48_ptGt300' : [ 1.83659603e+06, 1.83607427e+06, 1.83701973e+06, ], 'CountWeightedLHEWeightScale_rwgt48_ptGt300' : [ 2.46302501e+06, 2.22202286e+06, 2.02187201e+06, 2.03556708e+06, 1.83659603e+06, 1.67133699e+06, 1.71060647e+06, 1.54354356e+06, 1.40477292e+06, ], 'CountWeightedLHEEnvelope_rwgt48_ptGt300' : [ 2.46313802e+06, 1.40474120e+06, ], 'CountWeightedFull_rwgt48_ptGt300' : [ 1.83659603e+06, 1.83607427e+06, 1.83701973e+06, ], 'CountWeightedFullLHEWeightScale_rwgt48_ptGt300' : [ 2.46302501e+06, 2.22202286e+06, 2.02187201e+06, 2.03556708e+06, 1.83659603e+06, 1.67133699e+06, 1.71060647e+06, 1.54354356e+06, 1.40477292e+06, ], 'CountWeightedFullLHEEnvelope_rwgt48_ptGt300' : [ 2.46313802e+06, 1.40474120e+06, ], 'CountWeightedL1PrefireNom_rwgt48_ptGt300' : [ 1.77181280e+06, 1.77124394e+06, 1.77226529e+06, ], 'CountWeightedL1Prefire_rwgt48_ptGt300' : [ 1.77181280e+06, 1.75678832e+06, 1.78663118e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt48_ptGt300' : [ 2.37415375e+06, 2.14348686e+06, 1.95168246e+06, 1.96226618e+06, 1.77181280e+06, 1.61343186e+06, 1.64911019e+06, 1.48918766e+06, 1.35618427e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt48_ptGt300' : [ 2.37426466e+06, 1.35615336e+06, ], 'CountWeightedFullL1PrefireNom_rwgt48_ptGt300' : [ 1.77181280e+06, 1.77124394e+06, 1.77226529e+06, ], 'CountWeightedFullL1Prefire_rwgt48_ptGt300' : [ 1.77181280e+06, 1.75678832e+06, 1.78663118e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt48_ptGt300' : [ 2.37415375e+06, 2.14348686e+06, 1.95168246e+06, 1.96226618e+06, 1.77181280e+06, 1.61343186e+06, 1.64911019e+06, 1.48918766e+06, 1.35618427e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt48_ptGt300' : [ 2.37426466e+06, 1.35615336e+06, ], 'CountWeighted_rwgt48_pt300to450' : [ 1.44485687e+06, 1.44421213e+06, 1.44540714e+06, ], 'CountWeightedLHEWeightScale_rwgt48_pt300to450' : [ 1.93409631e+06, 1.75086023e+06, 1.59789221e+06, 1.59586664e+06, 1.44485687e+06, 1.31877840e+06, 1.33928967e+06, 1.21268657e+06, 1.10697363e+06, ], 'CountWeightedLHEEnvelope_rwgt48_pt300to450' : [ 1.93420657e+06, 1.10694281e+06, ], 'CountWeightedFull_rwgt48_pt300to450' : [ 1.44485687e+06, 1.44421213e+06, 1.44540714e+06, ], 'CountWeightedFullLHEWeightScale_rwgt48_pt300to450' : [ 1.93409631e+06, 1.75086023e+06, 1.59789221e+06, 1.59586664e+06, 1.44485687e+06, 1.31877840e+06, 1.33928967e+06, 1.21268657e+06, 1.10697363e+06, ], 'CountWeightedFullLHEEnvelope_rwgt48_pt300to450' : [ 1.93420657e+06, 1.10694281e+06, ], 'CountWeightedL1PrefireNom_rwgt48_pt300to450' : [ 1.39255919e+06, 1.39187884e+06, 1.39312551e+06, ], 'CountWeightedL1Prefire_rwgt48_pt300to450' : [ 1.39255919e+06, 1.38042362e+06, 1.40453126e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt48_pt300to450' : [ 1.86258041e+06, 1.68738790e+06, 1.54095210e+06, 1.53694919e+06, 1.39255919e+06, 1.27185696e+06, 1.28990896e+06, 1.16884892e+06, 1.06763873e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt48_pt300to450' : [ 1.86268857e+06, 1.06760870e+06, ], 'CountWeightedFullL1PrefireNom_rwgt48_pt300to450' : [ 1.39255919e+06, 1.39187884e+06, 1.39312551e+06, ], 'CountWeightedFullL1Prefire_rwgt48_pt300to450' : [ 1.39255919e+06, 1.38042362e+06, 1.40453126e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt48_pt300to450' : [ 1.86258041e+06, 1.68738790e+06, 1.54095210e+06, 1.53694919e+06, 1.39255919e+06, 1.27185696e+06, 1.28990896e+06, 1.16884892e+06, 1.06763873e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt48_pt300to450' : [ 1.86268857e+06, 1.06760870e+06, ], 'CountWeighted_rwgt48_ptGt450' : [ 3.91739328e+05, 3.91864436e+05, 3.91612986e+05, ], 'CountWeightedLHEWeightScale_rwgt48_ptGt450' : [ 5.28928590e+05, 4.71162727e+05, 4.23979829e+05, 4.39700581e+05, 3.91739328e+05, 3.52558468e+05, 3.71316778e+05, 3.30857031e+05, 2.97799220e+05, ], 'CountWeightedLHEEnvelope_rwgt48_ptGt450' : [ 5.28931370e+05, 2.97798309e+05, ], 'CountWeightedFull_rwgt48_ptGt450' : [ 3.91739328e+05, 3.91864436e+05, 3.91612986e+05, ], 'CountWeightedFullLHEWeightScale_rwgt48_ptGt450' : [ 5.28928590e+05, 4.71162727e+05, 4.23979829e+05, 4.39700581e+05, 3.91739328e+05, 3.52558468e+05, 3.71316778e+05, 3.30857031e+05, 2.97799220e+05, ], 'CountWeightedFullLHEEnvelope_rwgt48_ptGt450' : [ 5.28931370e+05, 2.97798309e+05, ], 'CountWeightedL1PrefireNom_rwgt48_ptGt450' : [ 3.79253437e+05, 3.79366261e+05, 3.79140058e+05, ], 'CountWeightedL1Prefire_rwgt48_ptGt450' : [ 3.79253437e+05, 3.76364549e+05, 3.82099944e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt48_ptGt450' : [ 5.11573271e+05, 4.56099132e+05, 4.10730214e+05, 4.25316983e+05, 3.79253437e+05, 3.41574765e+05, 3.59201245e+05, 3.20338704e+05, 2.88545495e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt48_ptGt450' : [ 5.11575975e+05, 2.88544616e+05, ], 'CountWeightedFullL1PrefireNom_rwgt48_ptGt450' : [ 3.79253437e+05, 3.79366261e+05, 3.79140058e+05, ], 'CountWeightedFullL1Prefire_rwgt48_ptGt450' : [ 3.79253437e+05, 3.76364549e+05, 3.82099944e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt48_ptGt450' : [ 5.11573271e+05, 4.56099132e+05, 4.10730214e+05, 4.25316983e+05, 3.79253437e+05, 3.41574765e+05, 3.59201245e+05, 3.20338704e+05, 2.88545495e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt48_ptGt450' : [ 5.11575975e+05, 2.88544616e+05, ], 'CountWeighted_rwgt49' : [ 8.65625510e+07, 8.65599245e+07, 8.65597467e+07, ], 'CountWeightedLHEWeightScale_rwgt49' : [ 1.13993564e+08, 1.05952012e+08, 9.88767908e+07, 9.31337999e+07, 8.65625510e+07, 8.07805223e+07, 7.75243184e+07, 7.20523911e+07, 6.72396426e+07, ], 'CountWeightedLHEEnvelope_rwgt49' : [ 1.14057377e+08, 6.72143605e+07, ], 'CountWeightedFull_rwgt49' : [ 8.65625510e+07, 8.65599245e+07, 8.65597467e+07, ], 'CountWeightedFullLHEWeightScale_rwgt49' : [ 1.13993564e+08, 1.05952012e+08, 9.88767908e+07, 9.31337999e+07, 8.65625510e+07, 8.07805223e+07, 7.75243184e+07, 7.20523911e+07, 6.72396426e+07, ], 'CountWeightedFullLHEEnvelope_rwgt49' : [ 1.14057377e+08, 6.72143605e+07, ], 'CountWeightedL1PrefireNom_rwgt49' : [ 8.37511969e+07, 8.37457481e+07, 8.37534598e+07, ], 'CountWeightedL1Prefire_rwgt49' : [ 8.37511969e+07, 8.30634901e+07, 8.44209941e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt49' : [ 1.10239942e+08, 1.02513965e+08, 9.57071545e+07, 9.00645419e+07, 8.37511969e+07, 7.81888212e+07, 7.49677906e+07, 6.97109760e+07, 6.50809155e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt49' : [ 1.10303061e+08, 6.50558901e+07, ], 'CountWeightedFullL1PrefireNom_rwgt49' : [ 8.37511969e+07, 8.37457481e+07, 8.37534598e+07, ], 'CountWeightedFullL1Prefire_rwgt49' : [ 8.37511969e+07, 8.30634901e+07, 8.44209941e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt49' : [ 1.10239942e+08, 1.02513965e+08, 9.57071545e+07, 9.00645419e+07, 8.37511969e+07, 7.81888212e+07, 7.49677906e+07, 6.97109760e+07, 6.50809155e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt49' : [ 1.10303061e+08, 6.50558901e+07, ], 'CountWeighted_rwgt49_fwd' : [ 1.28412743e+06, 1.28451141e+06, 1.28371458e+06, ], 'CountWeightedLHEWeightScale_rwgt49_fwd' : [ 1.70263698e+06, 1.57314935e+06, 1.46308632e+06, 1.38970431e+06, 1.28412743e+06, 1.19437120e+06, 1.15581392e+06, 1.06808139e+06, 9.93481924e+05, ], 'CountWeightedLHEEnvelope_rwgt49_fwd' : [ 1.70288228e+06, 9.93376392e+05, ], 'CountWeightedFull_rwgt49_fwd' : [ 1.28412743e+06, 1.28451141e+06, 1.28371458e+06, ], 'CountWeightedFullLHEWeightScale_rwgt49_fwd' : [ 1.70263698e+06, 1.57314935e+06, 1.46308632e+06, 1.38970431e+06, 1.28412743e+06, 1.19437120e+06, 1.15581392e+06, 1.06808139e+06, 9.93481924e+05, ], 'CountWeightedFullLHEEnvelope_rwgt49_fwd' : [ 1.70288228e+06, 9.93376392e+05, ], 'CountWeightedL1PrefireNom_rwgt49_fwd' : [ 1.10374328e+06, 1.10368499e+06, 1.10380845e+06, ], 'CountWeightedL1Prefire_rwgt49_fwd' : [ 1.10374328e+06, 1.06379566e+06, 1.14408732e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt49_fwd' : [ 1.46297341e+06, 1.35253551e+06, 1.25858911e+06, 1.19375647e+06, 1.10374328e+06, 1.02715587e+06, 9.92616550e+05, 9.17837737e+05, 8.54201745e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt49_fwd' : [ 1.46318771e+06, 8.54110025e+05, ], 'CountWeightedFullL1PrefireNom_rwgt49_fwd' : [ 1.10374328e+06, 1.10368499e+06, 1.10380845e+06, ], 'CountWeightedFullL1Prefire_rwgt49_fwd' : [ 1.10374328e+06, 1.06379566e+06, 1.14408732e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt49_fwd' : [ 1.46297341e+06, 1.35253551e+06, 1.25858911e+06, 1.19375647e+06, 1.10374328e+06, 1.02715587e+06, 9.92616550e+05, 9.17837737e+05, 8.54201745e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt49_fwd' : [ 1.46318771e+06, 8.54110025e+05, ], 'CountWeighted_rwgt49_pt0to60' : [ 1.92735489e+07, 1.92753050e+07, 1.92725341e+07, ], 'CountWeightedLHEWeightScale_rwgt49_pt0to60' : [ 2.51860028e+07, 2.36266373e+07, 2.22195796e+07, 2.05470362e+07, 1.92735489e+07, 1.81248245e+07, 1.70823390e+07, 1.60227440e+07, 1.50670505e+07, ], 'CountWeightedLHEEnvelope_rwgt49_pt0to60' : [ 2.52092422e+07, 1.50578991e+07, ], 'CountWeightedFull_rwgt49_pt0to60' : [ 1.92735489e+07, 1.92753050e+07, 1.92725341e+07, ], 'CountWeightedFullLHEWeightScale_rwgt49_pt0to60' : [ 2.51860028e+07, 2.36266373e+07, 2.22195796e+07, 2.05470362e+07, 1.92735489e+07, 1.81248245e+07, 1.70823390e+07, 1.60227440e+07, 1.50670505e+07, ], 'CountWeightedFullLHEEnvelope_rwgt49_pt0to60' : [ 2.52092422e+07, 1.50578991e+07, ], 'CountWeightedL1PrefireNom_rwgt49_pt0to60' : [ 1.87519505e+07, 1.87527367e+07, 1.87518436e+07, ], 'CountWeightedL1Prefire_rwgt49_pt0to60' : [ 1.87519505e+07, 1.86186760e+07, 1.88798786e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt49_pt0to60' : [ 2.44959306e+07, 2.29879121e+07, 2.16255758e+07, 1.99834602e+07, 1.87519505e+07, 1.76397792e+07, 1.66133803e+07, 1.55887395e+07, 1.46634829e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt49_pt0to60' : [ 2.45189404e+07, 1.46544117e+07, ], 'CountWeightedFullL1PrefireNom_rwgt49_pt0to60' : [ 1.87519505e+07, 1.87527367e+07, 1.87518436e+07, ], 'CountWeightedFullL1Prefire_rwgt49_pt0to60' : [ 1.87519505e+07, 1.86186760e+07, 1.88798786e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt49_pt0to60' : [ 2.44959306e+07, 2.29879121e+07, 2.16255758e+07, 1.99834602e+07, 1.87519505e+07, 1.76397792e+07, 1.66133803e+07, 1.55887395e+07, 1.46634829e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt49_pt0to60' : [ 2.45189404e+07, 1.46544117e+07, ], 'CountWeighted_rwgt49_pt60to120' : [ 3.05741277e+07, 3.05758859e+07, 3.05715970e+07, ], 'CountWeightedLHEWeightScale_rwgt49_pt60to120' : [ 4.01603797e+07, 3.75015438e+07, 3.51286358e+07, 3.27420047e+07, 3.05741277e+07, 2.86394511e+07, 2.72066838e+07, 2.54049637e+07, 2.37974609e+07, ], 'CountWeightedLHEEnvelope_rwgt49_pt60to120' : [ 4.01868974e+07, 2.37869779e+07, ], 'CountWeightedFull_rwgt49_pt60to120' : [ 3.05741277e+07, 3.05758859e+07, 3.05715970e+07, ], 'CountWeightedFullLHEWeightScale_rwgt49_pt60to120' : [ 4.01603797e+07, 3.75015438e+07, 3.51286358e+07, 3.27420047e+07, 3.05741277e+07, 2.86394511e+07, 2.72066838e+07, 2.54049637e+07, 2.37974609e+07, ], 'CountWeightedFullLHEEnvelope_rwgt49_pt60to120' : [ 4.01868974e+07, 2.37869779e+07, ], 'CountWeightedL1PrefireNom_rwgt49_pt60to120' : [ 2.96740684e+07, 2.96745817e+07, 2.96733907e+07, ], 'CountWeightedL1Prefire_rwgt49_pt60to120' : [ 2.96740684e+07, 2.94490633e+07, 2.98918577e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt49_pt60to120' : [ 3.89636927e+07, 3.63989145e+07, 3.41071396e+07, 3.17652496e+07, 2.96740684e+07, 2.78057112e+07, 2.63942925e+07, 2.46564573e+07, 2.31040446e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt49_pt60to120' : [ 3.89899379e+07, 2.30936596e+07, ], 'CountWeightedFullL1PrefireNom_rwgt49_pt60to120' : [ 2.96740684e+07, 2.96745817e+07, 2.96733907e+07, ], 'CountWeightedFullL1Prefire_rwgt49_pt60to120' : [ 2.96740684e+07, 2.94490633e+07, 2.98918577e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt49_pt60to120' : [ 3.89636927e+07, 3.63989145e+07, 3.41071396e+07, 3.17652496e+07, 2.96740684e+07, 2.78057112e+07, 2.63942925e+07, 2.46564573e+07, 2.31040446e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt49_pt60to120' : [ 3.89899379e+07, 2.30936596e+07, ], 'CountWeighted_rwgt49_pt120to200' : [ 2.21816910e+07, 2.21820452e+07, 2.21816586e+07, ], 'CountWeightedLHEWeightScale_rwgt49_pt120to200' : [ 2.92913600e+07, 2.71447628e+07, 2.52676304e+07, 2.39349106e+07, 2.21816910e+07, 2.06487431e+07, 1.99256415e+07, 1.84667219e+07, 1.71910846e+07, ], 'CountWeightedLHEEnvelope_rwgt49_pt120to200' : [ 2.93025650e+07, 1.71865041e+07, ], 'CountWeightedFull_rwgt49_pt120to200' : [ 2.21816910e+07, 2.21820452e+07, 2.21816586e+07, ], 'CountWeightedFullLHEWeightScale_rwgt49_pt120to200' : [ 2.92913600e+07, 2.71447628e+07, 2.52676304e+07, 2.39349106e+07, 2.21816910e+07, 2.06487431e+07, 1.99256415e+07, 1.84667219e+07, 1.71910846e+07, ], 'CountWeightedFullLHEEnvelope_rwgt49_pt120to200' : [ 2.93025650e+07, 1.71865041e+07, ], 'CountWeightedL1PrefireNom_rwgt49_pt120to200' : [ 2.14454673e+07, 2.14448661e+07, 2.14462645e+07, ], 'CountWeightedL1Prefire_rwgt49_pt120to200' : [ 2.14454673e+07, 2.12670622e+07, 2.16198807e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt49_pt120to200' : [ 2.83061233e+07, 2.62442868e+07, 2.44390558e+07, 2.31294315e+07, 2.14454673e+07, 1.99712774e+07, 1.92548153e+07, 1.78535541e+07, 1.66268224e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt49_pt120to200' : [ 2.83172069e+07, 1.66222890e+07, ], 'CountWeightedFullL1PrefireNom_rwgt49_pt120to200' : [ 2.14454673e+07, 2.14448661e+07, 2.14462645e+07, ], 'CountWeightedFullL1Prefire_rwgt49_pt120to200' : [ 2.14454673e+07, 2.12670622e+07, 2.16198807e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt49_pt120to200' : [ 2.83061233e+07, 2.62442868e+07, 2.44390558e+07, 2.31294315e+07, 2.14454673e+07, 1.99712774e+07, 1.92548153e+07, 1.78535541e+07, 1.66268224e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt49_pt120to200' : [ 2.83172069e+07, 1.66222890e+07, ], 'CountWeighted_rwgt49_pt200to300' : [ 9.11613288e+06, 9.11439079e+06, 9.11842493e+06, ], 'CountWeightedLHEWeightScale_rwgt49_pt200to300' : [ 1.21113290e+07, 1.11064353e+07, 1.02485049e+07, 9.94013111e+06, 9.11613288e+06, 8.41266798e+06, 8.30514583e+06, 7.61723792e+06, 7.02988621e+06, ], 'CountWeightedLHEEnvelope_rwgt49_pt200to300' : [ 1.21136528e+07, 7.02901273e+06, ], 'CountWeightedFull_rwgt49_pt200to300' : [ 9.11613288e+06, 9.11439079e+06, 9.11842493e+06, ], 'CountWeightedFullLHEWeightScale_rwgt49_pt200to300' : [ 1.21113290e+07, 1.11064353e+07, 1.02485049e+07, 9.94013111e+06, 9.11613288e+06, 8.41266798e+06, 8.30514583e+06, 7.61723792e+06, 7.02988621e+06, ], 'CountWeightedFullLHEEnvelope_rwgt49_pt200to300' : [ 1.21136528e+07, 7.02901273e+06, ], 'CountWeightedL1PrefireNom_rwgt49_pt200to300' : [ 8.78887327e+06, 8.78695596e+06, 8.79128057e+06, ], 'CountWeightedL1Prefire_rwgt49_pt200to300' : [ 8.78887327e+06, 8.71171632e+06, 8.86481600e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt49_pt200to300' : [ 1.16693352e+07, 1.07075313e+07, 9.88538475e+06, 9.57753720e+06, 8.78887327e+06, 8.11472201e+06, 8.00230790e+06, 7.34387343e+06, 6.78100170e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt49_pt200to300' : [ 1.16716318e+07, 6.78013897e+06, ], 'CountWeightedFullL1PrefireNom_rwgt49_pt200to300' : [ 8.78887327e+06, 8.78695596e+06, 8.79128057e+06, ], 'CountWeightedFullL1Prefire_rwgt49_pt200to300' : [ 8.78887327e+06, 8.71171632e+06, 8.86481600e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt49_pt200to300' : [ 1.16693352e+07, 1.07075313e+07, 9.88538475e+06, 9.57753720e+06, 8.78887327e+06, 8.11472201e+06, 8.00230790e+06, 7.34387343e+06, 6.78100170e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt49_pt200to300' : [ 1.16716318e+07, 6.78013897e+06, ], 'CountWeighted_rwgt49_ptGt300' : [ 4.13235256e+06, 4.13116759e+06, 4.13330672e+06, ], 'CountWeightedLHEWeightScale_rwgt49_ptGt300' : [ 5.54180530e+06, 4.99955201e+06, 4.54921166e+06, 4.58002619e+06, 4.13235256e+06, 3.76050729e+06, 3.84886499e+06, 3.47297400e+06, 3.16073881e+06, ], 'CountWeightedLHEEnvelope_rwgt49_ptGt300' : [ 5.54205962e+06, 3.16066744e+06, ], 'CountWeightedFull_rwgt49_ptGt300' : [ 4.13235256e+06, 4.13116759e+06, 4.13330672e+06, ], 'CountWeightedFullLHEWeightScale_rwgt49_ptGt300' : [ 5.54180530e+06, 4.99955201e+06, 4.54921166e+06, 4.58002619e+06, 4.13235256e+06, 3.76050729e+06, 3.84886499e+06, 3.47297400e+06, 3.16073881e+06, ], 'CountWeightedFullLHEEnvelope_rwgt49_ptGt300' : [ 5.54205962e+06, 3.16066744e+06, ], 'CountWeightedL1PrefireNom_rwgt49_ptGt300' : [ 3.98658509e+06, 3.98529887e+06, 3.98760431e+06, ], 'CountWeightedL1Prefire_rwgt49_ptGt300' : [ 3.98658509e+06, 3.95277968e+06, 4.01992732e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt49_ptGt300' : [ 5.34184533e+06, 4.82284620e+06, 4.39128494e+06, 4.41509882e+06, 3.98658509e+06, 3.63022118e+06, 3.71049813e+06, 3.35067289e+06, 3.05141440e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt49_ptGt300' : [ 5.34209487e+06, 3.05134482e+06, ], 'CountWeightedFullL1PrefireNom_rwgt49_ptGt300' : [ 3.98658509e+06, 3.98529887e+06, 3.98760431e+06, ], 'CountWeightedFullL1Prefire_rwgt49_ptGt300' : [ 3.98658509e+06, 3.95277968e+06, 4.01992732e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt49_ptGt300' : [ 5.34184533e+06, 4.82284620e+06, 4.39128494e+06, 4.41509882e+06, 3.98658509e+06, 3.63022118e+06, 3.71049813e+06, 3.35067289e+06, 3.05141440e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt49_ptGt300' : [ 5.34209487e+06, 3.05134482e+06, ], 'CountWeighted_rwgt49_pt300to450' : [ 3.25093278e+06, 3.24947512e+06, 3.25217426e+06, ], 'CountWeightedLHEWeightScale_rwgt49_pt300to450' : [ 4.35171633e+06, 3.93943601e+06, 3.59525691e+06, 3.59069971e+06, 3.25093278e+06, 2.96725122e+06, 3.01340200e+06, 2.72854558e+06, 2.49069042e+06, ], 'CountWeightedLHEEnvelope_rwgt49_pt300to450' : [ 4.35196445e+06, 2.49062108e+06, ], 'CountWeightedFull_rwgt49_pt300to450' : [ 3.25093278e+06, 3.24947512e+06, 3.25217426e+06, ], 'CountWeightedFullLHEWeightScale_rwgt49_pt300to450' : [ 4.35171633e+06, 3.93943601e+06, 3.59525691e+06, 3.59069971e+06, 3.25093278e+06, 2.96725122e+06, 3.01340200e+06, 2.72854558e+06, 2.49069042e+06, ], 'CountWeightedFullLHEEnvelope_rwgt49_pt300to450' : [ 4.35196445e+06, 2.49062108e+06, ], 'CountWeightedL1PrefireNom_rwgt49_pt300to450' : [ 3.13326091e+06, 3.13172654e+06, 3.13453718e+06, ], 'CountWeightedL1Prefire_rwgt49_pt300to450' : [ 3.13326091e+06, 3.10595547e+06, 3.16019809e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt49_pt300to450' : [ 4.19080568e+06, 3.79662309e+06, 3.46714218e+06, 3.45813539e+06, 3.13326091e+06, 2.86167814e+06, 2.90229536e+06, 2.62991066e+06, 2.40218697e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt49_pt300to450' : [ 4.19104913e+06, 2.40211938e+06, ], 'CountWeightedFullL1PrefireNom_rwgt49_pt300to450' : [ 3.13326091e+06, 3.13172654e+06, 3.13453718e+06, ], 'CountWeightedFullL1Prefire_rwgt49_pt300to450' : [ 3.13326091e+06, 3.10595547e+06, 3.16019809e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt49_pt300to450' : [ 4.19080568e+06, 3.79662309e+06, 3.46714218e+06, 3.45813539e+06, 3.13326091e+06, 2.86167814e+06, 2.90229536e+06, 2.62991066e+06, 2.40218697e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt49_pt300to450' : [ 4.19104913e+06, 2.40211938e+06, ], 'CountWeighted_rwgt49_ptGt450' : [ 8.81413836e+05, 8.81694142e+05, 8.81129929e+05, ], 'CountWeightedLHEWeightScale_rwgt49_ptGt450' : [ 1.19008931e+06, 1.06011617e+06, 9.53954642e+05, 9.89326307e+05, 8.81413836e+05, 7.93256580e+05, 8.35462785e+05, 7.44428373e+05, 6.70048209e+05, ], 'CountWeightedLHEEnvelope_rwgt49_ptGt450' : [ 1.19009557e+06, 6.70046159e+05, ], 'CountWeightedFull_rwgt49_ptGt450' : [ 8.81413836e+05, 8.81694142e+05, 8.81129929e+05, ], 'CountWeightedFullLHEWeightScale_rwgt49_ptGt450' : [ 1.19008931e+06, 1.06011617e+06, 9.53954642e+05, 9.89326307e+05, 8.81413836e+05, 7.93256580e+05, 8.35462785e+05, 7.44428373e+05, 6.70048209e+05, ], 'CountWeightedFullLHEEnvelope_rwgt49_ptGt450' : [ 1.19009557e+06, 6.70046159e+05, ], 'CountWeightedL1PrefireNom_rwgt49_ptGt450' : [ 8.53320513e+05, 8.53573651e+05, 8.53065564e+05, ], 'CountWeightedL1Prefire_rwgt49_ptGt450' : [ 8.53320513e+05, 8.46820497e+05, 8.59725144e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt49_ptGt450' : [ 1.15103988e+06, 1.02622302e+06, 9.24142989e+05, 9.56963243e+05, 8.53320513e+05, 7.68543251e+05, 8.08202825e+05, 7.20762139e+05, 6.49227353e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt49_ptGt450' : [ 1.15104597e+06, 6.49225376e+05, ], 'CountWeightedFullL1PrefireNom_rwgt49_ptGt450' : [ 8.53320513e+05, 8.53573651e+05, 8.53065564e+05, ], 'CountWeightedFullL1Prefire_rwgt49_ptGt450' : [ 8.53320513e+05, 8.46820497e+05, 8.59725144e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt49_ptGt450' : [ 1.15103988e+06, 1.02622302e+06, 9.24142989e+05, 9.56963243e+05, 8.53320513e+05, 7.68543251e+05, 8.08202825e+05, 7.20762139e+05, 6.49227353e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt49_ptGt450' : [ 1.15104597e+06, 6.49225376e+05, ], 'CountWeighted_rwgt50' : [ 8.12898835e+06, 8.12913038e+06, 8.12888797e+06, ], 'CountWeightedLHEWeightScale_rwgt50' : [ 1.07200302e+07, 9.95105516e+06, 9.27606232e+06, 8.75730139e+06, 8.12898835e+06, 7.57753139e+06, 7.28883951e+06, 6.76577647e+06, 6.30676530e+06, ], 'CountWeightedLHEEnvelope_rwgt50' : [ 1.07258145e+07, 6.30447459e+06, ], 'CountWeightedFull_rwgt50' : [ 8.12898835e+06, 8.12913038e+06, 8.12888797e+06, ], 'CountWeightedFullLHEWeightScale_rwgt50' : [ 1.07200302e+07, 9.95105516e+06, 9.27606232e+06, 8.75730139e+06, 8.12898835e+06, 7.57753139e+06, 7.28883951e+06, 6.76577647e+06, 6.30676530e+06, ], 'CountWeightedFullLHEEnvelope_rwgt50' : [ 1.07258145e+07, 6.30447459e+06, ], 'CountWeightedL1PrefireNom_rwgt50' : [ 7.86287207e+06, 7.86268020e+06, 7.86312657e+06, ], 'CountWeightedL1Prefire_rwgt50' : [ 7.86287207e+06, 7.79780084e+06, 7.92625768e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt50' : [ 1.03640218e+07, 9.62554716e+06, 8.97642600e+06, 8.46624578e+06, 7.86287207e+06, 7.33256826e+06, 7.04643652e+06, 6.54414664e+06, 6.10274807e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt50' : [ 1.03697432e+07, 6.10047975e+06, ], 'CountWeightedFullL1PrefireNom_rwgt50' : [ 7.86287207e+06, 7.86268020e+06, 7.86312657e+06, ], 'CountWeightedFullL1Prefire_rwgt50' : [ 7.86287207e+06, 7.79780084e+06, 7.92625768e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt50' : [ 1.03640218e+07, 9.62554716e+06, 8.97642600e+06, 8.46624578e+06, 7.86287207e+06, 7.33256826e+06, 7.04643652e+06, 6.54414664e+06, 6.10274807e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt50' : [ 1.03697432e+07, 6.10047975e+06, ], 'CountWeighted_rwgt50_fwd' : [ 1.18327455e+05, 1.18360952e+05, 1.18295286e+05, ], 'CountWeightedLHEWeightScale_rwgt50_fwd' : [ 1.56988254e+05, 1.44959432e+05, 1.34749844e+05, 1.28134643e+05, 1.18327455e+05, 1.10001752e+05, 1.06569195e+05, 9.84197702e+04, 9.15002265e+04, ], 'CountWeightedLHEEnvelope_rwgt50_fwd' : [ 1.57010500e+05, 9.14906750e+04, ], 'CountWeightedFull_rwgt50_fwd' : [ 1.18327455e+05, 1.18360952e+05, 1.18295286e+05, ], 'CountWeightedFullLHEWeightScale_rwgt50_fwd' : [ 1.56988254e+05, 1.44959432e+05, 1.34749844e+05, 1.28134643e+05, 1.18327455e+05, 1.10001752e+05, 1.06569195e+05, 9.84197702e+04, 9.15002265e+04, ], 'CountWeightedFullLHEEnvelope_rwgt50_fwd' : [ 1.57010500e+05, 9.14906750e+04, ], 'CountWeightedL1PrefireNom_rwgt50_fwd' : [ 1.01691201e+05, 1.01685688e+05, 1.01699955e+05, ], 'CountWeightedL1Prefire_rwgt50_fwd' : [ 1.01691201e+05, 9.80083679e+04, 1.05410630e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt50_fwd' : [ 1.34868982e+05, 1.24613004e+05, 1.15900828e+05, 1.10050103e+05, 1.01691201e+05, 9.45890285e+04, 9.15073129e+04, 8.45633275e+04, 7.86623199e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt50_fwd' : [ 1.34888435e+05, 7.86540064e+04, ], 'CountWeightedFullL1PrefireNom_rwgt50_fwd' : [ 1.01691201e+05, 1.01685688e+05, 1.01699955e+05, ], 'CountWeightedFullL1Prefire_rwgt50_fwd' : [ 1.01691201e+05, 9.80083679e+04, 1.05410630e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt50_fwd' : [ 1.34868982e+05, 1.24613004e+05, 1.15900828e+05, 1.10050103e+05, 1.01691201e+05, 9.45890285e+04, 9.15073129e+04, 8.45633275e+04, 7.86623199e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt50_fwd' : [ 1.34888435e+05, 7.86540064e+04, ], 'CountWeighted_rwgt50_pt0to60' : [ 1.77271389e+06, 1.77283044e+06, 1.77258861e+06, ], 'CountWeightedLHEWeightScale_rwgt50_pt0to60' : [ 2.31794287e+06, 2.17318959e+06, 2.04272809e+06, 1.89091262e+06, 1.77271389e+06, 1.66620877e+06, 1.57200010e+06, 1.47365700e+06, 1.38505941e+06, ], 'CountWeightedLHEEnvelope_rwgt50_pt0to60' : [ 2.32004297e+06, 1.38423260e+06, ], 'CountWeightedFull_rwgt50_pt0to60' : [ 1.77271389e+06, 1.77283044e+06, 1.77258861e+06, ], 'CountWeightedFullLHEWeightScale_rwgt50_pt0to60' : [ 2.31794287e+06, 2.17318959e+06, 2.04272809e+06, 1.89091262e+06, 1.77271389e+06, 1.66620877e+06, 1.57200010e+06, 1.47365700e+06, 1.38505941e+06, ], 'CountWeightedFullLHEEnvelope_rwgt50_pt0to60' : [ 2.32004297e+06, 1.38423260e+06, ], 'CountWeightedL1PrefireNom_rwgt50_pt0to60' : [ 1.72445993e+06, 1.72450721e+06, 1.72441454e+06, ], 'CountWeightedL1Prefire_rwgt50_pt0to60' : [ 1.72445993e+06, 1.71213383e+06, 1.73629137e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt50_pt0to60' : [ 2.25404599e+06, 2.11409650e+06, 1.98781365e+06, 1.83873224e+06, 1.72445993e+06, 1.62137010e+06, 1.52858284e+06, 1.43350902e+06, 1.34775498e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt50_pt0to60' : [ 2.25612519e+06, 1.34693548e+06, ], 'CountWeightedFullL1PrefireNom_rwgt50_pt0to60' : [ 1.72445993e+06, 1.72450721e+06, 1.72441454e+06, ], 'CountWeightedFullL1Prefire_rwgt50_pt0to60' : [ 1.72445993e+06, 1.71213383e+06, 1.73629137e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt50_pt0to60' : [ 2.25404599e+06, 2.11409650e+06, 1.98781365e+06, 1.83873224e+06, 1.72445993e+06, 1.62137010e+06, 1.52858284e+06, 1.43350902e+06, 1.34775498e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt50_pt0to60' : [ 2.25612519e+06, 1.34693548e+06, ], 'CountWeighted_rwgt50_pt60to120' : [ 2.83924815e+06, 2.83945152e+06, 2.83904008e+06, ], 'CountWeightedLHEWeightScale_rwgt50_pt60to120' : [ 3.73305543e+06, 3.48301135e+06, 3.26021055e+06, 3.04309043e+06, 2.83924815e+06, 2.65763964e+06, 2.52836073e+06, 2.35898509e+06, 2.20810093e+06, ], 'CountWeightedLHEEnvelope_rwgt50_pt60to120' : [ 3.73545913e+06, 2.20715099e+06, ], 'CountWeightedFull_rwgt50_pt60to120' : [ 2.83924815e+06, 2.83945152e+06, 2.83904008e+06, ], 'CountWeightedFullLHEWeightScale_rwgt50_pt60to120' : [ 3.73305543e+06, 3.48301135e+06, 3.26021055e+06, 3.04309043e+06, 2.83924815e+06, 2.65763964e+06, 2.52836073e+06, 2.35898509e+06, 2.20810093e+06, ], 'CountWeightedFullLHEEnvelope_rwgt50_pt60to120' : [ 3.73545913e+06, 2.20715099e+06, ], 'CountWeightedL1PrefireNom_rwgt50_pt60to120' : [ 2.75514256e+06, 2.75520649e+06, 2.75508721e+06, ], 'CountWeightedL1Prefire_rwgt50_pt60to120' : [ 2.75514256e+06, 2.73411517e+06, 2.77549452e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt50_pt60to120' : [ 3.62106802e+06, 3.37994836e+06, 3.16483200e+06, 2.95170175e+06, 2.75514256e+06, 2.57980546e+06, 2.45236111e+06, 2.28904311e+06, 2.14337442e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt50_pt60to120' : [ 3.62344690e+06, 2.14243334e+06, ], 'CountWeightedFullL1PrefireNom_rwgt50_pt60to120' : [ 2.75514256e+06, 2.75520649e+06, 2.75508721e+06, ], 'CountWeightedFullL1Prefire_rwgt50_pt60to120' : [ 2.75514256e+06, 2.73411517e+06, 2.77549452e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt50_pt60to120' : [ 3.62106802e+06, 3.37994836e+06, 3.16483200e+06, 2.95170175e+06, 2.75514256e+06, 2.57980546e+06, 2.45236111e+06, 2.28904311e+06, 2.14337442e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt50_pt60to120' : [ 3.62344690e+06, 2.14243334e+06, ], 'CountWeighted_rwgt50_pt120to200' : [ 2.09999790e+06, 2.10004210e+06, 2.09993839e+06, ], 'CountWeightedLHEWeightScale_rwgt50_pt120to200' : [ 2.77736728e+06, 2.57048362e+06, 2.38993191e+06, 2.26890975e+06, 2.09999790e+06, 1.95259106e+06, 1.88846327e+06, 1.74793886e+06, 1.62531004e+06, ], 'CountWeightedLHEEnvelope_rwgt50_pt120to200' : [ 2.77838843e+06, 1.62489265e+06, ], 'CountWeightedFull_rwgt50_pt120to200' : [ 2.09999790e+06, 2.10004210e+06, 2.09993839e+06, ], 'CountWeightedFullLHEWeightScale_rwgt50_pt120to200' : [ 2.77736728e+06, 2.57048362e+06, 2.38993191e+06, 2.26890975e+06, 2.09999790e+06, 1.95259106e+06, 1.88846327e+06, 1.74793886e+06, 1.62531004e+06, ], 'CountWeightedFullLHEEnvelope_rwgt50_pt120to200' : [ 2.77838843e+06, 1.62489265e+06, ], 'CountWeightedL1PrefireNom_rwgt50_pt120to200' : [ 2.02979790e+06, 2.02977750e+06, 2.02981238e+06, ], 'CountWeightedL1Prefire_rwgt50_pt120to200' : [ 2.02979790e+06, 2.01277449e+06, 2.04643423e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt50_pt120to200' : [ 2.68322695e+06, 2.48459621e+06, 2.31102618e+06, 2.19196859e+06, 2.02979790e+06, 1.88809422e+06, 1.82439957e+06, 1.68948556e+06, 1.57160267e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt50_pt120to200' : [ 2.68423711e+06, 1.57118948e+06, ], 'CountWeightedFullL1PrefireNom_rwgt50_pt120to200' : [ 2.02979790e+06, 2.02977750e+06, 2.02981238e+06, ], 'CountWeightedFullL1Prefire_rwgt50_pt120to200' : [ 2.02979790e+06, 2.01277449e+06, 2.04643423e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt50_pt120to200' : [ 2.68322695e+06, 2.48459621e+06, 2.31102618e+06, 2.19196859e+06, 2.02979790e+06, 1.88809422e+06, 1.82439957e+06, 1.68948556e+06, 1.57160267e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt50_pt120to200' : [ 2.68423711e+06, 1.57118948e+06, ], 'CountWeighted_rwgt50_pt200to300' : [ 8.87615505e+05, 8.87441838e+05, 8.87859848e+05, ], 'CountWeightedLHEWeightScale_rwgt50_pt200to300' : [ 1.18199329e+06, 1.08184567e+06, 9.96542043e+05, 9.69692507e+05, 8.87615505e+05, 8.17700906e+05, 8.09914922e+05, 7.41418615e+05, 6.83069779e+05, ], 'CountWeightedLHEEnvelope_rwgt50_pt200to300' : [ 1.18220672e+06, 6.82989669e+05, ], 'CountWeightedFull_rwgt50_pt200to300' : [ 8.87615505e+05, 8.87441838e+05, 8.87859848e+05, ], 'CountWeightedFullLHEWeightScale_rwgt50_pt200to300' : [ 1.18199329e+06, 1.08184567e+06, 9.96542043e+05, 9.69692507e+05, 8.87615505e+05, 8.17700906e+05, 8.09914922e+05, 7.41418615e+05, 6.83069779e+05, ], 'CountWeightedFullLHEEnvelope_rwgt50_pt200to300' : [ 1.18220672e+06, 6.82989669e+05, ], 'CountWeightedL1PrefireNom_rwgt50_pt200to300' : [ 8.55411485e+05, 8.55224214e+05, 8.55666020e+05, ], 'CountWeightedL1Prefire_rwgt50_pt200to300' : [ 8.55411485e+05, 8.47814470e+05, 8.62888307e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt50_pt200to300' : [ 1.13836954e+06, 1.04257586e+06, 9.60875638e+05, 9.33921664e+05, 8.55411485e+05, 7.88448872e+05, 7.80050327e+05, 7.14529470e+05, 6.58643417e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt50_pt200to300' : [ 1.13858045e+06, 6.58564292e+05, ], 'CountWeightedFullL1PrefireNom_rwgt50_pt200to300' : [ 8.55411485e+05, 8.55224214e+05, 8.55666020e+05, ], 'CountWeightedFullL1Prefire_rwgt50_pt200to300' : [ 8.55411485e+05, 8.47814470e+05, 8.62888307e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt50_pt200to300' : [ 1.13836954e+06, 1.04257586e+06, 9.60875638e+05, 9.33921664e+05, 8.55411485e+05, 7.88448872e+05, 7.80050327e+05, 7.14529470e+05, 6.58643417e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt50_pt200to300' : [ 1.13858045e+06, 6.58564292e+05, ], 'CountWeighted_rwgt50_ptGt300' : [ 4.11081331e+05, 4.11002439e+05, 4.11149778e+05, ], 'CountWeightedLHEWeightScale_rwgt50_ptGt300' : [ 5.52683900e+05, 4.97571597e+05, 4.51898320e+05, 4.56559530e+05, 4.11081331e+05, 3.73388182e+05, 3.83529911e+05, 3.45360149e+05, 3.13721612e+05, ], 'CountWeightedLHEEnvelope_rwgt50_ptGt300' : [ 5.52707665e+05, 3.13714922e+05, ], 'CountWeightedFull_rwgt50_ptGt300' : [ 4.11081331e+05, 4.11002439e+05, 4.11149778e+05, ], 'CountWeightedFullLHEWeightScale_rwgt50_ptGt300' : [ 5.52683900e+05, 4.97571597e+05, 4.51898320e+05, 4.56559530e+05, 4.11081331e+05, 3.73388182e+05, 3.83529911e+05, 3.45360149e+05, 3.13721612e+05, ], 'CountWeightedFullLHEEnvelope_rwgt50_ptGt300' : [ 5.52707665e+05, 3.13714922e+05, ], 'CountWeightedL1PrefireNom_rwgt50_ptGt300' : [ 3.96364783e+05, 3.96276378e+05, 3.96436363e+05, ], 'CountWeightedL1Prefire_rwgt50_ptGt300' : [ 3.96364783e+05, 3.92949358e+05, 3.99733191e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt50_ptGt300' : [ 5.32442366e+05, 4.79723247e+05, 4.35978135e+05, 4.39871656e+05, 3.96364783e+05, 3.60260079e+05, 3.69534678e+05, 3.33016973e+05, 3.02709714e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt50_ptGt300' : [ 5.32465658e+05, 3.02703200e+05, ], 'CountWeightedFullL1PrefireNom_rwgt50_ptGt300' : [ 3.96364783e+05, 3.96276378e+05, 3.96436363e+05, ], 'CountWeightedFullL1Prefire_rwgt50_ptGt300' : [ 3.96364783e+05, 3.92949358e+05, 3.99733191e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt50_ptGt300' : [ 5.32442366e+05, 4.79723247e+05, 4.35978135e+05, 4.39871656e+05, 3.96364783e+05, 3.60260079e+05, 3.69534678e+05, 3.33016973e+05, 3.02709714e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt50_ptGt300' : [ 5.32465658e+05, 3.02703200e+05, ], 'CountWeighted_rwgt50_pt300to450' : [ 3.23315022e+05, 3.23205309e+05, 3.23416216e+05, ], 'CountWeightedLHEWeightScale_rwgt50_pt300to450' : [ 4.33919929e+05, 3.91970041e+05, 3.57027285e+05, 3.57869483e+05, 3.23315022e+05, 2.94529005e+05, 3.00215917e+05, 2.71258287e+05, 2.47132266e+05, ], 'CountWeightedLHEEnvelope_rwgt50_pt300to450' : [ 4.33943096e+05, 2.47125775e+05, ], 'CountWeightedFull_rwgt50_pt300to450' : [ 3.23315022e+05, 3.23205309e+05, 3.23416216e+05, ], 'CountWeightedFullLHEWeightScale_rwgt50_pt300to450' : [ 4.33919929e+05, 3.91970041e+05, 3.57027285e+05, 3.57869483e+05, 3.23315022e+05, 2.94529005e+05, 3.00215917e+05, 2.71258287e+05, 2.47132266e+05, ], 'CountWeightedFullLHEEnvelope_rwgt50_pt300to450' : [ 4.33943096e+05, 2.47125775e+05, ], 'CountWeightedL1PrefireNom_rwgt50_pt300to450' : [ 3.11434837e+05, 3.11317933e+05, 3.11536627e+05, ], 'CountWeightedL1Prefire_rwgt50_pt300to450' : [ 3.11434837e+05, 3.08676057e+05, 3.14156347e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt50_pt300to450' : [ 4.17627226e+05, 3.77544631e+05, 3.44114284e+05, 3.44453253e+05, 3.11434837e+05, 2.83893018e+05, 2.88975746e+05, 2.61303826e+05, 2.38219416e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt50_pt300to450' : [ 4.17649942e+05, 2.38213096e+05, ], 'CountWeightedFullL1PrefireNom_rwgt50_pt300to450' : [ 3.11434837e+05, 3.11317933e+05, 3.11536627e+05, ], 'CountWeightedFullL1Prefire_rwgt50_pt300to450' : [ 3.11434837e+05, 3.08676057e+05, 3.14156347e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt50_pt300to450' : [ 4.17627226e+05, 3.77544631e+05, 3.44114284e+05, 3.44453253e+05, 3.11434837e+05, 2.83893018e+05, 2.88975746e+05, 2.61303826e+05, 2.38219416e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt50_pt300to450' : [ 4.17649942e+05, 2.38213096e+05, ], 'CountWeighted_rwgt50_ptGt450' : [ 8.77662733e+04, 8.77971583e+04, 8.77335626e+04, ], 'CountWeightedLHEWeightScale_rwgt50_ptGt450' : [ 1.18763935e+05, 1.05601603e+05, 9.48710447e+04, 9.86900693e+04, 8.77662733e+04, 7.88591638e+04, 8.33139971e+04, 7.41018637e+04, 6.65893489e+04, ], 'CountWeightedLHEEnvelope_rwgt50_ptGt450' : [ 1.18764526e+05, 6.65891491e+04, ], 'CountWeightedFull_rwgt50_ptGt450' : [ 8.77662733e+04, 8.77971583e+04, 8.77335626e+04, ], 'CountWeightedFullLHEWeightScale_rwgt50_ptGt450' : [ 1.18763935e+05, 1.05601603e+05, 9.48710447e+04, 9.86900693e+04, 8.77662733e+04, 7.88591638e+04, 8.33139971e+04, 7.41018637e+04, 6.65893489e+04, ], 'CountWeightedFullLHEEnvelope_rwgt50_ptGt450' : [ 1.18764526e+05, 6.65891491e+04, ], 'CountWeightedL1PrefireNom_rwgt50_ptGt450' : [ 8.49299520e+04, 8.49584416e+04, 8.48997436e+04, ], 'CountWeightedL1Prefire_rwgt50_ptGt450' : [ 8.49299520e+04, 8.42732888e+04, 8.55768197e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt50_ptGt450' : [ 1.14815082e+05, 1.02178638e+05, 9.18638412e+04, 9.54184023e+04, 8.49299520e+04, 7.63670545e+04, 8.05589482e+04, 7.17131539e+04, 6.44903231e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt50_ptGt450' : [ 1.14815654e+05, 6.44901310e+04, ], 'CountWeightedFullL1PrefireNom_rwgt50_ptGt450' : [ 8.49299520e+04, 8.49584416e+04, 8.48997436e+04, ], 'CountWeightedFullL1Prefire_rwgt50_ptGt450' : [ 8.49299520e+04, 8.42732888e+04, 8.55768197e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt50_ptGt450' : [ 1.14815082e+05, 1.02178638e+05, 9.18638412e+04, 9.54184023e+04, 8.49299520e+04, 7.63670545e+04, 8.05589482e+04, 7.17131539e+04, 6.44903231e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt50_ptGt450' : [ 1.14815654e+05, 6.44901310e+04, ], 'CountWeighted_rwgt51' : [ 6.79679733e+06, 6.79698622e+06, 6.79668501e+06, ], 'CountWeightedLHEWeightScale_rwgt51' : [ 8.97907030e+06, 8.32150496e+06, 7.74594931e+06, 7.33396284e+06, 6.79679733e+06, 6.32668914e+06, 6.10339830e+06, 5.65630329e+06, 5.26506693e+06, ], 'CountWeightedLHEEnvelope_rwgt51' : [ 8.98368938e+06, 5.26323814e+06, ], 'CountWeightedFull_rwgt51' : [ 6.79679733e+06, 6.79698622e+06, 6.79668501e+06, ], 'CountWeightedFullLHEWeightScale_rwgt51' : [ 8.97907030e+06, 8.32150496e+06, 7.74594931e+06, 7.33396284e+06, 6.79679733e+06, 6.32668914e+06, 6.10339830e+06, 5.65630329e+06, 5.26506693e+06, ], 'CountWeightedFullLHEEnvelope_rwgt51' : [ 8.98368938e+06, 5.26323814e+06, ], 'CountWeightedL1PrefireNom_rwgt51' : [ 6.57209898e+06, 6.57201266e+06, 6.57228394e+06, ], 'CountWeightedL1Prefire_rwgt51' : [ 6.57209898e+06, 6.51717546e+06, 6.62560623e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt51' : [ 8.67775696e+06, 8.04660078e+06, 7.49337608e+06, 7.08767655e+06, 6.57209898e+06, 6.12024166e+06, 5.89831622e+06, 5.46919879e+06, 5.09315522e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt51' : [ 8.68232562e+06, 5.09134492e+06, ], 'CountWeightedFullL1PrefireNom_rwgt51' : [ 6.57209898e+06, 6.57201266e+06, 6.57228394e+06, ], 'CountWeightedFullL1Prefire_rwgt51' : [ 6.57209898e+06, 6.51717546e+06, 6.62560623e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt51' : [ 8.67775696e+06, 8.04660078e+06, 7.49337608e+06, 7.08767655e+06, 6.57209898e+06, 6.12024166e+06, 5.89831622e+06, 5.46919879e+06, 5.09315522e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt51' : [ 8.68232562e+06, 5.09134492e+06, ], 'CountWeighted_rwgt51_fwd' : [ 9.65577960e+04, 9.65830395e+04, 9.65350975e+04, ], 'CountWeightedLHEWeightScale_rwgt51_fwd' : [ 1.28209122e+05, 1.18289765e+05, 1.09886213e+05, 1.04644708e+05, 9.65577960e+04, 8.97051616e+04, 8.70325975e+04, 8.03129351e+04, 7.46178572e+04, ], 'CountWeightedLHEEnvelope_rwgt51_fwd' : [ 1.28226951e+05, 7.46102108e+04, ], 'CountWeightedFull_rwgt51_fwd' : [ 9.65577960e+04, 9.65830395e+04, 9.65350975e+04, ], 'CountWeightedFullLHEWeightScale_rwgt51_fwd' : [ 1.28209122e+05, 1.18289765e+05, 1.09886213e+05, 1.04644708e+05, 9.65577960e+04, 8.97051616e+04, 8.70325975e+04, 8.03129351e+04, 7.46178572e+04, ], 'CountWeightedFullLHEEnvelope_rwgt51_fwd' : [ 1.28226951e+05, 7.46102108e+04, ], 'CountWeightedL1PrefireNom_rwgt51_fwd' : [ 8.29657464e+04, 8.29603338e+04, 8.29746731e+04, ], 'CountWeightedL1Prefire_rwgt51_fwd' : [ 8.29657464e+04, 7.99582517e+04, 8.60031450e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt51_fwd' : [ 1.10119834e+05, 1.01666400e+05, 9.44982690e+04, 8.98552007e+04, 8.29657464e+04, 7.71225110e+04, 7.47151043e+04, 6.89920492e+04, 6.41372119e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt51_fwd' : [ 1.10135433e+05, 6.41305521e+04, ], 'CountWeightedFullL1PrefireNom_rwgt51_fwd' : [ 8.29657464e+04, 8.29603338e+04, 8.29746731e+04, ], 'CountWeightedFullL1Prefire_rwgt51_fwd' : [ 8.29657464e+04, 7.99582517e+04, 8.60031450e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt51_fwd' : [ 1.10119834e+05, 1.01666400e+05, 9.44982690e+04, 8.98552007e+04, 8.29657464e+04, 7.71225110e+04, 7.47151043e+04, 6.89920492e+04, 6.41372119e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt51_fwd' : [ 1.10135433e+05, 6.41305521e+04, ], 'CountWeighted_rwgt51_pt0to60' : [ 1.44278152e+06, 1.44289680e+06, 1.44263978e+06, ], 'CountWeightedLHEWeightScale_rwgt51_pt0to60' : [ 1.88808347e+06, 1.76883056e+06, 1.66151750e+06, 1.54014577e+06, 1.44278152e+06, 1.35518403e+06, 1.28032499e+06, 1.19932451e+06, 1.12646213e+06, ], 'CountWeightedLHEEnvelope_rwgt51_pt0to60' : [ 1.88975247e+06, 1.12580505e+06, ], 'CountWeightedFull_rwgt51_pt0to60' : [ 1.44278152e+06, 1.44289680e+06, 1.44263978e+06, ], 'CountWeightedFullLHEWeightScale_rwgt51_pt0to60' : [ 1.88808347e+06, 1.76883056e+06, 1.66151750e+06, 1.54014577e+06, 1.44278152e+06, 1.35518403e+06, 1.28032499e+06, 1.19932451e+06, 1.12646213e+06, ], 'CountWeightedFullLHEEnvelope_rwgt51_pt0to60' : [ 1.88975247e+06, 1.12580505e+06, ], 'CountWeightedL1PrefireNom_rwgt51_pt0to60' : [ 1.40320341e+06, 1.40326068e+06, 1.40312812e+06, ], 'CountWeightedL1Prefire_rwgt51_pt0to60' : [ 1.40320341e+06, 1.39309933e+06, 1.41290418e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt51_pt0to60' : [ 1.83561274e+06, 1.72035813e+06, 1.61651614e+06, 1.49730045e+06, 1.40320341e+06, 1.31844294e+06, 1.24467768e+06, 1.16639755e+06, 1.09589673e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt51_pt0to60' : [ 1.83726519e+06, 1.09524540e+06, ], 'CountWeightedFullL1PrefireNom_rwgt51_pt0to60' : [ 1.40320341e+06, 1.40326068e+06, 1.40312812e+06, ], 'CountWeightedFullL1Prefire_rwgt51_pt0to60' : [ 1.40320341e+06, 1.39309933e+06, 1.41290418e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt51_pt0to60' : [ 1.83561274e+06, 1.72035813e+06, 1.61651614e+06, 1.49730045e+06, 1.40320341e+06, 1.31844294e+06, 1.24467768e+06, 1.16639755e+06, 1.09589673e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt51_pt0to60' : [ 1.83726519e+06, 1.09524540e+06, ], 'CountWeighted_rwgt51_pt60to120' : [ 2.33997070e+06, 2.34014278e+06, 2.33980103e+06, ], 'CountWeightedLHEWeightScale_rwgt51_pt60to120' : [ 3.08042454e+06, 2.87099934e+06, 2.68476435e+06, 2.51065795e+06, 2.33997070e+06, 2.18820385e+06, 2.08569849e+06, 1.94390028e+06, 1.81783303e+06, ], 'CountWeightedLHEEnvelope_rwgt51_pt60to120' : [ 3.08234223e+06, 1.81707500e+06, ], 'CountWeightedFull_rwgt51_pt60to120' : [ 2.33997070e+06, 2.34014278e+06, 2.33980103e+06, ], 'CountWeightedFullLHEWeightScale_rwgt51_pt60to120' : [ 3.08042454e+06, 2.87099934e+06, 2.68476435e+06, 2.51065795e+06, 2.33997070e+06, 2.18820385e+06, 2.08569849e+06, 1.94390028e+06, 1.81783303e+06, ], 'CountWeightedFullLHEEnvelope_rwgt51_pt60to120' : [ 3.08234223e+06, 1.81707500e+06, ], 'CountWeightedL1PrefireNom_rwgt51_pt60to120' : [ 2.27009951e+06, 2.27015677e+06, 2.27005563e+06, ], 'CountWeightedL1Prefire_rwgt51_pt60to120' : [ 2.27009951e+06, 2.25263082e+06, 2.28700733e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt51_pt60to120' : [ 2.98722929e+06, 2.78536080e+06, 2.60561787e+06, 2.43462199e+06, 2.27009951e+06, 2.12362846e+06, 2.02247904e+06, 1.88580675e+06, 1.76414236e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt51_pt60to120' : [ 2.98912716e+06, 1.76339150e+06, ], 'CountWeightedFullL1PrefireNom_rwgt51_pt60to120' : [ 2.27009951e+06, 2.27015677e+06, 2.27005563e+06, ], 'CountWeightedFullL1Prefire_rwgt51_pt60to120' : [ 2.27009951e+06, 2.25263082e+06, 2.28700733e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt51_pt60to120' : [ 2.98722929e+06, 2.78536080e+06, 2.60561787e+06, 2.43462199e+06, 2.27009951e+06, 2.12362846e+06, 2.02247904e+06, 1.88580675e+06, 1.76414236e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt51_pt60to120' : [ 2.98912716e+06, 1.76339150e+06, ], 'CountWeighted_rwgt51_pt120to200' : [ 1.77392760e+06, 1.77402289e+06, 1.77385048e+06, ], 'CountWeightedLHEWeightScale_rwgt51_pt120to200' : [ 2.35062556e+06, 2.17201357e+06, 2.01650910e+06, 1.91970005e+06, 1.77392760e+06, 1.64701710e+06, 1.59740220e+06, 1.47616678e+06, 1.37062109e+06, ], 'CountWeightedLHEEnvelope_rwgt51_pt120to200' : [ 2.35144659e+06, 1.37028550e+06, ], 'CountWeightedFull_rwgt51_pt120to200' : [ 1.77392760e+06, 1.77402289e+06, 1.77385048e+06, ], 'CountWeightedFullLHEWeightScale_rwgt51_pt120to200' : [ 2.35062556e+06, 2.17201357e+06, 2.01650910e+06, 1.91970005e+06, 1.77392760e+06, 1.64701710e+06, 1.59740220e+06, 1.47616678e+06, 1.37062109e+06, ], 'CountWeightedFullLHEEnvelope_rwgt51_pt120to200' : [ 2.35144659e+06, 1.37028550e+06, ], 'CountWeightedL1PrefireNom_rwgt51_pt120to200' : [ 1.71411332e+06, 1.71415279e+06, 1.71410108e+06, ], 'CountWeightedL1Prefire_rwgt51_pt120to200' : [ 1.71411332e+06, 1.69959855e+06, 1.72829618e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt51_pt120to200' : [ 2.27020867e+06, 2.09880716e+06, 1.94938346e+06, 1.85399902e+06, 1.71411332e+06, 1.59216769e+06, 1.54271404e+06, 1.42637606e+06, 1.32496084e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt51_pt120to200' : [ 2.27102084e+06, 1.32462862e+06, ], 'CountWeightedFullL1PrefireNom_rwgt51_pt120to200' : [ 1.71411332e+06, 1.71415279e+06, 1.71410108e+06, ], 'CountWeightedFullL1Prefire_rwgt51_pt120to200' : [ 1.71411332e+06, 1.69959855e+06, 1.72829618e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt51_pt120to200' : [ 2.27020867e+06, 2.09880716e+06, 1.94938346e+06, 1.85399902e+06, 1.71411332e+06, 1.59216769e+06, 1.54271404e+06, 1.42637606e+06, 1.32496084e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt51_pt120to200' : [ 2.27102084e+06, 1.32462862e+06, ], 'CountWeighted_rwgt51_pt200to300' : [ 7.75598078e+05, 7.75424051e+05, 7.75855048e+05, ], 'CountWeightedLHEWeightScale_rwgt51_pt200to300' : [ 1.03562328e+06, 9.45768157e+05, 8.69427864e+05, 8.49199636e+05, 7.75598078e+05, 7.13062583e+05, 7.08990798e+05, 6.47595103e+05, 5.95427701e+05, ], 'CountWeightedLHEEnvelope_rwgt51_pt200to300' : [ 1.03579679e+06, 5.95362646e+05, ], 'CountWeightedFull_rwgt51_pt200to300' : [ 7.75598078e+05, 7.75424051e+05, 7.75855048e+05, ], 'CountWeightedFullLHEWeightScale_rwgt51_pt200to300' : [ 1.03562328e+06, 9.45768157e+05, 8.69427864e+05, 8.49199636e+05, 7.75598078e+05, 7.13062583e+05, 7.08990798e+05, 6.47595103e+05, 5.95427701e+05, ], 'CountWeightedFullLHEEnvelope_rwgt51_pt200to300' : [ 1.03579679e+06, 5.95362646e+05, ], 'CountWeightedL1PrefireNom_rwgt51_pt200to300' : [ 7.47136126e+05, 7.46951018e+05, 7.47399701e+05, ], 'CountWeightedL1Prefire_rwgt51_pt200to300' : [ 7.47136126e+05, 7.40415562e+05, 7.53749106e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt51_pt200to300' : [ 9.96939800e+05, 9.11044009e+05, 8.37968754e+05, 8.17496261e+05, 7.47136126e+05, 6.87274282e+05, 6.82533454e+05, 6.23840560e+05, 5.73902625e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt51_pt200to300' : [ 9.97111281e+05, 5.73838374e+05, ], 'CountWeightedFullL1PrefireNom_rwgt51_pt200to300' : [ 7.47136126e+05, 7.46951018e+05, 7.47399701e+05, ], 'CountWeightedFullL1Prefire_rwgt51_pt200to300' : [ 7.47136126e+05, 7.40415562e+05, 7.53749106e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt51_pt200to300' : [ 9.96939800e+05, 9.11044009e+05, 8.37968754e+05, 8.17496261e+05, 7.47136126e+05, 6.87274282e+05, 6.82533454e+05, 6.23840560e+05, 5.73902625e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt51_pt200to300' : [ 9.97111281e+05, 5.73838374e+05, ], 'CountWeighted_rwgt51_ptGt300' : [ 3.67961192e+05, 3.67918767e+05, 3.68007884e+05, ], 'CountWeightedLHEWeightScale_rwgt51_ptGt300' : [ 4.96103897e+05, 4.45600951e+05, 4.03843068e+05, 4.09614148e+05, 3.67961192e+05, 3.33517439e+05, 3.43949895e+05, 3.09005863e+05, 2.80107373e+05, ], 'CountWeightedLHEEnvelope_rwgt51_ptGt300' : [ 4.96123593e+05, 2.80101822e+05, ], 'CountWeightedFull_rwgt51_ptGt300' : [ 3.67961192e+05, 3.67918767e+05, 3.68007884e+05, ], 'CountWeightedFullLHEWeightScale_rwgt51_ptGt300' : [ 4.96103897e+05, 4.45600951e+05, 4.03843068e+05, 4.09614148e+05, 3.67961192e+05, 3.33517439e+05, 3.43949895e+05, 3.09005863e+05, 2.80107373e+05, ], 'CountWeightedFullLHEEnvelope_rwgt51_ptGt300' : [ 4.96123593e+05, 2.80101822e+05, ], 'CountWeightedL1PrefireNom_rwgt51_ptGt300' : [ 3.54579720e+05, 3.54530429e+05, 3.54624943e+05, ], 'CountWeightedL1Prefire_rwgt51_ptGt300' : [ 3.54579720e+05, 3.51471631e+05, 3.57644712e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt51_ptGt300' : [ 4.77645949e+05, 4.29364043e+05, 3.89391241e+05, 3.94403984e+05, 3.54579720e+05, 3.21605817e+05, 3.31198953e+05, 2.97786886e+05, 2.70119819e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt51_ptGt300' : [ 4.77665246e+05, 2.70114420e+05, ], 'CountWeightedFullL1PrefireNom_rwgt51_ptGt300' : [ 3.54579720e+05, 3.54530429e+05, 3.54624943e+05, ], 'CountWeightedFullL1Prefire_rwgt51_ptGt300' : [ 3.54579720e+05, 3.51471631e+05, 3.57644712e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt51_ptGt300' : [ 4.77645949e+05, 4.29364043e+05, 3.89391241e+05, 3.94403984e+05, 3.54579720e+05, 3.21605817e+05, 3.31198953e+05, 2.97786886e+05, 2.70119819e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt51_ptGt300' : [ 4.77665246e+05, 2.70114420e+05, ], 'CountWeighted_rwgt51_pt300to450' : [ 2.89184857e+05, 2.89119890e+05, 2.89259149e+05, ], 'CountWeightedLHEWeightScale_rwgt51_pt300to450' : [ 3.89244821e+05, 3.50775047e+05, 3.18807394e+05, 3.20855537e+05, 2.89184857e+05, 2.62864045e+05, 2.69047359e+05, 2.42518358e+05, 2.20468476e+05, ], 'CountWeightedLHEEnvelope_rwgt51_pt300to450' : [ 3.89264026e+05, 2.20463094e+05, ], 'CountWeightedFull_rwgt51_pt300to450' : [ 2.89184857e+05, 2.89119890e+05, 2.89259149e+05, ], 'CountWeightedFullLHEWeightScale_rwgt51_pt300to450' : [ 3.89244821e+05, 3.50775047e+05, 3.18807394e+05, 3.20855537e+05, 2.89184857e+05, 2.62864045e+05, 2.69047359e+05, 2.42518358e+05, 2.20468476e+05, ], 'CountWeightedFullLHEEnvelope_rwgt51_pt300to450' : [ 3.89264026e+05, 2.20463094e+05, ], 'CountWeightedL1PrefireNom_rwgt51_pt300to450' : [ 2.78392382e+05, 2.78321819e+05, 2.78463897e+05, ], 'CountWeightedL1Prefire_rwgt51_pt300to450' : [ 2.78392382e+05, 2.75884052e+05, 2.80866727e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt51_pt300to450' : [ 3.74398407e+05, 3.37663823e+05, 3.07097692e+05, 3.08636473e+05, 2.78392382e+05, 2.53224000e+05, 2.58814437e+05, 2.33479128e+05, 2.12393569e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt51_pt300to450' : [ 3.74417235e+05, 2.12388332e+05, ], 'CountWeightedFullL1PrefireNom_rwgt51_pt300to450' : [ 2.78392382e+05, 2.78321819e+05, 2.78463897e+05, ], 'CountWeightedFullL1Prefire_rwgt51_pt300to450' : [ 2.78392382e+05, 2.75884052e+05, 2.80866727e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt51_pt300to450' : [ 3.74398407e+05, 3.37663823e+05, 3.07097692e+05, 3.08636473e+05, 2.78392382e+05, 2.53224000e+05, 2.58814437e+05, 2.33479128e+05, 2.12393569e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt51_pt300to450' : [ 3.74417235e+05, 2.12388332e+05, ], 'CountWeighted_rwgt51_ptGt450' : [ 7.87763433e+04, 7.87988858e+04, 7.87487234e+04, ], 'CountWeightedLHEWeightScale_rwgt51_ptGt450' : [ 1.06859082e+05, 9.48258967e+04, 8.50356666e+04, 8.87586428e+04, 7.87763433e+04, 7.06533738e+04, 7.49025410e+04, 6.64874827e+04, 5.96388847e+04, ], 'CountWeightedLHEEnvelope_rwgt51_ptGt450' : [ 1.06859575e+05, 5.96387158e+04, ], 'CountWeightedFull_rwgt51_ptGt450' : [ 7.87763433e+04, 7.87988858e+04, 7.87487234e+04, ], 'CountWeightedFullLHEWeightScale_rwgt51_ptGt450' : [ 1.06859082e+05, 9.48258967e+04, 8.50356666e+04, 8.87586428e+04, 7.87763433e+04, 7.06533738e+04, 7.49025410e+04, 6.64874827e+04, 5.96388847e+04, ], 'CountWeightedFullLHEEnvelope_rwgt51_ptGt450' : [ 1.06859575e+05, 5.96387158e+04, ], 'CountWeightedL1PrefireNom_rwgt51_ptGt450' : [ 7.61873287e+04, 7.62086221e+04, 7.61610313e+04, ], 'CountWeightedL1Prefire_rwgt51_ptGt450' : [ 7.61873287e+04, 7.55876003e+04, 7.67779894e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt51_ptGt450' : [ 1.03247533e+05, 9.17002262e+04, 8.22935497e+04, 8.57675454e+04, 7.61873287e+04, 6.83818078e+04, 7.23845367e+04, 6.43077377e+04, 5.77262209e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt51_ptGt450' : [ 1.03248009e+05, 5.77260591e+04, ], 'CountWeightedFullL1PrefireNom_rwgt51_ptGt450' : [ 7.61873287e+04, 7.62086221e+04, 7.61610313e+04, ], 'CountWeightedFullL1Prefire_rwgt51_ptGt450' : [ 7.61873287e+04, 7.55876003e+04, 7.67779894e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt51_ptGt450' : [ 1.03247533e+05, 9.17002262e+04, 8.22935497e+04, 8.57675454e+04, 7.61873287e+04, 6.83818078e+04, 7.23845367e+04, 6.43077377e+04, 5.77262209e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt51_ptGt450' : [ 1.03248009e+05, 5.77260591e+04, ], 'CountWeighted_rwgt52' : [ 5.62135537e+06, 5.62156851e+06, 5.62128760e+06, ], 'CountWeightedLHEWeightScale_rwgt52' : [ 7.44295169e+06, 6.88368343e+06, 6.39587109e+06, 6.07809874e+06, 5.62135537e+06, 5.22302209e+06, 5.05744138e+06, 4.67737533e+06, 4.34594349e+06, ], 'CountWeightedLHEEnvelope_rwgt52' : [ 7.44654198e+06, 4.34452209e+06, ], 'CountWeightedFull_rwgt52' : [ 5.62135537e+06, 5.62156851e+06, 5.62128760e+06, ], 'CountWeightedFullLHEWeightScale_rwgt52' : [ 7.44295169e+06, 6.88368343e+06, 6.39587109e+06, 6.07809874e+06, 5.62135537e+06, 5.22302209e+06, 5.05744138e+06, 4.67737533e+06, 4.34594349e+06, ], 'CountWeightedFullLHEEnvelope_rwgt52' : [ 7.44654198e+06, 4.34452209e+06, ], 'CountWeightedL1PrefireNom_rwgt52' : [ 5.43321345e+06, 5.43320038e+06, 5.43337572e+06, ], 'CountWeightedL1Prefire_rwgt52' : [ 5.43321345e+06, 5.38724551e+06, 5.47800188e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt52' : [ 7.18991599e+06, 6.65344424e+06, 6.18483233e+06, 5.87132516e+06, 5.43321345e+06, 5.05056542e+06, 4.88530007e+06, 4.52074043e+06, 4.20236823e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt52' : [ 7.19346689e+06, 4.20096082e+06, ], 'CountWeightedFullL1PrefireNom_rwgt52' : [ 5.43321345e+06, 5.43320038e+06, 5.43337572e+06, ], 'CountWeightedFullL1Prefire_rwgt52' : [ 5.43321345e+06, 5.38724551e+06, 5.47800188e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt52' : [ 7.18991599e+06, 6.65344424e+06, 6.18483233e+06, 5.87132516e+06, 5.43321345e+06, 5.05056542e+06, 4.88530007e+06, 4.52074043e+06, 4.20236823e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt52' : [ 7.19346689e+06, 4.20096082e+06, ], 'CountWeighted_rwgt52_fwd' : [ 7.73536900e+04, 7.73716743e+04, 7.73386984e+04, ], 'CountWeightedLHEWeightScale_rwgt52_fwd' : [ 1.02821362e+05, 9.47631176e+04, 8.79528902e+04, 8.39228721e+04, 7.73536900e+04, 7.18006352e+04, 6.97982443e+04, 6.43400087e+04, 5.97251843e+04, ], 'CountWeightedLHEEnvelope_rwgt52_fwd' : [ 1.02835312e+05, 5.97192112e+04, ], 'CountWeightedFull_rwgt52_fwd' : [ 7.73536900e+04, 7.73716743e+04, 7.73386984e+04, ], 'CountWeightedFullLHEWeightScale_rwgt52_fwd' : [ 1.02821362e+05, 9.47631176e+04, 8.79528902e+04, 8.39228721e+04, 7.73536900e+04, 7.18006352e+04, 6.97982443e+04, 6.43400087e+04, 5.97251843e+04, ], 'CountWeightedFullLHEEnvelope_rwgt52_fwd' : [ 1.02835312e+05, 5.97192112e+04, ], 'CountWeightedL1PrefireNom_rwgt52_fwd' : [ 6.64468934e+04, 6.64414018e+04, 6.64557126e+04, ], 'CountWeightedL1Prefire_rwgt52_fwd' : [ 6.64468934e+04, 6.40350892e+04, 6.88826978e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt52_fwd' : [ 8.82867908e+04, 8.14237937e+04, 7.56179419e+04, 7.20398169e+04, 6.64468934e+04, 6.17143928e+04, 5.99015037e+04, 5.52557027e+04, 5.13238794e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt52_fwd' : [ 8.82990027e+04, 5.13186744e+04, ], 'CountWeightedFullL1PrefireNom_rwgt52_fwd' : [ 6.64468934e+04, 6.64414018e+04, 6.64557126e+04, ], 'CountWeightedFullL1Prefire_rwgt52_fwd' : [ 6.64468934e+04, 6.40350892e+04, 6.88826978e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt52_fwd' : [ 8.82867908e+04, 8.14237937e+04, 7.56179419e+04, 7.20398169e+04, 6.64468934e+04, 6.17143928e+04, 5.99015037e+04, 5.52557027e+04, 5.13238794e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt52_fwd' : [ 8.82990027e+04, 5.13186744e+04, ], 'CountWeighted_rwgt52_pt0to60' : [ 1.15167431e+06, 1.15178925e+06, 1.15151912e+06, ], 'CountWeightedLHEWeightScale_rwgt52_pt0to60' : [ 1.50880957e+06, 1.41205526e+06, 1.32516586e+06, 1.23065676e+06, 1.15167431e+06, 1.08075901e+06, 1.02297357e+06, 9.57274219e+05, 8.98295120e+05, ], 'CountWeightedLHEEnvelope_rwgt52_pt0to60' : [ 1.51009834e+06, 8.97787752e+05, ], 'CountWeightedFull_rwgt52_pt0to60' : [ 1.15167431e+06, 1.15178925e+06, 1.15151912e+06, ], 'CountWeightedFullLHEWeightScale_rwgt52_pt0to60' : [ 1.50880957e+06, 1.41205526e+06, 1.32516586e+06, 1.23065676e+06, 1.15167431e+06, 1.08075901e+06, 1.02297357e+06, 9.57274219e+05, 8.98295120e+05, ], 'CountWeightedFullLHEEnvelope_rwgt52_pt0to60' : [ 1.51009834e+06, 8.97787752e+05, ], 'CountWeightedL1PrefireNom_rwgt52_pt0to60' : [ 1.11975036e+06, 1.11981720e+06, 1.11964938e+06, ], 'CountWeightedL1Prefire_rwgt52_pt0to60' : [ 1.11975036e+06, 1.11160677e+06, 1.12757158e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt52_pt0to60' : [ 1.46641925e+06, 1.37295217e+06, 1.28891065e+06, 1.19604707e+06, 1.11975036e+06, 1.05116191e+06, 9.94181074e+05, 9.30717693e+05, 8.73675224e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt52_pt0to60' : [ 1.46769524e+06, 8.73172319e+05, ], 'CountWeightedFullL1PrefireNom_rwgt52_pt0to60' : [ 1.11975036e+06, 1.11981720e+06, 1.11964938e+06, ], 'CountWeightedFullL1Prefire_rwgt52_pt0to60' : [ 1.11975036e+06, 1.11160677e+06, 1.12757158e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt52_pt0to60' : [ 1.46641925e+06, 1.37295217e+06, 1.28891065e+06, 1.19604707e+06, 1.11975036e+06, 1.05116191e+06, 9.94181074e+05, 9.30717693e+05, 8.73675224e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt52_pt0to60' : [ 1.46769524e+06, 8.73172319e+05, ], 'CountWeighted_rwgt52_pt60to120' : [ 1.89940242e+06, 1.89954134e+06, 1.89927013e+06, ], 'CountWeightedLHEWeightScale_rwgt52_pt60to120' : [ 2.50453402e+06, 2.33095255e+06, 2.17698419e+06, 2.04083167e+06, 1.89940242e+06, 1.77396676e+06, 1.69508778e+06, 1.57762505e+06, 1.47345552e+06, ], 'CountWeightedLHEEnvelope_rwgt52_pt60to120' : [ 2.50602299e+06, 1.47286690e+06, ], 'CountWeightedFull_rwgt52_pt60to120' : [ 1.89940242e+06, 1.89954134e+06, 1.89927013e+06, ], 'CountWeightedFullLHEWeightScale_rwgt52_pt60to120' : [ 2.50453402e+06, 2.33095255e+06, 2.17698419e+06, 2.04083167e+06, 1.89940242e+06, 1.77396676e+06, 1.69508778e+06, 1.57762505e+06, 1.47345552e+06, ], 'CountWeightedFullLHEEnvelope_rwgt52_pt60to120' : [ 2.50602299e+06, 1.47286690e+06, ], 'CountWeightedL1PrefireNom_rwgt52_pt60to120' : [ 1.84209501e+06, 1.84214117e+06, 1.84206479e+06, ], 'CountWeightedL1Prefire_rwgt52_pt60to120' : [ 1.84209501e+06, 1.82776763e+06, 1.85596442e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt52_pt60to120' : [ 2.42792585e+06, 2.26069399e+06, 2.11216343e+06, 1.97834663e+06, 1.84209501e+06, 1.72109412e+06, 1.64314706e+06, 1.52998792e+06, 1.42950446e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt52_pt60to120' : [ 2.42939931e+06, 1.42892146e+06, ], 'CountWeightedFullL1PrefireNom_rwgt52_pt60to120' : [ 1.84209501e+06, 1.84214117e+06, 1.84206479e+06, ], 'CountWeightedFullL1Prefire_rwgt52_pt60to120' : [ 1.84209501e+06, 1.82776763e+06, 1.85596442e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt52_pt60to120' : [ 2.42792585e+06, 2.26069399e+06, 2.11216343e+06, 1.97834663e+06, 1.84209501e+06, 1.72109412e+06, 1.64314706e+06, 1.52998792e+06, 1.42950446e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt52_pt60to120' : [ 2.42939931e+06, 1.42892146e+06, ], 'CountWeighted_rwgt52_pt120to200' : [ 1.48625838e+06, 1.48639138e+06, 1.48617749e+06, ], 'CountWeightedLHEWeightScale_rwgt52_pt120to200' : [ 1.97414314e+06, 1.82047107e+06, 1.68706379e+06, 1.61161939e+06, 1.48625838e+06, 1.37742942e+06, 1.34062237e+06, 1.23640205e+06, 1.14592669e+06, ], 'CountWeightedLHEEnvelope_rwgt52_pt120to200' : [ 1.97478749e+06, 1.14566333e+06, ], 'CountWeightedFull_rwgt52_pt120to200' : [ 1.48625838e+06, 1.48639138e+06, 1.48617749e+06, ], 'CountWeightedFullLHEWeightScale_rwgt52_pt120to200' : [ 1.97414314e+06, 1.82047107e+06, 1.68706379e+06, 1.61161939e+06, 1.48625838e+06, 1.37742942e+06, 1.34062237e+06, 1.23640205e+06, 1.14592669e+06, ], 'CountWeightedFullLHEEnvelope_rwgt52_pt120to200' : [ 1.97478749e+06, 1.14566333e+06, ], 'CountWeightedL1PrefireNom_rwgt52_pt120to200' : [ 1.43560974e+06, 1.43569457e+06, 1.43558452e+06, ], 'CountWeightedL1Prefire_rwgt52_pt120to200' : [ 1.43560974e+06, 1.42330853e+06, 1.44762702e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt52_pt120to200' : [ 1.90583663e+06, 1.75845507e+06, 1.63033340e+06, 1.55583750e+06, 1.43560974e+06, 1.33109406e+06, 1.29420783e+06, 1.19425557e+06, 1.10736746e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt52_pt120to200' : [ 1.90647404e+06, 1.10710677e+06, ], 'CountWeightedFullL1PrefireNom_rwgt52_pt120to200' : [ 1.43560974e+06, 1.43569457e+06, 1.43558452e+06, ], 'CountWeightedFullL1Prefire_rwgt52_pt120to200' : [ 1.43560974e+06, 1.42330853e+06, 1.44762702e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt52_pt120to200' : [ 1.90583663e+06, 1.75845507e+06, 1.63033340e+06, 1.55583750e+06, 1.43560974e+06, 1.33109406e+06, 1.29420783e+06, 1.19425557e+06, 1.10736746e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt52_pt120to200' : [ 1.90647404e+06, 1.10710677e+06, ], 'CountWeighted_rwgt52_pt200to300' : [ 6.76777390e+05, 6.76597747e+05, 6.77050469e+05, ], 'CountWeightedLHEWeightScale_rwgt52_pt200to300' : [ 9.06496670e+05, 8.25722824e+05, 7.57289738e+05, 7.42901625e+05, 6.76777390e+05, 6.20752383e+05, 6.19956209e+05, 5.64824964e+05, 5.18111456e+05, ], 'CountWeightedLHEEnvelope_rwgt52_pt200to300' : [ 9.06635020e+05, 5.18059657e+05, ], 'CountWeightedFull_rwgt52_pt200to300' : [ 6.76777390e+05, 6.76597747e+05, 6.77050469e+05, ], 'CountWeightedFullLHEWeightScale_rwgt52_pt200to300' : [ 9.06496670e+05, 8.25722824e+05, 7.57289738e+05, 7.42901625e+05, 6.76777390e+05, 6.20752383e+05, 6.19956209e+05, 5.64824964e+05, 5.18111456e+05, ], 'CountWeightedFullLHEEnvelope_rwgt52_pt200to300' : [ 9.06635020e+05, 5.18059657e+05, ], 'CountWeightedL1PrefireNom_rwgt52_pt200to300' : [ 6.51621874e+05, 6.51433510e+05, 6.51898077e+05, ], 'CountWeightedL1Prefire_rwgt52_pt200to300' : [ 6.51621874e+05, 6.45675166e+05, 6.57471776e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt52_pt200to300' : [ 8.72178984e+05, 7.95014581e+05, 7.29547364e+05, 7.14792654e+05, 6.51621874e+05, 5.98023894e+05, 5.96509858e+05, 5.43839913e+05, 4.99149346e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt52_pt200to300' : [ 8.72315714e+05, 4.99098189e+05, ], 'CountWeightedFullL1PrefireNom_rwgt52_pt200to300' : [ 6.51621874e+05, 6.51433510e+05, 6.51898077e+05, ], 'CountWeightedFullL1Prefire_rwgt52_pt200to300' : [ 6.51621874e+05, 6.45675166e+05, 6.57471776e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt52_pt200to300' : [ 8.72178984e+05, 7.95014581e+05, 7.29547364e+05, 7.14792654e+05, 6.51621874e+05, 5.98023894e+05, 5.96509858e+05, 5.43839913e+05, 4.99149346e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt52_pt200to300' : [ 8.72315714e+05, 4.99098189e+05, ], 'CountWeighted_rwgt52_ptGt300' : [ 3.29889634e+05, 3.29877177e+05, 3.29919691e+05, ], 'CountWeightedLHEWeightScale_rwgt52_ptGt300' : [ 4.46148353e+05, 3.99715023e+05, 3.61414187e+05, 3.68165159e+05, 3.29889634e+05, 2.98314746e+05, 3.09003892e+05, 2.76907944e+05, 2.50428730e+05, ], 'CountWeightedLHEEnvelope_rwgt52_ptGt300' : [ 4.46164451e+05, 2.50424193e+05, ], 'CountWeightedFull_rwgt52_ptGt300' : [ 3.29889634e+05, 3.29877177e+05, 3.29919691e+05, ], 'CountWeightedFullLHEWeightScale_rwgt52_ptGt300' : [ 4.46148353e+05, 3.99715023e+05, 3.61414187e+05, 3.68165159e+05, 3.29889634e+05, 2.98314746e+05, 3.09003892e+05, 2.76907944e+05, 2.50428730e+05, ], 'CountWeightedFullLHEEnvelope_rwgt52_ptGt300' : [ 4.46164451e+05, 2.50424193e+05, ], 'CountWeightedL1PrefireNom_rwgt52_ptGt300' : [ 3.17688616e+05, 3.17671820e+05, 3.17712931e+05, ], 'CountWeightedL1Prefire_rwgt52_ptGt300' : [ 3.17688616e+05, 3.14852287e+05, 3.20485376e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt52_ptGt300' : [ 4.29267529e+05, 3.84903019e+05, 3.48260685e+05, 3.54261627e+05, 3.17688616e+05, 2.87478733e+05, 2.97353195e+05, 2.66682953e+05, 2.41346853e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt52_ptGt300' : [ 4.29283287e+05, 2.41342441e+05, ], 'CountWeightedFullL1PrefireNom_rwgt52_ptGt300' : [ 3.17688616e+05, 3.17671820e+05, 3.17712931e+05, ], 'CountWeightedFullL1Prefire_rwgt52_ptGt300' : [ 3.17688616e+05, 3.14852287e+05, 3.20485376e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt52_ptGt300' : [ 4.29267529e+05, 3.84903019e+05, 3.48260685e+05, 3.54261627e+05, 3.17688616e+05, 2.87478733e+05, 2.97353195e+05, 2.66682953e+05, 2.41346853e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt52_ptGt300' : [ 4.29283287e+05, 2.41342441e+05, ], 'CountWeighted_rwgt52_pt300to450' : [ 2.59021938e+05, 2.58996088e+05, 2.59073783e+05, ], 'CountWeightedLHEWeightScale_rwgt52_pt300to450' : [ 3.49761787e+05, 3.14368660e+05, 2.85031144e+05, 2.88143140e+05, 2.59021938e+05, 2.34880446e+05, 2.41500959e+05, 2.17119100e+05, 1.96904597e+05, ], 'CountWeightedLHEEnvelope_rwgt52_pt300to450' : [ 3.49777479e+05, 1.96900197e+05, ], 'CountWeightedFull_rwgt52_pt300to450' : [ 2.59021938e+05, 2.58996088e+05, 2.59073783e+05, ], 'CountWeightedFullLHEWeightScale_rwgt52_pt300to450' : [ 3.49761787e+05, 3.14368660e+05, 2.85031144e+05, 2.88143140e+05, 2.59021938e+05, 2.34880446e+05, 2.41500959e+05, 2.17119100e+05, 1.96904597e+05, ], 'CountWeightedFullLHEEnvelope_rwgt52_pt300to450' : [ 3.49777479e+05, 1.96900197e+05, ], 'CountWeightedL1PrefireNom_rwgt52_pt300to450' : [ 2.49193444e+05, 2.49163344e+05, 2.49239397e+05, ], 'CountWeightedL1Prefire_rwgt52_pt300to450' : [ 2.49193444e+05, 2.46906973e+05, 2.51448763e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt52_pt300to450' : [ 3.36197406e+05, 3.02422094e+05, 2.74387584e+05, 2.76985222e+05, 2.49193444e+05, 2.26122841e+05, 2.32160846e+05, 2.08890899e+05, 1.89572141e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt52_pt300to450' : [ 3.36212775e+05, 1.89567863e+05, ], 'CountWeightedFullL1PrefireNom_rwgt52_pt300to450' : [ 2.49193444e+05, 2.49163344e+05, 2.49239397e+05, ], 'CountWeightedFullL1Prefire_rwgt52_pt300to450' : [ 2.49193444e+05, 2.46906973e+05, 2.51448763e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt52_pt300to450' : [ 3.36197406e+05, 3.02422094e+05, 2.74387584e+05, 2.76985222e+05, 2.49193444e+05, 2.26122841e+05, 2.32160846e+05, 2.08890899e+05, 1.89572141e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt52_pt300to450' : [ 3.36212775e+05, 1.89567863e+05, ], 'CountWeighted_rwgt52_ptGt450' : [ 7.08676899e+04, 7.08810900e+04, 7.08458935e+04, ], 'CountWeightedLHEWeightScale_rwgt52_ptGt450' : [ 9.63865839e+04, 8.53463669e+04, 7.63830536e+04, 8.00220152e+04, 7.08676899e+04, 6.34343091e+04, 6.75029466e+04, 5.97888679e+04, 5.35241402e+04, ], 'CountWeightedLHEEnvelope_rwgt52_ptGt450' : [ 9.63869876e+04, 5.35240003e+04, ], 'CountWeightedFull_rwgt52_ptGt450' : [ 7.08676899e+04, 7.08810900e+04, 7.08458935e+04, ], 'CountWeightedFullLHEWeightScale_rwgt52_ptGt450' : [ 9.63865839e+04, 8.53463669e+04, 7.63830536e+04, 8.00220152e+04, 7.08676899e+04, 6.34343091e+04, 6.75029466e+04, 5.97888679e+04, 5.35241402e+04, ], 'CountWeightedFullLHEEnvelope_rwgt52_ptGt450' : [ 9.63869876e+04, 5.35240003e+04, ], 'CountWeightedL1PrefireNom_rwgt52_ptGt450' : [ 6.84951792e+04, 6.85084661e+04, 6.84735432e+04, ], 'CountWeightedL1Prefire_rwgt52_ptGt450' : [ 6.84951792e+04, 6.79453087e+04, 6.90366261e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt52_ptGt450' : [ 9.30701238e+04, 8.24809227e+04, 7.38730971e+04, 7.72764027e+04, 6.84951792e+04, 6.13559036e+04, 6.51923658e+04, 5.77920729e+04, 5.17747169e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt52_ptGt450' : [ 9.30705143e+04, 5.17745829e+04, ], 'CountWeightedFullL1PrefireNom_rwgt52_ptGt450' : [ 6.84951792e+04, 6.85084661e+04, 6.84735432e+04, ], 'CountWeightedFullL1Prefire_rwgt52_ptGt450' : [ 6.84951792e+04, 6.79453087e+04, 6.90366261e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt52_ptGt450' : [ 9.30701238e+04, 8.24809227e+04, 7.38730971e+04, 7.72764027e+04, 6.84951792e+04, 6.13559036e+04, 6.51923658e+04, 5.77920729e+04, 5.17747169e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt52_ptGt450' : [ 9.30705143e+04, 5.17745829e+04, ], 'CountWeighted_rwgt53' : [ 4.60265391e+06, 4.60287587e+06, 4.60261428e+06, ], 'CountWeightedLHEWeightScale_rwgt53' : [ 6.11166754e+06, 5.63758588e+06, 5.22581620e+06, 4.98969864e+06, 4.60265391e+06, 4.26652333e+06, 4.15095764e+06, 3.82897931e+06, 3.54937532e+06, ], 'CountWeightedLHEEnvelope_rwgt53' : [ 6.11436683e+06, 3.54830663e+06, ], 'CountWeightedFull_rwgt53' : [ 4.60265391e+06, 4.60287587e+06, 4.60261428e+06, ], 'CountWeightedFullLHEWeightScale_rwgt53' : [ 6.11166754e+06, 5.63758588e+06, 5.22581620e+06, 4.98969864e+06, 4.60265391e+06, 4.26652333e+06, 4.15095764e+06, 3.82897931e+06, 3.54937532e+06, ], 'CountWeightedFullLHEEnvelope_rwgt53' : [ 6.11436683e+06, 3.54830663e+06, ], 'CountWeightedL1PrefireNom_rwgt53' : [ 4.44619692e+06, 4.44623644e+06, 4.44633697e+06, ], 'CountWeightedL1Prefire_rwgt53' : [ 4.44619692e+06, 4.40799419e+06, 4.48343218e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt53' : [ 5.90047847e+06, 5.44606505e+06, 5.05078331e+06, 4.81717851e+06, 4.44619692e+06, 4.12353247e+06, 4.00737094e+06, 3.69875880e+06, 3.43036095e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt53' : [ 5.90314835e+06, 3.42930289e+06, ], 'CountWeightedFullL1PrefireNom_rwgt53' : [ 4.44619692e+06, 4.44623644e+06, 4.44633697e+06, ], 'CountWeightedFullL1Prefire_rwgt53' : [ 4.44619692e+06, 4.40799419e+06, 4.48343218e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt53' : [ 5.90047847e+06, 5.44606505e+06, 5.05078331e+06, 4.81717851e+06, 4.44619692e+06, 4.12353247e+06, 4.00737094e+06, 3.69875880e+06, 3.43036095e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt53' : [ 5.90314835e+06, 3.42930289e+06, ], 'CountWeighted_rwgt53_fwd' : [ 6.07129994e+04, 6.07247120e+04, 6.07042674e+04, ], 'CountWeightedLHEWeightScale_rwgt53_fwd' : [ 8.08222713e+04, 7.43768436e+04, 6.89473629e+04, 6.59669212e+04, 6.07129994e+04, 5.62861309e+04, 5.48642820e+04, 5.04991858e+04, 4.68204956e+04, ], 'CountWeightedLHEEnvelope_rwgt53_fwd' : [ 8.08328689e+04, 4.68159675e+04, ], 'CountWeightedFull_rwgt53_fwd' : [ 6.07129994e+04, 6.07247120e+04, 6.07042674e+04, ], 'CountWeightedFullLHEWeightScale_rwgt53_fwd' : [ 8.08222713e+04, 7.43768436e+04, 6.89473629e+04, 6.59669212e+04, 6.07129994e+04, 5.62861309e+04, 5.48642820e+04, 5.04991858e+04, 4.68204956e+04, ], 'CountWeightedFullLHEEnvelope_rwgt53_fwd' : [ 8.08328689e+04, 4.68159675e+04, ], 'CountWeightedL1PrefireNom_rwgt53_fwd' : [ 5.21328907e+04, 5.21272302e+04, 5.21414507e+04, ], 'CountWeightedL1Prefire_rwgt53_fwd' : [ 5.21328907e+04, 5.02372236e+04, 5.40474417e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt53_fwd' : [ 6.93677124e+04, 6.38830425e+04, 5.92577570e+04, 5.66021890e+04, 5.21328907e+04, 4.83629614e+04, 4.70650306e+04, 4.33528219e+04, 4.02208917e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt53_fwd' : [ 6.93769938e+04, 4.02169427e+04, ], 'CountWeightedFullL1PrefireNom_rwgt53_fwd' : [ 5.21328907e+04, 5.21272302e+04, 5.21414507e+04, ], 'CountWeightedFullL1Prefire_rwgt53_fwd' : [ 5.21328907e+04, 5.02372236e+04, 5.40474417e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt53_fwd' : [ 6.93677124e+04, 6.38830425e+04, 5.92577570e+04, 5.66021890e+04, 5.21328907e+04, 4.83629614e+04, 4.70650306e+04, 4.33528219e+04, 4.02208917e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt53_fwd' : [ 6.93769938e+04, 4.02169427e+04, ], 'CountWeighted_rwgt53_pt0to60' : [ 8.99387988e+05, 8.99503465e+05, 8.99221417e+05, ], 'CountWeightedLHEWeightScale_rwgt53_pt0to60' : [ 1.18011436e+06, 1.10285815e+06, 1.03366798e+06, 9.62440094e+05, 8.99387988e+05, 8.42929510e+05, 7.99941733e+05, 7.47502866e+05, 7.00554970e+05, ], 'CountWeightedLHEEnvelope_rwgt53_pt0to60' : [ 1.18107367e+06, 7.00177350e+05, ], 'CountWeightedFull_rwgt53_pt0to60' : [ 8.99387988e+05, 8.99503465e+05, 8.99221417e+05, ], 'CountWeightedFullLHEWeightScale_rwgt53_pt0to60' : [ 1.18011436e+06, 1.10285815e+06, 1.03366798e+06, 9.62440094e+05, 8.99387988e+05, 8.42929510e+05, 7.99941733e+05, 7.47502866e+05, 7.00554970e+05, ], 'CountWeightedFullLHEEnvelope_rwgt53_pt0to60' : [ 1.18107367e+06, 7.00177350e+05, ], 'CountWeightedL1PrefireNom_rwgt53_pt0to60' : [ 8.74096986e+05, 8.74172970e+05, 8.73974472e+05, ], 'CountWeightedL1Prefire_rwgt53_pt0to60' : [ 8.74096986e+05, 8.67652103e+05, 8.80289187e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt53_pt0to60' : [ 1.14645960e+06, 1.07187455e+06, 1.00499188e+06, 9.34967123e+05, 8.74096986e+05, 8.19522974e+05, 7.77089660e+05, 7.26466972e+05, 6.81087157e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt53_pt0to60' : [ 1.14740935e+06, 6.80712852e+05, ], 'CountWeightedFullL1PrefireNom_rwgt53_pt0to60' : [ 8.74096986e+05, 8.74172970e+05, 8.73974472e+05, ], 'CountWeightedFullL1Prefire_rwgt53_pt0to60' : [ 8.74096986e+05, 8.67652103e+05, 8.80289187e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt53_pt0to60' : [ 1.14645960e+06, 1.07187455e+06, 1.00499188e+06, 9.34967123e+05, 8.74096986e+05, 8.19522974e+05, 7.77089660e+05, 7.26466972e+05, 6.81087157e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt53_pt0to60' : [ 1.14740935e+06, 6.80712852e+05, ], 'CountWeighted_rwgt53_pt60to120' : [ 1.51755757e+06, 1.51766556e+06, 1.51746230e+06, ], 'CountWeightedLHEWeightScale_rwgt53_pt60to120' : [ 2.00540361e+06, 1.86288836e+06, 1.73688588e+06, 1.63362910e+06, 1.51755757e+06, 1.41494366e+06, 1.35654062e+06, 1.26017043e+06, 1.17498015e+06, ], 'CountWeightedLHEEnvelope_rwgt53_pt60to120' : [ 2.00652079e+06, 1.17453846e+06, ], 'CountWeightedFull_rwgt53_pt60to120' : [ 1.51755757e+06, 1.51766556e+06, 1.51746230e+06, ], 'CountWeightedFullLHEWeightScale_rwgt53_pt60to120' : [ 2.00540361e+06, 1.86288836e+06, 1.73688588e+06, 1.63362910e+06, 1.51755757e+06, 1.41494366e+06, 1.35654062e+06, 1.26017043e+06, 1.17498015e+06, ], 'CountWeightedFullLHEEnvelope_rwgt53_pt60to120' : [ 2.00652079e+06, 1.17453846e+06, ], 'CountWeightedL1PrefireNom_rwgt53_pt60to120' : [ 1.47114084e+06, 1.47117472e+06, 1.47112664e+06, ], 'CountWeightedL1Prefire_rwgt53_pt60to120' : [ 1.47114084e+06, 1.45953661e+06, 1.48237537e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt53_pt60to120' : [ 1.94317396e+06, 1.80596115e+06, 1.68448324e+06, 1.58289073e+06, 1.47114084e+06, 1.37221502e+06, 1.31437730e+06, 1.22159813e+06, 1.13947199e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt53_pt60to120' : [ 1.94427954e+06, 1.13903449e+06, ], 'CountWeightedFullL1PrefireNom_rwgt53_pt60to120' : [ 1.47114084e+06, 1.47117472e+06, 1.47112664e+06, ], 'CountWeightedFullL1Prefire_rwgt53_pt60to120' : [ 1.47114084e+06, 1.45953661e+06, 1.48237537e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt53_pt60to120' : [ 1.94317396e+06, 1.80596115e+06, 1.68448324e+06, 1.58289073e+06, 1.47114084e+06, 1.37221502e+06, 1.31437730e+06, 1.22159813e+06, 1.13947199e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt53_pt60to120' : [ 1.94427954e+06, 1.13903449e+06, ], 'CountWeighted_rwgt53_pt120to200' : [ 1.23697193e+06, 1.23713231e+06, 1.23689363e+06, ], 'CountWeightedLHEWeightScale_rwgt53_pt120to200' : [ 1.64789381e+06, 1.51583406e+06, 1.40157196e+06, 1.34464573e+06, 1.23697193e+06, 1.14381019e+06, 1.11810437e+06, 1.02862819e+06, 9.51211185e+05, ], 'CountWeightedLHEEnvelope_rwgt53_pt120to200' : [ 1.64838520e+06, 9.51010433e+05, ], 'CountWeightedFull_rwgt53_pt120to200' : [ 1.23697193e+06, 1.23713231e+06, 1.23689363e+06, ], 'CountWeightedFullLHEWeightScale_rwgt53_pt120to200' : [ 1.64789381e+06, 1.51583406e+06, 1.40157196e+06, 1.34464573e+06, 1.23697193e+06, 1.14381019e+06, 1.11810437e+06, 1.02862819e+06, 9.51211185e+05, ], 'CountWeightedFullLHEEnvelope_rwgt53_pt120to200' : [ 1.64838520e+06, 9.51010433e+05, ], 'CountWeightedL1PrefireNom_rwgt53_pt120to200' : [ 1.19426698e+06, 1.19438668e+06, 1.19423665e+06, ], 'CountWeightedL1Prefire_rwgt53_pt120to200' : [ 1.19426698e+06, 1.18388442e+06, 1.20440789e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt53_pt120to200' : [ 1.59008396e+06, 1.46351712e+06, 1.35385213e+06, 1.29746123e+06, 1.19426698e+06, 1.10485465e+06, 1.07886022e+06, 9.93107400e+05, 9.18806849e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt53_pt120to200' : [ 1.59057003e+06, 9.18608109e+05, ], 'CountWeightedFullL1PrefireNom_rwgt53_pt120to200' : [ 1.19426698e+06, 1.19438668e+06, 1.19423665e+06, ], 'CountWeightedFullL1Prefire_rwgt53_pt120to200' : [ 1.19426698e+06, 1.18388442e+06, 1.20440789e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt53_pt120to200' : [ 1.59008396e+06, 1.46351712e+06, 1.35385213e+06, 1.29746123e+06, 1.19426698e+06, 1.10485465e+06, 1.07886022e+06, 9.93107400e+05, 9.18806849e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt53_pt120to200' : [ 1.59057003e+06, 9.18608109e+05, ], 'CountWeighted_rwgt53_pt200to300' : [ 5.91145055e+05, 5.90956945e+05, 5.91435151e+05, ], 'CountWeightedLHEWeightScale_rwgt53_pt200to300' : [ 7.94602229e+05, 7.21698190e+05, 6.60117502e+05, 6.50789096e+05, 5.91145055e+05, 5.40761833e+05, 5.42803222e+05, 4.93101016e+05, 4.51113606e+05, ], 'CountWeightedLHEEnvelope_rwgt53_pt200to300' : [ 7.94710130e+05, 4.51073282e+05, ], 'CountWeightedFull_rwgt53_pt200to300' : [ 5.91145055e+05, 5.90956945e+05, 5.91435151e+05, ], 'CountWeightedFullLHEWeightScale_rwgt53_pt200to300' : [ 7.94602229e+05, 7.21698190e+05, 6.60117502e+05, 6.50789096e+05, 5.91145055e+05, 5.40761833e+05, 5.42803222e+05, 4.93101016e+05, 4.51113606e+05, ], 'CountWeightedFullLHEEnvelope_rwgt53_pt200to300' : [ 7.94710130e+05, 4.51073282e+05, ], 'CountWeightedL1PrefireNom_rwgt53_pt200to300' : [ 5.68857648e+05, 5.68663291e+05, 5.69147876e+05, ], 'CountWeightedL1Prefire_rwgt53_pt200to300' : [ 5.68857648e+05, 5.63582071e+05, 5.74045908e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt53_pt200to300' : [ 7.64072599e+05, 6.94473967e+05, 6.35599099e+05, 6.25798829e+05, 5.68857648e+05, 5.20687410e+05, 5.21969342e+05, 4.74518543e+05, 4.34374622e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt53_pt200to300' : [ 7.64179213e+05, 4.34334802e+05, ], 'CountWeightedFullL1PrefireNom_rwgt53_pt200to300' : [ 5.68857648e+05, 5.68663291e+05, 5.69147876e+05, ], 'CountWeightedFullL1Prefire_rwgt53_pt200to300' : [ 5.68857648e+05, 5.63582071e+05, 5.74045908e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt53_pt200to300' : [ 7.64072599e+05, 6.94473967e+05, 6.35599099e+05, 6.25798829e+05, 5.68857648e+05, 5.20687410e+05, 5.21969342e+05, 4.74518543e+05, 4.34374622e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt53_pt200to300' : [ 7.64179213e+05, 4.34334802e+05, ], 'CountWeighted_rwgt53_ptGt300' : [ 2.96878493e+05, 2.96890651e+05, 2.96895812e+05, ], 'CountWeightedLHEWeightScale_rwgt53_ptGt300' : [ 4.02832855e+05, 3.59928208e+05, 3.24624913e+05, 3.32225494e+05, 2.96878493e+05, 2.67791259e+05, 2.78702898e+05, 2.49076535e+05, 2.24694985e+05, ], 'CountWeightedLHEEnvelope_rwgt53_ptGt300' : [ 4.02845820e+05, 2.24691324e+05, ], 'CountWeightedFull_rwgt53_ptGt300' : [ 2.96878493e+05, 2.96890651e+05, 2.96895812e+05, ], 'CountWeightedFullLHEWeightScale_rwgt53_ptGt300' : [ 4.02832855e+05, 3.59928208e+05, 3.24624913e+05, 3.32225494e+05, 2.96878493e+05, 2.67791259e+05, 2.78702898e+05, 2.49076535e+05, 2.24694985e+05, ], 'CountWeightedFullLHEEnvelope_rwgt53_ptGt300' : [ 4.02845820e+05, 2.24691324e+05, ], 'CountWeightedL1PrefireNom_rwgt53_ptGt300' : [ 2.85702126e+05, 2.85712216e+05, 2.85709920e+05, ], 'CountWeightedL1Prefire_rwgt53_ptGt300' : [ 2.85702126e+05, 2.83101644e+05, 2.88266054e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt53_ptGt300' : [ 3.87321097e+05, 3.46353077e+05, 3.12598370e+05, 3.19456135e+05, 2.85702126e+05, 2.57888857e+05, 2.68007229e+05, 2.39714287e+05, 2.16399232e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt53_ptGt300' : [ 3.87333784e+05, 2.16395679e+05, ], 'CountWeightedFullL1PrefireNom_rwgt53_ptGt300' : [ 2.85702126e+05, 2.85712216e+05, 2.85709920e+05, ], 'CountWeightedFullL1Prefire_rwgt53_ptGt300' : [ 2.85702126e+05, 2.83101644e+05, 2.88266054e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt53_ptGt300' : [ 3.87321097e+05, 3.46353077e+05, 3.12598370e+05, 3.19456135e+05, 2.85702126e+05, 2.57888857e+05, 2.68007229e+05, 2.39714287e+05, 2.16399232e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt53_ptGt300' : [ 3.87333784e+05, 2.16395679e+05, ], 'CountWeighted_rwgt53_pt300to450' : [ 2.32849665e+05, 2.32857482e+05, 2.32882880e+05, ], 'CountWeightedLHEWeightScale_rwgt53_pt300to450' : [ 3.15501899e+05, 2.82779036e+05, 2.55724212e+05, 2.59758150e+05, 2.32849665e+05, 2.10599685e+05, 2.17598510e+05, 1.95080203e+05, 1.76458644e+05, ], 'CountWeightedLHEEnvelope_rwgt53_pt300to450' : [ 3.15514540e+05, 1.76455097e+05, ], 'CountWeightedFull_rwgt53_pt300to450' : [ 2.32849665e+05, 2.32857482e+05, 2.32882880e+05, ], 'CountWeightedFullLHEWeightScale_rwgt53_pt300to450' : [ 3.15501899e+05, 2.82779036e+05, 2.55724212e+05, 2.59758150e+05, 2.32849665e+05, 2.10599685e+05, 2.17598510e+05, 1.95080203e+05, 1.76458644e+05, ], 'CountWeightedFullLHEEnvelope_rwgt53_pt300to450' : [ 3.15514540e+05, 1.76455097e+05, ], 'CountWeightedL1PrefireNom_rwgt53_pt300to450' : [ 2.23859293e+05, 2.23864107e+05, 2.23883882e+05, ], 'CountWeightedL1Prefire_rwgt53_pt300to450' : [ 2.23859293e+05, 2.21765731e+05, 2.25924192e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt53_pt300to450' : [ 3.03052466e+05, 2.71845164e+05, 2.46007557e+05, 2.49522992e+05, 2.23859293e+05, 2.02609194e+05, 2.09034785e+05, 1.87557133e+05, 1.69771610e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt53_pt300to450' : [ 3.03064838e+05, 1.69768165e+05, ], 'CountWeightedFullL1PrefireNom_rwgt53_pt300to450' : [ 2.23859293e+05, 2.23864107e+05, 2.23883882e+05, ], 'CountWeightedFullL1Prefire_rwgt53_pt300to450' : [ 2.23859293e+05, 2.21765731e+05, 2.25924192e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt53_pt300to450' : [ 3.03052466e+05, 2.71845164e+05, 2.46007557e+05, 2.49522992e+05, 2.23859293e+05, 2.02609194e+05, 2.09034785e+05, 1.87557133e+05, 1.69771610e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt53_pt300to450' : [ 3.03064838e+05, 1.69768165e+05, ], 'CountWeighted_rwgt53_ptGt450' : [ 6.40288122e+04, 6.40331555e+04, 6.40129176e+04, ], 'CountWeightedLHEWeightScale_rwgt53_ptGt450' : [ 8.73309780e+04, 7.71491677e+04, 6.89007212e+04, 7.24673642e+04, 6.40288122e+04, 5.71915871e+04, 6.11043867e+04, 5.39963110e+04, 4.82363526e+04, ], 'CountWeightedLHEEnvelope_rwgt53_ptGt450' : [ 8.73313040e+04, 4.82362387e+04, ], 'CountWeightedFull_rwgt53_ptGt450' : [ 6.40288122e+04, 6.40331555e+04, 6.40129176e+04, ], 'CountWeightedFullLHEWeightScale_rwgt53_ptGt450' : [ 8.73309780e+04, 7.71491677e+04, 6.89007212e+04, 7.24673642e+04, 6.40288122e+04, 5.71915871e+04, 6.11043867e+04, 5.39963110e+04, 4.82363526e+04, ], 'CountWeightedFullLHEEnvelope_rwgt53_ptGt450' : [ 8.73313040e+04, 4.82362387e+04, ], 'CountWeightedL1PrefireNom_rwgt53_ptGt450' : [ 6.18428293e+04, 6.18481245e+04, 6.18260103e+04, ], 'CountWeightedL1Prefire_rwgt53_ptGt450' : [ 6.18428293e+04, 6.13359271e+04, 6.23418666e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt53_ptGt450' : [ 8.42686198e+04, 7.45079072e+04, 6.65908412e+04, 6.99331536e+04, 6.18428293e+04, 5.52796648e+04, 5.89724465e+04, 5.21571470e+04, 4.66276299e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt53_ptGt450' : [ 8.42689344e+04, 4.66275209e+04, ], 'CountWeightedFullL1PrefireNom_rwgt53_ptGt450' : [ 6.18428293e+04, 6.18481245e+04, 6.18260103e+04, ], 'CountWeightedFullL1Prefire_rwgt53_ptGt450' : [ 6.18428293e+04, 6.13359271e+04, 6.23418666e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt53_ptGt450' : [ 8.42686198e+04, 7.45079072e+04, 6.65908412e+04, 6.99331536e+04, 6.18428293e+04, 5.52796648e+04, 5.89724465e+04, 5.21571470e+04, 4.66276299e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt53_ptGt450' : [ 8.42689344e+04, 4.66275209e+04, ], 'CountWeighted_rwgt54' : [ 3.74068478e+06, 3.74090155e+06, 3.74068734e+06, ], 'CountWeightedLHEWeightScale_rwgt54' : [ 4.98521263e+06, 4.58320597e+06, 4.23578159e+06, 4.06875130e+06, 3.74068478e+06, 3.45718473e+06, 3.38394272e+06, 3.11111319e+06, 2.87536553e+06, ], 'CountWeightedLHEEnvelope_rwgt54' : [ 4.98715810e+06, 2.87459551e+06, ], 'CountWeightedFull_rwgt54' : [ 3.74068478e+06, 3.74090155e+06, 3.74068734e+06, ], 'CountWeightedFullLHEWeightScale_rwgt54' : [ 4.98521263e+06, 4.58320597e+06, 4.23578159e+06, 4.06875130e+06, 3.74068478e+06, 3.45718473e+06, 3.38394272e+06, 3.11111319e+06, 2.87536553e+06, ], 'CountWeightedFullLHEEnvelope_rwgt54' : [ 4.98715810e+06, 2.87459551e+06, ], 'CountWeightedL1PrefireNom_rwgt54' : [ 3.61104664e+06, 3.61112104e+06, 3.61118598e+06, ], 'CountWeightedL1Prefire_rwgt54' : [ 3.61104664e+06, 3.57941230e+06, 3.64188500e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt54' : [ 4.80944065e+06, 4.42445301e+06, 4.09121786e+06, 3.92522072e+06, 3.61104664e+06, 3.33913194e+06, 3.26451866e+06, 3.00324667e+06, 2.77713584e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt54' : [ 4.81136470e+06, 2.77637351e+06, ], 'CountWeightedFullL1PrefireNom_rwgt54' : [ 3.61104664e+06, 3.61112104e+06, 3.61118598e+06, ], 'CountWeightedFullL1Prefire_rwgt54' : [ 3.61104664e+06, 3.57941230e+06, 3.64188500e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt54' : [ 4.80944065e+06, 4.42445301e+06, 4.09121786e+06, 3.92522072e+06, 3.61104664e+06, 3.33913194e+06, 3.26451866e+06, 3.00324667e+06, 2.77713584e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt54' : [ 4.81136470e+06, 2.77637351e+06, ], 'CountWeighted_rwgt54_fwd' : [ 4.66347328e+04, 4.66411462e+04, 4.66309614e+04, ], 'CountWeightedLHEWeightScale_rwgt54_fwd' : [ 6.22105957e+04, 5.71297603e+04, 5.28684828e+04, 5.07758281e+04, 4.66347328e+04, 4.31606975e+04, 4.22298545e+04, 3.87896589e+04, 3.59029962e+04, ], 'CountWeightedLHEEnvelope_rwgt54_fwd' : [ 6.22183642e+04, 3.58996865e+04, ], 'CountWeightedFull_rwgt54_fwd' : [ 4.66347328e+04, 4.66411462e+04, 4.66309614e+04, ], 'CountWeightedFullLHEWeightScale_rwgt54_fwd' : [ 6.22105957e+04, 5.71297603e+04, 5.28684828e+04, 5.07758281e+04, 4.66347328e+04, 4.31606975e+04, 4.22298545e+04, 3.87896589e+04, 3.59029962e+04, ], 'CountWeightedFullLHEEnvelope_rwgt54_fwd' : [ 6.22183642e+04, 3.58996865e+04, ], 'CountWeightedL1PrefireNom_rwgt54_fwd' : [ 4.00229380e+04, 4.00170453e+04, 4.00311371e+04, ], 'CountWeightedL1Prefire_rwgt54_fwd' : [ 4.00229380e+04, 3.85638976e+04, 4.14965250e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt54_fwd' : [ 5.33615913e+04, 4.90431753e+04, 4.54167706e+04, 4.35414982e+04, 4.00229380e+04, 3.70674407e+04, 3.62050017e+04, 3.32827419e+04, 3.08275963e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt54_fwd' : [ 5.33683994e+04, 3.08247077e+04, ], 'CountWeightedFullL1PrefireNom_rwgt54_fwd' : [ 4.00229380e+04, 4.00170453e+04, 4.00311371e+04, ], 'CountWeightedFullL1Prefire_rwgt54_fwd' : [ 4.00229380e+04, 3.85638976e+04, 4.14965250e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt54_fwd' : [ 5.33615913e+04, 4.90431753e+04, 4.54167706e+04, 4.35414982e+04, 4.00229380e+04, 3.70674407e+04, 3.62050017e+04, 3.32827419e+04, 3.08275963e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt54_fwd' : [ 5.33683994e+04, 3.08247077e+04, ], 'CountWeighted_rwgt54_pt0to60' : [ 6.85919853e+05, 6.86036474e+05, 6.85744182e+05, ], 'CountWeightedLHEWeightScale_rwgt54_pt0to60' : [ 9.01995303e+05, 8.41236126e+05, 7.87021414e+05, 7.35493716e+05, 6.85919853e+05, 6.41693471e+05, 6.11227415e+05, 5.70008165e+05, 5.33240092e+05, ], 'CountWeightedLHEEnvelope_rwgt54_pt0to60' : [ 9.02675964e+05, 5.32972158e+05, ], 'CountWeightedFull_rwgt54_pt0to60' : [ 6.85919853e+05, 6.86036474e+05, 6.85744182e+05, ], 'CountWeightedFullLHEWeightScale_rwgt54_pt0to60' : [ 9.01995303e+05, 8.41236126e+05, 7.87021414e+05, 7.35493716e+05, 6.85919853e+05, 6.41693471e+05, 6.11227415e+05, 5.70008165e+05, 5.33240092e+05, ], 'CountWeightedFullLHEEnvelope_rwgt54_pt0to60' : [ 9.02675964e+05, 5.32972158e+05, ], 'CountWeightedL1PrefireNom_rwgt54_pt0to60' : [ 6.66240807e+05, 6.66325421e+05, 6.66100464e+05, ], 'CountWeightedL1Prefire_rwgt54_pt0to60' : [ 6.66240807e+05, 6.61233154e+05, 6.71054905e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt54_pt0to60' : [ 8.75731277e+05, 8.17122259e+05, 7.64757647e+05, 7.14058986e+05, 6.66240807e+05, 6.23524888e+05, 5.93401261e+05, 5.53642800e+05, 5.18131434e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt54_pt0to60' : [ 8.76405081e+05, 5.17865865e+05, ], 'CountWeightedFullL1PrefireNom_rwgt54_pt0to60' : [ 6.66240807e+05, 6.66325421e+05, 6.66100464e+05, ], 'CountWeightedFullL1Prefire_rwgt54_pt0to60' : [ 6.66240807e+05, 6.61233154e+05, 6.71054905e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt54_pt0to60' : [ 8.75731277e+05, 8.17122259e+05, 7.64757647e+05, 7.14058986e+05, 6.66240807e+05, 6.23524888e+05, 5.93401261e+05, 5.53642800e+05, 5.18131434e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt54_pt0to60' : [ 8.76405081e+05, 5.17865865e+05, ], 'CountWeighted_rwgt54_pt60to120' : [ 1.19444225e+06, 1.19452142e+06, 1.19438054e+06, ], 'CountWeightedLHEWeightScale_rwgt54_pt60to120' : [ 1.58304205e+06, 1.46681546e+06, 1.36447720e+06, 1.28905633e+06, 1.19444225e+06, 1.11114061e+06, 1.07006457e+06, 9.91542254e+05, 9.22412227e+05, ], 'CountWeightedLHEEnvelope_rwgt54_pt60to120' : [ 1.58384493e+06, 9.22094698e+05, ], 'CountWeightedFull_rwgt54_pt60to120' : [ 1.19444225e+06, 1.19452142e+06, 1.19438054e+06, ], 'CountWeightedFullLHEWeightScale_rwgt54_pt60to120' : [ 1.58304205e+06, 1.46681546e+06, 1.36447720e+06, 1.28905633e+06, 1.19444225e+06, 1.11114061e+06, 1.07006457e+06, 9.91542254e+05, 9.22412227e+05, ], 'CountWeightedFullLHEEnvelope_rwgt54_pt60to120' : [ 1.58384493e+06, 9.22094698e+05, ], 'CountWeightedL1PrefireNom_rwgt54_pt60to120' : [ 1.15724289e+06, 1.15726357e+06, 1.15724453e+06, ], 'CountWeightedL1Prefire_rwgt54_pt60to120' : [ 1.15724289e+06, 1.14794275e+06, 1.16624735e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt54_pt60to120' : [ 1.53298188e+06, 1.42117099e+06, 1.32258401e+06, 1.24825945e+06, 1.15724289e+06, 1.07699724e+06, 1.03617578e+06, 9.60641099e+05, 8.94049018e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt54_pt60to120' : [ 1.53377636e+06, 8.93734533e+05, ], 'CountWeightedFullL1PrefireNom_rwgt54_pt60to120' : [ 1.15724289e+06, 1.15726357e+06, 1.15724453e+06, ], 'CountWeightedFullL1Prefire_rwgt54_pt60to120' : [ 1.15724289e+06, 1.14794275e+06, 1.16624735e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt54_pt60to120' : [ 1.53298188e+06, 1.42117099e+06, 1.32258401e+06, 1.24825945e+06, 1.15724289e+06, 1.07699724e+06, 1.03617578e+06, 9.60641099e+05, 8.94049018e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt54_pt60to120' : [ 1.53377636e+06, 8.93734533e+05, ], 'CountWeighted_rwgt54_pt120to200' : [ 1.02605840e+06, 1.02623780e+06, 1.02598753e+06, ], 'CountWeightedLHEWeightScale_rwgt54_pt120to200' : [ 1.37186566e+06, 1.25808933e+06, 1.16002612e+06, 1.11876820e+06, 1.02605840e+06, 9.46151448e+05, 9.29839828e+05, 8.52837332e+05, 7.86468517e+05, ], 'CountWeightedLHEEnvelope_rwgt54_pt120to200' : [ 1.37222740e+06, 7.86320705e+05, ], 'CountWeightedFull_rwgt54_pt120to200' : [ 1.02605840e+06, 1.02623780e+06, 1.02598753e+06, ], 'CountWeightedFullLHEWeightScale_rwgt54_pt120to200' : [ 1.37186566e+06, 1.25808933e+06, 1.16002612e+06, 1.11876820e+06, 1.02605840e+06, 9.46151448e+05, 9.29839828e+05, 8.52837332e+05, 7.86468517e+05, ], 'CountWeightedFullLHEEnvelope_rwgt54_pt120to200' : [ 1.37222740e+06, 7.86320705e+05, ], 'CountWeightedL1PrefireNom_rwgt54_pt120to200' : [ 9.90075860e+05, 9.90220584e+05, 9.90046478e+05, ], 'CountWeightedL1Prefire_rwgt54_pt120to200' : [ 9.90075860e+05, 9.81316889e+05, 9.98628496e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt54_pt120to200' : [ 1.32293870e+06, 1.21398032e+06, 1.11993149e+06, 1.07885879e+06, 9.90075860e+05, 9.13440605e+05, 8.96664052e+05, 8.22923375e+05, 7.59272651e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt54_pt120to200' : [ 1.32329658e+06, 7.59126313e+05, ], 'CountWeightedFullL1PrefireNom_rwgt54_pt120to200' : [ 9.90075860e+05, 9.90220584e+05, 9.90046478e+05, ], 'CountWeightedFullL1Prefire_rwgt54_pt120to200' : [ 9.90075860e+05, 9.81316889e+05, 9.98628496e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt54_pt120to200' : [ 1.32293870e+06, 1.21398032e+06, 1.11993149e+06, 1.07885879e+06, 9.90075860e+05, 9.13440605e+05, 8.96664052e+05, 8.22923375e+05, 7.59272651e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt54_pt120to200' : [ 1.32329658e+06, 7.59126313e+05, ], 'CountWeighted_rwgt54_pt200to300' : [ 5.18696627e+05, 5.18498456e+05, 5.19003728e+05, ], 'CountWeightedLHEWeightScale_rwgt54_pt200to300' : [ 6.99934632e+05, 6.33689188e+05, 5.77906206e+05, 5.72857748e+05, 5.18696627e+05, 4.73086802e+05, 4.77528280e+05, 4.32419540e+05, 3.94430893e+05, ], 'CountWeightedLHEEnvelope_rwgt54_pt200to300' : [ 7.00016778e+05, 3.94400282e+05, ], 'CountWeightedFull_rwgt54_pt200to300' : [ 5.18696627e+05, 5.18498456e+05, 5.19003728e+05, ], 'CountWeightedFullLHEWeightScale_rwgt54_pt200to300' : [ 6.99934632e+05, 6.33689188e+05, 5.77906206e+05, 5.72857748e+05, 5.18696627e+05, 4.73086802e+05, 4.77528280e+05, 4.32419540e+05, 3.94430893e+05, ], 'CountWeightedFullLHEEnvelope_rwgt54_pt200to300' : [ 7.00016778e+05, 3.94400282e+05, ], 'CountWeightedL1PrefireNom_rwgt54_pt200to300' : [ 4.98838622e+05, 4.98636091e+05, 4.99142924e+05, ], 'CountWeightedL1Prefire_rwgt54_pt200to300' : [ 4.98838622e+05, 4.94131180e+05, 5.03466528e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt54_pt200to300' : [ 6.72613826e+05, 6.09415634e+05, 5.56118082e+05, 5.50509304e+05, 4.98838622e+05, 4.55260020e+05, 4.58907407e+05, 4.15871960e+05, 3.79574600e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt54_pt200to300' : [ 6.72694992e+05, 3.79544360e+05, ], 'CountWeightedFullL1PrefireNom_rwgt54_pt200to300' : [ 4.98838622e+05, 4.98636091e+05, 4.99142924e+05, ], 'CountWeightedFullL1Prefire_rwgt54_pt200to300' : [ 4.98838622e+05, 4.94131180e+05, 5.03466528e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt54_pt200to300' : [ 6.72613826e+05, 6.09415634e+05, 5.56118082e+05, 5.50509304e+05, 4.98838622e+05, 4.55260020e+05, 4.58907407e+05, 4.15871960e+05, 3.79574600e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt54_pt200to300' : [ 6.72694992e+05, 3.79544360e+05, ], 'CountWeighted_rwgt54_ptGt300' : [ 2.68933163e+05, 2.68965048e+05, 2.68941039e+05, ], 'CountWeightedLHEWeightScale_rwgt54_ptGt300' : [ 3.66164462e+05, 3.26247009e+05, 2.93481311e+05, 3.01801085e+05, 2.68933163e+05, 2.41951863e+05, 2.53051799e+05, 2.25515977e+05, 2.02910326e+05, ], 'CountWeightedLHEEnvelope_rwgt54_ptGt300' : [ 3.66174780e+05, 2.02907415e+05, ], 'CountWeightedFull_rwgt54_ptGt300' : [ 2.68933163e+05, 2.68965048e+05, 2.68941039e+05, ], 'CountWeightedFullLHEWeightScale_rwgt54_ptGt300' : [ 3.66164462e+05, 3.26247009e+05, 2.93481311e+05, 3.01801085e+05, 2.68933163e+05, 2.41951863e+05, 2.53051799e+05, 2.25515977e+05, 2.02910326e+05, ], 'CountWeightedFullLHEEnvelope_rwgt54_ptGt300' : [ 3.66174780e+05, 2.02907415e+05, ], 'CountWeightedL1PrefireNom_rwgt54_ptGt300' : [ 2.58625124e+05, 2.58656935e+05, 2.58620120e+05, ], 'CountWeightedL1Prefire_rwgt54_ptGt300' : [ 2.58625124e+05, 2.56224531e+05, 2.60991781e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt54_ptGt300' : [ 3.51812875e+05, 3.13719996e+05, 2.82409785e+05, 2.89992845e+05, 2.58625124e+05, 2.32840610e+05, 2.43165455e+05, 2.16884909e+05, 1.95280724e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt54_ptGt300' : [ 3.51822958e+05, 1.95277900e+05, ], 'CountWeightedFullL1PrefireNom_rwgt54_ptGt300' : [ 2.58625124e+05, 2.58656935e+05, 2.58620120e+05, ], 'CountWeightedFullL1Prefire_rwgt54_ptGt300' : [ 2.58625124e+05, 2.56224531e+05, 2.60991781e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt54_ptGt300' : [ 3.51812875e+05, 3.13719996e+05, 2.82409785e+05, 2.89992845e+05, 2.58625124e+05, 2.32840610e+05, 2.43165455e+05, 2.16884909e+05, 1.95280724e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt54_ptGt300' : [ 3.51822958e+05, 1.95277900e+05, ], 'CountWeighted_rwgt54_pt300to450' : [ 2.10678690e+05, 2.10714843e+05, 2.10696758e+05, ], 'CountWeightedLHEWeightScale_rwgt54_pt300to450' : [ 2.86479255e+05, 2.56019018e+05, 2.30898347e+05, 2.35712262e+05, 2.10678690e+05, 1.90031372e+05, 1.97349891e+05, 1.76410604e+05, 1.59138799e+05, ], 'CountWeightedLHEEnvelope_rwgt54_pt300to450' : [ 2.86489311e+05, 1.59135977e+05, ], 'CountWeightedFull_rwgt54_pt300to450' : [ 2.10678690e+05, 2.10714843e+05, 2.10696758e+05, ], 'CountWeightedFullLHEWeightScale_rwgt54_pt300to450' : [ 2.86479255e+05, 2.56019018e+05, 2.30898347e+05, 2.35712262e+05, 2.10678690e+05, 1.90031372e+05, 1.97349891e+05, 1.76410604e+05, 1.59138799e+05, ], 'CountWeightedFullLHEEnvelope_rwgt54_pt300to450' : [ 2.86489311e+05, 1.59135977e+05, ], 'CountWeightedL1PrefireNom_rwgt54_pt300to450' : [ 2.02399696e+05, 2.02433856e+05, 2.02406797e+05, ], 'CountWeightedL1Prefire_rwgt54_pt300to450' : [ 2.02399696e+05, 2.00469838e+05, 2.04302999e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt54_pt300to450' : [ 2.74976320e+05, 2.45944658e+05, 2.21968326e+05, 2.26260460e+05, 2.02399696e+05, 1.82691936e+05, 1.89445238e+05, 1.69486061e+05, 1.52999491e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt54_pt300to450' : [ 2.74986153e+05, 1.52996755e+05, ], 'CountWeightedFullL1PrefireNom_rwgt54_pt300to450' : [ 2.02399696e+05, 2.02433856e+05, 2.02406797e+05, ], 'CountWeightedFullL1Prefire_rwgt54_pt300to450' : [ 2.02399696e+05, 2.00469838e+05, 2.04302999e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt54_pt300to450' : [ 2.74976320e+05, 2.45944658e+05, 2.21968326e+05, 2.26260460e+05, 2.02399696e+05, 1.82691936e+05, 1.89445238e+05, 1.69486061e+05, 1.52999491e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt54_pt300to450' : [ 2.74986153e+05, 1.52996755e+05, ], 'CountWeighted_rwgt54_ptGt450' : [ 5.82544746e+04, 5.82502200e+04, 5.82442693e+04, ], 'CountWeightedLHEWeightScale_rwgt54_ptGt450' : [ 7.96852186e+04, 7.02280038e+04, 6.25829860e+04, 6.60888154e+04, 5.82544746e+04, 5.19204778e+04, 5.57019182e+04, 4.91053881e+04, 4.37715254e+04, ], 'CountWeightedLHEEnvelope_rwgt54_ptGt450' : [ 7.96854788e+04, 4.37714343e+04, ], 'CountWeightedFull_rwgt54_ptGt450' : [ 5.82544746e+04, 5.82502200e+04, 5.82442693e+04, ], 'CountWeightedFullLHEWeightScale_rwgt54_ptGt450' : [ 7.96852186e+04, 7.02280038e+04, 6.25829860e+04, 6.60888154e+04, 5.82544746e+04, 5.19204778e+04, 5.57019182e+04, 4.91053881e+04, 4.37715254e+04, ], 'CountWeightedFullLHEEnvelope_rwgt54_ptGt450' : [ 7.96854788e+04, 4.37714343e+04, ], 'CountWeightedL1PrefireNom_rwgt54_ptGt450' : [ 5.62254249e+04, 5.62230919e+04, 5.62133208e+04, ], 'CountWeightedL1Prefire_rwgt54_ptGt450' : [ 5.62254249e+04, 5.57546824e+04, 5.66887763e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt54_ptGt450' : [ 7.68365455e+04, 6.77753411e+04, 6.04414828e+04, 6.37323957e+04, 5.62254249e+04, 5.01486764e+04, 5.37202230e+04, 4.73988539e+04, 4.22812305e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt54_ptGt450' : [ 7.68367965e+04, 4.22811435e+04, ], 'CountWeightedFullL1PrefireNom_rwgt54_ptGt450' : [ 5.62254249e+04, 5.62230919e+04, 5.62133208e+04, ], 'CountWeightedFullL1Prefire_rwgt54_ptGt450' : [ 5.62254249e+04, 5.57546824e+04, 5.66887763e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt54_ptGt450' : [ 7.68365455e+04, 6.77753411e+04, 6.04414828e+04, 6.37323957e+04, 5.62254249e+04, 5.01486764e+04, 5.37202230e+04, 4.73988539e+04, 4.22812305e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt54_ptGt450' : [ 7.68367965e+04, 4.22811435e+04, ], 'CountWeighted_rwgt55' : [ 3.03544765e+06, 3.03564991e+06, 3.03549780e+06, ], 'CountWeightedLHEWeightScale_rwgt55' : [ 4.06357817e+06, 3.72054426e+06, 3.42576219e+06, 3.31526322e+06, 3.03544765e+06, 2.79500901e+06, 2.75639227e+06, 2.52377654e+06, 2.32390801e+06, ], 'CountWeightedLHEEnvelope_rwgt55' : [ 4.06490648e+06, 2.32338232e+06, ], 'CountWeightedFull_rwgt55' : [ 3.03544765e+06, 3.03564991e+06, 3.03549780e+06, ], 'CountWeightedFullLHEWeightScale_rwgt55' : [ 4.06357817e+06, 3.72054426e+06, 3.42576219e+06, 3.31526322e+06, 3.03544765e+06, 2.79500901e+06, 2.75639227e+06, 2.52377654e+06, 2.32390801e+06, ], 'CountWeightedFullLHEEnvelope_rwgt55' : [ 4.06490648e+06, 2.32338232e+06, ], 'CountWeightedL1PrefireNom_rwgt55' : [ 2.92775492e+06, 2.92784804e+06, 2.92790458e+06, ], 'CountWeightedL1Prefire_rwgt55' : [ 2.92775492e+06, 2.90149670e+06, 2.95336087e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt55' : [ 3.91678970e+06, 3.58860637e+06, 3.30613454e+06, 3.19545494e+06, 2.92775492e+06, 2.69736236e+06, 2.65674583e+06, 2.43420531e+06, 2.24268947e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt55' : [ 3.91810353e+06, 2.24216904e+06, ], 'CountWeightedFullL1PrefireNom_rwgt55' : [ 2.92775492e+06, 2.92784804e+06, 2.92790458e+06, ], 'CountWeightedFullL1Prefire_rwgt55' : [ 2.92775492e+06, 2.90149670e+06, 2.95336087e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt55' : [ 3.91678970e+06, 3.58860637e+06, 3.30613454e+06, 3.19545494e+06, 2.92775492e+06, 2.69736236e+06, 2.65674583e+06, 2.43420531e+06, 2.24268947e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt55' : [ 3.91810353e+06, 2.24216904e+06, ], 'CountWeighted_rwgt55_fwd' : [ 3.51183054e+04, 3.51203931e+04, 3.51182823e+04, ], 'CountWeightedLHEWeightScale_rwgt55_fwd' : [ 4.69855880e+04, 4.30211400e+04, 3.97155543e+04, 3.83489846e+04, 3.51183054e+04, 3.24237715e+04, 3.18944560e+04, 2.92109283e+04, 2.69722207e+04, ], 'CountWeightedLHEEnvelope_rwgt55_fwd' : [ 4.69910502e+04, 2.69699040e+04, ], 'CountWeightedFull_rwgt55_fwd' : [ 3.51183054e+04, 3.51203931e+04, 3.51182823e+04, ], 'CountWeightedFullLHEWeightScale_rwgt55_fwd' : [ 4.69855880e+04, 4.30211400e+04, 3.97155543e+04, 3.83489846e+04, 3.51183054e+04, 3.24237715e+04, 3.18944560e+04, 2.92109283e+04, 2.69722207e+04, ], 'CountWeightedFullLHEEnvelope_rwgt55_fwd' : [ 4.69910502e+04, 2.69699040e+04, ], 'CountWeightedL1PrefireNom_rwgt55_fwd' : [ 3.01165506e+04, 3.01103889e+04, 3.01243341e+04, ], 'CountWeightedL1Prefire_rwgt55_fwd' : [ 3.01165506e+04, 2.90146573e+04, 3.12294452e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt55_fwd' : [ 4.02678413e+04, 3.69036035e+04, 3.40944090e+04, 3.28572583e+04, 3.01165506e+04, 2.78273633e+04, 2.73210125e+04, 2.50450495e+04, 2.31436062e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt55_fwd' : [ 4.02726309e+04, 2.31415825e+04, ], 'CountWeightedFullL1PrefireNom_rwgt55_fwd' : [ 3.01165506e+04, 3.01103889e+04, 3.01243341e+04, ], 'CountWeightedFullL1Prefire_rwgt55_fwd' : [ 3.01165506e+04, 2.90146573e+04, 3.12294452e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt55_fwd' : [ 4.02678413e+04, 3.69036035e+04, 3.40944090e+04, 3.28572583e+04, 3.01165506e+04, 2.78273633e+04, 2.73210125e+04, 2.50450495e+04, 2.31436062e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt55_fwd' : [ 4.02726309e+04, 2.31415825e+04, ], 'CountWeighted_rwgt55_pt0to60' : [ 5.11269046e+05, 5.11387039e+05, 5.11086584e+05, ], 'CountWeightedLHEWeightScale_rwgt55_pt0to60' : [ 6.74449863e+05, 6.27187358e+05, 5.85225135e+05, 5.49815378e+05, 5.11269046e+05, 4.77050302e+05, 4.56829242e+05, 4.24789225e+05, 3.96349649e+05, ], 'CountWeightedLHEEnvelope_rwgt55_pt0to60' : [ 6.74902378e+05, 3.96171475e+05, ], 'CountWeightedFull_rwgt55_pt0to60' : [ 5.11269046e+05, 5.11387039e+05, 5.11086584e+05, ], 'CountWeightedFullLHEWeightScale_rwgt55_pt0to60' : [ 6.74449863e+05, 6.27187358e+05, 5.85225135e+05, 5.49815378e+05, 5.11269046e+05, 4.77050302e+05, 4.56829242e+05, 4.24789225e+05, 3.96349649e+05, ], 'CountWeightedFullLHEEnvelope_rwgt55_pt0to60' : [ 6.74902378e+05, 3.96171475e+05, ], 'CountWeightedL1PrefireNom_rwgt55_pt0to60' : [ 4.96181115e+05, 4.96273259e+05, 4.96026559e+05, ], 'CountWeightedL1Prefire_rwgt55_pt0to60' : [ 4.96181115e+05, 4.92349263e+05, 4.99867715e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt55_pt0to60' : [ 6.54232198e+05, 6.08693524e+05, 5.68207172e+05, 5.33320432e+05, 4.96181115e+05, 4.63166647e+05, 4.43114943e+05, 4.12245172e+05, 3.84807191e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt55_pt0to60' : [ 6.54680204e+05, 3.84630584e+05, ], 'CountWeightedFullL1PrefireNom_rwgt55_pt0to60' : [ 4.96181115e+05, 4.96273259e+05, 4.96026559e+05, ], 'CountWeightedFullL1Prefire_rwgt55_pt0to60' : [ 4.96181115e+05, 4.92349263e+05, 4.99867715e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt55_pt0to60' : [ 6.54232198e+05, 6.08693524e+05, 5.68207172e+05, 5.33320432e+05, 4.96181115e+05, 4.63166647e+05, 4.43114943e+05, 4.12245172e+05, 3.84807191e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt55_pt0to60' : [ 6.54680204e+05, 3.84630584e+05, ], 'CountWeighted_rwgt55_pt60to120' : [ 9.30061214e+05, 9.30114066e+05, 9.30030166e+05, ], 'CountWeightedLHEWeightScale_rwgt55_pt60to120' : [ 1.23745427e+06, 1.14273790e+06, 1.05976287e+06, 1.00711728e+06, 9.30061214e+05, 8.62560661e+05, 8.35661830e+05, 7.71743357e+05, 7.15754461e+05, ], 'CountWeightedLHEEnvelope_rwgt55_pt60to120' : [ 1.23799990e+06, 7.15538571e+05, ], 'CountWeightedFull_rwgt55_pt60to120' : [ 9.30061214e+05, 9.30114066e+05, 9.30030166e+05, ], 'CountWeightedFullLHEWeightScale_rwgt55_pt60to120' : [ 1.23745427e+06, 1.14273790e+06, 1.05976287e+06, 1.00711728e+06, 9.30061214e+05, 8.62560661e+05, 8.35661830e+05, 7.71743357e+05, 7.15754461e+05, ], 'CountWeightedFullLHEEnvelope_rwgt55_pt60to120' : [ 1.23799990e+06, 7.15538571e+05, ], 'CountWeightedL1PrefireNom_rwgt55_pt60to120' : [ 9.00404664e+05, 9.00412437e+05, 9.00422396e+05, ], 'CountWeightedL1Prefire_rwgt55_pt60to120' : [ 9.00404664e+05, 8.92990311e+05, 9.07584527e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt55_pt60to120' : [ 1.19735313e+06, 1.10632706e+06, 1.02647081e+06, 9.74456389e+05, 9.00404664e+05, 8.35443379e+05, 8.08545019e+05, 7.47120188e+05, 6.93238636e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt55_pt60to120' : [ 1.19789300e+06, 6.93024816e+05, ], 'CountWeightedFullL1PrefireNom_rwgt55_pt60to120' : [ 9.00404664e+05, 9.00412437e+05, 9.00422396e+05, ], 'CountWeightedFullL1Prefire_rwgt55_pt60to120' : [ 9.00404664e+05, 8.92990311e+05, 9.07584527e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt55_pt60to120' : [ 1.19735313e+06, 1.10632706e+06, 1.02647081e+06, 9.74456389e+05, 9.00404664e+05, 8.35443379e+05, 8.08545019e+05, 7.47120188e+05, 6.93238636e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt55_pt60to120' : [ 1.19789300e+06, 6.93024816e+05, ], 'CountWeighted_rwgt55_pt120to200' : [ 8.53512485e+05, 8.53703785e+05, 8.53453037e+05, ], 'CountWeightedLHEWeightScale_rwgt55_pt120to200' : [ 1.14605119e+06, 1.04723125e+06, 9.62419200e+05, 9.33981875e+05, 8.53512485e+05, 7.84449037e+05, 7.75824011e+05, 7.09025287e+05, 6.51694010e+05, ], 'CountWeightedLHEEnvelope_rwgt55_pt120to200' : [ 1.14630702e+06, 6.51589539e+05, ], 'CountWeightedFull_rwgt55_pt120to200' : [ 8.53512485e+05, 8.53703785e+05, 8.53453037e+05, ], 'CountWeightedFullLHEWeightScale_rwgt55_pt120to200' : [ 1.14605119e+06, 1.04723125e+06, 9.62419200e+05, 9.33981875e+05, 8.53512485e+05, 7.84449037e+05, 7.75824011e+05, 7.09025287e+05, 6.51694010e+05, ], 'CountWeightedFullLHEEnvelope_rwgt55_pt120to200' : [ 1.14630702e+06, 6.51589539e+05, ], 'CountWeightedL1PrefireNom_rwgt55_pt120to200' : [ 8.23030700e+05, 8.23192885e+05, 8.23007051e+05, ], 'CountWeightedL1Prefire_rwgt55_pt120to200' : [ 8.23030700e+05, 8.15600130e+05, 8.30283965e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt55_pt120to200' : [ 1.10439255e+06, 1.00983885e+06, 9.28563888e+05, 9.00025386e+05, 8.23030700e+05, 7.56848398e+05, 7.47613280e+05, 6.83699284e+05, 6.28760154e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt55_pt120to200' : [ 1.10464564e+06, 6.28656748e+05, ], 'CountWeightedFullL1PrefireNom_rwgt55_pt120to200' : [ 8.23030700e+05, 8.23192885e+05, 8.23007051e+05, ], 'CountWeightedFullL1Prefire_rwgt55_pt120to200' : [ 8.23030700e+05, 8.15600130e+05, 8.30283965e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt55_pt120to200' : [ 1.10439255e+06, 1.00983885e+06, 9.28563888e+05, 9.00025386e+05, 8.23030700e+05, 7.56848398e+05, 7.47613280e+05, 6.83699284e+05, 6.28760154e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt55_pt120to200' : [ 1.10464564e+06, 6.28656748e+05, ], 'CountWeighted_rwgt55_pt200to300' : [ 4.59429591e+05, 4.59220576e+05, 4.59752983e+05, ], 'CountWeightedLHEWeightScale_rwgt55_pt200to300' : [ 6.22490538e+05, 5.61692883e+05, 5.10652951e+05, 5.09104976e+05, 4.59429591e+05, 4.17724944e+05, 4.24129251e+05, 3.82778594e+05, 3.48061321e+05, ], 'CountWeightedLHEEnvelope_rwgt55_pt200to300' : [ 6.22551623e+05, 3.48038625e+05, ], 'CountWeightedFull_rwgt55_pt200to300' : [ 4.59429591e+05, 4.59220576e+05, 4.59752983e+05, ], 'CountWeightedFullLHEWeightScale_rwgt55_pt200to300' : [ 6.22490538e+05, 5.61692883e+05, 5.10652951e+05, 5.09104976e+05, 4.59429591e+05, 4.17724944e+05, 4.24129251e+05, 3.82778594e+05, 3.48061321e+05, ], 'CountWeightedFullLHEEnvelope_rwgt55_pt200to300' : [ 6.22551623e+05, 3.48038625e+05, ], 'CountWeightedL1PrefireNom_rwgt55_pt200to300' : [ 4.41561314e+05, 4.41349703e+05, 4.41879521e+05, ], 'CountWeightedL1Prefire_rwgt55_pt200to300' : [ 4.41561314e+05, 4.37319098e+05, 4.45730436e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt55_pt200to300' : [ 5.97798451e+05, 5.39836221e+05, 4.91100854e+05, 4.88920888e+05, 4.41561314e+05, 4.01738868e+05, 4.07321255e+05, 3.67897700e+05, 3.34746832e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt55_pt200to300' : [ 5.97858812e+05, 3.34724421e+05, ], 'CountWeightedFullL1PrefireNom_rwgt55_pt200to300' : [ 4.41561314e+05, 4.41349703e+05, 4.41879521e+05, ], 'CountWeightedFullL1Prefire_rwgt55_pt200to300' : [ 4.41561314e+05, 4.37319098e+05, 4.45730436e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt55_pt200to300' : [ 5.97798451e+05, 5.39836221e+05, 4.91100854e+05, 4.88920888e+05, 4.41561314e+05, 4.01738868e+05, 4.07321255e+05, 3.67897700e+05, 3.34746832e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt55_pt200to300' : [ 5.97858812e+05, 3.34724421e+05, ], 'CountWeighted_rwgt55_ptGt300' : [ 2.46056940e+05, 2.46103918e+05, 2.46058361e+05, ], 'CountWeightedLHEWeightScale_rwgt55_ptGt300' : [ 3.36147444e+05, 2.98675341e+05, 2.67986952e+05, 2.76895388e+05, 2.46056940e+05, 2.20799576e+05, 2.32053646e+05, 2.06229226e+05, 1.85077259e+05, ], 'CountWeightedLHEEnvelope_rwgt55_ptGt300' : [ 3.36155586e+05, 1.85074963e+05, ], 'CountWeightedFull_rwgt55_ptGt300' : [ 2.46056940e+05, 2.46103918e+05, 2.46058361e+05, ], 'CountWeightedFullLHEWeightScale_rwgt55_ptGt300' : [ 3.36147444e+05, 2.98675341e+05, 2.67986952e+05, 2.76895388e+05, 2.46056940e+05, 2.20799576e+05, 2.32053646e+05, 2.06229226e+05, 1.85077259e+05, ], 'CountWeightedFullLHEEnvelope_rwgt55_ptGt300' : [ 3.36155586e+05, 1.85074963e+05, ], 'CountWeightedL1PrefireNom_rwgt55_ptGt300' : [ 2.36460543e+05, 2.36509175e+05, 2.36446273e+05, ], 'CountWeightedL1Prefire_rwgt55_ptGt300' : [ 2.36460543e+05, 2.34223736e+05, 2.38665486e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt55_ptGt300' : [ 3.22746745e+05, 2.87007359e+05, 2.57698113e+05, 2.65874939e+05, 2.36460543e+05, 2.12336727e+05, 2.22830592e+05, 1.98197342e+05, 1.77993607e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt55_ptGt300' : [ 3.22754699e+05, 1.77991382e+05, ], 'CountWeightedFullL1PrefireNom_rwgt55_ptGt300' : [ 2.36460543e+05, 2.36509175e+05, 2.36446273e+05, ], 'CountWeightedFullL1Prefire_rwgt55_ptGt300' : [ 2.36460543e+05, 2.34223736e+05, 2.38665486e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt55_ptGt300' : [ 3.22746745e+05, 2.87007359e+05, 2.57698113e+05, 2.65874939e+05, 2.36460543e+05, 2.12336727e+05, 2.22830592e+05, 1.98197342e+05, 1.77993607e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt55_ptGt300' : [ 3.22754699e+05, 1.77991382e+05, ], 'CountWeighted_rwgt55_pt300to450' : [ 1.92515427e+05, 1.92574545e+05, 1.92521734e+05, ], 'CountWeightedLHEWeightScale_rwgt55_pt300to450' : [ 2.62702380e+05, 2.34096278e+05, 2.10560538e+05, 2.16012550e+05, 1.92515427e+05, 1.73181426e+05, 1.80761069e+05, 1.61115788e+05, 1.44949994e+05, ], 'CountWeightedLHEEnvelope_rwgt55_pt300to450' : [ 2.62710313e+05, 1.44947770e+05, ], 'CountWeightedFull_rwgt55_pt300to450' : [ 1.92515427e+05, 1.92574545e+05, 1.92521734e+05, ], 'CountWeightedFullLHEWeightScale_rwgt55_pt300to450' : [ 2.62702380e+05, 2.34096278e+05, 2.10560538e+05, 2.16012550e+05, 1.92515427e+05, 1.73181426e+05, 1.80761069e+05, 1.61115788e+05, 1.44949994e+05, ], 'CountWeightedFullLHEEnvelope_rwgt55_pt300to450' : [ 2.62710313e+05, 1.44947770e+05, ], 'CountWeightedL1PrefireNom_rwgt55_pt300to450' : [ 1.84820502e+05, 1.84878509e+05, 1.84813872e+05, ], 'CountWeightedL1Prefire_rwgt55_pt300to450' : [ 1.84820502e+05, 1.83025048e+05, 1.86591122e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt55_pt300to450' : [ 2.51976727e+05, 2.24727660e+05, 2.02276305e+05, 2.07204074e+05, 1.84820502e+05, 1.66376437e+05, 1.73397647e+05, 1.54682616e+05, 1.39260319e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt55_pt300to450' : [ 2.51984482e+05, 1.39258164e+05, ], 'CountWeightedFullL1PrefireNom_rwgt55_pt300to450' : [ 1.84820502e+05, 1.84878509e+05, 1.84813872e+05, ], 'CountWeightedFullL1Prefire_rwgt55_pt300to450' : [ 1.84820502e+05, 1.83025048e+05, 1.86591122e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt55_pt300to450' : [ 2.51976727e+05, 2.24727660e+05, 2.02276305e+05, 2.07204074e+05, 1.84820502e+05, 1.66376437e+05, 1.73397647e+05, 1.54682616e+05, 1.39260319e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt55_pt300to450' : [ 2.51984482e+05, 1.39258164e+05, ], 'CountWeighted_rwgt55_ptGt450' : [ 5.35415212e+04, 5.35293721e+04, 5.35366220e+04, ], 'CountWeightedLHEWeightScale_rwgt55_ptGt450' : [ 7.34450665e+04, 6.45790710e+04, 5.74264195e+04, 6.08828577e+04, 5.35415212e+04, 4.76181358e+04, 5.12925626e+04, 4.51134380e+04, 4.01272537e+04, ], 'CountWeightedLHEEnvelope_rwgt55_ptGt450' : [ 7.34452727e+04, 4.01271821e+04, ], 'CountWeightedFull_rwgt55_ptGt450' : [ 5.35415212e+04, 5.35293721e+04, 5.35366220e+04, ], 'CountWeightedFullLHEWeightScale_rwgt55_ptGt450' : [ 7.34450665e+04, 6.45790710e+04, 5.74264195e+04, 6.08828577e+04, 5.35415212e+04, 4.76181358e+04, 5.12925626e+04, 4.51134380e+04, 4.01272537e+04, ], 'CountWeightedFullLHEEnvelope_rwgt55_ptGt450' : [ 7.34452727e+04, 4.01271821e+04, ], 'CountWeightedL1PrefireNom_rwgt55_ptGt450' : [ 5.16400378e+04, 5.16306640e+04, 5.16323865e+04, ], 'CountWeightedL1Prefire_rwgt55_ptGt450' : [ 5.16400378e+04, 5.11986986e+04, 5.20743763e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt55_ptGt450' : [ 7.07699938e+04, 6.22797022e+04, 5.54218316e+04, 5.86708888e+04, 5.16400378e+04, 4.59602816e+04, 4.94329486e+04, 4.35147250e+04, 3.87332726e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt55_ptGt450' : [ 7.07701924e+04, 3.87332038e+04, ], 'CountWeightedFullL1PrefireNom_rwgt55_ptGt450' : [ 5.16400378e+04, 5.16306640e+04, 5.16323865e+04, ], 'CountWeightedFullL1Prefire_rwgt55_ptGt450' : [ 5.16400378e+04, 5.11986986e+04, 5.20743763e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt55_ptGt450' : [ 7.07699938e+04, 6.22797022e+04, 5.54218316e+04, 5.86708888e+04, 5.16400378e+04, 4.59602816e+04, 4.94329486e+04, 4.35147250e+04, 3.87332726e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt55_ptGt450' : [ 7.07701924e+04, 3.87332038e+04, ], 'CountWeighted_rwgt56' : [ 2.48693879e+06, 2.48712292e+06, 2.48703608e+06, ], 'CountWeightedLHEWeightScale_rwgt56' : [ 3.34676533e+06, 3.04959932e+06, 2.79575829e+06, 2.72922695e+06, 2.48693879e+06, 2.27999191e+06, 2.26830818e+06, 2.06696652e+06, 1.89500541e+06, ], 'CountWeightedLHEEnvelope_rwgt56' : [ 3.34761456e+06, 1.89466922e+06, ], 'CountWeightedFull_rwgt56' : [ 2.48693879e+06, 2.48712292e+06, 2.48703608e+06, ], 'CountWeightedFullLHEWeightScale_rwgt56' : [ 3.34676533e+06, 3.04959932e+06, 2.79575829e+06, 2.72922695e+06, 2.48693879e+06, 2.27999191e+06, 2.26830818e+06, 2.06696652e+06, 1.89500541e+06, ], 'CountWeightedFullLHEEnvelope_rwgt56' : [ 3.34761456e+06, 1.89466922e+06, ], 'CountWeightedL1PrefireNom_rwgt56' : [ 2.39632066e+06, 2.39641989e+06, 2.39648772e+06, ], 'CountWeightedL1Prefire_rwgt56' : [ 2.39632066e+06, 2.37424479e+06, 2.41785641e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt56' : [ 3.22252871e+06, 2.93852123e+06, 2.69553022e+06, 2.62787687e+06, 2.39632066e+06, 2.19822079e+06, 2.18404732e+06, 1.99162734e+06, 1.82702063e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt56' : [ 3.22336840e+06, 1.82668794e+06, ], 'CountWeightedFullL1PrefireNom_rwgt56' : [ 2.39632066e+06, 2.39641989e+06, 2.39648772e+06, ], 'CountWeightedFullL1Prefire_rwgt56' : [ 2.39632066e+06, 2.37424479e+06, 2.41785641e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt56' : [ 3.22252871e+06, 2.93852123e+06, 2.69553022e+06, 2.62787687e+06, 2.39632066e+06, 2.19822079e+06, 2.18404732e+06, 1.99162734e+06, 1.82702063e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt56' : [ 3.22336840e+06, 1.82668794e+06, ], 'CountWeighted_rwgt56_fwd' : [ 2.61632984e+04, 2.61620328e+04, 2.61658643e+04, ], 'CountWeightedLHEWeightScale_rwgt56_fwd' : [ 3.51467239e+04, 3.20504763e+04, 2.94880924e+04, 2.86859563e+04, 2.61632984e+04, 2.40749552e+04, 2.38577242e+04, 2.17626521e+04, 2.00278309e+04, ], 'CountWeightedLHEEnvelope_rwgt56_fwd' : [ 3.51503985e+04, 2.00262824e+04, ], 'CountWeightedFull_rwgt56_fwd' : [ 2.61632984e+04, 2.61620328e+04, 2.61658643e+04, ], 'CountWeightedFullLHEWeightScale_rwgt56_fwd' : [ 3.51467239e+04, 3.20504763e+04, 2.94880924e+04, 2.86859563e+04, 2.61632984e+04, 2.40749552e+04, 2.38577242e+04, 2.17626521e+04, 2.00278309e+04, ], 'CountWeightedFullLHEEnvelope_rwgt56_fwd' : [ 3.51503985e+04, 2.00262824e+04, ], 'CountWeightedL1PrefireNom_rwgt56_fwd' : [ 2.24133875e+04, 2.24069363e+04, 2.24207197e+04, ], 'CountWeightedL1Prefire_rwgt56_fwd' : [ 2.24133875e+04, 2.15891780e+04, 2.32458426e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt56_fwd' : [ 3.00860437e+04, 2.74639164e+04, 2.52902706e+04, 2.45491269e+04, 2.24133875e+04, 2.06423925e+04, 2.04127709e+04, 1.86394676e+04, 1.71686374e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt56_fwd' : [ 3.00892685e+04, 1.71672833e+04, ], 'CountWeightedFullL1PrefireNom_rwgt56_fwd' : [ 2.24133875e+04, 2.24069363e+04, 2.24207197e+04, ], 'CountWeightedFullL1Prefire_rwgt56_fwd' : [ 2.24133875e+04, 2.15891780e+04, 2.32458426e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt56_fwd' : [ 3.00860437e+04, 2.74639164e+04, 2.52902706e+04, 2.45491269e+04, 2.24133875e+04, 2.06423925e+04, 2.04127709e+04, 1.86394676e+04, 1.71686374e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt56_fwd' : [ 3.00892685e+04, 1.71672833e+04, ], 'CountWeighted_rwgt56_pt0to60' : [ 3.75434325e+05, 3.75554288e+05, 3.75246941e+05, ], 'CountWeightedLHEWeightScale_rwgt56_pt0to60' : [ 4.97477046e+05, 4.60711245e+05, 4.28277647e+05, 4.05404658e+05, 3.75434325e+05, 3.48998662e+05, 3.36746415e+05, 3.11845187e+05, 2.89882948e+05, ], 'CountWeightedLHEEnvelope_rwgt56_pt0to60' : [ 4.97752292e+05, 2.89774541e+05, ], 'CountWeightedFull_rwgt56_pt0to60' : [ 3.75434325e+05, 3.75554288e+05, 3.75246941e+05, ], 'CountWeightedFullLHEWeightScale_rwgt56_pt0to60' : [ 4.97477046e+05, 4.60711245e+05, 4.28277647e+05, 4.05404658e+05, 3.75434325e+05, 3.48998662e+05, 3.36746415e+05, 3.11845187e+05, 2.89882948e+05, ], 'CountWeightedFullLHEEnvelope_rwgt56_pt0to60' : [ 4.97752292e+05, 2.89774541e+05, ], 'CountWeightedL1PrefireNom_rwgt56_pt0to60' : [ 3.63916719e+05, 3.64015683e+05, 3.63751473e+05, ], 'CountWeightedL1Prefire_rwgt56_pt0to60' : [ 3.63916719e+05, 3.60999226e+05, 3.66726440e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt56_pt0to60' : [ 4.81961390e+05, 4.46587912e+05, 4.15339341e+05, 3.92751281e+05, 3.63916719e+05, 3.38447540e+05, 3.26229636e+05, 3.02272519e+05, 2.81113727e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt56_pt0to60' : [ 4.82233881e+05, 2.81006274e+05, ], 'CountWeightedFullL1PrefireNom_rwgt56_pt0to60' : [ 3.63916719e+05, 3.64015683e+05, 3.63751473e+05, ], 'CountWeightedFullL1Prefire_rwgt56_pt0to60' : [ 3.63916719e+05, 3.60999226e+05, 3.66726440e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt56_pt0to60' : [ 4.81961390e+05, 4.46587912e+05, 4.15339341e+05, 3.92751281e+05, 3.63916719e+05, 3.38447540e+05, 3.26229636e+05, 3.02272519e+05, 2.81113727e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt56_pt0to60' : [ 4.82233881e+05, 2.81006274e+05, ], 'CountWeighted_rwgt56_pt60to120' : [ 7.24415806e+05, 7.24447091e+05, 7.24411389e+05, ], 'CountWeightedLHEWeightScale_rwgt56_pt60to120' : [ 9.68644523e+05, 8.90658865e+05, 8.22745551e+05, 7.87815457e+05, 7.24415806e+05, 6.69206947e+05, 6.53335226e+05, 6.00776427e+05, 5.55008936e+05, ], 'CountWeightedLHEEnvelope_rwgt56_pt60to120' : [ 9.68990027e+05, 5.54872079e+05, ], 'CountWeightedFull_rwgt56_pt60to120' : [ 7.24415806e+05, 7.24447091e+05, 7.24411389e+05, ], 'CountWeightedFullLHEWeightScale_rwgt56_pt60to120' : [ 9.68644523e+05, 8.90658865e+05, 8.22745551e+05, 7.87815457e+05, 7.24415806e+05, 6.69206947e+05, 6.53335226e+05, 6.00776427e+05, 5.55008936e+05, ], 'CountWeightedFullLHEEnvelope_rwgt56_pt60to120' : [ 9.68990027e+05, 5.54872079e+05, ], 'CountWeightedL1PrefireNom_rwgt56_pt60to120' : [ 7.00628221e+05, 7.00624229e+05, 7.00661073e+05, ], 'CountWeightedL1Prefire_rwgt56_pt60to120' : [ 7.00628221e+05, 6.94680885e+05, 7.06388328e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt56_pt60to120' : [ 9.36291830e+05, 8.61432159e+05, 7.96145039e+05, 7.61484648e+05, 7.00628221e+05, 6.47555822e+05, 6.31487016e+05, 5.81037578e+05, 5.37042316e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt56_pt60to120' : [ 9.36633630e+05, 5.36906776e+05, ], 'CountWeightedFullL1PrefireNom_rwgt56_pt60to120' : [ 7.00628221e+05, 7.00624229e+05, 7.00661073e+05, ], 'CountWeightedFullL1Prefire_rwgt56_pt60to120' : [ 7.00628221e+05, 6.94680885e+05, 7.06388328e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt56_pt60to120' : [ 9.36291830e+05, 8.61432159e+05, 7.96145039e+05, 7.61484648e+05, 7.00628221e+05, 6.47555822e+05, 6.31487016e+05, 5.81037578e+05, 5.37042316e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt56_pt60to120' : [ 9.36633630e+05, 5.36906776e+05, ], 'CountWeighted_rwgt56_pt120to200' : [ 7.19330652e+05, 7.19527412e+05, 7.19284946e+05, ], 'CountWeightedLHEWeightScale_rwgt56_pt120to200' : [ 9.70445144e+05, 8.83255055e+05, 8.08747175e+05, 7.90281672e+05, 7.19330652e+05, 6.58698901e+05, 6.56052854e+05, 5.97188151e+05, 5.46884884e+05, ], 'CountWeightedLHEEnvelope_rwgt56_pt120to200' : [ 9.70618560e+05, 5.46814103e+05, ], 'CountWeightedFull_rwgt56_pt120to200' : [ 7.19330652e+05, 7.19527412e+05, 7.19284946e+05, ], 'CountWeightedFullLHEWeightScale_rwgt56_pt120to200' : [ 9.70445144e+05, 8.83255055e+05, 8.08747175e+05, 7.90281672e+05, 7.19330652e+05, 6.58698901e+05, 6.56052854e+05, 5.97188151e+05, 5.46884884e+05, ], 'CountWeightedFullLHEEnvelope_rwgt56_pt120to200' : [ 9.70618560e+05, 5.46814103e+05, ], 'CountWeightedL1PrefireNom_rwgt56_pt120to200' : [ 6.93127625e+05, 6.93299378e+05, 6.93113355e+05, ], 'CountWeightedL1Prefire_rwgt56_pt120to200' : [ 6.93127625e+05, 6.86730409e+05, 6.99370124e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt56_pt120to200' : [ 9.34440567e+05, 8.51087227e+05, 7.79745505e+05, 7.60955869e+05, 6.93127625e+05, 6.35073231e+05, 6.31704353e+05, 5.75431197e+05, 5.27266447e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt56_pt120to200' : [ 9.34612116e+05, 5.27196395e+05, ], 'CountWeightedFullL1PrefireNom_rwgt56_pt120to200' : [ 6.93127625e+05, 6.93299378e+05, 6.93113355e+05, ], 'CountWeightedFullL1Prefire_rwgt56_pt120to200' : [ 6.93127625e+05, 6.86730409e+05, 6.99370124e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt56_pt120to200' : [ 9.34440567e+05, 8.51087227e+05, 7.79745505e+05, 7.60955869e+05, 6.93127625e+05, 6.35073231e+05, 6.31704353e+05, 5.75431197e+05, 5.27266447e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt56_pt120to200' : [ 9.34612116e+05, 5.27196395e+05, ], 'CountWeighted_rwgt56_pt200to300' : [ 4.13342474e+05, 4.13122148e+05, 4.13680876e+05, ], 'CountWeightedLHEWeightScale_rwgt56_pt200to300' : [ 5.62268189e+05, 5.05707150e+05, 4.58355961e+05, 4.59529154e+05, 4.13342474e+05, 3.74674744e+05, 3.82604736e+05, 3.44176765e+05, 3.12003589e+05, ], 'CountWeightedLHEEnvelope_rwgt56_pt200to300' : [ 5.62312929e+05, 3.11987057e+05, ], 'CountWeightedFull_rwgt56_pt200to300' : [ 4.13342474e+05, 4.13122148e+05, 4.13680876e+05, ], 'CountWeightedFullLHEWeightScale_rwgt56_pt200to300' : [ 5.62268189e+05, 5.05707150e+05, 4.58355961e+05, 4.59529154e+05, 4.13342474e+05, 3.74674744e+05, 3.82604736e+05, 3.44176765e+05, 3.12003589e+05, ], 'CountWeightedFullLHEEnvelope_rwgt56_pt200to300' : [ 5.62312929e+05, 3.11987057e+05, ], 'CountWeightedL1PrefireNom_rwgt56_pt200to300' : [ 3.97023943e+05, 3.96802529e+05, 3.97355157e+05, ], 'CountWeightedL1Prefire_rwgt56_pt200to300' : [ 3.97023943e+05, 3.93143765e+05, 4.00835852e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt56_pt200to300' : [ 5.39624037e+05, 4.85733010e+05, 4.40545023e+05, 4.41031104e+05, 3.97023943e+05, 3.60122101e+05, 3.67209123e+05, 3.30594031e+05, 2.99889735e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt56_pt200to300' : [ 5.39668234e+05, 2.99873408e+05, ], 'CountWeightedFullL1PrefireNom_rwgt56_pt200to300' : [ 3.97023943e+05, 3.96802529e+05, 3.97355157e+05, ], 'CountWeightedFullL1Prefire_rwgt56_pt200to300' : [ 3.97023943e+05, 3.93143765e+05, 4.00835852e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt56_pt200to300' : [ 5.39624037e+05, 4.85733010e+05, 4.40545023e+05, 4.41031104e+05, 3.97023943e+05, 3.60122101e+05, 3.67209123e+05, 3.30594031e+05, 2.99889735e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt56_pt200to300' : [ 5.39668234e+05, 2.99873408e+05, ], 'CountWeighted_rwgt56_ptGt300' : [ 2.28252124e+05, 2.28309789e+05, 2.28249791e+05, ], 'CountWeightedLHEWeightScale_rwgt56_ptGt300' : [ 3.12784876e+05, 2.77216009e+05, 2.48144401e+05, 2.57511095e+05, 2.28252124e+05, 2.04336506e+05, 2.15710546e+05, 1.91218106e+05, 1.71197595e+05, ], 'CountWeightedLHEEnvelope_rwgt56_ptGt300' : [ 3.12791320e+05, 1.71195779e+05, ], 'CountWeightedFull_rwgt56_ptGt300' : [ 2.28252124e+05, 2.28309789e+05, 2.28249791e+05, ], 'CountWeightedFullLHEWeightScale_rwgt56_ptGt300' : [ 3.12784876e+05, 2.77216009e+05, 2.48144401e+05, 2.57511095e+05, 2.28252124e+05, 2.04336506e+05, 2.15710546e+05, 1.91218106e+05, 1.71197595e+05, ], 'CountWeightedFullLHEEnvelope_rwgt56_ptGt300' : [ 3.12791320e+05, 1.71195779e+05, ], 'CountWeightedL1PrefireNom_rwgt56_ptGt300' : [ 2.19210455e+05, 2.19271179e+05, 2.19190132e+05, ], 'CountWeightedL1Prefire_rwgt56_ptGt300' : [ 2.19210455e+05, 2.17101318e+05, 2.21289377e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt56_ptGt300' : [ 3.00125418e+05, 2.66217659e+05, 2.38465718e+05, 2.47104696e+05, 2.19210455e+05, 1.96379084e+05, 2.07004548e+05, 1.83653317e+05, 1.64539514e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt56_ptGt300' : [ 3.00131706e+05, 1.64537760e+05, ], 'CountWeightedFullL1PrefireNom_rwgt56_ptGt300' : [ 2.19210455e+05, 2.19271179e+05, 2.19190132e+05, ], 'CountWeightedFullL1Prefire_rwgt56_ptGt300' : [ 2.19210455e+05, 2.17101318e+05, 2.21289377e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt56_ptGt300' : [ 3.00125418e+05, 2.66217659e+05, 2.38465718e+05, 2.47104696e+05, 2.19210455e+05, 1.96379084e+05, 2.07004548e+05, 1.83653317e+05, 1.64539514e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt56_ptGt300' : [ 3.00131706e+05, 1.64537760e+05, ], 'CountWeighted_rwgt56_pt300to450' : [ 1.78364397e+05, 1.78441237e+05, 1.78362187e+05, ], 'CountWeightedLHEWeightScale_rwgt56_pt300to450' : [ 2.44177360e+05, 2.17016342e+05, 1.94715809e+05, 2.00664096e+05, 1.78364397e+05, 1.60053946e+05, 1.67836322e+05, 1.49199527e+05, 1.33895753e+05, ], 'CountWeightedLHEEnvelope_rwgt56_pt300to450' : [ 2.44183639e+05, 1.33893994e+05, ], 'CountWeightedFull_rwgt56_pt300to450' : [ 1.78364397e+05, 1.78441237e+05, 1.78362187e+05, ], 'CountWeightedFullLHEWeightScale_rwgt56_pt300to450' : [ 2.44177360e+05, 2.17016342e+05, 1.94715809e+05, 2.00664096e+05, 1.78364397e+05, 1.60053946e+05, 1.67836322e+05, 1.49199527e+05, 1.33895753e+05, ], 'CountWeightedFullLHEEnvelope_rwgt56_pt300to450' : [ 2.44183639e+05, 1.33893994e+05, ], 'CountWeightedL1PrefireNom_rwgt56_pt300to450' : [ 1.71125852e+05, 1.71202254e+05, 1.71109127e+05, ], 'CountWeightedL1Prefire_rwgt56_pt300to450' : [ 1.71125852e+05, 1.69435376e+05, 1.72792816e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt56_pt300to450' : [ 2.34059220e+05, 2.08199164e+05, 1.86936093e+05, 1.92358351e+05, 1.71125852e+05, 1.53666470e+05, 1.60895848e+05, 1.43150311e+05, 1.28557341e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt56_pt300to450' : [ 2.34065351e+05, 1.28555640e+05, ], 'CountWeightedFullL1PrefireNom_rwgt56_pt300to450' : [ 1.71125852e+05, 1.71202254e+05, 1.71109127e+05, ], 'CountWeightedFullL1Prefire_rwgt56_pt300to450' : [ 1.71125852e+05, 1.69435376e+05, 1.72792816e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt56_pt300to450' : [ 2.34059220e+05, 2.08199164e+05, 1.86936093e+05, 1.92358351e+05, 1.71125852e+05, 1.53666470e+05, 1.60895848e+05, 1.43150311e+05, 1.28557341e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt56_pt300to450' : [ 2.34065351e+05, 1.28555640e+05, ], 'CountWeighted_rwgt56_ptGt450' : [ 4.98877186e+04, 4.98685418e+04, 4.98876141e+04, ], 'CountWeightedLHEWeightScale_rwgt56_ptGt450' : [ 6.86075181e+04, 6.01996937e+04, 5.34286013e+04, 5.68469940e+04, 4.98877186e+04, 4.42825525e+04, 4.78742163e+04, 4.20185764e+04, 3.73018407e+04, ], 'CountWeightedLHEEnvelope_rwgt56_ptGt450' : [ 6.86076809e+04, 3.73017846e+04, ], 'CountWeightedFull_rwgt56_ptGt450' : [ 4.98877186e+04, 4.98685418e+04, 4.98876141e+04, ], 'CountWeightedFullLHEWeightScale_rwgt56_ptGt450' : [ 6.86075181e+04, 6.01996937e+04, 5.34286013e+04, 5.68469940e+04, 4.98877186e+04, 4.42825525e+04, 4.78742163e+04, 4.20185764e+04, 3.73018407e+04, ], 'CountWeightedFullLHEEnvelope_rwgt56_ptGt450' : [ 6.86076809e+04, 3.73017846e+04, ], 'CountWeightedL1PrefireNom_rwgt56_ptGt450' : [ 4.80845994e+04, 4.80689262e+04, 4.80810135e+04, ], 'CountWeightedL1Prefire_rwgt56_ptGt450' : [ 4.80845994e+04, 4.76659392e+04, 4.84965614e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt56_ptGt450' : [ 6.60661980e+04, 5.80185088e+04, 5.15296322e+04, 5.47463370e+04, 4.80845994e+04, 4.27126081e+04, 4.61086858e+04, 4.05030073e+04, 3.59821733e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt56_ptGt450' : [ 6.60663554e+04, 3.59821198e+04, ], 'CountWeightedFullL1PrefireNom_rwgt56_ptGt450' : [ 4.80845994e+04, 4.80689262e+04, 4.80810135e+04, ], 'CountWeightedFullL1Prefire_rwgt56_ptGt450' : [ 4.80845994e+04, 4.76659392e+04, 4.84965614e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt56_ptGt450' : [ 6.60661980e+04, 5.80185088e+04, 5.15296322e+04, 5.47463370e+04, 4.80845994e+04, 4.27126081e+04, 4.61086858e+04, 4.05030073e+04, 3.59821733e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt56_ptGt450' : [ 6.60663554e+04, 3.59821198e+04, ], 'CountWeighted_rwgt57' : [ 2.09515764e+06, 2.09531729e+06, 2.09530096e+06, ], 'CountWeightedLHEWeightScale_rwgt57' : [ 2.83477287e+06, 2.57036517e+06, 2.34576800e+06, 2.31064348e+06, 2.09515764e+06, 1.91213045e+06, 1.91968499e+06, 1.74068393e+06, 1.58865420e+06, ], 'CountWeightedLHEEnvelope_rwgt57' : [ 2.83527959e+06, 1.58845398e+06, ], 'CountWeightedFull_rwgt57' : [ 2.09515764e+06, 2.09531729e+06, 2.09530096e+06, ], 'CountWeightedFullLHEWeightScale_rwgt57' : [ 2.83477287e+06, 2.57036517e+06, 2.34576800e+06, 2.31064348e+06, 2.09515764e+06, 1.91213045e+06, 1.91968499e+06, 1.74068393e+06, 1.58865420e+06, ], 'CountWeightedFullLHEEnvelope_rwgt57' : [ 2.83527959e+06, 1.58845398e+06, ], 'CountWeightedL1PrefireNom_rwgt57' : [ 2.01674055e+06, 2.01683448e+06, 2.01693394e+06, ], 'CountWeightedL1Prefire_rwgt57' : [ 2.01674055e+06, 1.99765316e+06, 2.03536766e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt57' : [ 2.72665095e+06, 2.47419655e+06, 2.25940280e+06, 2.22248155e+06, 2.01674055e+06, 1.84170449e+06, 1.84642081e+06, 1.67551545e+06, 1.53012553e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt57' : [ 2.72715201e+06, 1.52992740e+06, ], 'CountWeightedFullL1PrefireNom_rwgt57' : [ 2.01674055e+06, 2.01683448e+06, 2.01693394e+06, ], 'CountWeightedFullL1Prefire_rwgt57' : [ 2.01674055e+06, 1.99765316e+06, 2.03536766e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt57' : [ 2.72665095e+06, 2.47419655e+06, 2.25940280e+06, 2.22248155e+06, 2.01674055e+06, 1.84170449e+06, 1.84642081e+06, 1.67551545e+06, 1.53012553e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt57' : [ 2.72715201e+06, 1.52992740e+06, ], 'CountWeighted_rwgt57_fwd' : [ 1.97693919e+04, 1.97657438e+04, 1.97734380e+04, ], 'CountWeightedLHEWeightScale_rwgt57_fwd' : [ 2.66935901e+04, 2.42173703e+04, 2.21857226e+04, 2.17864150e+04, 1.97693919e+04, 1.81139350e+04, 1.81193841e+04, 1.64445616e+04, 1.50695730e+04, ], 'CountWeightedLHEEnvelope_rwgt57_fwd' : [ 2.66959973e+04, 1.50685682e+04, ], 'CountWeightedFull_rwgt57_fwd' : [ 1.97693919e+04, 1.97657438e+04, 1.97734380e+04, ], 'CountWeightedFullLHEWeightScale_rwgt57_fwd' : [ 2.66935901e+04, 2.42173703e+04, 2.21857226e+04, 2.17864150e+04, 1.97693919e+04, 1.81139350e+04, 1.81193841e+04, 1.64445616e+04, 1.50695730e+04, ], 'CountWeightedFullLHEEnvelope_rwgt57_fwd' : [ 2.66959973e+04, 1.50685682e+04, ], 'CountWeightedL1PrefireNom_rwgt57_fwd' : [ 1.69131910e+04, 1.69064388e+04, 1.69200509e+04, ], 'CountWeightedL1Prefire_rwgt57_fwd' : [ 1.69131910e+04, 1.62872149e+04, 1.75454404e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt57_fwd' : [ 2.28158728e+04, 2.07237901e+04, 1.90040401e+04, 1.86168330e+04, 1.69131910e+04, 1.55122790e+04, 1.54800593e+04, 1.40657755e+04, 1.29024800e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt57_fwd' : [ 2.28179867e+04, 1.29016011e+04, ], 'CountWeightedFullL1PrefireNom_rwgt57_fwd' : [ 1.69131910e+04, 1.69064388e+04, 1.69200509e+04, ], 'CountWeightedFullL1Prefire_rwgt57_fwd' : [ 1.69131910e+04, 1.62872149e+04, 1.75454404e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt57_fwd' : [ 2.28158728e+04, 2.07237901e+04, 1.90040401e+04, 1.86168330e+04, 1.69131910e+04, 1.55122790e+04, 1.54800593e+04, 1.40657755e+04, 1.29024800e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt57_fwd' : [ 2.28179867e+04, 1.29016011e+04, ], 'CountWeighted_rwgt57_pt0to60' : [ 2.78415160e+05, 2.78537050e+05, 2.78224789e+05, ], 'CountWeightedLHEWeightScale_rwgt57_pt0to60' : [ 3.71075758e+05, 3.41806703e+05, 3.16178590e+05, 3.02260581e+05, 2.78415160e+05, 2.57538263e+05, 2.50978356e+05, 2.31175605e+05, 2.13839319e+05, ], 'CountWeightedLHEEnvelope_rwgt57_pt0to60' : [ 3.71224412e+05, 2.13780747e+05, ], 'CountWeightedFull_rwgt57_pt0to60' : [ 2.78415160e+05, 2.78537050e+05, 2.78224789e+05, ], 'CountWeightedFullLHEWeightScale_rwgt57_pt0to60' : [ 3.71075758e+05, 3.41806703e+05, 3.16178590e+05, 3.02260581e+05, 2.78415160e+05, 2.57538263e+05, 2.50978356e+05, 2.31175605e+05, 2.13839319e+05, ], 'CountWeightedFullLHEEnvelope_rwgt57_pt0to60' : [ 3.71224412e+05, 2.13780747e+05, ], 'CountWeightedL1PrefireNom_rwgt57_pt0to60' : [ 2.69447141e+05, 2.69551721e+05, 2.69274813e+05, ], 'CountWeightedL1Prefire_rwgt57_pt0to60' : [ 2.69447141e+05, 2.67182674e+05, 2.71630813e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt57_pt0to60' : [ 3.58917869e+05, 3.30804412e+05, 3.06153498e+05, 2.92350473e+05, 2.69447141e+05, 2.49366848e+05, 2.42744901e+05, 2.23724945e+05, 2.07050570e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt57_pt0to60' : [ 3.59065025e+05, 2.06992525e+05, ], 'CountWeightedFullL1PrefireNom_rwgt57_pt0to60' : [ 2.69447141e+05, 2.69551721e+05, 2.69274813e+05, ], 'CountWeightedFullL1Prefire_rwgt57_pt0to60' : [ 2.69447141e+05, 2.67182674e+05, 2.71630813e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt57_pt0to60' : [ 3.58917869e+05, 3.30804412e+05, 3.06153498e+05, 2.92350473e+05, 2.69447141e+05, 2.49366848e+05, 2.42744901e+05, 2.23724945e+05, 2.07050570e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt57_pt0to60' : [ 3.59065025e+05, 2.06992525e+05, ], 'CountWeighted_rwgt57_pt60to120' : [ 5.77509854e+05, 5.77522392e+05, 5.77527190e+05, ], 'CountWeightedLHEWeightScale_rwgt57_pt60to120' : [ 7.76614834e+05, 7.10582013e+05, 6.53428217e+05, 6.31152878e+05, 5.77509854e+05, 5.31081414e+05, 5.23086798e+05, 4.78643008e+05, 4.40177594e+05, ], 'CountWeightedLHEEnvelope_rwgt57_pt60to120' : [ 7.76817487e+05, 4.40097194e+05, ], 'CountWeightedFull_rwgt57_pt60to120' : [ 5.77509854e+05, 5.77522392e+05, 5.77527190e+05, ], 'CountWeightedFullLHEWeightScale_rwgt57_pt60to120' : [ 7.76614834e+05, 7.10582013e+05, 6.53428217e+05, 6.31152878e+05, 5.77509854e+05, 5.31081414e+05, 5.23086798e+05, 4.78643008e+05, 4.40177594e+05, ], 'CountWeightedFullLHEEnvelope_rwgt57_pt60to120' : [ 7.76817487e+05, 4.40097194e+05, ], 'CountWeightedL1PrefireNom_rwgt57_pt60to120' : [ 5.57915981e+05, 5.57900672e+05, 5.57962543e+05, ], 'CountWeightedL1Prefire_rwgt57_pt60to120' : [ 5.57915981e+05, 5.53016979e+05, 5.62661677e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt57_pt60to120' : [ 7.49799599e+05, 6.86489172e+05, 6.31609480e+05, 6.09345918e+05, 5.57915981e+05, 5.13336372e+05, 5.05003845e+05, 4.62394751e+05, 4.25461934e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt57_pt60to120' : [ 7.50000080e+05, 4.25382302e+05, ], 'CountWeightedFullL1PrefireNom_rwgt57_pt60to120' : [ 5.57915981e+05, 5.57900672e+05, 5.57962543e+05, ], 'CountWeightedFullL1Prefire_rwgt57_pt60to120' : [ 5.57915981e+05, 5.53016979e+05, 5.62661677e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt57_pt60to120' : [ 7.49799599e+05, 6.86489172e+05, 6.31609480e+05, 6.09345918e+05, 5.57915981e+05, 5.13336372e+05, 5.05003845e+05, 4.62394751e+05, 4.25461934e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt57_pt60to120' : [ 7.50000080e+05, 4.25382302e+05, ], 'CountWeighted_rwgt57_pt120to200' : [ 6.23509439e+05, 6.23705644e+05, 6.23479631e+05, ], 'CountWeightedLHEWeightScale_rwgt57_pt120to200' : [ 8.45043552e+05, 7.66157247e+05, 6.99006988e+05, 6.87664551e+05, 6.23509439e+05, 5.68898482e+05, 5.70523591e+05, 5.17324210e+05, 4.72038921e+05, ], 'CountWeightedLHEEnvelope_rwgt57_pt120to200' : [ 8.45158137e+05, 4.71992211e+05, ], 'CountWeightedFull_rwgt57_pt120to200' : [ 6.23509439e+05, 6.23705644e+05, 6.23479631e+05, ], 'CountWeightedFullLHEWeightScale_rwgt57_pt120to200' : [ 8.45043552e+05, 7.66157247e+05, 6.99006988e+05, 6.87664551e+05, 6.23509439e+05, 5.68898482e+05, 5.70523591e+05, 5.17324210e+05, 4.72038921e+05, ], 'CountWeightedFullLHEEnvelope_rwgt57_pt120to200' : [ 8.45158137e+05, 4.71992211e+05, ], 'CountWeightedL1PrefireNom_rwgt57_pt120to200' : [ 6.00363675e+05, 6.00537948e+05, 6.00361521e+05, ], 'CountWeightedL1Prefire_rwgt57_pt120to200' : [ 6.00363675e+05, 5.94704519e+05, 6.05884023e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt57_pt120to200' : [ 8.13078372e+05, 7.37722125e+05, 6.73473051e+05, 6.61647173e+05, 6.00363675e+05, 5.48112791e+05, 5.48934587e+05, 4.98116899e+05, 4.54789024e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt57_pt120to200' : [ 8.13191705e+05, 4.54742787e+05, ], 'CountWeightedFullL1PrefireNom_rwgt57_pt120to200' : [ 6.00363675e+05, 6.00537948e+05, 6.00361521e+05, ], 'CountWeightedFullL1Prefire_rwgt57_pt120to200' : [ 6.00363675e+05, 5.94704519e+05, 6.05884023e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt57_pt120to200' : [ 8.13078372e+05, 7.37722125e+05, 6.73473051e+05, 6.61647173e+05, 6.00363675e+05, 5.48112791e+05, 5.48934587e+05, 4.98116899e+05, 4.54789024e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt57_pt120to200' : [ 8.13191705e+05, 4.54742787e+05, ], 'CountWeighted_rwgt57_pt200to300' : [ 3.80433653e+05, 3.80202182e+05, 3.80785473e+05, ], 'CountWeightedLHEWeightScale_rwgt57_pt200to300' : [ 5.19265545e+05, 4.65730337e+05, 4.21013361e+05, 4.24128895e+05, 3.80433653e+05, 3.43934696e+05, 3.52953497e+05, 3.16612871e+05, 2.86256495e+05, ], 'CountWeightedLHEEnvelope_rwgt57_pt200to300' : [ 5.19298627e+05, 2.86244344e+05, ], 'CountWeightedFull_rwgt57_pt200to300' : [ 3.80433653e+05, 3.80202182e+05, 3.80785473e+05, ], 'CountWeightedFullLHEWeightScale_rwgt57_pt200to300' : [ 5.19265545e+05, 4.65730337e+05, 4.21013361e+05, 4.24128895e+05, 3.80433653e+05, 3.43934696e+05, 3.52953497e+05, 3.16612871e+05, 2.86256495e+05, ], 'CountWeightedFullLHEEnvelope_rwgt57_pt200to300' : [ 5.19298627e+05, 2.86244344e+05, ], 'CountWeightedL1PrefireNom_rwgt57_pt200to300' : [ 3.65224598e+05, 3.64993206e+05, 3.65567665e+05, ], 'CountWeightedL1Prefire_rwgt57_pt200to300' : [ 3.65224598e+05, 3.61603411e+05, 3.68780968e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt57_pt200to300' : [ 4.98088027e+05, 4.47103863e+05, 4.04448569e+05, 4.06838342e+05, 3.65224598e+05, 3.30407976e+05, 3.38569358e+05, 3.03959442e+05, 2.75001997e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt57_pt200to300' : [ 4.98120707e+05, 2.74989999e+05, ], 'CountWeightedFullL1PrefireNom_rwgt57_pt200to300' : [ 3.65224598e+05, 3.64993206e+05, 3.65567665e+05, ], 'CountWeightedFullL1Prefire_rwgt57_pt200to300' : [ 3.65224598e+05, 3.61603411e+05, 3.68780968e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt57_pt200to300' : [ 4.98088027e+05, 4.47103863e+05, 4.04448569e+05, 4.06838342e+05, 3.65224598e+05, 3.30407976e+05, 3.38569358e+05, 3.03959442e+05, 2.75001997e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt57_pt200to300' : [ 4.98120707e+05, 2.74989999e+05, ], 'CountWeighted_rwgt57_ptGt300' : [ 2.15520473e+05, 2.15584535e+05, 2.15516955e+05, ], 'CountWeightedLHEWeightScale_rwgt57_ptGt300' : [ 2.96079046e+05, 2.61871155e+05, 2.33955668e+05, 2.43649931e+05, 2.15520473e+05, 1.92564308e+05, 2.04024105e+05, 1.80484138e+05, 1.61272711e+05, ], 'CountWeightedLHEEnvelope_rwgt57_ptGt300' : [ 2.96084271e+05, 1.61271243e+05, ], 'CountWeightedFull_rwgt57_ptGt300' : [ 2.15520473e+05, 2.15584535e+05, 2.15516955e+05, ], 'CountWeightedFullLHEWeightScale_rwgt57_ptGt300' : [ 2.96079046e+05, 2.61871155e+05, 2.33955668e+05, 2.43649931e+05, 2.15520473e+05, 1.92564308e+05, 2.04024105e+05, 1.80484138e+05, 1.61272711e+05, ], 'CountWeightedFullLHEEnvelope_rwgt57_ptGt300' : [ 2.96084271e+05, 1.61271243e+05, ], 'CountWeightedL1PrefireNom_rwgt57_ptGt300' : [ 2.06876431e+05, 2.06944683e+05, 2.06853176e+05, ], 'CountWeightedL1Prefire_rwgt57_ptGt300' : [ 2.06876431e+05, 2.04858801e+05, 2.08865025e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt57_ptGt300' : [ 2.83950977e+05, 2.51352816e+05, 2.24714338e+05, 2.33683752e+05, 2.06876431e+05, 1.84969185e+05, 1.95688746e+05, 1.73254150e+05, 1.54919674e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt57_ptGt300' : [ 2.83956075e+05, 1.54918256e+05, ], 'CountWeightedFullL1PrefireNom_rwgt57_ptGt300' : [ 2.06876431e+05, 2.06944683e+05, 2.06853176e+05, ], 'CountWeightedFullL1Prefire_rwgt57_ptGt300' : [ 2.06876431e+05, 2.04858801e+05, 2.08865025e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt57_ptGt300' : [ 2.83950977e+05, 2.51352816e+05, 2.24714338e+05, 2.33683752e+05, 2.06876431e+05, 1.84969185e+05, 1.95688746e+05, 1.73254150e+05, 1.54919674e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt57_ptGt300' : [ 2.83956075e+05, 1.54918256e+05, ], 'CountWeighted_rwgt57_pt300to450' : [ 1.68229120e+05, 1.68318379e+05, 1.68221519e+05, ], 'CountWeightedLHEWeightScale_rwgt57_pt300to450' : [ 2.30908751e+05, 2.04783347e+05, 1.83368017e+05, 1.89670637e+05, 1.68229120e+05, 1.50652140e+05, 1.58578842e+05, 1.40664784e+05, 1.25978734e+05, ], 'CountWeightedLHEEnvelope_rwgt57_pt300to450' : [ 2.30913849e+05, 1.25977308e+05, ], 'CountWeightedFull_rwgt57_pt300to450' : [ 1.68229120e+05, 1.68318379e+05, 1.68221519e+05, ], 'CountWeightedFullLHEWeightScale_rwgt57_pt300to450' : [ 2.30908751e+05, 2.04783347e+05, 1.83368017e+05, 1.89670637e+05, 1.68229120e+05, 1.50652140e+05, 1.58578842e+05, 1.40664784e+05, 1.25978734e+05, ], 'CountWeightedFullLHEEnvelope_rwgt57_pt300to450' : [ 2.30913849e+05, 1.25977308e+05, ], 'CountWeightedL1PrefireNom_rwgt57_pt300to450' : [ 1.61318925e+05, 1.61408268e+05, 1.61295636e+05, ], 'CountWeightedL1Prefire_rwgt57_pt300to450' : [ 1.61318925e+05, 1.59703974e+05, 1.62911320e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt57_pt300to450' : [ 2.21227921e+05, 1.96362968e+05, 1.75951200e+05, 1.81726785e+05, 1.61318925e+05, 1.44564991e+05, 1.51942804e+05, 1.34891787e+05, 1.20892970e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt57_pt300to450' : [ 2.21232890e+05, 1.20891596e+05, ], 'CountWeightedFullL1PrefireNom_rwgt57_pt300to450' : [ 1.61318925e+05, 1.61408268e+05, 1.61295636e+05, ], 'CountWeightedFullL1Prefire_rwgt57_pt300to450' : [ 1.61318925e+05, 1.59703974e+05, 1.62911320e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt57_pt300to450' : [ 2.21227921e+05, 1.96362968e+05, 1.75951200e+05, 1.81726785e+05, 1.61318925e+05, 1.44564991e+05, 1.51942804e+05, 1.34891787e+05, 1.20892970e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt57_pt300to450' : [ 2.21232890e+05, 1.20891596e+05, ], 'CountWeighted_rwgt57_ptGt450' : [ 4.72913543e+04, 4.72661502e+04, 4.72954297e+04, ], 'CountWeightedLHEWeightScale_rwgt57_ptGt450' : [ 6.51702747e+04, 5.70877994e+04, 5.05876641e+04, 5.39793084e+04, 4.72913543e+04, 4.19121705e+04, 4.54452648e+04, 3.98193525e+04, 3.52939730e+04, ], 'CountWeightedLHEEnvelope_rwgt57_ptGt450' : [ 6.51704066e+04, 3.52939290e+04, ], 'CountWeightedFull_rwgt57_ptGt450' : [ 4.72913543e+04, 4.72661502e+04, 4.72954297e+04, ], 'CountWeightedFullLHEWeightScale_rwgt57_ptGt450' : [ 6.51702747e+04, 5.70877994e+04, 5.05876641e+04, 5.39793084e+04, 4.72913543e+04, 4.19121705e+04, 4.54452648e+04, 3.98193525e+04, 3.52939730e+04, ], 'CountWeightedFullLHEEnvelope_rwgt57_ptGt450' : [ 6.51704066e+04, 3.52939290e+04, ], 'CountWeightedL1PrefireNom_rwgt57_ptGt450' : [ 4.55575152e+04, 4.55364051e+04, 4.55575291e+04, ], 'CountWeightedL1Prefire_rwgt57_ptGt450' : [ 4.55575152e+04, 4.51548395e+04, 4.59537092e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt57_ptGt450' : [ 6.27230438e+04, 5.49898404e+04, 4.87631433e+04, 5.19569705e+04, 4.55575152e+04, 4.04042010e+04, 4.37459443e+04, 3.83623548e+04, 3.40267038e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt57_ptGt450' : [ 6.27231716e+04, 3.40266616e+04, ], 'CountWeightedFullL1PrefireNom_rwgt57_ptGt450' : [ 4.55575152e+04, 4.55364051e+04, 4.55575291e+04, ], 'CountWeightedFullL1Prefire_rwgt57_ptGt450' : [ 4.55575152e+04, 4.51548395e+04, 4.59537092e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt57_ptGt450' : [ 6.27230438e+04, 5.49898404e+04, 4.87631433e+04, 5.19569705e+04, 4.55575152e+04, 4.04042010e+04, 4.37459443e+04, 3.83623548e+04, 3.40267038e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt57_ptGt450' : [ 6.27231716e+04, 3.40266616e+04, ], 'CountWeighted_rwgt58' : [ 1.86010215e+06, 1.86023348e+06, 1.86029117e+06, ], 'CountWeightedLHEWeightScale_rwgt58' : [ 2.52759244e+06, 2.28284016e+06, 2.07578781e+06, 2.05950608e+06, 1.86010215e+06, 1.69142597e+06, 1.71052467e+06, 1.54492533e+06, 1.40485313e+06, ], 'CountWeightedLHEEnvelope_rwgt58' : [ 2.52789387e+06, 1.40473399e+06, ], 'CountWeightedFull_rwgt58' : [ 1.86010215e+06, 1.86023348e+06, 1.86029117e+06, ], 'CountWeightedFullLHEWeightScale_rwgt58' : [ 2.52759244e+06, 2.28284016e+06, 2.07578781e+06, 2.05950608e+06, 1.86010215e+06, 1.69142597e+06, 1.71052467e+06, 1.54492533e+06, 1.40485313e+06, ], 'CountWeightedFullLHEEnvelope_rwgt58' : [ 2.52789387e+06, 1.40473399e+06, ], 'CountWeightedL1PrefireNom_rwgt58' : [ 1.78901318e+06, 1.78908996e+06, 1.78923861e+06, ], 'CountWeightedL1Prefire_rwgt58' : [ 1.78901318e+06, 1.77171981e+06, 1.80589329e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt58' : [ 2.42914985e+06, 2.19562564e+06, 1.99774682e+06, 1.97926824e+06, 1.78901318e+06, 1.62781456e+06, 1.64386459e+06, 1.48586488e+06, 1.35200314e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt58' : [ 2.42944766e+06, 1.35188536e+06, ], 'CountWeightedFullL1PrefireNom_rwgt58' : [ 1.78901318e+06, 1.78908996e+06, 1.78923861e+06, ], 'CountWeightedFullL1Prefire_rwgt58' : [ 1.78901318e+06, 1.77171981e+06, 1.80589329e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt58' : [ 2.42914985e+06, 2.19562564e+06, 1.99774682e+06, 1.97926824e+06, 1.78901318e+06, 1.62781456e+06, 1.64386459e+06, 1.48586488e+06, 1.35200314e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt58' : [ 2.42944766e+06, 1.35188536e+06, ], 'CountWeighted_rwgt58_fwd' : [ 1.59363039e+04, 1.59312436e+04, 1.59407630e+04, ], 'CountWeightedLHEWeightScale_rwgt58_fwd' : [ 2.16258371e+04, 1.95214863e+04, 1.78081131e+04, 1.76500650e+04, 1.59363039e+04, 1.45404475e+04, 1.46791928e+04, 1.32564211e+04, 1.20972242e+04, ], 'CountWeightedLHEEnvelope_rwgt58_fwd' : [ 2.16274947e+04, 1.20965395e+04, ], 'CountWeightedFull_rwgt58_fwd' : [ 1.59363039e+04, 1.59312436e+04, 1.59407630e+04, ], 'CountWeightedFullLHEWeightScale_rwgt58_fwd' : [ 2.16258371e+04, 1.95214863e+04, 1.78081131e+04, 1.76500650e+04, 1.59363039e+04, 1.45404475e+04, 1.46791928e+04, 1.32564211e+04, 1.20972242e+04, ], 'CountWeightedFullLHEEnvelope_rwgt58_fwd' : [ 2.16274947e+04, 1.20965395e+04, ], 'CountWeightedL1PrefireNom_rwgt58_fwd' : [ 1.36157297e+04, 1.36086786e+04, 1.36221167e+04, ], 'CountWeightedL1Prefire_rwgt58_fwd' : [ 1.36157297e+04, 1.31085511e+04, 1.41280010e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt58_fwd' : [ 1.84570498e+04, 1.66829515e+04, 1.52354536e+04, 1.50601506e+04, 1.36157297e+04, 1.24367979e+04, 1.25226831e+04, 1.13237820e+04, 1.03449496e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt58_fwd' : [ 1.84585044e+04, 1.03443518e+04, ], 'CountWeightedFullL1PrefireNom_rwgt58_fwd' : [ 1.36157297e+04, 1.36086786e+04, 1.36221167e+04, ], 'CountWeightedFullL1Prefire_rwgt58_fwd' : [ 1.36157297e+04, 1.31085511e+04, 1.41280010e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt58_fwd' : [ 1.84570498e+04, 1.66829515e+04, 1.52354536e+04, 1.50601506e+04, 1.36157297e+04, 1.24367979e+04, 1.25226831e+04, 1.13237820e+04, 1.03449496e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt58_fwd' : [ 1.84585044e+04, 1.03443518e+04, ], 'CountWeighted_rwgt58_pt0to60' : [ 2.20210956e+05, 2.20334856e+05, 2.20019370e+05, ], 'CountWeightedLHEWeightScale_rwgt58_pt0to60' : [ 2.95245288e+05, 2.70472818e+05, 2.48926938e+05, 2.40382399e+05, 2.20210956e+05, 2.02668343e+05, 1.99524288e+05, 1.82779694e+05, 1.68218448e+05, ], 'CountWeightedLHEEnvelope_rwgt58_pt0to60' : [ 2.95318021e+05, 1.68189736e+05, ], 'CountWeightedFull_rwgt58_pt0to60' : [ 2.20210956e+05, 2.20334856e+05, 2.20019370e+05, ], 'CountWeightedFullLHEWeightScale_rwgt58_pt0to60' : [ 2.95245288e+05, 2.70472818e+05, 2.48926938e+05, 2.40382399e+05, 2.20210956e+05, 2.02668343e+05, 1.99524288e+05, 1.82779694e+05, 1.68218448e+05, ], 'CountWeightedFullLHEEnvelope_rwgt58_pt0to60' : [ 2.95318021e+05, 1.68189736e+05, ], 'CountWeightedL1PrefireNom_rwgt58_pt0to60' : [ 2.12771896e+05, 2.12880788e+05, 2.12595777e+05, ], 'CountWeightedL1Prefire_rwgt58_pt0to60' : [ 2.12771896e+05, 2.10899014e+05, 2.14580094e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt58_pt0to60' : [ 2.85101121e+05, 2.61342142e+05, 2.40648933e+05, 2.32117424e+05, 2.12771896e+05, 1.95924027e+05, 1.92660153e+05, 1.76601601e+05, 1.62617343e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt58_pt0to60' : [ 2.85173085e+05, 1.62588891e+05, ], 'CountWeightedFullL1PrefireNom_rwgt58_pt0to60' : [ 2.12771896e+05, 2.12880788e+05, 2.12595777e+05, ], 'CountWeightedFullL1Prefire_rwgt58_pt0to60' : [ 2.12771896e+05, 2.10899014e+05, 2.14580094e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt58_pt0to60' : [ 2.85101121e+05, 2.61342142e+05, 2.40648933e+05, 2.32117424e+05, 2.12771896e+05, 1.95924027e+05, 1.92660153e+05, 1.76601601e+05, 1.62617343e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt58_pt0to60' : [ 2.85173085e+05, 1.62588891e+05, ], 'CountWeighted_rwgt58_pt60to120' : [ 4.89344445e+05, 4.89342157e+05, 4.89378432e+05, ], 'CountWeightedLHEWeightScale_rwgt58_pt60to120' : [ 6.61368296e+05, 6.02509402e+05, 5.51812915e+05, 5.37131857e+05, 4.89344445e+05, 4.48185527e+05, 4.44918018e+05, 4.05344779e+05, 3.71261658e+05, ], 'CountWeightedLHEEnvelope_rwgt58_pt60to120' : [ 6.61485334e+05, 3.71215063e+05, ], 'CountWeightedFull_rwgt58_pt60to120' : [ 4.89344445e+05, 4.89342157e+05, 4.89378432e+05, ], 'CountWeightedFullLHEWeightScale_rwgt58_pt60to120' : [ 6.61368296e+05, 6.02509402e+05, 5.51812915e+05, 5.37131857e+05, 4.89344445e+05, 4.48185527e+05, 4.44918018e+05, 4.05344779e+05, 3.71261658e+05, ], 'CountWeightedFullLHEEnvelope_rwgt58_pt60to120' : [ 6.61485334e+05, 3.71215063e+05, ], 'CountWeightedL1PrefireNom_rwgt58_pt60to120' : [ 4.72269524e+05, 4.72243848e+05, 4.72327947e+05, ], 'CountWeightedL1Prefire_rwgt58_pt60to120' : [ 4.72269524e+05, 4.67999980e+05, 4.76405981e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt58_pt60to120' : [ 6.37879099e+05, 5.81500222e+05, 5.32866352e+05, 5.18041992e+05, 4.72269524e+05, 4.32786592e+05, 4.29096528e+05, 3.91192850e+05, 3.58498418e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt58_pt60to120' : [ 6.37994852e+05, 3.58452293e+05, ], 'CountWeightedFullL1PrefireNom_rwgt58_pt60to120' : [ 4.72269524e+05, 4.72243848e+05, 4.72327947e+05, ], 'CountWeightedFullL1Prefire_rwgt58_pt60to120' : [ 4.72269524e+05, 4.67999980e+05, 4.76405981e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt58_pt60to120' : [ 6.37879099e+05, 5.81500222e+05, 5.32866352e+05, 5.18041992e+05, 4.72269524e+05, 4.32786592e+05, 4.29096528e+05, 3.91192850e+05, 3.58498418e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt58_pt60to120' : [ 6.37994852e+05, 3.58452293e+05, ], 'CountWeighted_rwgt58_pt120to200' : [ 5.66046609e+05, 5.66237048e+05, 5.66033767e+05, ], 'CountWeightedLHEWeightScale_rwgt58_pt120to200' : [ 7.69843403e+05, 6.95934932e+05, 6.33195566e+05, 6.26127656e+05, 5.66046609e+05, 5.15045350e+05, 5.19234267e+05, 4.69431032e+05, 4.27154095e+05, ], 'CountWeightedLHEEnvelope_rwgt58_pt120to200' : [ 7.69922667e+05, 4.27121820e+05, ], 'CountWeightedFull_rwgt58_pt120to200' : [ 5.66046609e+05, 5.66237048e+05, 5.66033767e+05, ], 'CountWeightedFullLHEWeightScale_rwgt58_pt120to200' : [ 7.69843403e+05, 6.95934932e+05, 6.33195566e+05, 6.26127656e+05, 5.66046609e+05, 5.15045350e+05, 5.19234267e+05, 4.69431032e+05, 4.27154095e+05, ], 'CountWeightedFullLHEEnvelope_rwgt58_pt120to200' : [ 7.69922667e+05, 4.27121820e+05, ], 'CountWeightedL1PrefireNom_rwgt58_pt120to200' : [ 5.44735878e+05, 5.44906613e+05, 5.44748501e+05, ], 'CountWeightedL1Prefire_rwgt58_pt120to200' : [ 5.44735878e+05, 5.39519891e+05, 5.49822949e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt58_pt120to200' : [ 7.40302865e+05, 6.69740530e+05, 6.09743524e+05, 6.02096149e+05, 5.44735878e+05, 4.95964460e+05, 4.99301653e+05, 4.51754249e+05, 4.11326042e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt58_pt120to200' : [ 7.40381274e+05, 4.11294099e+05, ], 'CountWeightedFullL1PrefireNom_rwgt58_pt120to200' : [ 5.44735878e+05, 5.44906613e+05, 5.44748501e+05, ], 'CountWeightedFullL1Prefire_rwgt58_pt120to200' : [ 5.44735878e+05, 5.39519891e+05, 5.49822949e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt58_pt120to200' : [ 7.40302865e+05, 6.69740530e+05, 6.09743524e+05, 6.02096149e+05, 5.44735878e+05, 4.95964460e+05, 4.99301653e+05, 4.51754249e+05, 4.11326042e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt58_pt120to200' : [ 7.40381274e+05, 4.11294099e+05, ], 'CountWeighted_rwgt58_pt200to300' : [ 3.60702032e+05, 3.60459822e+05, 3.61065481e+05, ], 'CountWeightedLHEWeightScale_rwgt58_pt200to300' : [ 4.93481241e+05, 4.41760994e+05, 3.98623729e+05, 4.02902748e+05, 3.60702032e+05, 3.25503771e+05, 3.35174457e+05, 3.00085956e+05, 2.70819202e+05, ], 'CountWeightedLHEEnvelope_rwgt58_pt200to300' : [ 4.93507355e+05, 2.70809658e+05, ], 'CountWeightedFull_rwgt58_pt200to300' : [ 3.60702032e+05, 3.60459822e+05, 3.61065481e+05, ], 'CountWeightedFullLHEWeightScale_rwgt58_pt200to300' : [ 4.93481241e+05, 4.41760994e+05, 3.98623729e+05, 4.02902748e+05, 3.60702032e+05, 3.25503771e+05, 3.35174457e+05, 3.00085956e+05, 2.70819202e+05, ], 'CountWeightedFullLHEEnvelope_rwgt58_pt200to300' : [ 4.93507355e+05, 2.70809658e+05, ], 'CountWeightedL1PrefireNom_rwgt58_pt200to300' : [ 3.46161940e+05, 3.45920611e+05, 3.46515509e+05, ], 'CountWeightedL1Prefire_rwgt58_pt200to300' : [ 3.46161940e+05, 3.42696590e+05, 3.49564317e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt58_pt200to300' : [ 4.73188679e+05, 4.23946994e+05, 3.82809845e+05, 3.86340808e+05, 3.46161940e+05, 3.12595253e+05, 3.21400633e+05, 2.87992822e+05, 2.60082422e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt58_pt200to300' : [ 4.73214477e+05, 2.60073004e+05, ], 'CountWeightedFullL1PrefireNom_rwgt58_pt200to300' : [ 3.46161940e+05, 3.45920611e+05, 3.46515509e+05, ], 'CountWeightedFullL1Prefire_rwgt58_pt200to300' : [ 3.46161940e+05, 3.42696590e+05, 3.49564317e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt58_pt200to300' : [ 4.73188679e+05, 4.23946994e+05, 3.82809845e+05, 3.86340808e+05, 3.46161940e+05, 3.12595253e+05, 3.21400633e+05, 2.87992822e+05, 2.60082422e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt58_pt200to300' : [ 4.73214477e+05, 2.60073004e+05, ], 'CountWeighted_rwgt58_ptGt300' : [ 2.07863514e+05, 2.07929831e+05, 2.07861172e+05, ], 'CountWeightedLHEWeightScale_rwgt58_ptGt300' : [ 2.86031930e+05, 2.52642538e+05, 2.25422445e+05, 2.35313700e+05, 2.07863514e+05, 1.85484416e+05, 1.96995734e+05, 1.74028602e+05, 1.55303790e+05, ], 'CountWeightedLHEEnvelope_rwgt58_ptGt300' : [ 2.86036414e+05, 1.55302534e+05, ], 'CountWeightedFull_rwgt58_ptGt300' : [ 2.07863514e+05, 2.07929831e+05, 2.07861172e+05, ], 'CountWeightedFullLHEWeightScale_rwgt58_ptGt300' : [ 2.86031930e+05, 2.52642538e+05, 2.25422445e+05, 2.35313700e+05, 2.07863514e+05, 1.85484416e+05, 1.96995734e+05, 1.74028602e+05, 1.55303790e+05, ], 'CountWeightedFullLHEEnvelope_rwgt58_ptGt300' : [ 2.86036414e+05, 1.55302534e+05, ], 'CountWeightedL1PrefireNom_rwgt58_ptGt300' : [ 1.99459873e+05, 1.99531152e+05, 1.99436603e+05, ], 'CountWeightedL1Prefire_rwgt58_ptGt300' : [ 1.99459873e+05, 1.97497565e+05, 2.01393857e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt58_ptGt300' : [ 2.74225157e+05, 2.42414440e+05, 2.16445510e+05, 2.25613676e+05, 1.99459873e+05, 1.78108314e+05, 1.88884457e+05, 1.67001004e+05, 1.49135150e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt58_ptGt300' : [ 2.74229529e+05, 1.49133939e+05, ], 'CountWeightedFullL1PrefireNom_rwgt58_ptGt300' : [ 1.99459873e+05, 1.99531152e+05, 1.99436603e+05, ], 'CountWeightedFullL1Prefire_rwgt58_ptGt300' : [ 1.99459873e+05, 1.97497565e+05, 2.01393857e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt58_ptGt300' : [ 2.74225157e+05, 2.42414440e+05, 2.16445510e+05, 2.25613676e+05, 1.99459873e+05, 1.78108314e+05, 1.88884457e+05, 1.67001004e+05, 1.49135150e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt58_ptGt300' : [ 2.74229529e+05, 1.49133939e+05, ], 'CountWeighted_rwgt58_pt300to450' : [ 1.62112561e+05, 1.62209012e+05, 1.62102679e+05, ], 'CountWeightedLHEWeightScale_rwgt58_pt300to450' : [ 2.22900596e+05, 1.97400923e+05, 1.76520423e+05, 1.83035539e+05, 1.62112561e+05, 1.44978751e+05, 1.52991416e+05, 1.35514079e+05, 1.21201272e+05, ], 'CountWeightedLHEEnvelope_rwgt58_pt300to450' : [ 2.22904972e+05, 1.21200051e+05, ], 'CountWeightedFull_rwgt58_pt300to450' : [ 1.62112561e+05, 1.62209012e+05, 1.62102679e+05, ], 'CountWeightedFullLHEWeightScale_rwgt58_pt300to450' : [ 2.22900596e+05, 1.97400923e+05, 1.76520423e+05, 1.83035539e+05, 1.62112561e+05, 1.44978751e+05, 1.52991416e+05, 1.35514079e+05, 1.21201272e+05, ], 'CountWeightedFullLHEEnvelope_rwgt58_pt300to450' : [ 2.22904972e+05, 1.21200051e+05, ], 'CountWeightedL1PrefireNom_rwgt58_pt300to450' : [ 1.55402469e+05, 1.55499316e+05, 1.55376127e+05, ], 'CountWeightedL1Prefire_rwgt58_pt300to450' : [ 1.55402469e+05, 1.53833516e+05, 1.56949443e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt58_pt300to450' : [ 2.13486478e+05, 1.89222387e+05, 1.69324639e+05, 1.75312397e+05, 1.55402469e+05, 1.39074498e+05, 1.46541024e+05, 1.29909404e+05, 1.16269332e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt58_pt300to450' : [ 2.13490743e+05, 1.16268155e+05, ], 'CountWeightedFullL1PrefireNom_rwgt58_pt300to450' : [ 1.55402469e+05, 1.55499316e+05, 1.55376127e+05, ], 'CountWeightedFullL1Prefire_rwgt58_pt300to450' : [ 1.55402469e+05, 1.53833516e+05, 1.56949443e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt58_pt300to450' : [ 2.13486478e+05, 1.89222387e+05, 1.69324639e+05, 1.75312397e+05, 1.55402469e+05, 1.39074498e+05, 1.46541024e+05, 1.29909404e+05, 1.16269332e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt58_pt300to450' : [ 2.13490743e+05, 1.16268155e+05, ], 'CountWeighted_rwgt58_ptGt450' : [ 4.57509477e+04, 4.57208227e+04, 4.57585061e+04, ], 'CountWeightedLHEWeightScale_rwgt58_ptGt450' : [ 6.31313411e+04, 5.52416139e+04, 4.89020076e+04, 5.22781551e+04, 4.57509477e+04, 4.05056578e+04, 4.40043140e+04, 3.85145200e+04, 3.41025264e+04, ], 'CountWeightedLHEEnvelope_rwgt58_ptGt450' : [ 6.31314530e+04, 3.41024907e+04, ], 'CountWeightedFull_rwgt58_ptGt450' : [ 4.57509477e+04, 4.57208227e+04, 4.57585061e+04, ], 'CountWeightedFullLHEWeightScale_rwgt58_ptGt450' : [ 6.31313411e+04, 5.52416139e+04, 4.89020076e+04, 5.22781551e+04, 4.57509477e+04, 4.05056578e+04, 4.40043140e+04, 3.85145200e+04, 3.41025264e+04, ], 'CountWeightedFullLHEEnvelope_rwgt58_ptGt450' : [ 6.31314530e+04, 3.41024907e+04, ], 'CountWeightedL1PrefireNom_rwgt58_ptGt450' : [ 4.40574175e+04, 4.40318342e+04, 4.40604794e+04, ], 'CountWeightedL1Prefire_rwgt58_ptGt450' : [ 4.40574175e+04, 4.36640551e+04, 4.44444286e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt58_ptGt450' : [ 6.07386999e+04, 5.31920580e+04, 4.71208702e+04, 5.03012759e+04, 4.40574175e+04, 3.90338199e+04, 4.23434387e+04, 3.70916122e+04, 3.28658164e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt58_ptGt450' : [ 6.07388096e+04, 3.28657820e+04, ], 'CountWeightedFullL1PrefireNom_rwgt58_ptGt450' : [ 4.40574175e+04, 4.40318342e+04, 4.40604794e+04, ], 'CountWeightedFullL1Prefire_rwgt58_ptGt450' : [ 4.40574175e+04, 4.36640551e+04, 4.44444286e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt58_ptGt450' : [ 6.07386999e+04, 5.31920580e+04, 4.71208702e+04, 5.03012759e+04, 4.40574175e+04, 3.90338199e+04, 4.23434387e+04, 3.70916122e+04, 3.28658164e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt58_ptGt450' : [ 6.07388096e+04, 3.28657820e+04, ], 'CountWeighted_rwgt59' : [ 1.78177203e+06, 1.78187413e+06, 1.78200371e+06, ], 'CountWeightedLHEWeightScale_rwgt59' : [ 2.42522861e+06, 2.18702357e+06, 1.98581646e+06, 1.97581885e+06, 1.78177203e+06, 1.61787776e+06, 1.64082391e+06, 1.47969034e+06, 1.34360194e+06, ], 'CountWeightedLHEEnvelope_rwgt59' : [ 2.42546167e+06, 1.34350981e+06, ], 'CountWeightedFull_rwgt59' : [ 1.78177203e+06, 1.78187413e+06, 1.78200371e+06, ], 'CountWeightedFullLHEWeightScale_rwgt59' : [ 2.42522861e+06, 2.18702357e+06, 1.98581646e+06, 1.97581885e+06, 1.78177203e+06, 1.61787776e+06, 1.64082391e+06, 1.47969034e+06, 1.34360194e+06, ], 'CountWeightedFullLHEEnvelope_rwgt59' : [ 2.42546167e+06, 1.34350981e+06, ], 'CountWeightedL1PrefireNom_rwgt59' : [ 1.71313714e+06, 1.71318884e+06, 1.71340107e+06, ], 'CountWeightedL1Prefire_rwgt59' : [ 1.71313714e+06, 1.69644338e+06, 1.72943316e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt59' : [ 2.33003038e+06, 2.10280761e+06, 1.91056369e+06, 1.89823421e+06, 1.71313714e+06, 1.55654671e+06, 1.57637701e+06, 1.42267542e+06, 1.29265314e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt59' : [ 2.33026061e+06, 1.29256200e+06, ], 'CountWeightedFullL1PrefireNom_rwgt59' : [ 1.71313714e+06, 1.71318884e+06, 1.71340107e+06, ], 'CountWeightedFullL1Prefire_rwgt59' : [ 1.71313714e+06, 1.69644338e+06, 1.72943316e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt59' : [ 2.33003038e+06, 2.10280761e+06, 1.91056369e+06, 1.89823421e+06, 1.71313714e+06, 1.55654671e+06, 1.57637701e+06, 1.42267542e+06, 1.29265314e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt59' : [ 2.33026061e+06, 1.29256200e+06, ], 'CountWeighted_rwgt59_fwd' : [ 1.46637852e+04, 1.46582815e+04, 1.46676270e+04, ], 'CountWeightedLHEWeightScale_rwgt59_fwd' : [ 1.99431448e+04, 1.79625151e+04, 1.63549739e+04, 1.62766470e+04, 1.46637852e+04, 1.33542499e+04, 1.35369352e+04, 1.21980247e+04, 1.11105811e+04, ], 'CountWeightedLHEEnvelope_rwgt59_fwd' : [ 1.99445702e+04, 1.11099936e+04, ], 'CountWeightedFull_rwgt59_fwd' : [ 1.46637852e+04, 1.46582815e+04, 1.46676270e+04, ], 'CountWeightedFullLHEWeightScale_rwgt59_fwd' : [ 1.99431448e+04, 1.79625151e+04, 1.63549739e+04, 1.62766470e+04, 1.46637852e+04, 1.33542499e+04, 1.35369352e+04, 1.21980247e+04, 1.11105811e+04, ], 'CountWeightedFullLHEEnvelope_rwgt59_fwd' : [ 1.99445702e+04, 1.11099936e+04, ], 'CountWeightedL1PrefireNom_rwgt59_fwd' : [ 1.25208013e+04, 1.25134587e+04, 1.25267263e+04, ], 'CountWeightedL1Prefire_rwgt59_fwd' : [ 1.25208013e+04, 1.20529916e+04, 1.29933054e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt59_fwd' : [ 1.70093187e+04, 1.53411485e+04, 1.39842635e+04, 1.38788692e+04, 1.25208013e+04, 1.14157501e+04, 1.15404683e+04, 1.04133151e+04, 9.49587710e+03, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt59_fwd' : [ 1.70105662e+04, 9.49536646e+03, ], 'CountWeightedFullL1PrefireNom_rwgt59_fwd' : [ 1.25208013e+04, 1.25134587e+04, 1.25267263e+04, ], 'CountWeightedFullL1Prefire_rwgt59_fwd' : [ 1.25208013e+04, 1.20529916e+04, 1.29933054e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt59_fwd' : [ 1.70093187e+04, 1.53411485e+04, 1.39842635e+04, 1.38788692e+04, 1.25208013e+04, 1.14157501e+04, 1.15404683e+04, 1.04133151e+04, 9.49587710e+03, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt59_fwd' : [ 1.70105662e+04, 9.49536646e+03, ], 'CountWeighted_rwgt59_pt0to60' : [ 2.00821059e+05, 2.00947051e+05, 2.00630042e+05, ], 'CountWeightedLHEWeightScale_rwgt59_pt0to60' : [ 2.69984649e+05, 2.46709098e+05, 2.26522273e+05, 2.19769502e+05, 2.00821059e+05, 1.84388587e+05, 1.82383836e+05, 1.66657341e+05, 1.53019923e+05, ], 'CountWeightedLHEEnvelope_rwgt59_pt0to60' : [ 2.70032184e+05, 1.53001113e+05, ], 'CountWeightedFull_rwgt59_pt0to60' : [ 2.00821059e+05, 2.00947051e+05, 2.00630042e+05, ], 'CountWeightedFullLHEWeightScale_rwgt59_pt0to60' : [ 2.69984649e+05, 2.46709098e+05, 2.26522273e+05, 2.19769502e+05, 2.00821059e+05, 1.84388587e+05, 1.82383836e+05, 1.66657341e+05, 1.53019923e+05, ], 'CountWeightedFullLHEEnvelope_rwgt59_pt0to60' : [ 2.70032184e+05, 1.53001113e+05, ], 'CountWeightedL1PrefireNom_rwgt59_pt0to60' : [ 1.93890453e+05, 1.94002340e+05, 1.93713942e+05, ], 'CountWeightedL1Prefire_rwgt59_pt0to60' : [ 1.93890453e+05, 1.92147683e+05, 1.95573769e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt59_pt0to60' : [ 2.60510103e+05, 2.38200806e+05, 2.18825242e+05, 2.12051596e+05, 1.93890453e+05, 1.78118792e+05, 1.75975051e+05, 1.60902388e+05, 1.47813748e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt59_pt0to60' : [ 2.60557129e+05, 1.47795115e+05, ], 'CountWeightedFullL1PrefireNom_rwgt59_pt0to60' : [ 1.93890453e+05, 1.94002340e+05, 1.93713942e+05, ], 'CountWeightedFullL1Prefire_rwgt59_pt0to60' : [ 1.93890453e+05, 1.92147683e+05, 1.95573769e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt59_pt0to60' : [ 2.60510103e+05, 2.38200806e+05, 2.18825242e+05, 2.12051596e+05, 1.93890453e+05, 1.78118792e+05, 1.75975051e+05, 1.60902388e+05, 1.47813748e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt59_pt0to60' : [ 2.60557129e+05, 1.47795115e+05, ], 'CountWeighted_rwgt59_pt60to120' : [ 4.59921245e+05, 4.59908979e+05, 4.59966939e+05, ], 'CountWeightedLHEWeightScale_rwgt59_pt60to120' : [ 6.22906784e+05, 5.66442501e+05, 5.17901095e+05, 5.05754036e+05, 4.59921245e+05, 4.20521061e+05, 4.18830506e+05, 3.80883156e+05, 3.48262660e+05, ], 'CountWeightedLHEEnvelope_rwgt59_pt60to120' : [ 6.22995272e+05, 3.48227308e+05, ], 'CountWeightedFull_rwgt59_pt60to120' : [ 4.59921245e+05, 4.59908979e+05, 4.59966939e+05, ], 'CountWeightedFullLHEWeightScale_rwgt59_pt60to120' : [ 6.22906784e+05, 5.66442501e+05, 5.17901095e+05, 5.05754036e+05, 4.59921245e+05, 4.20521061e+05, 4.18830506e+05, 3.80883156e+05, 3.48262660e+05, ], 'CountWeightedFullLHEEnvelope_rwgt59_pt60to120' : [ 6.22995272e+05, 3.48227308e+05, ], 'CountWeightedL1PrefireNom_rwgt59_pt60to120' : [ 4.43689988e+05, 4.43655835e+05, 4.43758573e+05, ], 'CountWeightedL1Prefire_rwgt59_pt60to120' : [ 4.43689988e+05, 4.39631099e+05, 4.47622472e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt59_pt60to120' : [ 6.00532248e+05, 5.46466489e+05, 4.99916703e+05, 4.87574643e+05, 4.43689988e+05, 4.05907885e+05, 4.03766756e+05, 3.67433361e+05, 3.36153290e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt59_pt60to120' : [ 6.00619788e+05, 3.36118288e+05, ], 'CountWeightedFullL1PrefireNom_rwgt59_pt60to120' : [ 4.43689988e+05, 4.43655835e+05, 4.43758573e+05, ], 'CountWeightedFullL1Prefire_rwgt59_pt60to120' : [ 4.43689988e+05, 4.39631099e+05, 4.47622472e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt59_pt60to120' : [ 6.00532248e+05, 5.46466489e+05, 4.99916703e+05, 4.87574643e+05, 4.43689988e+05, 4.05907885e+05, 4.03766756e+05, 3.67433361e+05, 3.36153290e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt59_pt60to120' : [ 6.00619788e+05, 3.36118288e+05, ], 'CountWeighted_rwgt59_pt120to200' : [ 5.46940047e+05, 5.47119385e+05, 5.46944549e+05, ], 'CountWeightedLHEWeightScale_rwgt59_pt120to200' : [ 7.44840817e+05, 6.72585199e+05, 6.11310523e+05, 6.05668451e+05, 5.46940047e+05, 4.97137159e+05, 5.02182314e+05, 4.53506418e+05, 4.12228606e+05, ], 'CountWeightedLHEEnvelope_rwgt59_pt120to200' : [ 7.44908353e+05, 4.12201127e+05, ], 'CountWeightedFull_rwgt59_pt120to200' : [ 5.46940047e+05, 5.47119385e+05, 5.46944549e+05, ], 'CountWeightedFullLHEWeightScale_rwgt59_pt120to200' : [ 7.44840817e+05, 6.72585199e+05, 6.11310523e+05, 6.05668451e+05, 5.46940047e+05, 4.97137159e+05, 5.02182314e+05, 4.53506418e+05, 4.12228606e+05, ], 'CountWeightedFullLHEEnvelope_rwgt59_pt120to200' : [ 7.44908353e+05, 4.12201127e+05, ], 'CountWeightedL1PrefireNom_rwgt59_pt120to200' : [ 5.26242380e+05, 5.26403044e+05, 5.26271316e+05, ], 'CountWeightedL1Prefire_rwgt59_pt120to200' : [ 5.26242380e+05, 5.21174179e+05, 5.31184631e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt59_pt120to200' : [ 7.16110353e+05, 6.47139548e+05, 5.88554173e+05, 5.82300322e+05, 5.26242380e+05, 4.78626068e+05, 4.82802993e+05, 4.36340980e+05, 3.96875738e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt59_pt120to200' : [ 7.16177138e+05, 3.96848561e+05, ], 'CountWeightedFullL1PrefireNom_rwgt59_pt120to200' : [ 5.26242380e+05, 5.26403044e+05, 5.26271316e+05, ], 'CountWeightedFullL1Prefire_rwgt59_pt120to200' : [ 5.26242380e+05, 5.21174179e+05, 5.31184631e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt59_pt120to200' : [ 7.16110353e+05, 6.47139548e+05, 5.88554173e+05, 5.82300322e+05, 5.26242380e+05, 4.78626068e+05, 4.82802993e+05, 4.36340980e+05, 3.96875738e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt59_pt120to200' : [ 7.16177138e+05, 3.96848561e+05, ], 'CountWeighted_rwgt59_pt200to300' : [ 3.54146527e+05, 3.53894305e+05, 3.54519540e+05, ], 'CountWeightedLHEWeightScale_rwgt59_pt200to300' : [ 4.84913854e+05, 4.33797766e+05, 3.91186067e+05, 3.95849805e+05, 3.54146527e+05, 3.19381042e+05, 3.29266823e+05, 2.94595050e+05, 2.65690797e+05, ], 'CountWeightedLHEEnvelope_rwgt59_pt200to300' : [ 4.84937689e+05, 2.65682098e+05, ], 'CountWeightedFull_rwgt59_pt200to300' : [ 3.54146527e+05, 3.53894305e+05, 3.54519540e+05, ], 'CountWeightedFullLHEWeightScale_rwgt59_pt200to300' : [ 4.84913854e+05, 4.33797766e+05, 3.91186067e+05, 3.95849805e+05, 3.54146527e+05, 3.19381042e+05, 3.29266823e+05, 2.94595050e+05, 2.65690797e+05, ], 'CountWeightedFullLHEEnvelope_rwgt59_pt200to300' : [ 4.84937689e+05, 2.65682098e+05, ], 'CountWeightedL1PrefireNom_rwgt59_pt200to300' : [ 3.39834470e+05, 3.39583754e+05, 3.40196969e+05, ], 'CountWeightedL1Prefire_rwgt59_pt200to300' : [ 3.39834470e+05, 3.36421833e+05, 3.43184800e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt59_pt200to300' : [ 4.64924247e+05, 4.16260836e+05, 3.75627553e+05, 3.79537221e+05, 3.39834470e+05, 3.06682693e+05, 3.15701880e+05, 2.82693012e+05, 2.55130116e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt59_pt200to300' : [ 4.64947794e+05, 2.55121531e+05, ], 'CountWeightedFullL1PrefireNom_rwgt59_pt200to300' : [ 3.39834470e+05, 3.39583754e+05, 3.40196969e+05, ], 'CountWeightedFullL1Prefire_rwgt59_pt200to300' : [ 3.39834470e+05, 3.36421833e+05, 3.43184800e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt59_pt200to300' : [ 4.64924247e+05, 4.16260836e+05, 3.75627553e+05, 3.79537221e+05, 3.39834470e+05, 3.06682693e+05, 3.15701880e+05, 2.82693012e+05, 2.55130116e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt59_pt200to300' : [ 4.64947794e+05, 2.55121531e+05, ], 'CountWeighted_rwgt59_ptGt300' : [ 2.05282602e+05, 2.05347216e+05, 2.05283717e+05, ], 'CountWeightedLHEWeightScale_rwgt59_ptGt300' : [ 2.82645400e+05, 2.49531875e+05, 2.22546181e+05, 2.32503777e+05, 2.05282602e+05, 1.83098035e+05, 1.94626676e+05, 1.71852646e+05, 1.53291930e+05, ], 'CountWeightedLHEEnvelope_rwgt59_ptGt300' : [ 2.82649631e+05, 1.53290750e+05, ], 'CountWeightedFull_rwgt59_ptGt300' : [ 2.05282602e+05, 2.05347216e+05, 2.05283717e+05, ], 'CountWeightedFullLHEWeightScale_rwgt59_ptGt300' : [ 2.82645400e+05, 2.49531875e+05, 2.22546181e+05, 2.32503777e+05, 2.05282602e+05, 1.83098035e+05, 1.94626676e+05, 1.71852646e+05, 1.53291930e+05, ], 'CountWeightedFullLHEEnvelope_rwgt59_ptGt300' : [ 2.82649631e+05, 1.53290750e+05, ], 'CountWeightedL1PrefireNom_rwgt59_ptGt300' : [ 1.96961985e+05, 1.97031972e+05, 1.96941508e+05, ], 'CountWeightedL1Prefire_rwgt59_ptGt300' : [ 1.96961985e+05, 1.95018753e+05, 1.98877134e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt59_ptGt300' : [ 2.70949697e+05, 2.39404038e+05, 2.13660593e+05, 2.22895721e+05, 1.96961985e+05, 1.75797561e+05, 1.86592807e+05, 1.64894952e+05, 1.47186920e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt59_ptGt300' : [ 2.70953825e+05, 1.47185784e+05, ], 'CountWeightedFullL1PrefireNom_rwgt59_ptGt300' : [ 1.96961985e+05, 1.97031972e+05, 1.96941508e+05, ], 'CountWeightedFullL1Prefire_rwgt59_ptGt300' : [ 1.96961985e+05, 1.95018753e+05, 1.98877134e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt59_ptGt300' : [ 2.70949697e+05, 2.39404038e+05, 2.13660593e+05, 2.22895721e+05, 1.96961985e+05, 1.75797561e+05, 1.86592807e+05, 1.64894952e+05, 1.47186920e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt59_ptGt300' : [ 2.70953825e+05, 1.47185784e+05, ], 'CountWeighted_rwgt59_pt300to450' : [ 1.60017468e+05, 1.60115907e+05, 1.60008279e+05, ], 'CountWeightedLHEWeightScale_rwgt59_pt300to450' : [ 2.20156492e+05, 1.94872385e+05, 1.74176044e+05, 1.80761803e+05, 1.60017468e+05, 1.43036258e+05, 1.51076609e+05, 1.33749723e+05, 1.19565465e+05, ], 'CountWeightedLHEEnvelope_rwgt59_pt300to450' : [ 2.20160617e+05, 1.19564317e+05, ], 'CountWeightedFull_rwgt59_pt300to450' : [ 1.60017468e+05, 1.60115907e+05, 1.60008279e+05, ], 'CountWeightedFullLHEWeightScale_rwgt59_pt300to450' : [ 2.20156492e+05, 1.94872385e+05, 1.74176044e+05, 1.80761803e+05, 1.60017468e+05, 1.43036258e+05, 1.51076609e+05, 1.33749723e+05, 1.19565465e+05, ], 'CountWeightedFullLHEEnvelope_rwgt59_pt300to450' : [ 2.20160617e+05, 1.19564317e+05, ], 'CountWeightedL1PrefireNom_rwgt59_pt300to450' : [ 1.53378949e+05, 1.53477929e+05, 1.53352964e+05, ], 'CountWeightedL1Prefire_rwgt59_pt300to450' : [ 1.53378949e+05, 1.51826422e+05, 1.54909708e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt59_pt300to450' : [ 2.10838203e+05, 1.86780422e+05, 1.67059157e+05, 1.73117891e+05, 1.53378949e+05, 1.37197253e+05, 1.44692828e+05, 1.28205239e+05, 1.14688386e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt59_pt300to450' : [ 2.10842225e+05, 1.14687279e+05, ], 'CountWeightedFullL1PrefireNom_rwgt59_pt300to450' : [ 1.53378949e+05, 1.53477929e+05, 1.53352964e+05, ], 'CountWeightedFullL1Prefire_rwgt59_pt300to450' : [ 1.53378949e+05, 1.51826422e+05, 1.54909708e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt59_pt300to450' : [ 2.10838203e+05, 1.86780422e+05, 1.67059157e+05, 1.73117891e+05, 1.53378949e+05, 1.37197253e+05, 1.44692828e+05, 1.28205239e+05, 1.14688386e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt59_pt300to450' : [ 2.10842225e+05, 1.14687279e+05, ], 'CountWeighted_rwgt59_ptGt450' : [ 4.52651361e+04, 4.52313008e+04, 4.52754115e+04, ], 'CountWeightedLHEWeightScale_rwgt59_ptGt450' : [ 6.24888870e+04, 5.46594965e+04, 4.83701491e+04, 5.17419956e+04, 4.52651361e+04, 4.00617866e+04, 4.35500770e+04, 3.81029252e+04, 3.37264611e+04, ], 'CountWeightedLHEEnvelope_rwgt59_ptGt450' : [ 6.24889913e+04, 3.37264298e+04, ], 'CountWeightedFull_rwgt59_ptGt450' : [ 4.52651361e+04, 4.52313008e+04, 4.52754115e+04, ], 'CountWeightedFullLHEWeightScale_rwgt59_ptGt450' : [ 6.24888870e+04, 5.46594965e+04, 4.83701491e+04, 5.17419956e+04, 4.52651361e+04, 4.00617866e+04, 4.35500770e+04, 3.81029252e+04, 3.37264611e+04, ], 'CountWeightedFullLHEEnvelope_rwgt59_ptGt450' : [ 6.24889913e+04, 3.37264298e+04, ], 'CountWeightedL1PrefireNom_rwgt59_ptGt450' : [ 4.35830400e+04, 4.35540421e+04, 4.35885374e+04, ], 'CountWeightedL1Prefire_rwgt59_ptGt450' : [ 4.35830400e+04, 4.31923396e+04, 4.39674333e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt59_ptGt450' : [ 6.01114787e+04, 5.26236327e+04, 4.66014335e+04, 4.97778377e+04, 4.35830400e+04, 3.86003183e+04, 4.18999840e+04, 3.66897067e+04, 3.24985370e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt59_ptGt450' : [ 6.01115808e+04, 3.24985064e+04, ], 'CountWeightedFullL1PrefireNom_rwgt59_ptGt450' : [ 4.35830400e+04, 4.35540421e+04, 4.35885374e+04, ], 'CountWeightedFullL1Prefire_rwgt59_ptGt450' : [ 4.35830400e+04, 4.31923396e+04, 4.39674333e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt59_ptGt450' : [ 6.01114787e+04, 5.26236327e+04, 4.66014335e+04, 4.97778377e+04, 4.35830400e+04, 3.86003183e+04, 4.18999840e+04, 3.66897067e+04, 3.24985370e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt59_ptGt450' : [ 6.01115808e+04, 3.24985064e+04, ], 'CountWeighted_rwgt60' : [ 1.86016912e+06, 1.86023729e+06, 1.86043792e+06, ], 'CountWeightedLHEWeightScale_rwgt60' : [ 2.52768604e+06, 2.28292257e+06, 2.07586040e+06, 2.05958124e+06, 1.86016912e+06, 1.69148633e+06, 1.71058691e+06, 1.54498124e+06, 1.40490295e+06, ], 'CountWeightedLHEEnvelope_rwgt60' : [ 2.52798772e+06, 1.40478341e+06, ], 'CountWeightedFull_rwgt60' : [ 1.86016912e+06, 1.86023729e+06, 1.86043792e+06, ], 'CountWeightedFullLHEWeightScale_rwgt60' : [ 2.52768604e+06, 2.28292257e+06, 2.07586040e+06, 2.05958124e+06, 1.86016912e+06, 1.69148633e+06, 1.71058691e+06, 1.54498124e+06, 1.40490295e+06, ], 'CountWeightedFullLHEEnvelope_rwgt60' : [ 2.52798772e+06, 1.40478341e+06, ], 'CountWeightedL1PrefireNom_rwgt60' : [ 1.78911467e+06, 1.78912929e+06, 1.78941818e+06, ], 'CountWeightedL1Prefire_rwgt60' : [ 1.78911467e+06, 1.77182637e+06, 1.80598812e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt60' : [ 2.42929270e+06, 2.19574911e+06, 1.99785625e+06, 1.97938350e+06, 1.78911467e+06, 1.62790340e+06, 1.64396003e+06, 1.48594886e+06, 1.35207735e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt60' : [ 2.42959107e+06, 1.35195917e+06, ], 'CountWeightedFullL1PrefireNom_rwgt60' : [ 1.78911467e+06, 1.78912929e+06, 1.78941818e+06, ], 'CountWeightedFullL1Prefire_rwgt60' : [ 1.78911467e+06, 1.77182637e+06, 1.80598812e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt60' : [ 2.42929270e+06, 2.19574911e+06, 1.99785625e+06, 1.97938350e+06, 1.78911467e+06, 1.62790340e+06, 1.64396003e+06, 1.48594886e+06, 1.35207735e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt60' : [ 2.42959107e+06, 1.35195917e+06, ], 'CountWeighted_rwgt60_fwd' : [ 1.59516252e+04, 1.59466434e+04, 1.59538491e+04, ], 'CountWeightedLHEWeightScale_rwgt60_fwd' : [ 2.16452492e+04, 1.95402022e+04, 1.78260557e+04, 1.76659457e+04, 1.59516252e+04, 1.45551397e+04, 1.46924273e+04, 1.32691931e+04, 1.21094773e+04, ], 'CountWeightedLHEEnvelope_rwgt60_fwd' : [ 2.16469590e+04, 1.21087639e+04, ], 'CountWeightedFull_rwgt60_fwd' : [ 1.59516252e+04, 1.59466434e+04, 1.59538491e+04, ], 'CountWeightedFullLHEWeightScale_rwgt60_fwd' : [ 2.16452492e+04, 1.95402022e+04, 1.78260557e+04, 1.76659457e+04, 1.59516252e+04, 1.45551397e+04, 1.46924273e+04, 1.32691931e+04, 1.21094773e+04, ], 'CountWeightedFullLHEEnvelope_rwgt60_fwd' : [ 2.16469590e+04, 1.21087639e+04, ], 'CountWeightedL1PrefireNom_rwgt60_fwd' : [ 1.36282326e+04, 1.36206165e+04, 1.36337228e+04, ], 'CountWeightedL1Prefire_rwgt60_fwd' : [ 1.36282326e+04, 1.31203758e+04, 1.41411739e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt60_fwd' : [ 1.84724703e+04, 1.66981740e+04, 1.52502691e+04, 1.50728157e+04, 1.36282326e+04, 1.24489685e+04, 1.25332710e+04, 1.13342341e+04, 1.03551245e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt60_fwd' : [ 1.84739619e+04, 1.03545073e+04, ], 'CountWeightedFullL1PrefireNom_rwgt60_fwd' : [ 1.36282326e+04, 1.36206165e+04, 1.36337228e+04, ], 'CountWeightedFullL1Prefire_rwgt60_fwd' : [ 1.36282326e+04, 1.31203758e+04, 1.41411739e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt60_fwd' : [ 1.84724703e+04, 1.66981740e+04, 1.52502691e+04, 1.50728157e+04, 1.36282326e+04, 1.24489685e+04, 1.25332710e+04, 1.13342341e+04, 1.03551245e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt60_fwd' : [ 1.84739619e+04, 1.03545073e+04, ], 'CountWeighted_rwgt60_pt0to60' : [ 2.20244987e+05, 2.20373053e+05, 2.20056462e+05, ], 'CountWeightedLHEWeightScale_rwgt60_pt0to60' : [ 2.95293311e+05, 2.70514869e+05, 2.48964055e+05, 2.40421290e+05, 2.20244987e+05, 2.02698444e+05, 1.99556443e+05, 1.82807869e+05, 1.68243316e+05, ], 'CountWeightedLHEEnvelope_rwgt60_pt0to60' : [ 2.95366333e+05, 1.68214446e+05, ], 'CountWeightedFull_rwgt60_pt0to60' : [ 2.20244987e+05, 2.20373053e+05, 2.20056462e+05, ], 'CountWeightedFullLHEWeightScale_rwgt60_pt0to60' : [ 2.95293311e+05, 2.70514869e+05, 2.48964055e+05, 2.40421290e+05, 2.20244987e+05, 2.02698444e+05, 1.99556443e+05, 1.82807869e+05, 1.68243316e+05, ], 'CountWeightedFullLHEEnvelope_rwgt60_pt0to60' : [ 2.95366333e+05, 1.68214446e+05, ], 'CountWeightedL1PrefireNom_rwgt60_pt0to60' : [ 2.12802292e+05, 2.12915825e+05, 2.12628864e+05, ], 'CountWeightedL1Prefire_rwgt60_pt0to60' : [ 2.12802292e+05, 2.10928355e+05, 2.14611418e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt60_pt0to60' : [ 2.85144376e+05, 2.61379757e+05, 2.40681949e+05, 2.32152432e+05, 2.12802292e+05, 1.95950702e+05, 1.92689047e+05, 1.76626718e+05, 1.62639374e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt60_pt0to60' : [ 2.85216634e+05, 1.62610772e+05, ], 'CountWeightedFullL1PrefireNom_rwgt60_pt0to60' : [ 2.12802292e+05, 2.12915825e+05, 2.12628864e+05, ], 'CountWeightedFullL1Prefire_rwgt60_pt0to60' : [ 2.12802292e+05, 2.10928355e+05, 2.14611418e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt60_pt0to60' : [ 2.85144376e+05, 2.61379757e+05, 2.40681949e+05, 2.32152432e+05, 2.12802292e+05, 1.95950702e+05, 1.92689047e+05, 1.76626718e+05, 1.62639374e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt60_pt0to60' : [ 2.85216634e+05, 1.62610772e+05, ], 'CountWeighted_rwgt60_pt60to120' : [ 4.89241786e+05, 4.89223963e+05, 4.89294011e+05, ], 'CountWeightedLHEWeightScale_rwgt60_pt60to120' : [ 6.61232717e+05, 6.02383798e+05, 5.51695218e+05, 5.37021092e+05, 4.89241786e+05, 4.48089330e+05, 4.44825990e+05, 4.05259295e+05, 3.71181686e+05, ], 'CountWeightedLHEEnvelope_rwgt60_pt60to120' : [ 6.61349950e+05, 3.71134970e+05, ], 'CountWeightedFull_rwgt60_pt60to120' : [ 4.89241786e+05, 4.89223963e+05, 4.89294011e+05, ], 'CountWeightedFullLHEWeightScale_rwgt60_pt60to120' : [ 6.61232717e+05, 6.02383798e+05, 5.51695218e+05, 5.37021092e+05, 4.89241786e+05, 4.48089330e+05, 4.44825990e+05, 4.05259295e+05, 3.71181686e+05, ], 'CountWeightedFullLHEEnvelope_rwgt60_pt60to120' : [ 6.61349950e+05, 3.71134970e+05, ], 'CountWeightedL1PrefireNom_rwgt60_pt60to120' : [ 4.72179242e+05, 4.72137891e+05, 4.72255713e+05, ], 'CountWeightedL1Prefire_rwgt60_pt60to120' : [ 4.72179242e+05, 4.67912096e+05, 4.76312888e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt60_pt60to120' : [ 6.37760919e+05, 5.81389903e+05, 5.32762507e+05, 5.17945094e+05, 4.72179242e+05, 4.32701309e+05, 4.29015901e+05, 3.91117390e+05, 3.58427414e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt60_pt60to120' : [ 6.37876858e+05, 3.58381148e+05, ], 'CountWeightedFullL1PrefireNom_rwgt60_pt60to120' : [ 4.72179242e+05, 4.72137891e+05, 4.72255713e+05, ], 'CountWeightedFullL1Prefire_rwgt60_pt60to120' : [ 4.72179242e+05, 4.67912096e+05, 4.76312888e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt60_pt60to120' : [ 6.37760919e+05, 5.81389903e+05, 5.32762507e+05, 5.17945094e+05, 4.72179242e+05, 4.32701309e+05, 4.29015901e+05, 3.91117390e+05, 3.58427414e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt60_pt60to120' : [ 6.37876858e+05, 3.58381148e+05, ], 'CountWeighted_rwgt60_pt120to200' : [ 5.66187399e+05, 5.66351369e+05, 5.66209913e+05, ], 'CountWeightedLHEWeightScale_rwgt60_pt120to200' : [ 7.70033463e+05, 6.96105267e+05, 6.33349845e+05, 6.26284693e+05, 5.66187399e+05, 5.15172695e+05, 5.19366078e+05, 4.69549077e+05, 4.27261210e+05, ], 'CountWeightedLHEEnvelope_rwgt60_pt120to200' : [ 7.70112779e+05, 4.27228907e+05, ], 'CountWeightedFull_rwgt60_pt120to200' : [ 5.66187399e+05, 5.66351369e+05, 5.66209913e+05, ], 'CountWeightedFullLHEWeightScale_rwgt60_pt120to200' : [ 7.70033463e+05, 6.96105267e+05, 6.33349845e+05, 6.26284693e+05, 5.66187399e+05, 5.15172695e+05, 5.19366078e+05, 4.69549077e+05, 4.27261210e+05, ], 'CountWeightedFullLHEEnvelope_rwgt60_pt120to200' : [ 7.70112779e+05, 4.27228907e+05, ], 'CountWeightedL1PrefireNom_rwgt60_pt120to200' : [ 5.44880877e+05, 5.45025928e+05, 5.44927720e+05, ], 'CountWeightedL1Prefire_rwgt60_pt120to200' : [ 5.44880877e+05, 5.39665432e+05, 5.49967035e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt60_pt120to200' : [ 7.40498219e+05, 6.69916000e+05, 6.09902951e+05, 6.02257369e+05, 5.44880877e+05, 4.96096032e+05, 4.99436805e+05, 4.51875647e+05, 4.11436573e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt60_pt120to200' : [ 7.40576643e+05, 4.11404614e+05, ], 'CountWeightedFullL1PrefireNom_rwgt60_pt120to200' : [ 5.44880877e+05, 5.45025928e+05, 5.44927720e+05, ], 'CountWeightedFullL1Prefire_rwgt60_pt120to200' : [ 5.44880877e+05, 5.39665432e+05, 5.49967035e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt60_pt120to200' : [ 7.40498219e+05, 6.69916000e+05, 6.09902951e+05, 6.02257369e+05, 5.44880877e+05, 4.96096032e+05, 4.99436805e+05, 4.51875647e+05, 4.11436573e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt60_pt120to200' : [ 7.40576643e+05, 4.11404614e+05, ], 'CountWeighted_rwgt60_pt200to300' : [ 3.60766419e+05, 3.60505112e+05, 3.61146545e+05, ], 'CountWeightedLHEWeightScale_rwgt60_pt200to300' : [ 4.93562417e+05, 4.41839692e+05, 3.98699132e+05, 4.02969149e+05, 3.60766419e+05, 3.25565509e+05, 3.35229760e+05, 3.00139585e+05, 2.70870565e+05, ], 'CountWeightedLHEEnvelope_rwgt60_pt200to300' : [ 4.93588665e+05, 2.70860944e+05, ], 'CountWeightedFull_rwgt60_pt200to300' : [ 3.60766419e+05, 3.60505112e+05, 3.61146545e+05, ], 'CountWeightedFullLHEWeightScale_rwgt60_pt200to300' : [ 4.93562417e+05, 4.41839692e+05, 3.98699132e+05, 4.02969149e+05, 3.60766419e+05, 3.25565509e+05, 3.35229760e+05, 3.00139585e+05, 2.70870565e+05, ], 'CountWeightedFullLHEEnvelope_rwgt60_pt200to300' : [ 4.93588665e+05, 2.70860944e+05, ], 'CountWeightedL1PrefireNom_rwgt60_pt200to300' : [ 3.46241446e+05, 3.45981844e+05, 3.46610846e+05, ], 'CountWeightedL1Prefire_rwgt60_pt200to300' : [ 3.46241446e+05, 3.42778207e+05, 3.49641364e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt60_pt200to300' : [ 4.73293348e+05, 4.24044152e+05, 3.82900220e+05, 3.86426440e+05, 3.46241446e+05, 3.12669240e+05, 3.21472032e+05, 2.88059091e+05, 2.60144079e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt60_pt200to300' : [ 4.73319278e+05, 2.60134587e+05, ], 'CountWeightedFullL1PrefireNom_rwgt60_pt200to300' : [ 3.46241446e+05, 3.45981844e+05, 3.46610846e+05, ], 'CountWeightedFullL1Prefire_rwgt60_pt200to300' : [ 3.46241446e+05, 3.42778207e+05, 3.49641364e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt60_pt200to300' : [ 4.73293348e+05, 4.24044152e+05, 3.82900220e+05, 3.86426440e+05, 3.46241446e+05, 3.12669240e+05, 3.21472032e+05, 2.88059091e+05, 2.60144079e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt60_pt200to300' : [ 4.73319278e+05, 2.60134587e+05, ], 'CountWeighted_rwgt60_ptGt300' : [ 2.07778975e+05, 2.07837970e+05, 2.07785592e+05, ], 'CountWeightedLHEWeightScale_rwgt60_ptGt300' : [ 2.85920957e+05, 2.52540642e+05, 2.25328362e+05, 2.35221617e+05, 2.07778975e+05, 1.85406369e+05, 1.96918090e+05, 1.73957335e+05, 1.55238029e+05, ], 'CountWeightedLHEEnvelope_rwgt60_ptGt300' : [ 2.85925407e+05, 1.55236793e+05, ], 'CountWeightedFull_rwgt60_ptGt300' : [ 2.07778975e+05, 2.07837970e+05, 2.07785592e+05, ], 'CountWeightedFullLHEWeightScale_rwgt60_ptGt300' : [ 2.85920957e+05, 2.52540642e+05, 2.25328362e+05, 2.35221617e+05, 2.07778975e+05, 1.85406369e+05, 1.96918090e+05, 1.73957335e+05, 1.55238029e+05, ], 'CountWeightedFullLHEEnvelope_rwgt60_ptGt300' : [ 2.85925407e+05, 1.55236793e+05, ], 'CountWeightedL1PrefireNom_rwgt60_ptGt300' : [ 1.99383920e+05, 1.99448343e+05, 1.99368860e+05, ], 'CountWeightedL1Prefire_rwgt60_ptGt300' : [ 1.99383920e+05, 1.97423502e+05, 2.01315984e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt60_ptGt300' : [ 2.74125911e+05, 2.42322963e+05, 2.16360835e+05, 2.25531175e+05, 1.99383920e+05, 1.78038015e+05, 1.88814813e+05, 1.66936908e+05, 1.49075851e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt60_ptGt300' : [ 2.74130258e+05, 1.49074659e+05, ], 'CountWeightedFullL1PrefireNom_rwgt60_ptGt300' : [ 1.99383920e+05, 1.99448343e+05, 1.99368860e+05, ], 'CountWeightedFullL1Prefire_rwgt60_ptGt300' : [ 1.99383920e+05, 1.97423502e+05, 2.01315984e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt60_ptGt300' : [ 2.74125911e+05, 2.42322963e+05, 2.16360835e+05, 2.25531175e+05, 1.99383920e+05, 1.78038015e+05, 1.88814813e+05, 1.66936908e+05, 1.49075851e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt60_ptGt300' : [ 2.74130258e+05, 1.49074659e+05, ], 'CountWeighted_rwgt60_pt300to450' : [ 1.61946177e+05, 1.62041406e+05, 1.61940644e+05, ], 'CountWeightedLHEWeightScale_rwgt60_pt300to450' : [ 2.22679589e+05, 1.97200547e+05, 1.76337477e+05, 1.82852041e+05, 1.61946177e+05, 1.44826830e+05, 1.52836606e+05, 1.35373709e+05, 1.21073110e+05, ], 'CountWeightedLHEEnvelope_rwgt60_pt300to450' : [ 2.22683931e+05, 1.21071904e+05, ], 'CountWeightedFull_rwgt60_pt300to450' : [ 1.61946177e+05, 1.62041406e+05, 1.61940644e+05, ], 'CountWeightedFullLHEWeightScale_rwgt60_pt300to450' : [ 2.22679589e+05, 1.97200547e+05, 1.76337477e+05, 1.82852041e+05, 1.61946177e+05, 1.44826830e+05, 1.52836606e+05, 1.35373709e+05, 1.21073110e+05, ], 'CountWeightedFullLHEEnvelope_rwgt60_pt300to450' : [ 2.22683931e+05, 1.21071904e+05, ], 'CountWeightedL1PrefireNom_rwgt60_pt300to450' : [ 1.55250578e+05, 1.55346266e+05, 1.55228252e+05, ], 'CountWeightedL1Prefire_rwgt60_pt300to450' : [ 1.55250578e+05, 1.53684836e+05, 1.56794327e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt60_pt300to450' : [ 2.13285917e+05, 1.89039650e+05, 1.69157138e+05, 1.75145667e+05, 1.55250578e+05, 1.38935260e+05, 1.46400227e+05, 1.29781143e+05, 1.16151780e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt60_pt300to450' : [ 2.13290153e+05, 1.16150618e+05, ], 'CountWeightedFullL1PrefireNom_rwgt60_pt300to450' : [ 1.55250578e+05, 1.55346266e+05, 1.55228252e+05, ], 'CountWeightedFullL1Prefire_rwgt60_pt300to450' : [ 1.55250578e+05, 1.53684836e+05, 1.56794327e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt60_pt300to450' : [ 2.13285917e+05, 1.89039650e+05, 1.69157138e+05, 1.75145667e+05, 1.55250578e+05, 1.38935260e+05, 1.46400227e+05, 1.29781143e+05, 1.16151780e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt60_pt300to450' : [ 2.13290153e+05, 1.16150618e+05, ], 'CountWeighted_rwgt60_ptGt450' : [ 4.58327990e+04, 4.57965437e+04, 4.58449603e+04, ], 'CountWeightedLHEWeightScale_rwgt60_ptGt450' : [ 6.32413998e+04, 5.53400950e+04, 4.89908721e+04, 5.23695909e+04, 4.58327990e+04, 4.05795427e+04, 4.40814931e+04, 3.85836250e+04, 3.41649245e+04, ], 'CountWeightedLHEEnvelope_rwgt60_ptGt450' : [ 6.32415083e+04, 3.41648939e+04, ], 'CountWeightedFull_rwgt60_ptGt450' : [ 4.58327990e+04, 4.57965437e+04, 4.58449603e+04, ], 'CountWeightedFullLHEWeightScale_rwgt60_ptGt450' : [ 6.32413998e+04, 5.53400950e+04, 4.89908721e+04, 5.23695909e+04, 4.58327990e+04, 4.05795427e+04, 4.40814931e+04, 3.85836250e+04, 3.41649245e+04, ], 'CountWeightedFullLHEEnvelope_rwgt60_ptGt450' : [ 6.32415083e+04, 3.41648939e+04, ], 'CountWeightedL1PrefireNom_rwgt60_ptGt450' : [ 4.41333423e+04, 4.41020662e+04, 4.41406062e+04, ], 'CountWeightedL1Prefire_rwgt60_ptGt450' : [ 4.41333423e+04, 4.37386740e+04, 4.45216659e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt60_ptGt450' : [ 6.08399832e+04, 5.32833172e+04, 4.72036994e+04, 5.03855119e+04, 4.41333423e+04, 3.91027504e+04, 4.24146017e+04, 3.71557662e+04, 3.29240745e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt60_ptGt450' : [ 6.08400900e+04, 3.29240442e+04, ], 'CountWeightedFullL1PrefireNom_rwgt60_ptGt450' : [ 4.41333423e+04, 4.41020662e+04, 4.41406062e+04, ], 'CountWeightedFullL1Prefire_rwgt60_ptGt450' : [ 4.41333423e+04, 4.37386740e+04, 4.45216659e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt60_ptGt450' : [ 6.08399832e+04, 5.32833172e+04, 4.72036994e+04, 5.03855119e+04, 4.41333423e+04, 3.91027504e+04, 4.24146017e+04, 3.71557662e+04, 3.29240745e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt60_ptGt450' : [ 6.08400900e+04, 3.29240442e+04, ], 'CountWeighted_rwgt61' : [ 2.09528986e+06, 2.09532341e+06, 2.09559226e+06, ], 'CountWeightedLHEWeightScale_rwgt61' : [ 2.83495362e+06, 2.57052713e+06, 2.34591166e+06, 2.31079279e+06, 2.09528986e+06, 1.91224863e+06, 1.91980897e+06, 1.74079481e+06, 1.58875301e+06, ], 'CountWeightedLHEEnvelope_rwgt61' : [ 2.83546173e+06, 1.58855195e+06, ], 'CountWeightedFull_rwgt61' : [ 2.09528986e+06, 2.09532341e+06, 2.09559226e+06, ], 'CountWeightedFullLHEWeightScale_rwgt61' : [ 2.83495362e+06, 2.57052713e+06, 2.34591166e+06, 2.31079279e+06, 2.09528986e+06, 1.91224863e+06, 1.91980897e+06, 1.74079481e+06, 1.58875301e+06, ], 'CountWeightedFullLHEEnvelope_rwgt61' : [ 2.83546173e+06, 1.58855195e+06, ], 'CountWeightedL1PrefireNom_rwgt61' : [ 2.01693934e+06, 2.01691048e+06, 2.01728734e+06, ], 'CountWeightedL1Prefire_rwgt61' : [ 2.01693934e+06, 1.99786220e+06, 2.03555356e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt61' : [ 2.72692792e+06, 2.47444058e+06, 2.25961850e+06, 2.22270909e+06, 2.01693934e+06, 1.84188027e+06, 1.84660969e+06, 1.67568084e+06, 1.53027161e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt61' : [ 2.72743055e+06, 1.53007268e+06, ], 'CountWeightedFullL1PrefireNom_rwgt61' : [ 2.01693934e+06, 2.01691048e+06, 2.01728734e+06, ], 'CountWeightedFullL1Prefire_rwgt61' : [ 2.01693934e+06, 1.99786220e+06, 2.03555356e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt61' : [ 2.72692792e+06, 2.47444058e+06, 2.25961850e+06, 2.22270909e+06, 2.01693934e+06, 1.84188027e+06, 1.84660969e+06, 1.67568084e+06, 1.53027161e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt61' : [ 2.72743055e+06, 1.53007268e+06, ], 'CountWeighted_rwgt61_fwd' : [ 1.97995607e+04, 1.97960694e+04, 1.97992044e+04, ], 'CountWeightedLHEWeightScale_rwgt61_fwd' : [ 2.67318149e+04, 2.42542252e+04, 2.22210525e+04, 2.18176881e+04, 1.97995607e+04, 1.81428685e+04, 1.81454448e+04, 1.64697123e+04, 1.50937028e+04, ], 'CountWeightedLHEEnvelope_rwgt61_fwd' : [ 2.67343247e+04, 1.50926414e+04, ], 'CountWeightedFull_rwgt61_fwd' : [ 1.97995607e+04, 1.97960694e+04, 1.97992044e+04, ], 'CountWeightedFullLHEWeightScale_rwgt61_fwd' : [ 2.67318149e+04, 2.42542252e+04, 2.22210525e+04, 2.18176881e+04, 1.97995607e+04, 1.81428685e+04, 1.81454448e+04, 1.64697123e+04, 1.50937028e+04, ], 'CountWeightedFullLHEEnvelope_rwgt61_fwd' : [ 2.67343247e+04, 1.50926414e+04, ], 'CountWeightedL1PrefireNom_rwgt61_fwd' : [ 1.69378102e+04, 1.69299467e+04, 1.69429054e+04, ], 'CountWeightedL1Prefire_rwgt61_fwd' : [ 1.69378102e+04, 1.63105013e+04, 1.75713823e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt61_fwd' : [ 2.28462402e+04, 2.07537643e+04, 1.90332166e+04, 1.86417726e+04, 1.69378102e+04, 1.55362461e+04, 1.55009057e+04, 1.40863572e+04, 1.29225171e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt61_fwd' : [ 2.28484267e+04, 1.29216002e+04, ], 'CountWeightedFullL1PrefireNom_rwgt61_fwd' : [ 1.69378102e+04, 1.69299467e+04, 1.69429054e+04, ], 'CountWeightedFullL1Prefire_rwgt61_fwd' : [ 1.69378102e+04, 1.63105013e+04, 1.75713823e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt61_fwd' : [ 2.28462402e+04, 2.07537643e+04, 1.90332166e+04, 1.86417726e+04, 1.69378102e+04, 1.55362461e+04, 1.55009057e+04, 1.40863572e+04, 1.29225171e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt61_fwd' : [ 2.28484267e+04, 1.29216002e+04, ], 'CountWeighted_rwgt61_pt0to60' : [ 2.78482278e+05, 2.78612237e+05, 2.78297784e+05, ], 'CountWeightedLHEWeightScale_rwgt61_pt0to60' : [ 3.71170398e+05, 3.41889432e+05, 3.16251645e+05, 3.02337173e+05, 2.78482278e+05, 2.57597481e+05, 2.51041600e+05, 2.31230983e+05, 2.13888283e+05, ], 'CountWeightedLHEEnvelope_rwgt61_pt0to60' : [ 3.71319585e+05, 2.13829403e+05, ], 'CountWeightedFull_rwgt61_pt0to60' : [ 2.78482278e+05, 2.78612237e+05, 2.78297784e+05, ], 'CountWeightedFullLHEWeightScale_rwgt61_pt0to60' : [ 3.71170398e+05, 3.41889432e+05, 3.16251645e+05, 3.02337173e+05, 2.78482278e+05, 2.57597481e+05, 2.51041600e+05, 2.31230983e+05, 2.13888283e+05, ], 'CountWeightedFullLHEEnvelope_rwgt61_pt0to60' : [ 3.71319585e+05, 2.13829403e+05, ], 'CountWeightedL1PrefireNom_rwgt61_pt0to60' : [ 2.69507003e+05, 2.69620716e+05, 2.69339861e+05, ], 'CountWeightedL1Prefire_rwgt61_pt0to60' : [ 2.69507003e+05, 2.67240567e+05, 2.71692488e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt61_pt0to60' : [ 3.59003089e+05, 3.30878337e+05, 3.06218415e+05, 2.92419294e+05, 2.69507003e+05, 2.49419346e+05, 2.42801682e+05, 2.23774305e+05, 2.07093963e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt61_pt0to60' : [ 3.59150756e+05, 2.07035625e+05, ], 'CountWeightedFullL1PrefireNom_rwgt61_pt0to60' : [ 2.69507003e+05, 2.69620716e+05, 2.69339861e+05, ], 'CountWeightedFullL1Prefire_rwgt61_pt0to60' : [ 2.69507003e+05, 2.67240567e+05, 2.71692488e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt61_pt0to60' : [ 3.59003089e+05, 3.30878337e+05, 3.06218415e+05, 2.92419294e+05, 2.69507003e+05, 2.49419346e+05, 2.42801682e+05, 2.23774305e+05, 2.07093963e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt61_pt0to60' : [ 3.59150756e+05, 2.07035625e+05, ], 'CountWeighted_rwgt61_pt60to120' : [ 5.77307757e+05, 5.77289065e+05, 5.77360996e+05, ], 'CountWeightedLHEWeightScale_rwgt61_pt60to120' : [ 7.76348063e+05, 7.10334824e+05, 6.53196458e+05, 6.30934821e+05, 5.77307757e+05, 5.30892035e+05, 5.22905208e+05, 4.78474660e+05, 4.40019924e+05, ], 'CountWeightedLHEEnvelope_rwgt61_pt60to120' : [ 7.76551178e+05, 4.39939287e+05, ], 'CountWeightedFull_rwgt61_pt60to120' : [ 5.77307757e+05, 5.77289065e+05, 5.77360996e+05, ], 'CountWeightedFullLHEWeightScale_rwgt61_pt60to120' : [ 7.76348063e+05, 7.10334824e+05, 6.53196458e+05, 6.30934821e+05, 5.77307757e+05, 5.30892035e+05, 5.22905208e+05, 4.78474660e+05, 4.40019924e+05, ], 'CountWeightedFullLHEEnvelope_rwgt61_pt60to120' : [ 7.76551178e+05, 4.39939287e+05, ], 'CountWeightedL1PrefireNom_rwgt61_pt60to120' : [ 5.57738014e+05, 5.57691720e+05, 5.57820312e+05, ], 'CountWeightedL1Prefire_rwgt61_pt60to120' : [ 5.57738014e+05, 5.52843945e+05, 5.62478484e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt61_pt60to120' : [ 7.49566736e+05, 6.86272201e+05, 6.31404922e+05, 6.09155119e+05, 5.57738014e+05, 5.13168536e+05, 5.04844513e+05, 4.62245950e+05, 4.25321931e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt61_pt60to120' : [ 7.49767709e+05, 4.25242045e+05, ], 'CountWeightedFullL1PrefireNom_rwgt61_pt60to120' : [ 5.57738014e+05, 5.57691720e+05, 5.57820312e+05, ], 'CountWeightedFullL1Prefire_rwgt61_pt60to120' : [ 5.57738014e+05, 5.52843945e+05, 5.62478484e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt61_pt60to120' : [ 7.49566736e+05, 6.86272201e+05, 6.31404922e+05, 6.09155119e+05, 5.57738014e+05, 5.13168536e+05, 5.04844513e+05, 4.62245950e+05, 4.25321931e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt61_pt60to120' : [ 7.49767709e+05, 4.25242045e+05, ], 'CountWeighted_rwgt61_pt120to200' : [ 6.23786565e+05, 6.23930641e+05, 6.23826738e+05, ], 'CountWeightedLHEWeightScale_rwgt61_pt120to200' : [ 8.45418438e+05, 7.66492704e+05, 6.99310894e+05, 6.87973935e+05, 6.23786565e+05, 5.69149587e+05, 5.70783531e+05, 5.17556946e+05, 4.72249784e+05, ], 'CountWeightedLHEEnvelope_rwgt61_pt120to200' : [ 8.45533092e+05, 4.72203026e+05, ], 'CountWeightedFull_rwgt61_pt120to200' : [ 6.23786565e+05, 6.23930641e+05, 6.23826738e+05, ], 'CountWeightedFullLHEWeightScale_rwgt61_pt120to200' : [ 8.45418438e+05, 7.66492704e+05, 6.99310894e+05, 6.87973935e+05, 6.23786565e+05, 5.69149587e+05, 5.70783531e+05, 5.17556946e+05, 4.72249784e+05, ], 'CountWeightedFullLHEEnvelope_rwgt61_pt120to200' : [ 8.45533092e+05, 4.72203026e+05, ], 'CountWeightedL1PrefireNom_rwgt61_pt120to200' : [ 6.00648963e+05, 6.00772862e+05, 6.00714390e+05, ], 'CountWeightedL1Prefire_rwgt61_pt120to200' : [ 6.00648963e+05, 5.94991276e+05, 6.06167704e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt61_pt120to200' : [ 8.13463647e+05, 7.38068034e+05, 6.73787316e+05, 6.61964630e+05, 6.00648963e+05, 5.48371920e+05, 5.49201085e+05, 4.98356269e+05, 4.55006525e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt61_pt120to200' : [ 8.13577012e+05, 4.54960280e+05, ], 'CountWeightedFullL1PrefireNom_rwgt61_pt120to200' : [ 6.00648963e+05, 6.00772862e+05, 6.00714390e+05, ], 'CountWeightedFullL1Prefire_rwgt61_pt120to200' : [ 6.00648963e+05, 5.94991276e+05, 6.06167704e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt61_pt120to200' : [ 8.13463647e+05, 7.38068034e+05, 6.73787316e+05, 6.61964630e+05, 6.00648963e+05, 5.48371920e+05, 5.49201085e+05, 4.98356269e+05, 4.55006525e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt61_pt120to200' : [ 8.13577012e+05, 4.54960280e+05, ], 'CountWeighted_rwgt61_pt200to300' : [ 3.80560437e+05, 3.80291427e+05, 3.80945091e+05, ], 'CountWeightedLHEWeightScale_rwgt61_pt200to300' : [ 5.19425425e+05, 4.65885405e+05, 4.21161885e+05, 4.24259675e+05, 3.80560437e+05, 3.44056139e+05, 3.53062391e+05, 3.16718531e+05, 2.86357712e+05, ], 'CountWeightedLHEEnvelope_rwgt61_pt200to300' : [ 5.19458771e+05, 2.86345403e+05, ], 'CountWeightedFull_rwgt61_pt200to300' : [ 3.80560437e+05, 3.80291427e+05, 3.80945091e+05, ], 'CountWeightedFullLHEWeightScale_rwgt61_pt200to300' : [ 5.19425425e+05, 4.65885405e+05, 4.21161885e+05, 4.24259675e+05, 3.80560437e+05, 3.44056139e+05, 3.53062391e+05, 3.16718531e+05, 2.86357712e+05, ], 'CountWeightedFullLHEEnvelope_rwgt61_pt200to300' : [ 5.19458771e+05, 2.86345403e+05, ], 'CountWeightedL1PrefireNom_rwgt61_pt200to300' : [ 3.65381204e+05, 3.65113774e+05, 3.65755476e+05, ], 'CountWeightedL1Prefire_rwgt61_pt200to300' : [ 3.65381204e+05, 3.61764224e+05, 3.68932506e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt61_pt200to300' : [ 4.98294107e+05, 4.47295179e+05, 4.04626466e+05, 4.07006985e+05, 3.65381204e+05, 3.30553637e+05, 3.38709946e+05, 3.04090040e+05, 2.75123418e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt61_pt200to300' : [ 4.98327050e+05, 2.75111264e+05, ], 'CountWeightedFullL1PrefireNom_rwgt61_pt200to300' : [ 3.65381204e+05, 3.65113774e+05, 3.65755476e+05, ], 'CountWeightedFullL1Prefire_rwgt61_pt200to300' : [ 3.65381204e+05, 3.61764224e+05, 3.68932506e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt61_pt200to300' : [ 4.98294107e+05, 4.47295179e+05, 4.04626466e+05, 4.07006985e+05, 3.65381204e+05, 3.30553637e+05, 3.38709946e+05, 3.04090040e+05, 2.75123418e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt61_pt200to300' : [ 4.98327050e+05, 2.75111264e+05, ], 'CountWeighted_rwgt61_ptGt300' : [ 2.15353974e+05, 2.15403539e+05, 2.15368101e+05, ], 'CountWeightedLHEWeightScale_rwgt61_ptGt300' : [ 2.95860537e+05, 2.61670452e+05, 2.33770387e+05, 2.43468633e+05, 2.15353974e+05, 1.92410612e+05, 2.03871216e+05, 1.80343794e+05, 1.61143162e+05, ], 'CountWeightedLHEEnvelope_rwgt61_ptGt300' : [ 2.95865686e+05, 1.61141735e+05, ], 'CountWeightedFull_rwgt61_ptGt300' : [ 2.15353974e+05, 2.15403539e+05, 2.15368101e+05, ], 'CountWeightedFullLHEWeightScale_rwgt61_ptGt300' : [ 2.95860537e+05, 2.61670452e+05, 2.33770387e+05, 2.43468633e+05, 2.15353974e+05, 1.92410612e+05, 2.03871216e+05, 1.80343794e+05, 1.61143162e+05, ], 'CountWeightedFullLHEEnvelope_rwgt61_ptGt300' : [ 2.95865686e+05, 1.61141735e+05, ], 'CountWeightedL1PrefireNom_rwgt61_ptGt300' : [ 2.06726805e+05, 2.06781544e+05, 2.06719766e+05, ], 'CountWeightedL1Prefire_rwgt61_ptGt300' : [ 2.06726805e+05, 2.04712929e+05, 2.08711639e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt61_ptGt300' : [ 2.83755427e+05, 2.51172640e+05, 2.24547573e+05, 2.33521301e+05, 2.06726805e+05, 1.84830714e+05, 1.95551621e+05, 1.73127885e+05, 1.54802846e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt61_ptGt300' : [ 2.83760466e+05, 1.54801464e+05, ], 'CountWeightedFullL1PrefireNom_rwgt61_ptGt300' : [ 2.06726805e+05, 2.06781544e+05, 2.06719766e+05, ], 'CountWeightedFullL1Prefire_rwgt61_ptGt300' : [ 2.06726805e+05, 2.04712929e+05, 2.08711639e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt61_ptGt300' : [ 2.83755427e+05, 2.51172640e+05, 2.24547573e+05, 2.33521301e+05, 2.06726805e+05, 1.84830714e+05, 1.95551621e+05, 1.73127885e+05, 1.54802846e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt61_ptGt300' : [ 2.83760466e+05, 1.54801464e+05, ], 'CountWeighted_rwgt61_pt300to450' : [ 1.67901414e+05, 1.67988251e+05, 1.67902394e+05, ], 'CountWeightedLHEWeightScale_rwgt61_pt300to450' : [ 2.30473472e+05, 2.04388676e+05, 1.83007693e+05, 1.89309206e+05, 1.67901414e+05, 1.50352921e+05, 1.58273924e+05, 1.40388327e+05, 1.25726292e+05, ], 'CountWeightedLHEEnvelope_rwgt61_pt300to450' : [ 2.30478499e+05, 1.25724898e+05, ], 'CountWeightedFull_rwgt61_pt300to450' : [ 1.67901414e+05, 1.67988251e+05, 1.67902394e+05, ], 'CountWeightedFullLHEWeightScale_rwgt61_pt300to450' : [ 2.30473472e+05, 2.04388676e+05, 1.83007693e+05, 1.89309206e+05, 1.67901414e+05, 1.50352921e+05, 1.58273924e+05, 1.40388327e+05, 1.25726292e+05, ], 'CountWeightedFullLHEEnvelope_rwgt61_pt300to450' : [ 2.30478499e+05, 1.25724898e+05, ], 'CountWeightedL1PrefireNom_rwgt61_pt300to450' : [ 1.61019748e+05, 1.61106804e+05, 1.61004421e+05, ], 'CountWeightedL1Prefire_rwgt61_pt300to450' : [ 1.61019748e+05, 1.59411128e+05, 1.62605818e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt61_pt300to450' : [ 2.20832868e+05, 1.96003034e+05, 1.75621288e+05, 1.81398393e+05, 1.61019748e+05, 1.44290758e+05, 1.51665500e+05, 1.34639176e+05, 1.20661405e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt61_pt300to450' : [ 2.20837787e+05, 1.20660056e+05, ], 'CountWeightedFullL1PrefireNom_rwgt61_pt300to450' : [ 1.61019748e+05, 1.61106804e+05, 1.61004421e+05, ], 'CountWeightedFullL1Prefire_rwgt61_pt300to450' : [ 1.61019748e+05, 1.59411128e+05, 1.62605818e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt61_pt300to450' : [ 2.20832868e+05, 1.96003034e+05, 1.75621288e+05, 1.81398393e+05, 1.61019748e+05, 1.44290758e+05, 1.51665500e+05, 1.34639176e+05, 1.20661405e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt61_pt300to450' : [ 2.20837787e+05, 1.20660056e+05, ], 'CountWeighted_rwgt61_ptGt450' : [ 4.74525730e+04, 4.74152952e+04, 4.74657062e+04, ], 'CountWeightedLHEWeightScale_rwgt61_ptGt450' : [ 6.53870534e+04, 5.72817755e+04, 5.07626991e+04, 5.41594135e+04, 4.74525730e+04, 4.20576948e+04, 4.55972825e+04, 3.99554679e+04, 3.54168720e+04, ], 'CountWeightedLHEEnvelope_rwgt61_ptGt450' : [ 6.53871777e+04, 3.54168377e+04, ], 'CountWeightedFull_rwgt61_ptGt450' : [ 4.74525730e+04, 4.74152952e+04, 4.74657062e+04, ], 'CountWeightedFullLHEWeightScale_rwgt61_ptGt450' : [ 6.53870534e+04, 5.72817755e+04, 5.07626991e+04, 5.41594135e+04, 4.74525730e+04, 4.20576948e+04, 4.55972825e+04, 3.99554679e+04, 3.54168720e+04, ], 'CountWeightedFullLHEEnvelope_rwgt61_ptGt450' : [ 6.53871777e+04, 3.54168377e+04, ], 'CountWeightedL1PrefireNom_rwgt61_ptGt450' : [ 4.57070586e+04, 4.56747358e+04, 4.57153432e+04, ], 'CountWeightedL1Prefire_rwgt61_ptGt450' : [ 4.57070586e+04, 4.53018132e+04, 4.61058337e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt61_ptGt450' : [ 6.29225409e+04, 5.51695936e+04, 4.89262875e+04, 5.21228890e+04, 4.57070586e+04, 4.05399669e+04, 4.38861082e+04, 3.84887165e+04, 3.41414494e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt61_ptGt450' : [ 6.29226637e+04, 3.41414157e+04, ], 'CountWeightedFullL1PrefireNom_rwgt61_ptGt450' : [ 4.57070586e+04, 4.56747358e+04, 4.57153432e+04, ], 'CountWeightedFullL1Prefire_rwgt61_ptGt450' : [ 4.57070586e+04, 4.53018132e+04, 4.61058337e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt61_ptGt450' : [ 6.29225409e+04, 5.51695936e+04, 4.89262875e+04, 5.21228890e+04, 4.57070586e+04, 4.05399669e+04, 4.38861082e+04, 3.84887165e+04, 3.41414494e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt61_ptGt450' : [ 6.29226637e+04, 3.41414157e+04, ], 'CountWeighted_rwgt62' : [ 2.48713264e+06, 2.48712977e+06, 2.48746065e+06, ], 'CountWeightedLHEWeightScale_rwgt62' : [ 3.34703105e+06, 3.04983552e+06, 2.79596901e+06, 2.72944465e+06, 2.48713264e+06, 2.28016272e+06, 2.26848780e+06, 2.06712799e+06, 1.89514889e+06, ], 'CountWeightedLHEEnvelope_rwgt62' : [ 3.34788248e+06, 1.89481198e+06, ], 'CountWeightedFull_rwgt62' : [ 2.48713264e+06, 2.48712977e+06, 2.48746065e+06, ], 'CountWeightedFullLHEWeightScale_rwgt62' : [ 3.34703105e+06, 3.04983552e+06, 2.79596901e+06, 2.72944465e+06, 2.48713264e+06, 2.28016272e+06, 2.26848780e+06, 2.06712799e+06, 1.89514889e+06, ], 'CountWeightedFullLHEEnvelope_rwgt62' : [ 3.34788248e+06, 1.89481198e+06, ], 'CountWeightedL1PrefireNom_rwgt62' : [ 2.39661098e+06, 2.39653112e+06, 2.39700337e+06, ], 'CountWeightedL1Prefire_rwgt62' : [ 2.39661098e+06, 2.37455111e+06, 2.41812849e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt62' : [ 3.22293466e+06, 2.93887737e+06, 2.69584427e+06, 2.62820809e+06, 2.39661098e+06, 2.19847601e+06, 2.18432210e+06, 1.99186887e+06, 1.82723343e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt62' : [ 3.22377656e+06, 1.82689994e+06, ], 'CountWeightedFullL1PrefireNom_rwgt62' : [ 2.39661098e+06, 2.39653112e+06, 2.39700337e+06, ], 'CountWeightedFullL1Prefire_rwgt62' : [ 2.39661098e+06, 2.37455111e+06, 2.41812849e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt62' : [ 3.22293466e+06, 2.93887737e+06, 2.69584427e+06, 2.62820809e+06, 2.39661098e+06, 2.19847601e+06, 2.18432210e+06, 1.99186887e+06, 1.82723343e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt62' : [ 3.22377656e+06, 1.82689994e+06, ], 'CountWeighted_rwgt62_fwd' : [ 2.62073647e+04, 2.62063263e+04, 2.62035023e+04, ], 'CountWeightedLHEWeightScale_rwgt62_fwd' : [ 3.52025573e+04, 3.21043058e+04, 2.95397002e+04, 2.87316358e+04, 2.62073647e+04, 2.41172159e+04, 2.38957873e+04, 2.17993906e+04, 2.00630748e+04, ], 'CountWeightedLHEEnvelope_rwgt62_fwd' : [ 3.52063820e+04, 2.00614436e+04, ], 'CountWeightedFull_rwgt62_fwd' : [ 2.62073647e+04, 2.62063263e+04, 2.62035023e+04, ], 'CountWeightedFullLHEWeightScale_rwgt62_fwd' : [ 3.52025573e+04, 3.21043058e+04, 2.95397002e+04, 2.87316358e+04, 2.62073647e+04, 2.41172159e+04, 2.38957873e+04, 2.17993906e+04, 2.00630748e+04, ], 'CountWeightedFullLHEEnvelope_rwgt62_fwd' : [ 3.52063820e+04, 2.00614436e+04, ], 'CountWeightedL1PrefireNom_rwgt62_fwd' : [ 2.24493480e+04, 2.24412731e+04, 2.24541005e+04, ], 'CountWeightedL1Prefire_rwgt62_fwd' : [ 2.24493480e+04, 2.16231910e+04, 2.32837320e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt62_fwd' : [ 3.01303977e+04, 2.75076955e+04, 2.53328842e+04, 2.45855540e+04, 2.24493480e+04, 2.06774002e+04, 2.04432216e+04, 1.86695312e+04, 1.71979034e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt62_fwd' : [ 3.01337289e+04, 1.71964938e+04, ], 'CountWeightedFullL1PrefireNom_rwgt62_fwd' : [ 2.24493480e+04, 2.24412731e+04, 2.24541005e+04, ], 'CountWeightedFullL1Prefire_rwgt62_fwd' : [ 2.24493480e+04, 2.16231910e+04, 2.32837320e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt62_fwd' : [ 3.01303977e+04, 2.75076955e+04, 2.53328842e+04, 2.45855540e+04, 2.24493480e+04, 2.06774002e+04, 2.04432216e+04, 1.86695312e+04, 1.71979034e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt62_fwd' : [ 3.01337289e+04, 1.71964938e+04, ], 'CountWeighted_rwgt62_pt0to60' : [ 3.75532296e+05, 3.75664114e+05, 3.75353601e+05, ], 'CountWeightedLHEWeightScale_rwgt62_pt0to60' : [ 4.97615335e+05, 4.60832175e+05, 4.28384432e+05, 4.05516533e+05, 3.75532296e+05, 3.49085222e+05, 3.36838961e+05, 3.11926153e+05, 2.89954443e+05, ], 'CountWeightedLHEEnvelope_rwgt62_pt0to60' : [ 4.97891350e+05, 2.89845615e+05, ], 'CountWeightedFull_rwgt62_pt0to60' : [ 3.75532296e+05, 3.75664114e+05, 3.75353601e+05, ], 'CountWeightedFullLHEWeightScale_rwgt62_pt0to60' : [ 4.97615335e+05, 4.60832175e+05, 4.28384432e+05, 4.05516533e+05, 3.75532296e+05, 3.49085222e+05, 3.36838961e+05, 3.11926153e+05, 2.89954443e+05, ], 'CountWeightedFullLHEEnvelope_rwgt62_pt0to60' : [ 4.97891350e+05, 2.89845615e+05, ], 'CountWeightedL1PrefireNom_rwgt62_pt0to60' : [ 3.64004127e+05, 3.64116576e+05, 3.63846578e+05, ], 'CountWeightedL1Prefire_rwgt62_pt0to60' : [ 3.64004127e+05, 3.61083838e+05, 3.66816565e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt62_pt0to60' : [ 4.82086033e+05, 4.46695916e+05, 4.15434159e+05, 3.92851884e+05, 3.64004127e+05, 3.38524351e+05, 3.26312685e+05, 3.02344708e+05, 2.81177069e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt62_pt0to60' : [ 4.82359305e+05, 2.81069206e+05, ], 'CountWeightedFullL1PrefireNom_rwgt62_pt0to60' : [ 3.64004127e+05, 3.64116576e+05, 3.63846578e+05, ], 'CountWeightedFullL1Prefire_rwgt62_pt0to60' : [ 3.64004127e+05, 3.61083838e+05, 3.66816565e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt62_pt0to60' : [ 4.82086033e+05, 4.46695916e+05, 4.15434159e+05, 3.92851884e+05, 3.64004127e+05, 3.38524351e+05, 3.26312685e+05, 3.02344708e+05, 2.81177069e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt62_pt0to60' : [ 4.82359305e+05, 2.81069206e+05, ], 'CountWeighted_rwgt62_pt60to120' : [ 7.24120901e+05, 7.24106395e+05, 7.24168886e+05, ], 'CountWeightedLHEWeightScale_rwgt62_pt60to120' : [ 9.68254416e+05, 8.90297937e+05, 8.22407406e+05, 7.87496939e+05, 7.24120901e+05, 6.68930528e+05, 6.53070192e+05, 6.00530606e+05, 5.54778645e+05, ], 'CountWeightedLHEEnvelope_rwgt62_pt60to120' : [ 9.68600514e+05, 5.54641474e+05, ], 'CountWeightedFull_rwgt62_pt60to120' : [ 7.24120901e+05, 7.24106395e+05, 7.24168886e+05, ], 'CountWeightedFullLHEWeightScale_rwgt62_pt60to120' : [ 9.68254416e+05, 8.90297937e+05, 8.22407406e+05, 7.87496939e+05, 7.24120901e+05, 6.68930528e+05, 6.53070192e+05, 6.00530606e+05, 5.54778645e+05, ], 'CountWeightedFullLHEEnvelope_rwgt62_pt60to120' : [ 9.68600514e+05, 5.54641474e+05, ], 'CountWeightedL1PrefireNom_rwgt62_pt60to120' : [ 7.00368374e+05, 7.00319224e+05, 7.00453378e+05, ], 'CountWeightedL1Prefire_rwgt62_pt60to120' : [ 7.00368374e+05, 6.94428295e+05, 7.06120775e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt62_pt60to120' : [ 9.35951605e+05, 8.61115173e+05, 7.95846425e+05, 7.61205824e+05, 7.00368374e+05, 6.47310939e+05, 6.31254448e+05, 5.80820639e+05, 5.36837700e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt62_pt60to120' : [ 9.36294097e+05, 5.36701816e+05, ], 'CountWeightedFullL1PrefireNom_rwgt62_pt60to120' : [ 7.00368374e+05, 7.00319224e+05, 7.00453378e+05, ], 'CountWeightedFullL1Prefire_rwgt62_pt60to120' : [ 7.00368374e+05, 6.94428295e+05, 7.06120775e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt62_pt60to120' : [ 9.35951605e+05, 8.61115173e+05, 7.95846425e+05, 7.61205824e+05, 7.00368374e+05, 6.47310939e+05, 6.31254448e+05, 5.80820639e+05, 5.36837700e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt62_pt60to120' : [ 9.36294097e+05, 5.36701816e+05, ], 'CountWeighted_rwgt62_pt120to200' : [ 7.19735252e+05, 7.19855613e+05, 7.19791768e+05, ], 'CountWeightedLHEWeightScale_rwgt62_pt120to200' : [ 9.70992465e+05, 8.83744762e+05, 8.09191018e+05, 7.90733462e+05, 7.19735252e+05, 6.59065721e+05, 6.56432221e+05, 5.97528021e+05, 5.47193013e+05, ], 'CountWeightedLHEEnvelope_rwgt62_pt120to200' : [ 9.71166011e+05, 5.47122162e+05, ], 'CountWeightedFull_rwgt62_pt120to200' : [ 7.19735252e+05, 7.19855613e+05, 7.19791768e+05, ], 'CountWeightedFullLHEWeightScale_rwgt62_pt120to200' : [ 9.70992465e+05, 8.83744762e+05, 8.09191018e+05, 7.90733462e+05, 7.19735252e+05, 6.59065721e+05, 6.56432221e+05, 5.97528021e+05, 5.47193013e+05, ], 'CountWeightedFullLHEEnvelope_rwgt62_pt120to200' : [ 9.71166011e+05, 5.47122162e+05, ], 'CountWeightedL1PrefireNom_rwgt62_pt120to200' : [ 6.93544356e+05, 6.93642103e+05, 6.93628537e+05, ], 'CountWeightedL1Prefire_rwgt62_pt120to200' : [ 6.93544356e+05, 6.87148987e+05, 6.99784521e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt62_pt120to200' : [ 9.35002904e+05, 8.51592204e+05, 7.80204256e+05, 7.61419592e+05, 6.93544356e+05, 6.35451818e+05, 6.32093465e+05, 5.75780790e+05, 5.27584130e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt62_pt120to200' : [ 9.35174512e+05, 5.27514046e+05, ], 'CountWeightedFullL1PrefireNom_rwgt62_pt120to200' : [ 6.93544356e+05, 6.93642103e+05, 6.93628537e+05, ], 'CountWeightedFullL1Prefire_rwgt62_pt120to200' : [ 6.93544356e+05, 6.87148987e+05, 6.99784521e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt62_pt120to200' : [ 9.35002904e+05, 8.51592204e+05, 7.80204256e+05, 7.61419592e+05, 6.93544356e+05, 6.35451818e+05, 6.32093465e+05, 5.75780790e+05, 5.27584130e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt62_pt120to200' : [ 9.35174512e+05, 5.27514046e+05, ], 'CountWeighted_rwgt62_pt200to300' : [ 4.13527703e+05, 4.13252401e+05, 4.13913926e+05, ], 'CountWeightedLHEWeightScale_rwgt62_pt200to300' : [ 5.62501647e+05, 5.05933538e+05, 4.58572820e+05, 4.59720188e+05, 4.13527703e+05, 3.74852086e+05, 3.82763837e+05, 3.44331065e+05, 3.12151338e+05, ], 'CountWeightedLHEEnvelope_rwgt62_pt200to300' : [ 5.62546777e+05, 3.12134577e+05, ], 'CountWeightedFull_rwgt62_pt200to300' : [ 4.13527703e+05, 4.13252401e+05, 4.13913926e+05, ], 'CountWeightedFullLHEWeightScale_rwgt62_pt200to300' : [ 5.62501647e+05, 5.05933538e+05, 4.58572820e+05, 4.59720188e+05, 4.13527703e+05, 3.74852086e+05, 3.82763837e+05, 3.44331065e+05, 3.12151338e+05, ], 'CountWeightedFullLHEEnvelope_rwgt62_pt200to300' : [ 5.62546777e+05, 3.12134577e+05, ], 'CountWeightedL1PrefireNom_rwgt62_pt200to300' : [ 3.97252773e+05, 3.96978555e+05, 3.97629397e+05, ], 'CountWeightedL1Prefire_rwgt62_pt200to300' : [ 3.97252773e+05, 3.93378718e+05, 4.01057356e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt62_pt200to300' : [ 5.39924861e+05, 4.86012440e+05, 4.40804792e+05, 4.41277506e+05, 3.97252773e+05, 3.60334788e+05, 3.67414460e+05, 3.30784753e+05, 3.00067102e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt62_pt200to300' : [ 5.39969454e+05, 3.00050550e+05, ], 'CountWeightedFullL1PrefireNom_rwgt62_pt200to300' : [ 3.97252773e+05, 3.96978555e+05, 3.97629397e+05, ], 'CountWeightedFullL1Prefire_rwgt62_pt200to300' : [ 3.97252773e+05, 3.93378718e+05, 4.01057356e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt62_pt200to300' : [ 5.39924861e+05, 4.86012440e+05, 4.40804792e+05, 4.41277506e+05, 3.97252773e+05, 3.60334788e+05, 3.67414460e+05, 3.30784753e+05, 3.00067102e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt62_pt200to300' : [ 5.39969454e+05, 3.00050550e+05, ], 'CountWeighted_rwgt62_ptGt300' : [ 2.28009026e+05, 2.28045505e+05, 2.28032452e+05, ], 'CountWeightedLHEWeightScale_rwgt62_ptGt300' : [ 3.12465751e+05, 2.76922975e+05, 2.47873815e+05, 2.57246294e+05, 2.28009026e+05, 2.04112082e+05, 2.15487273e+05, 1.91013167e+05, 1.71008416e+05, ], 'CountWeightedLHEEnvelope_rwgt62_ptGt300' : [ 3.12472090e+05, 1.71006658e+05, ], 'CountWeightedFull_rwgt62_ptGt300' : [ 2.28009026e+05, 2.28045505e+05, 2.28032452e+05, ], 'CountWeightedFullLHEWeightScale_rwgt62_ptGt300' : [ 3.12465751e+05, 2.76922975e+05, 2.47873815e+05, 2.57246294e+05, 2.28009026e+05, 2.04112082e+05, 2.15487273e+05, 1.91013167e+05, 1.71008416e+05, ], 'CountWeightedFullLHEEnvelope_rwgt62_ptGt300' : [ 3.12472090e+05, 1.71006658e+05, ], 'CountWeightedL1PrefireNom_rwgt62_ptGt300' : [ 2.18991949e+05, 2.19032987e+05, 2.18995336e+05, ], 'CountWeightedL1Prefire_rwgt62_ptGt300' : [ 2.18991949e+05, 2.16888292e+05, 2.21065414e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt62_ptGt300' : [ 2.99839808e+05, 2.65954597e+05, 2.38222189e+05, 2.46867441e+05, 2.18991949e+05, 1.96176895e+05, 2.06804293e+05, 1.83468938e+05, 1.64368938e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt62_ptGt300' : [ 2.99846017e+05, 1.64367233e+05, ], 'CountWeightedFullL1PrefireNom_rwgt62_ptGt300' : [ 2.18991949e+05, 2.19032987e+05, 2.18995336e+05, ], 'CountWeightedFullL1Prefire_rwgt62_ptGt300' : [ 2.18991949e+05, 2.16888292e+05, 2.21065414e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt62_ptGt300' : [ 2.99839808e+05, 2.65954597e+05, 2.38222189e+05, 2.46867441e+05, 2.18991949e+05, 1.96176895e+05, 2.06804293e+05, 1.83468938e+05, 1.64368938e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt62_ptGt300' : [ 2.99846017e+05, 1.64367233e+05, ], 'CountWeighted_rwgt62_pt300to450' : [ 1.77885855e+05, 1.77959117e+05, 1.77896132e+05, ], 'CountWeightedLHEWeightScale_rwgt62_pt300to450' : [ 2.43541624e+05, 2.16439987e+05, 1.94189602e+05, 2.00136256e+05, 1.77885855e+05, 1.59616993e+05, 1.67391041e+05, 1.48795804e+05, 1.33527094e+05, ], 'CountWeightedLHEEnvelope_rwgt62_pt300to450' : [ 2.43547811e+05, 1.33525380e+05, ], 'CountWeightedFull_rwgt62_pt300to450' : [ 1.77885855e+05, 1.77959117e+05, 1.77896132e+05, ], 'CountWeightedFullLHEWeightScale_rwgt62_pt300to450' : [ 2.43541624e+05, 2.16439987e+05, 1.94189602e+05, 2.00136256e+05, 1.77885855e+05, 1.59616993e+05, 1.67391041e+05, 1.48795804e+05, 1.33527094e+05, ], 'CountWeightedFullLHEEnvelope_rwgt62_pt300to450' : [ 2.43547811e+05, 1.33525380e+05, ], 'CountWeightedL1PrefireNom_rwgt62_pt300to450' : [ 1.70688935e+05, 1.70762024e+05, 1.70683821e+05, ], 'CountWeightedL1Prefire_rwgt62_pt300to450' : [ 1.70688935e+05, 1.69007710e+05, 1.72346677e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt62_pt300to450' : [ 2.33482283e+05, 2.07673533e+05, 1.86454291e+05, 1.91878784e+05, 1.70688935e+05, 1.53266013e+05, 1.60490906e+05, 1.42781391e+05, 1.28219177e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt62_pt300to450' : [ 2.33488340e+05, 1.28217515e+05, ], 'CountWeightedFullL1PrefireNom_rwgt62_pt300to450' : [ 1.70688935e+05, 1.70762024e+05, 1.70683821e+05, ], 'CountWeightedFullL1Prefire_rwgt62_pt300to450' : [ 1.70688935e+05, 1.69007710e+05, 1.72346677e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt62_pt300to450' : [ 2.33482283e+05, 2.07673533e+05, 1.86454291e+05, 1.91878784e+05, 1.70688935e+05, 1.53266013e+05, 1.60490906e+05, 1.42781391e+05, 1.28219177e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt62_pt300to450' : [ 2.33488340e+05, 1.28217515e+05, ], 'CountWeighted_rwgt62_ptGt450' : [ 5.01231745e+04, 5.00863686e+04, 5.01363042e+04, ], 'CountWeightedLHEWeightScale_rwgt62_ptGt450' : [ 6.89241219e+04, 6.04829896e+04, 5.36842344e+04, 5.71100342e+04, 5.01231745e+04, 4.44950885e+04, 4.80962355e+04, 4.22173709e+04, 3.74813326e+04, ], 'CountWeightedLHEEnvelope_rwgt62_ptGt450' : [ 6.89242737e+04, 3.74812907e+04, ], 'CountWeightedFull_rwgt62_ptGt450' : [ 5.01231745e+04, 5.00863686e+04, 5.01363042e+04, ], 'CountWeightedFullLHEWeightScale_rwgt62_ptGt450' : [ 6.89241219e+04, 6.04829896e+04, 5.36842344e+04, 5.71100342e+04, 5.01231745e+04, 4.44950885e+04, 4.80962355e+04, 4.22173709e+04, 3.74813326e+04, ], 'CountWeightedFullLHEEnvelope_rwgt62_ptGt450' : [ 6.89242737e+04, 3.74812907e+04, ], 'CountWeightedL1PrefireNom_rwgt62_ptGt450' : [ 4.83030022e+04, 4.82709570e+04, 4.83115006e+04, ], 'CountWeightedL1Prefire_rwgt62_ptGt450' : [ 4.83030022e+04, 4.78805894e+04, 4.87187326e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt62_ptGt450' : [ 6.63575574e+04, 5.82810325e+04, 5.17679028e+04, 5.49886563e+04, 4.83030022e+04, 4.29108896e+04, 4.63133916e+04, 4.06875552e+04, 3.61497575e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt62_ptGt450' : [ 6.63577076e+04, 3.61497161e+04, ], 'CountWeightedFullL1PrefireNom_rwgt62_ptGt450' : [ 4.83030022e+04, 4.82709570e+04, 4.83115006e+04, ], 'CountWeightedFullL1Prefire_rwgt62_ptGt450' : [ 4.83030022e+04, 4.78805894e+04, 4.87187326e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt62_ptGt450' : [ 6.63575574e+04, 5.82810325e+04, 5.17679028e+04, 5.49886563e+04, 4.83030022e+04, 4.29108896e+04, 4.63133916e+04, 4.06875552e+04, 3.61497575e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt62_ptGt450' : [ 6.63577076e+04, 3.61497161e+04, ], 'CountWeighted_rwgt63' : [ 3.03569501e+06, 3.03566048e+06, 3.03604269e+06, ], 'CountWeightedLHEWeightScale_rwgt63' : [ 4.06391869e+06, 3.72084932e+06, 3.42603093e+06, 3.31554169e+06, 3.03569501e+06, 2.79522850e+06, 2.75662490e+06, 2.52398345e+06, 2.32409145e+06, ], 'CountWeightedLHEEnvelope_rwgt63' : [ 4.06524966e+06, 2.32356445e+06, ], 'CountWeightedFull_rwgt63' : [ 3.03569501e+06, 3.03566048e+06, 3.03604269e+06, ], 'CountWeightedFullLHEWeightScale_rwgt63' : [ 4.06391869e+06, 3.72084932e+06, 3.42603093e+06, 3.31554169e+06, 3.03569501e+06, 2.79522850e+06, 2.75662490e+06, 2.52398345e+06, 2.32409145e+06, ], 'CountWeightedFullLHEEnvelope_rwgt63' : [ 4.06524966e+06, 2.32356445e+06, ], 'CountWeightedL1PrefireNom_rwgt63' : [ 2.92812730e+06, 2.92799059e+06, 2.92856609e+06, ], 'CountWeightedL1Prefire_rwgt63' : [ 2.92812730e+06, 2.90188926e+06, 2.95370988e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt63' : [ 3.91731131e+06, 3.58906288e+06, 3.30653615e+06, 3.19587938e+06, 2.92812730e+06, 2.69768969e+06, 2.65709967e+06, 2.43451491e+06, 2.24296238e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt63' : [ 3.91862792e+06, 2.24244072e+06, ], 'CountWeightedFullL1PrefireNom_rwgt63' : [ 2.92812730e+06, 2.92799059e+06, 2.92856609e+06, ], 'CountWeightedFullL1Prefire_rwgt63' : [ 2.92812730e+06, 2.90188926e+06, 2.95370988e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt63' : [ 3.91731131e+06, 3.58906288e+06, 3.30653615e+06, 3.19587938e+06, 2.92812730e+06, 2.69768969e+06, 2.65709967e+06, 2.43451491e+06, 2.24296238e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt63' : [ 3.91862792e+06, 2.24244072e+06, ], 'CountWeighted_rwgt63_fwd' : [ 3.51747547e+04, 3.51771312e+04, 3.51664941e+04, ], 'CountWeightedLHEWeightScale_rwgt63_fwd' : [ 4.70571128e+04, 4.30900991e+04, 3.97816580e+04, 3.84075003e+04, 3.51747547e+04, 3.24779073e+04, 3.19432155e+04, 2.92579883e+04, 2.70173669e+04, ], 'CountWeightedLHEEnvelope_rwgt63_fwd' : [ 4.70627666e+04, 2.70149444e+04, ], 'CountWeightedFull_rwgt63_fwd' : [ 3.51747547e+04, 3.51771312e+04, 3.51664941e+04, ], 'CountWeightedFullLHEWeightScale_rwgt63_fwd' : [ 4.70571128e+04, 4.30900991e+04, 3.97816580e+04, 3.84075003e+04, 3.51747547e+04, 3.24779073e+04, 3.19432155e+04, 2.92579883e+04, 2.70173669e+04, ], 'CountWeightedFullLHEEnvelope_rwgt63_fwd' : [ 4.70627666e+04, 2.70149444e+04, ], 'CountWeightedL1PrefireNom_rwgt63_fwd' : [ 3.01626136e+04, 3.01543727e+04, 3.01670985e+04, ], 'CountWeightedL1Prefire_rwgt63_fwd' : [ 3.01626136e+04, 2.90582260e+04, 3.12779829e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt63_fwd' : [ 4.03246600e+04, 3.69596866e+04, 3.41489994e+04, 3.29039236e+04, 3.01626136e+04, 2.78722063e+04, 2.73600173e+04, 2.50835606e+04, 2.31810967e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt63_fwd' : [ 4.03295860e+04, 2.31790015e+04, ], 'CountWeightedFullL1PrefireNom_rwgt63_fwd' : [ 3.01626136e+04, 3.01543727e+04, 3.01670985e+04, ], 'CountWeightedFullL1Prefire_rwgt63_fwd' : [ 3.01626136e+04, 2.90582260e+04, 3.12779829e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt63_fwd' : [ 4.03246600e+04, 3.69596866e+04, 3.41489994e+04, 3.29039236e+04, 3.01626136e+04, 2.78722063e+04, 2.73600173e+04, 2.50835606e+04, 2.31810967e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt63_fwd' : [ 4.03295860e+04, 2.31790015e+04, ], 'CountWeighted_rwgt63_pt0to60' : [ 5.11394411e+05, 5.11527878e+05, 5.11223171e+05, ], 'CountWeightedLHEWeightScale_rwgt63_pt0to60' : [ 6.74626906e+05, 6.27342257e+05, 5.85361858e+05, 5.49958623e+05, 5.11394411e+05, 4.77161127e+05, 4.56947691e+05, 4.24892792e+05, 3.96441258e+05, ], 'CountWeightedLHEEnvelope_rwgt63_pt0to60' : [ 6.75080461e+05, 3.96262494e+05, ], 'CountWeightedFull_rwgt63_pt0to60' : [ 5.11394411e+05, 5.11527878e+05, 5.11223171e+05, ], 'CountWeightedFullLHEWeightScale_rwgt63_pt0to60' : [ 6.74626906e+05, 6.27342257e+05, 5.85361858e+05, 5.49958623e+05, 5.11394411e+05, 4.77161127e+05, 4.56947691e+05, 4.24892792e+05, 3.96441258e+05, ], 'CountWeightedFullLHEEnvelope_rwgt63_pt0to60' : [ 6.75080461e+05, 3.96262494e+05, ], 'CountWeightedL1PrefireNom_rwgt63_pt0to60' : [ 4.96293005e+05, 4.96402587e+05, 4.96148208e+05, ], 'CountWeightedL1Prefire_rwgt63_pt0to60' : [ 4.96293005e+05, 4.92457512e+05, 4.99982973e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt63_pt0to60' : [ 6.54391681e+05, 6.08832018e+05, 5.68328602e+05, 5.33449256e+05, 4.96293005e+05, 4.63265157e+05, 4.43221273e+05, 4.12337430e+05, 3.84888358e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt63_pt0to60' : [ 6.54840704e+05, 3.84711183e+05, ], 'CountWeightedFullL1PrefireNom_rwgt63_pt0to60' : [ 4.96293005e+05, 4.96402587e+05, 4.96148208e+05, ], 'CountWeightedFullL1Prefire_rwgt63_pt0to60' : [ 4.96293005e+05, 4.92457512e+05, 4.99982973e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt63_pt0to60' : [ 6.54391681e+05, 6.08832018e+05, 5.68328602e+05, 5.33449256e+05, 4.96293005e+05, 4.63265157e+05, 4.43221273e+05, 4.12337430e+05, 3.84888358e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt63_pt0to60' : [ 6.54840704e+05, 3.84711183e+05, ], 'CountWeighted_rwgt63_pt60to120' : [ 9.29682811e+05, 9.29678014e+05, 9.29719398e+05, ], 'CountWeightedLHEWeightScale_rwgt63_pt60to120' : [ 1.23695505e+06, 1.14227483e+06, 1.05932920e+06, 1.00670937e+06, 9.29682811e+05, 8.62206442e+05, 8.35322341e+05, 7.71428583e+05, 7.15459378e+05, ], 'CountWeightedLHEEnvelope_rwgt63_pt60to120' : [ 1.23750128e+06, 7.15243118e+05, ], 'CountWeightedFull_rwgt63_pt60to120' : [ 9.29682811e+05, 9.29678014e+05, 9.29719398e+05, ], 'CountWeightedFullLHEWeightScale_rwgt63_pt60to120' : [ 1.23695505e+06, 1.14227483e+06, 1.05932920e+06, 1.00670937e+06, 9.29682811e+05, 8.62206442e+05, 8.35322341e+05, 7.71428583e+05, 7.15459378e+05, ], 'CountWeightedFullLHEEnvelope_rwgt63_pt60to120' : [ 1.23750128e+06, 7.15243118e+05, ], 'CountWeightedL1PrefireNom_rwgt63_pt60to120' : [ 9.00071436e+05, 9.00022098e+05, 9.00156450e+05, ], 'CountWeightedL1Prefire_rwgt63_pt60to120' : [ 9.00071436e+05, 8.92666480e+05, 9.07241475e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt63_pt60to120' : [ 1.19691746e+06, 1.10592064e+06, 1.02608784e+06, 9.74099509e+05, 9.00071436e+05, 8.35129703e+05, 8.08247029e+05, 7.46842319e+05, 6.92976633e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt63_pt60to120' : [ 1.19745808e+06, 6.92762388e+05, ], 'CountWeightedFullL1PrefireNom_rwgt63_pt60to120' : [ 9.00071436e+05, 9.00022098e+05, 9.00156450e+05, ], 'CountWeightedFullL1Prefire_rwgt63_pt60to120' : [ 9.00071436e+05, 8.92666480e+05, 9.07241475e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt63_pt60to120' : [ 1.19691746e+06, 1.10592064e+06, 1.02608784e+06, 9.74099509e+05, 9.00071436e+05, 8.35129703e+05, 8.08247029e+05, 7.46842319e+05, 6.92976633e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt63_pt60to120' : [ 1.19745808e+06, 6.92762388e+05, ], 'CountWeighted_rwgt63_pt120to200' : [ 8.54030988e+05, 8.54124310e+05, 8.54102319e+05, ], 'CountWeightedLHEWeightScale_rwgt63_pt120to200' : [ 1.14675217e+06, 1.04785859e+06, 9.62987485e+05, 9.34560607e+05, 8.54030988e+05, 7.84919104e+05, 7.76309961e+05, 7.09460546e+05, 6.52088725e+05, ], 'CountWeightedLHEEnvelope_rwgt63_pt120to200' : [ 1.14700814e+06, 6.51984168e+05, ], 'CountWeightedFull_rwgt63_pt120to200' : [ 8.54030988e+05, 8.54124310e+05, 8.54102319e+05, ], 'CountWeightedFullLHEWeightScale_rwgt63_pt120to200' : [ 1.14675217e+06, 1.04785859e+06, 9.62987485e+05, 9.34560607e+05, 8.54030988e+05, 7.84919104e+05, 7.76309961e+05, 7.09460546e+05, 6.52088725e+05, ], 'CountWeightedFullLHEEnvelope_rwgt63_pt120to200' : [ 1.14700814e+06, 6.51984168e+05, ], 'CountWeightedL1PrefireNom_rwgt63_pt120to200' : [ 8.23564235e+05, 8.23631824e+05, 8.23667040e+05, ], 'CountWeightedL1Prefire_rwgt63_pt120to200' : [ 8.23564235e+05, 8.16136003e+05, 8.30814870e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt63_pt120to200' : [ 1.10511289e+06, 1.01048536e+06, 9.29151438e+05, 9.00619498e+05, 8.23564235e+05, 7.57333490e+05, 7.48111498e+05, 6.84146932e+05, 6.29167199e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt63_pt120to200' : [ 1.10536604e+06, 6.29063741e+05, ], 'CountWeightedFullL1PrefireNom_rwgt63_pt120to200' : [ 8.23564235e+05, 8.23631824e+05, 8.23667040e+05, ], 'CountWeightedFullL1Prefire_rwgt63_pt120to200' : [ 8.23564235e+05, 8.16136003e+05, 8.30814870e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt63_pt120to200' : [ 1.10511289e+06, 1.01048536e+06, 9.29151438e+05, 9.00619498e+05, 8.23564235e+05, 7.57333490e+05, 7.48111498e+05, 6.84146932e+05, 6.29167199e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt63_pt120to200' : [ 1.10536604e+06, 6.29063741e+05, ], 'CountWeighted_rwgt63_pt200to300' : [ 4.59666990e+05, 4.59387400e+05, 4.60051630e+05, ], 'CountWeightedLHEWeightScale_rwgt63_pt200to300' : [ 6.22789678e+05, 5.61982963e+05, 5.10930975e+05, 5.09349584e+05, 4.59666990e+05, 4.17952259e+05, 4.24333167e+05, 3.82976309e+05, 3.48250730e+05, ], 'CountWeightedLHEEnvelope_rwgt63_pt200to300' : [ 6.22851263e+05, 3.48227756e+05, ], 'CountWeightedFull_rwgt63_pt200to300' : [ 4.59666990e+05, 4.59387400e+05, 4.60051630e+05, ], 'CountWeightedFullLHEWeightScale_rwgt63_pt200to300' : [ 6.22789678e+05, 5.61982963e+05, 5.10930975e+05, 5.09349584e+05, 4.59666990e+05, 4.17952259e+05, 4.24333167e+05, 3.82976309e+05, 3.48250730e+05, ], 'CountWeightedFullLHEEnvelope_rwgt63_pt200to300' : [ 6.22851263e+05, 3.48227756e+05, ], 'CountWeightedL1PrefireNom_rwgt63_pt200to300' : [ 4.41854482e+05, 4.41575204e+05, 4.42230858e+05, ], 'CountWeightedL1Prefire_rwgt63_pt200to300' : [ 4.41854482e+05, 4.37619987e+05, 4.46014182e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt63_pt200to300' : [ 5.98183970e+05, 5.40194277e+05, 4.91433831e+05, 4.89236393e+05, 4.41854482e+05, 4.02011437e+05, 4.07584386e+05, 3.68142083e+05, 3.34974087e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt63_pt200to300' : [ 5.98244828e+05, 3.34951400e+05, ], 'CountWeightedFullL1PrefireNom_rwgt63_pt200to300' : [ 4.41854482e+05, 4.41575204e+05, 4.42230858e+05, ], 'CountWeightedFullL1Prefire_rwgt63_pt200to300' : [ 4.41854482e+05, 4.37619987e+05, 4.46014182e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt63_pt200to300' : [ 5.98183970e+05, 5.40194277e+05, 4.91433831e+05, 4.89236393e+05, 4.41854482e+05, 4.02011437e+05, 4.07584386e+05, 3.68142083e+05, 3.34974087e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt63_pt200to300' : [ 5.98244828e+05, 3.34951400e+05, ], 'CountWeighted_rwgt63_ptGt300' : [ 2.45745549e+05, 2.45765401e+05, 2.45779911e+05, ], 'CountWeightedLHEWeightScale_rwgt63_ptGt300' : [ 3.35738711e+05, 2.98299988e+05, 2.67640368e+05, 2.76556262e+05, 2.45745549e+05, 2.20512058e+05, 2.31767648e+05, 2.05966722e+05, 1.84834947e+05, ], 'CountWeightedLHEEnvelope_rwgt63_ptGt300' : [ 3.35746716e+05, 1.84832725e+05, ], 'CountWeightedFull_rwgt63_ptGt300' : [ 2.45745549e+05, 2.45765401e+05, 2.45779911e+05, ], 'CountWeightedFullLHEWeightScale_rwgt63_ptGt300' : [ 3.35738711e+05, 2.98299988e+05, 2.67640368e+05, 2.76556262e+05, 2.45745549e+05, 2.20512058e+05, 2.31767648e+05, 2.05966722e+05, 1.84834947e+05, ], 'CountWeightedFullLHEEnvelope_rwgt63_ptGt300' : [ 3.35746716e+05, 1.84832725e+05, ], 'CountWeightedL1PrefireNom_rwgt63_ptGt300' : [ 2.36180651e+05, 2.36204060e+05, 2.36196734e+05, ], 'CountWeightedL1Prefire_rwgt63_ptGt300' : [ 2.36180651e+05, 2.33950856e+05, 2.38378602e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt63_ptGt300' : [ 3.22380954e+05, 2.86670354e+05, 2.57386197e+05, 2.65571077e+05, 2.36180651e+05, 2.12077702e+05, 2.22574108e+05, 1.97961190e+05, 1.77775134e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt63_ptGt300' : [ 3.22388802e+05, 1.77772977e+05, ], 'CountWeightedFullL1PrefireNom_rwgt63_ptGt300' : [ 2.36180651e+05, 2.36204060e+05, 2.36196734e+05, ], 'CountWeightedFullL1Prefire_rwgt63_ptGt300' : [ 2.36180651e+05, 2.33950856e+05, 2.38378602e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt63_ptGt300' : [ 3.22380954e+05, 2.86670354e+05, 2.57386197e+05, 2.65571077e+05, 2.36180651e+05, 2.12077702e+05, 2.22574108e+05, 1.97961190e+05, 1.77775134e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt63_ptGt300' : [ 3.22388802e+05, 1.77772977e+05, ], 'CountWeighted_rwgt63_pt300to450' : [ 1.91902400e+05, 1.91956975e+05, 1.91924712e+05, ], 'CountWeightedLHEWeightScale_rwgt63_pt300to450' : [ 2.61888058e+05, 2.33357984e+05, 2.09886458e+05, 2.15336430e+05, 1.91902400e+05, 1.72621662e+05, 1.80190688e+05, 1.60598615e+05, 1.44477747e+05, ], 'CountWeightedLHEEnvelope_rwgt63_pt300to450' : [ 2.61895875e+05, 1.44475581e+05, ], 'CountWeightedFull_rwgt63_pt300to450' : [ 1.91902400e+05, 1.91956975e+05, 1.91924712e+05, ], 'CountWeightedFullLHEWeightScale_rwgt63_pt300to450' : [ 2.61888058e+05, 2.33357984e+05, 2.09886458e+05, 2.15336430e+05, 1.91902400e+05, 1.72621662e+05, 1.80190688e+05, 1.60598615e+05, 1.44477747e+05, ], 'CountWeightedFullLHEEnvelope_rwgt63_pt300to450' : [ 2.61895875e+05, 1.44475581e+05, ], 'CountWeightedL1PrefireNom_rwgt63_pt300to450' : [ 1.84260828e+05, 1.84314576e+05, 1.84269074e+05, ], 'CountWeightedL1Prefire_rwgt63_pt300to450' : [ 1.84260828e+05, 1.82477192e+05, 1.86019611e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt63_pt300to450' : [ 2.51237713e+05, 2.24054334e+05, 2.01659136e+05, 2.06589781e+05, 1.84260828e+05, 1.65863412e+05, 1.72878917e+05, 1.54210048e+05, 1.38827159e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt63_pt300to450' : [ 2.51245371e+05, 1.38825053e+05, ], 'CountWeightedFullL1PrefireNom_rwgt63_pt300to450' : [ 1.84260828e+05, 1.84314576e+05, 1.84269074e+05, ], 'CountWeightedFullL1Prefire_rwgt63_pt300to450' : [ 1.84260828e+05, 1.82477192e+05, 1.86019611e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt63_pt300to450' : [ 2.51237713e+05, 2.24054334e+05, 2.01659136e+05, 2.06589781e+05, 1.84260828e+05, 1.65863412e+05, 1.72878917e+05, 1.54210048e+05, 1.38827159e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt63_pt300to450' : [ 2.51245371e+05, 1.38825053e+05, ], 'CountWeighted_rwgt63_ptGt450' : [ 5.38431481e+04, 5.38084122e+04, 5.38552076e+04, ], 'CountWeightedLHEWeightScale_rwgt63_ptGt450' : [ 7.38506433e+04, 6.49419884e+04, 5.77538976e+04, 6.12198234e+04, 5.38431481e+04, 4.78904058e+04, 5.15769741e+04, 4.53681009e+04, 4.03571928e+04, ], 'CountWeightedLHEEnvelope_rwgt63_ptGt450' : [ 7.38508346e+04, 4.03571392e+04, ], 'CountWeightedFull_rwgt63_ptGt450' : [ 5.38431481e+04, 5.38084122e+04, 5.38552076e+04, ], 'CountWeightedFullLHEWeightScale_rwgt63_ptGt450' : [ 7.38506433e+04, 6.49419884e+04, 5.77538976e+04, 6.12198234e+04, 5.38431481e+04, 4.78904058e+04, 5.15769741e+04, 4.53681009e+04, 4.03571928e+04, ], 'CountWeightedFullLHEEnvelope_rwgt63_ptGt450' : [ 7.38508346e+04, 4.03571392e+04, ], 'CountWeightedL1PrefireNom_rwgt63_ptGt450' : [ 5.19198243e+04, 5.18894735e+04, 5.19276521e+04, ], 'CountWeightedL1Prefire_rwgt63_ptGt450' : [ 5.19198243e+04, 5.14736739e+04, 5.23589893e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt63_ptGt450' : [ 7.11432318e+04, 6.26160108e+04, 5.57270689e+04, 5.89813131e+04, 5.19198243e+04, 4.62142922e+04, 4.96951834e+04, 4.37511392e+04, 3.89479577e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt63_ptGt450' : [ 7.11434219e+04, 3.89479045e+04, ], 'CountWeightedFullL1PrefireNom_rwgt63_ptGt450' : [ 5.19198243e+04, 5.18894735e+04, 5.19276521e+04, ], 'CountWeightedFullL1Prefire_rwgt63_ptGt450' : [ 5.19198243e+04, 5.14736739e+04, 5.23589893e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt63_ptGt450' : [ 7.11432318e+04, 6.26160108e+04, 5.57270689e+04, 5.89813131e+04, 5.19198243e+04, 4.62142922e+04, 4.96951834e+04, 4.37511392e+04, 3.89479577e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt63_ptGt450' : [ 7.11434219e+04, 3.89479045e+04, ], 'CountWeighted_rwgt64' : [ 3.74097689e+06, 3.74091209e+06, 3.74132923e+06, ], 'CountWeightedLHEWeightScale_rwgt64' : [ 4.98561411e+06, 4.58356443e+06, 4.23610019e+06, 4.06908071e+06, 3.74097689e+06, 3.45744555e+06, 3.38421493e+06, 3.11135646e+06, 2.87558112e+06, ], 'CountWeightedLHEEnvelope_rwgt64' : [ 4.98756186e+06, 2.87480984e+06, ], 'CountWeightedFull_rwgt64' : [ 3.74097689e+06, 3.74091209e+06, 3.74132923e+06, ], 'CountWeightedFullLHEWeightScale_rwgt64' : [ 4.98561411e+06, 4.58356443e+06, 4.23610019e+06, 4.06908071e+06, 3.74097689e+06, 3.45744555e+06, 3.38421493e+06, 3.11135646e+06, 2.87558112e+06, ], 'CountWeightedFullLHEEnvelope_rwgt64' : [ 4.98756186e+06, 2.87480984e+06, ], 'CountWeightedL1PrefireNom_rwgt64' : [ 3.61148416e+06, 3.61128685e+06, 3.61196534e+06, ], 'CountWeightedL1Prefire_rwgt64' : [ 3.61148416e+06, 3.57987485e+06, 3.64229612e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt64' : [ 4.81005615e+06, 4.42499102e+06, 4.09169181e+06, 3.92572166e+06, 3.61148416e+06, 3.33951815e+06, 3.26493531e+06, 3.00361176e+06, 2.77745738e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt64' : [ 4.81198309e+06, 2.77669384e+06, ], 'CountWeightedFullL1PrefireNom_rwgt64' : [ 3.61148416e+06, 3.61128685e+06, 3.61196534e+06, ], 'CountWeightedFullL1Prefire_rwgt64' : [ 3.61148416e+06, 3.57987485e+06, 3.64229612e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt64' : [ 4.81005615e+06, 4.42499102e+06, 4.09169181e+06, 3.92572166e+06, 3.61148416e+06, 3.33951815e+06, 3.26493531e+06, 3.00361176e+06, 2.77745738e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt64' : [ 4.81198309e+06, 2.77669384e+06, ], 'CountWeighted_rwgt64_fwd' : [ 4.67014090e+04, 4.67081654e+04, 4.66879165e+04, ], 'CountWeightedLHEWeightScale_rwgt64_fwd' : [ 6.22950837e+04, 5.72112142e+04, 5.29465656e+04, 5.08449444e+04, 4.67014090e+04, 4.32246429e+04, 4.22874487e+04, 3.88452428e+04, 3.59563221e+04, ], 'CountWeightedLHEEnvelope_rwgt64_fwd' : [ 6.23030787e+04, 3.59528876e+04, ], 'CountWeightedFull_rwgt64_fwd' : [ 4.67014090e+04, 4.67081654e+04, 4.66879165e+04, ], 'CountWeightedFullLHEWeightScale_rwgt64_fwd' : [ 6.22950837e+04, 5.72112142e+04, 5.29465656e+04, 5.08449444e+04, 4.67014090e+04, 4.32246429e+04, 4.22874487e+04, 3.88452428e+04, 3.59563221e+04, ], 'CountWeightedFullLHEEnvelope_rwgt64_fwd' : [ 6.23030787e+04, 3.59528876e+04, ], 'CountWeightedL1PrefireNom_rwgt64_fwd' : [ 4.00773483e+04, 4.00689978e+04, 4.00816497e+04, ], 'CountWeightedL1Prefire_rwgt64_fwd' : [ 4.00773483e+04, 3.86153610e+04, 4.15538567e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt64_fwd' : [ 5.34287039e+04, 4.91094186e+04, 4.54812499e+04, 4.35966196e+04, 4.00773483e+04, 3.71204060e+04, 3.62510776e+04, 3.33282303e+04, 3.08718814e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt64_fwd' : [ 5.34356725e+04, 3.08689086e+04, ], 'CountWeightedFullL1PrefireNom_rwgt64_fwd' : [ 4.00773483e+04, 4.00689978e+04, 4.00816497e+04, ], 'CountWeightedFullL1Prefire_rwgt64_fwd' : [ 4.00773483e+04, 3.86153610e+04, 4.15538567e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt64_fwd' : [ 5.34287039e+04, 4.91094186e+04, 4.54812499e+04, 4.35966196e+04, 4.00773483e+04, 3.71204060e+04, 3.62510776e+04, 3.33282303e+04, 3.08718814e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt64_fwd' : [ 5.34356725e+04, 3.08689086e+04, ], 'CountWeighted_rwgt64_pt0to60' : [ 6.86067925e+05, 6.86202747e+05, 6.85905762e+05, ], 'CountWeightedLHEWeightScale_rwgt64_pt0to60' : [ 9.02204408e+05, 8.41419019e+05, 7.87183078e+05, 7.35662771e+05, 6.86067925e+05, 6.41824503e+05, 6.11367306e+05, 5.70130721e+05, 5.33348363e+05, ], 'CountWeightedLHEEnvelope_rwgt64_pt0to60' : [ 9.02886179e+05, 5.33079791e+05, ], 'CountWeightedFull_rwgt64_pt0to60' : [ 6.86067925e+05, 6.86202747e+05, 6.85905762e+05, ], 'CountWeightedFullLHEWeightScale_rwgt64_pt0to60' : [ 9.02204408e+05, 8.41419019e+05, 7.87183078e+05, 7.35662771e+05, 6.86067925e+05, 6.41824503e+05, 6.11367306e+05, 5.70130721e+05, 5.33348363e+05, ], 'CountWeightedFullLHEEnvelope_rwgt64_pt0to60' : [ 9.02886179e+05, 5.33079791e+05, ], 'CountWeightedL1PrefireNom_rwgt64_pt0to60' : [ 6.66373035e+05, 6.66478121e+05, 6.66244407e+05, ], 'CountWeightedL1Prefire_rwgt64_pt0to60' : [ 6.66373035e+05, 6.61361087e+05, 6.71191039e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt64_pt0to60' : [ 8.75919426e+05, 8.17285620e+05, 7.64901267e+05, 7.14210932e+05, 6.66373035e+05, 6.23641266e+05, 5.93526862e+05, 5.53752038e+05, 5.18227397e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt64_pt0to60' : [ 8.76594434e+05, 5.17961192e+05, ], 'CountWeightedFullL1PrefireNom_rwgt64_pt0to60' : [ 6.66373035e+05, 6.66478121e+05, 6.66244407e+05, ], 'CountWeightedFullL1Prefire_rwgt64_pt0to60' : [ 6.66373035e+05, 6.61361087e+05, 6.71191039e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt64_pt0to60' : [ 8.75919426e+05, 8.17285620e+05, 7.64901267e+05, 7.14210932e+05, 6.66373035e+05, 6.23641266e+05, 5.93526862e+05, 5.53752038e+05, 5.18227397e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt64_pt0to60' : [ 8.76594434e+05, 5.17961192e+05, ], 'CountWeighted_rwgt64_pt60to120' : [ 1.19399580e+06, 1.19400646e+06, 1.19401432e+06, ], 'CountWeightedLHEWeightScale_rwgt64_pt60to120' : [ 1.58245210e+06, 1.46626889e+06, 1.36396529e+06, 1.28857437e+06, 1.19399580e+06, 1.11072227e+06, 1.06966339e+06, 9.91170538e+05, 9.22063883e+05, ], 'CountWeightedLHEEnvelope_rwgt64_pt60to120' : [ 1.58325580e+06, 9.21745889e+05, ], 'CountWeightedFull_rwgt64_pt60to120' : [ 1.19399580e+06, 1.19400646e+06, 1.19401432e+06, ], 'CountWeightedFullLHEWeightScale_rwgt64_pt60to120' : [ 1.58245210e+06, 1.46626889e+06, 1.36396529e+06, 1.28857437e+06, 1.19399580e+06, 1.11072227e+06, 1.06966339e+06, 9.91170538e+05, 9.22063883e+05, ], 'CountWeightedFullLHEEnvelope_rwgt64_pt60to120' : [ 1.58325580e+06, 9.21745889e+05, ], 'CountWeightedL1PrefireNom_rwgt64_pt60to120' : [ 1.15684973e+06, 1.15680260e+06, 1.15693075e+06, ], 'CountWeightedL1Prefire_rwgt64_pt60to120' : [ 1.15684973e+06, 1.14756051e+06, 1.16584261e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt64_pt60to120' : [ 1.53246724e+06, 1.42069110e+06, 1.32213235e+06, 1.24783763e+06, 1.15684973e+06, 1.07662713e+06, 1.03582372e+06, 9.60312752e+05, 8.93739629e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt64_pt60to120' : [ 1.53326261e+06, 8.93424650e+05, ], 'CountWeightedFullL1PrefireNom_rwgt64_pt60to120' : [ 1.15684973e+06, 1.15680260e+06, 1.15693075e+06, ], 'CountWeightedFullL1Prefire_rwgt64_pt60to120' : [ 1.15684973e+06, 1.14756051e+06, 1.16584261e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt64_pt60to120' : [ 1.53246724e+06, 1.42069110e+06, 1.32213235e+06, 1.24783763e+06, 1.15684973e+06, 1.07662713e+06, 1.03582372e+06, 9.60312752e+05, 8.93739629e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt64_pt60to120' : [ 1.53326261e+06, 8.93424650e+05, ], 'CountWeighted_rwgt64_pt120to200' : [ 1.02667053e+06, 1.02673471e+06, 1.02675453e+06, ], 'CountWeightedLHEWeightScale_rwgt64_pt120to200' : [ 1.37269378e+06, 1.25883016e+06, 1.16069756e+06, 1.11945195e+06, 1.02667053e+06, 9.46706635e+05, 9.30413985e+05, 8.53351796e+05, 7.86934925e+05, ], 'CountWeightedLHEEnvelope_rwgt64_pt120to200' : [ 1.37305575e+06, 7.86787029e+05, ], 'CountWeightedFull_rwgt64_pt120to200' : [ 1.02667053e+06, 1.02673471e+06, 1.02675453e+06, ], 'CountWeightedFullLHEWeightScale_rwgt64_pt120to200' : [ 1.37269378e+06, 1.25883016e+06, 1.16069756e+06, 1.11945195e+06, 1.02667053e+06, 9.46706635e+05, 9.30413985e+05, 8.53351796e+05, 7.86934925e+05, ], 'CountWeightedFullLHEEnvelope_rwgt64_pt120to200' : [ 1.37305575e+06, 7.86787029e+05, ], 'CountWeightedL1PrefireNom_rwgt64_pt120to200' : [ 9.90706284e+05, 9.90739665e+05, 9.90826263e+05, ], 'CountWeightedL1Prefire_rwgt64_pt120to200' : [ 9.90706284e+05, 9.81949946e+05, 9.99255536e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt64_pt120to200' : [ 1.32378953e+06, 1.21474437e+06, 1.12062552e+06, 1.07956057e+06, 9.90706284e+05, 9.14013778e+05, 8.97252542e+05, 8.23452676e+05, 7.59753661e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt64_pt120to200' : [ 1.32414753e+06, 7.59607321e+05, ], 'CountWeightedFullL1PrefireNom_rwgt64_pt120to200' : [ 9.90706284e+05, 9.90739665e+05, 9.90826263e+05, ], 'CountWeightedFullL1Prefire_rwgt64_pt120to200' : [ 9.90706284e+05, 9.81949946e+05, 9.99255536e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt64_pt120to200' : [ 1.32378953e+06, 1.21474437e+06, 1.12062552e+06, 1.07956057e+06, 9.90706284e+05, 9.14013778e+05, 8.97252542e+05, 8.23452676e+05, 7.59753661e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt64_pt120to200' : [ 1.32414753e+06, 7.59607321e+05, ], 'CountWeighted_rwgt64_pt200to300' : [ 5.18976878e+05, 5.18695567e+05, 5.19356464e+05, ], 'CountWeightedLHEWeightScale_rwgt64_pt200to300' : [ 7.00287901e+05, 6.34031752e+05, 5.78234387e+05, 5.73146704e+05, 5.18976878e+05, 4.73355191e+05, 4.77769082e+05, 4.32652995e+05, 3.94654533e+05, ], 'CountWeightedLHEEnvelope_rwgt64_pt200to300' : [ 7.00370626e+05, 3.94623582e+05, ], 'CountWeightedFull_rwgt64_pt200to300' : [ 5.18976878e+05, 5.18695567e+05, 5.19356464e+05, ], 'CountWeightedFullLHEWeightScale_rwgt64_pt200to300' : [ 7.00287901e+05, 6.34031752e+05, 5.78234387e+05, 5.73146704e+05, 5.18976878e+05, 4.73355191e+05, 4.77769082e+05, 4.32652995e+05, 3.94654533e+05, ], 'CountWeightedFullLHEEnvelope_rwgt64_pt200to300' : [ 7.00370626e+05, 3.94623582e+05, ], 'CountWeightedL1PrefireNom_rwgt64_pt200to300' : [ 4.99184762e+05, 4.98902459e+05, 4.99557879e+05, ], 'CountWeightedL1Prefire_rwgt64_pt200to300' : [ 4.99184762e+05, 4.94486502e+05, 5.03801541e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt64_pt200to300' : [ 6.73068983e+05, 6.09838595e+05, 5.56511292e+05, 5.50882091e+05, 4.99184762e+05, 4.55581940e+05, 4.59218164e+05, 4.16160567e+05, 3.79842940e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt64_pt200to300' : [ 6.73150747e+05, 3.79812371e+05, ], 'CountWeightedFullL1PrefireNom_rwgt64_pt200to300' : [ 4.99184762e+05, 4.98902459e+05, 4.99557879e+05, ], 'CountWeightedFullL1Prefire_rwgt64_pt200to300' : [ 4.99184762e+05, 4.94486502e+05, 5.03801541e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt64_pt200to300' : [ 6.73068983e+05, 6.09838595e+05, 5.56511292e+05, 5.50882091e+05, 4.99184762e+05, 4.55581940e+05, 4.59218164e+05, 4.16160567e+05, 3.79842940e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt64_pt200to300' : [ 6.73150747e+05, 3.79812371e+05, ], 'CountWeighted_rwgt64_ptGt300' : [ 2.68565326e+05, 2.68565172e+05, 2.68612128e+05, ], 'CountWeightedLHEWeightScale_rwgt64_ptGt300' : [ 3.65681628e+05, 3.25803618e+05, 2.93071914e+05, 3.01400471e+05, 2.68565326e+05, 2.41612258e+05, 2.52713979e+05, 2.25205934e+05, 2.02624107e+05, ], 'CountWeightedLHEEnvelope_rwgt64_ptGt300' : [ 3.65691785e+05, 2.02621282e+05, ], 'CountWeightedFull_rwgt64_ptGt300' : [ 2.68565326e+05, 2.68565172e+05, 2.68612128e+05, ], 'CountWeightedFullLHEWeightScale_rwgt64_ptGt300' : [ 3.65681628e+05, 3.25803618e+05, 2.93071914e+05, 3.01400471e+05, 2.68565326e+05, 2.41612258e+05, 2.52713979e+05, 2.25205934e+05, 2.02624107e+05, ], 'CountWeightedFullLHEEnvelope_rwgt64_ptGt300' : [ 3.65691785e+05, 2.02621282e+05, ], 'CountWeightedL1PrefireNom_rwgt64_ptGt300' : [ 2.58294502e+05, 2.58296548e+05, 2.58325371e+05, ], 'CountWeightedL1Prefire_rwgt64_ptGt300' : [ 2.58294502e+05, 2.55902181e+05, 2.60652884e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt64_ptGt300' : [ 3.51380752e+05, 3.13321884e+05, 2.82041333e+05, 2.89633941e+05, 2.58294502e+05, 2.32534662e+05, 2.42862496e+05, 2.16605960e+05, 1.95022644e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt64_ptGt300' : [ 3.51390718e+05, 1.95019899e+05, ], 'CountWeightedFullL1PrefireNom_rwgt64_ptGt300' : [ 2.58294502e+05, 2.58296548e+05, 2.58325371e+05, ], 'CountWeightedFullL1Prefire_rwgt64_ptGt300' : [ 2.58294502e+05, 2.55902181e+05, 2.60652884e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt64_ptGt300' : [ 3.51380752e+05, 3.13321884e+05, 2.82041333e+05, 2.89633941e+05, 2.58294502e+05, 2.32534662e+05, 2.42862496e+05, 2.16605960e+05, 1.95022644e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt64_ptGt300' : [ 3.51390718e+05, 1.95019899e+05, ], 'CountWeighted_rwgt64_pt300to450' : [ 2.09954591e+05, 2.09985360e+05, 2.09991586e+05, ], 'CountWeightedLHEWeightScale_rwgt64_pt300to450' : [ 2.85517358e+05, 2.55146962e+05, 2.30102124e+05, 2.34913648e+05, 2.09954591e+05, 1.89370218e+05, 1.96676161e+05, 1.75799739e+05, 1.58581005e+05, ], 'CountWeightedLHEEnvelope_rwgt64_pt300to450' : [ 2.85527270e+05, 1.58578253e+05, ], 'CountWeightedFull_rwgt64_pt300to450' : [ 2.09954591e+05, 2.09985360e+05, 2.09991586e+05, ], 'CountWeightedFullLHEWeightScale_rwgt64_pt300to450' : [ 2.85517358e+05, 2.55146962e+05, 2.30102124e+05, 2.34913648e+05, 2.09954591e+05, 1.89370218e+05, 1.96676161e+05, 1.75799739e+05, 1.58581005e+05, ], 'CountWeightedFullLHEEnvelope_rwgt64_pt300to450' : [ 2.85527270e+05, 1.58578253e+05, ], 'CountWeightedL1PrefireNom_rwgt64_pt300to450' : [ 2.01738611e+05, 2.01767754e+05, 2.01763292e+05, ], 'CountWeightedL1Prefire_rwgt64_pt300to450' : [ 2.01738611e+05, 1.99822742e+05, 2.03627945e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt64_pt300to450' : [ 2.74103373e+05, 2.45149345e+05, 2.21239322e+05, 2.25534878e+05, 2.01738611e+05, 1.82085971e+05, 1.88832540e+05, 1.68927867e+05, 1.52487844e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt64_pt300to450' : [ 2.74113094e+05, 1.52485166e+05, ], 'CountWeightedFullL1PrefireNom_rwgt64_pt300to450' : [ 2.01738611e+05, 2.01767754e+05, 2.01763292e+05, ], 'CountWeightedFullL1Prefire_rwgt64_pt300to450' : [ 2.01738611e+05, 1.99822742e+05, 2.03627945e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt64_pt300to450' : [ 2.74103373e+05, 2.45149345e+05, 2.21239322e+05, 2.25534878e+05, 2.01738611e+05, 1.82085971e+05, 1.88832540e+05, 1.68927867e+05, 1.52487844e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt64_pt300to450' : [ 2.74113094e+05, 1.52485166e+05, ], 'CountWeighted_rwgt64_ptGt450' : [ 5.86107299e+04, 5.85798023e+04, 5.86205572e+04, ], 'CountWeightedLHEWeightScale_rwgt64_ptGt450' : [ 8.01642535e+04, 7.06566513e+04, 6.29697775e+04, 6.64868135e+04, 5.86107299e+04, 5.22420606e+04, 5.60378472e+04, 4.94061808e+04, 4.40431089e+04, ], 'CountWeightedLHEEnvelope_rwgt64_ptGt450' : [ 8.01644973e+04, 4.40430392e+04, ], 'CountWeightedFull_rwgt64_ptGt450' : [ 5.86107299e+04, 5.85798023e+04, 5.86205572e+04, ], 'CountWeightedFullLHEWeightScale_rwgt64_ptGt450' : [ 8.01642535e+04, 7.06566513e+04, 6.29697775e+04, 6.64868135e+04, 5.86107299e+04, 5.22420606e+04, 5.60378472e+04, 4.94061808e+04, 4.40431089e+04, ], 'CountWeightedFullLHEEnvelope_rwgt64_ptGt450' : [ 8.01644973e+04, 4.40430392e+04, ], 'CountWeightedL1PrefireNom_rwgt64_ptGt450' : [ 5.65558847e+04, 5.65287814e+04, 5.65620644e+04, ], 'CountWeightedL1Prefire_rwgt64_ptGt450' : [ 5.65558847e+04, 5.60794635e+04, 5.70249393e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt64_ptGt450' : [ 7.72773919e+04, 6.81725598e+04, 6.08020040e+04, 6.40990424e+04, 5.65558847e+04, 5.04486944e+04, 5.40299580e+04, 4.76780939e+04, 4.25347991e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt64_ptGt450' : [ 7.72776326e+04, 4.25347306e+04, ], 'CountWeightedFullL1PrefireNom_rwgt64_ptGt450' : [ 5.65558847e+04, 5.65287814e+04, 5.65620644e+04, ], 'CountWeightedFullL1Prefire_rwgt64_ptGt450' : [ 5.65558847e+04, 5.60794635e+04, 5.70249393e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt64_ptGt450' : [ 7.72773919e+04, 6.81725598e+04, 6.08020040e+04, 6.40990424e+04, 5.65558847e+04, 5.04486944e+04, 5.40299580e+04, 4.76780939e+04, 4.25347991e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt64_ptGt450' : [ 7.72776326e+04, 4.25347306e+04, ], 'CountWeighted_rwgt65' : [ 4.60297897e+06, 4.60288753e+06, 4.60332304e+06, ], 'CountWeightedLHEWeightScale_rwgt65' : [ 6.11211698e+06, 5.63798264e+06, 5.22616786e+06, 4.99006198e+06, 4.60297897e+06, 4.26681162e+06, 4.15126276e+06, 3.82924865e+06, 3.54961588e+06, ], 'CountWeightedLHEEnvelope_rwgt65' : [ 6.11482022e+06, 3.54854547e+06, ], 'CountWeightedFull_rwgt65' : [ 4.60297897e+06, 4.60288753e+06, 4.60332304e+06, ], 'CountWeightedFullLHEWeightScale_rwgt65' : [ 6.11211698e+06, 5.63798264e+06, 5.22616786e+06, 4.99006198e+06, 4.60297897e+06, 4.26681162e+06, 4.15126276e+06, 3.82924865e+06, 3.54961588e+06, ], 'CountWeightedFullLHEEnvelope_rwgt65' : [ 6.11482022e+06, 3.54854547e+06, ], 'CountWeightedL1PrefireNom_rwgt65' : [ 4.44668446e+06, 4.44642383e+06, 4.44719836e+06, ], 'CountWeightedL1Prefire_rwgt65' : [ 4.44668446e+06, 4.40850755e+06, 4.48388817e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt65' : [ 5.90116134e+06, 5.44665967e+06, 5.05130794e+06, 4.81773109e+06, 4.44668446e+06, 4.12396198e+06, 4.00783095e+06, 3.69916283e+06, 3.43071882e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt65' : [ 5.90383449e+06, 3.42965913e+06, ], 'CountWeightedFullL1PrefireNom_rwgt65' : [ 4.44668446e+06, 4.44642383e+06, 4.44719836e+06, ], 'CountWeightedFullL1Prefire_rwgt65' : [ 4.44668446e+06, 4.40850755e+06, 4.48388817e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt65' : [ 5.90116134e+06, 5.44665967e+06, 5.05130794e+06, 4.81773109e+06, 4.44668446e+06, 4.12396198e+06, 4.00783095e+06, 3.69916283e+06, 3.43071882e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt65' : [ 5.90383449e+06, 3.42965913e+06, ], 'CountWeighted_rwgt65_fwd' : [ 6.07869127e+04, 6.07990010e+04, 6.07673995e+04, ], 'CountWeightedLHEWeightScale_rwgt65_fwd' : [ 8.09159166e+04, 7.44671354e+04, 6.90339169e+04, 6.60435385e+04, 6.07869127e+04, 5.63570178e+04, 5.49281250e+04, 5.05608056e+04, 4.68796074e+04, ], 'CountWeightedLHEEnvelope_rwgt65_fwd' : [ 8.09267664e+04, 4.68749414e+04, ], 'CountWeightedFull_rwgt65_fwd' : [ 6.07869127e+04, 6.07990010e+04, 6.07673995e+04, ], 'CountWeightedFullLHEWeightScale_rwgt65_fwd' : [ 8.09159166e+04, 7.44671354e+04, 6.90339169e+04, 6.60435385e+04, 6.07869127e+04, 5.63570178e+04, 5.49281250e+04, 5.05608056e+04, 4.68796074e+04, ], 'CountWeightedFullLHEEnvelope_rwgt65_fwd' : [ 8.09267664e+04, 4.68749414e+04, ], 'CountWeightedL1PrefireNom_rwgt65_fwd' : [ 5.21932072e+04, 5.21848189e+04, 5.21974440e+04, ], 'CountWeightedL1Prefire_rwgt65_fwd' : [ 5.21932072e+04, 5.02942734e+04, 5.41109968e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt65_fwd' : [ 6.94421075e+04, 6.39564763e+04, 5.93292361e+04, 5.66632896e+04, 5.21932072e+04, 4.84216768e+04, 4.71161052e+04, 4.34032492e+04, 4.02699806e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt65_fwd' : [ 6.94515672e+04, 4.02659381e+04, ], 'CountWeightedFullL1PrefireNom_rwgt65_fwd' : [ 5.21932072e+04, 5.21848189e+04, 5.21974440e+04, ], 'CountWeightedFullL1Prefire_rwgt65_fwd' : [ 5.21932072e+04, 5.02942734e+04, 5.41109968e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt65_fwd' : [ 6.94421075e+04, 6.39564763e+04, 5.93292361e+04, 5.66632896e+04, 5.21932072e+04, 4.84216768e+04, 4.71161052e+04, 4.34032492e+04, 4.02699806e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt65_fwd' : [ 6.94515672e+04, 4.02659381e+04, ], 'CountWeighted_rwgt65_pt0to60' : [ 8.99551856e+05, 8.99687472e+05, 8.99400374e+05, ], 'CountWeightedLHEWeightScale_rwgt65_pt0to60' : [ 1.18034631e+06, 1.10306084e+06, 1.03384713e+06, 9.62628001e+05, 8.99551856e+05, 8.43074481e+05, 8.00096755e+05, 7.47638551e+05, 7.00674891e+05, ], 'CountWeightedLHEEnvelope_rwgt65_pt0to60' : [ 1.18130695e+06, 7.00296481e+05, ], 'CountWeightedFull_rwgt65_pt0to60' : [ 8.99551856e+05, 8.99687472e+05, 8.99400374e+05, ], 'CountWeightedFullLHEWeightScale_rwgt65_pt0to60' : [ 1.18034631e+06, 1.10306084e+06, 1.03384713e+06, 9.62628001e+05, 8.99551856e+05, 8.43074481e+05, 8.00096755e+05, 7.47638551e+05, 7.00674891e+05, ], 'CountWeightedFullLHEEnvelope_rwgt65_pt0to60' : [ 1.18130695e+06, 7.00296481e+05, ], 'CountWeightedL1PrefireNom_rwgt65_pt0to60' : [ 8.74243410e+05, 8.74342068e+05, 8.74133983e+05, ], 'CountWeightedL1Prefire_rwgt65_pt0to60' : [ 8.74243410e+05, 8.67793702e+05, 8.80440027e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt65_pt0to60' : [ 1.14666835e+06, 1.07205577e+06, 1.00515082e+06, 9.35135802e+05, 8.74243410e+05, 8.19651724e+05, 7.77228916e+05, 7.26587776e+05, 6.81193592e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt65_pt0to60' : [ 1.14761942e+06, 6.80818486e+05, ], 'CountWeightedFullL1PrefireNom_rwgt65_pt0to60' : [ 8.74243410e+05, 8.74342068e+05, 8.74133983e+05, ], 'CountWeightedFullL1Prefire_rwgt65_pt0to60' : [ 8.74243410e+05, 8.67793702e+05, 8.80440027e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt65_pt0to60' : [ 1.14666835e+06, 1.07205577e+06, 1.00515082e+06, 9.35135802e+05, 8.74243410e+05, 8.19651724e+05, 7.77228916e+05, 7.26587776e+05, 6.81193592e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt65_pt0to60' : [ 1.14761942e+06, 6.80818486e+05, ], 'CountWeighted_rwgt65_pt60to120' : [ 1.51706274e+06, 1.51709481e+06, 1.51705579e+06, ], 'CountWeightedLHEWeightScale_rwgt65_pt60to120' : [ 2.00474975e+06, 1.86228308e+06, 1.73631858e+06, 1.63309534e+06, 1.51706274e+06, 1.41447997e+06, 1.35609663e+06, 1.25975859e+06, 1.17459401e+06, ], 'CountWeightedLHEEnvelope_rwgt65_pt60to120' : [ 2.00586790e+06, 1.17415177e+06, ], 'CountWeightedFull_rwgt65_pt60to120' : [ 1.51706274e+06, 1.51709481e+06, 1.51705579e+06, ], 'CountWeightedFullLHEWeightScale_rwgt65_pt60to120' : [ 2.00474975e+06, 1.86228308e+06, 1.73631858e+06, 1.63309534e+06, 1.51706274e+06, 1.41447997e+06, 1.35609663e+06, 1.25975859e+06, 1.17459401e+06, ], 'CountWeightedFullLHEEnvelope_rwgt65_pt60to120' : [ 2.00586790e+06, 1.17415177e+06, ], 'CountWeightedL1PrefireNom_rwgt65_pt60to120' : [ 1.47070508e+06, 1.47066370e+06, 1.47077836e+06, ], 'CountWeightedL1Prefire_rwgt65_pt60to120' : [ 1.47070508e+06, 1.45911340e+06, 1.48192647e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt65_pt60to120' : [ 1.94260413e+06, 1.80542911e+06, 1.68398248e+06, 1.58242362e+06, 1.47070508e+06, 1.37180445e+06, 1.31398757e+06, 1.22123412e+06, 1.13912898e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt65_pt60to120' : [ 1.94371085e+06, 1.13869086e+06, ], 'CountWeightedFullL1PrefireNom_rwgt65_pt60to120' : [ 1.47070508e+06, 1.47066370e+06, 1.47077836e+06, ], 'CountWeightedFullL1Prefire_rwgt65_pt60to120' : [ 1.47070508e+06, 1.45911340e+06, 1.48192647e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt65_pt60to120' : [ 1.94260413e+06, 1.80542911e+06, 1.68398248e+06, 1.58242362e+06, 1.47070508e+06, 1.37180445e+06, 1.31398757e+06, 1.22123412e+06, 1.13912898e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt65_pt60to120' : [ 1.94371085e+06, 1.13869086e+06, ], 'CountWeighted_rwgt65_pt120to200' : [ 1.23765073e+06, 1.23768300e+06, 1.23774386e+06, ], 'CountWeightedLHEWeightScale_rwgt65_pt120to200' : [ 1.64881157e+06, 1.51665553e+06, 1.40231643e+06, 1.34540322e+06, 1.23765073e+06, 1.14442550e+06, 1.11874026e+06, 1.02919819e+06, 9.51728202e+05, ], 'CountWeightedLHEEnvelope_rwgt65_pt120to200' : [ 1.64930307e+06, 9.51527350e+05, ], 'CountWeightedFull_rwgt65_pt120to200' : [ 1.23765073e+06, 1.23768300e+06, 1.23774386e+06, ], 'CountWeightedFullLHEWeightScale_rwgt65_pt120to200' : [ 1.64881157e+06, 1.51665553e+06, 1.40231643e+06, 1.34540322e+06, 1.23765073e+06, 1.14442550e+06, 1.11874026e+06, 1.02919819e+06, 9.51728202e+05, ], 'CountWeightedFullLHEEnvelope_rwgt65_pt120to200' : [ 1.64930307e+06, 9.51527350e+05, ], 'CountWeightedL1PrefireNom_rwgt65_pt120to200' : [ 1.19496574e+06, 1.19496184e+06, 1.19510109e+06, ], 'CountWeightedL1Prefire_rwgt65_pt120to200' : [ 1.19496574e+06, 1.18458645e+06, 1.20510299e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt65_pt120to200' : [ 1.59102708e+06, 1.46436416e+06, 1.35462155e+06, 1.29823856e+06, 1.19496574e+06, 1.10548970e+06, 1.07951254e+06, 9.93693913e+05, 9.19339985e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt65_pt120to200' : [ 1.59151322e+06, 9.19141230e+05, ], 'CountWeightedFullL1PrefireNom_rwgt65_pt120to200' : [ 1.19496574e+06, 1.19496184e+06, 1.19510109e+06, ], 'CountWeightedFullL1Prefire_rwgt65_pt120to200' : [ 1.19496574e+06, 1.18458645e+06, 1.20510299e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt65_pt120to200' : [ 1.59102708e+06, 1.46436416e+06, 1.35462155e+06, 1.29823856e+06, 1.19496574e+06, 1.10548970e+06, 1.07951254e+06, 9.93693913e+05, 9.19339985e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt65_pt120to200' : [ 1.59151322e+06, 9.19141230e+05, ], 'CountWeighted_rwgt65_pt200to300' : [ 5.91455681e+05, 5.91175526e+05, 5.91826230e+05, ], 'CountWeightedLHEWeightScale_rwgt65_pt200to300' : [ 7.94993899e+05, 7.22077965e+05, 6.60481184e+05, 6.51109518e+05, 5.91455681e+05, 5.41059410e+05, 5.43070159e+05, 4.93359783e+05, 4.51361537e+05, ], 'CountWeightedLHEEnvelope_rwgt65_pt200to300' : [ 7.95102453e+05, 4.51320852e+05, ], 'CountWeightedFull_rwgt65_pt200to300' : [ 5.91455681e+05, 5.91175526e+05, 5.91826230e+05, ], 'CountWeightedFullLHEWeightScale_rwgt65_pt200to300' : [ 7.94993899e+05, 7.22077965e+05, 6.60481184e+05, 6.51109518e+05, 5.91455681e+05, 5.41059410e+05, 5.43070159e+05, 4.93359783e+05, 4.51361537e+05, ], 'CountWeightedFullLHEEnvelope_rwgt65_pt200to300' : [ 7.95102453e+05, 4.51320852e+05, ], 'CountWeightedL1PrefireNom_rwgt65_pt200to300' : [ 5.69241450e+05, 5.68958565e+05, 5.69607948e+05, ], 'CountWeightedL1Prefire_rwgt65_pt200to300' : [ 5.69241450e+05, 5.63975977e+05, 5.74417330e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt65_pt200to300' : [ 7.64577278e+05, 6.94942573e+05, 6.36034934e+05, 6.26212009e+05, 5.69241450e+05, 5.21044235e+05, 5.22313774e+05, 4.74838468e+05, 4.34672128e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt65_pt200to300' : [ 7.64684560e+05, 4.34631946e+05, ], 'CountWeightedFullL1PrefireNom_rwgt65_pt200to300' : [ 5.69241450e+05, 5.68958565e+05, 5.69607948e+05, ], 'CountWeightedFullL1Prefire_rwgt65_pt200to300' : [ 5.69241450e+05, 5.63975977e+05, 5.74417330e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt65_pt200to300' : [ 7.64577278e+05, 6.94942573e+05, 6.36034934e+05, 6.26212009e+05, 5.69241450e+05, 5.21044235e+05, 5.22313774e+05, 4.74838468e+05, 4.34672128e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt65_pt200to300' : [ 7.64684560e+05, 4.34631946e+05, ], 'CountWeighted_rwgt65_ptGt300' : [ 2.96470728e+05, 2.96447379e+05, 2.96531233e+05, ], 'CountWeightedLHEWeightScale_rwgt65_ptGt300' : [ 4.02297638e+05, 3.59436706e+05, 3.24171081e+05, 3.31781388e+05, 2.96470728e+05, 2.67414851e+05, 2.78328414e+05, 2.48732764e+05, 2.24377726e+05, ], 'CountWeightedLHEEnvelope_rwgt65_ptGt300' : [ 4.02310432e+05, 2.24374167e+05, ], 'CountWeightedFull_rwgt65_ptGt300' : [ 2.96470728e+05, 2.96447379e+05, 2.96531233e+05, ], 'CountWeightedFullLHEWeightScale_rwgt65_ptGt300' : [ 4.02297638e+05, 3.59436706e+05, 3.24171081e+05, 3.31781388e+05, 2.96470728e+05, 2.67414851e+05, 2.78328414e+05, 2.48732764e+05, 2.24377726e+05, ], 'CountWeightedFullLHEEnvelope_rwgt65_ptGt300' : [ 4.02310432e+05, 2.24374167e+05, ], 'CountWeightedL1PrefireNom_rwgt65_ptGt300' : [ 2.85335633e+05, 2.85312690e+05, 2.85383150e+05, ], 'CountWeightedL1Prefire_rwgt65_ptGt300' : [ 2.85335633e+05, 2.82744337e+05, 2.87890395e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt65_ptGt300' : [ 3.86842118e+05, 3.45911782e+05, 3.12189920e+05, 3.19058235e+05, 2.85335633e+05, 2.57549714e+05, 2.67671398e+05, 2.39405059e+05, 2.16113140e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt65_ptGt300' : [ 3.86854669e+05, 2.16109673e+05, ], 'CountWeightedFullL1PrefireNom_rwgt65_ptGt300' : [ 2.85335633e+05, 2.85312690e+05, 2.85383150e+05, ], 'CountWeightedFullL1Prefire_rwgt65_ptGt300' : [ 2.85335633e+05, 2.82744337e+05, 2.87890395e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt65_ptGt300' : [ 3.86842118e+05, 3.45911782e+05, 3.12189920e+05, 3.19058235e+05, 2.85335633e+05, 2.57549714e+05, 2.67671398e+05, 2.39405059e+05, 2.16113140e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt65_ptGt300' : [ 3.86854669e+05, 2.16109673e+05, ], 'CountWeighted_rwgt65_pt300to450' : [ 2.32046999e+05, 2.32048884e+05, 2.32101188e+05, ], 'CountWeightedLHEWeightScale_rwgt65_pt300to450' : [ 3.14435613e+05, 2.81812389e+05, 2.54841616e+05, 2.58872824e+05, 2.32046999e+05, 2.09866786e+05, 2.16851653e+05, 1.94403041e+05, 1.75840316e+05, ], 'CountWeightedLHEEnvelope_rwgt65_pt300to450' : [ 3.14448101e+05, 1.75836847e+05, ], 'CountWeightedFull_rwgt65_pt300to450' : [ 2.32046999e+05, 2.32048884e+05, 2.32101188e+05, ], 'CountWeightedFullLHEWeightScale_rwgt65_pt300to450' : [ 3.14435613e+05, 2.81812389e+05, 2.54841616e+05, 2.58872824e+05, 2.32046999e+05, 2.09866786e+05, 2.16851653e+05, 1.94403041e+05, 1.75840316e+05, ], 'CountWeightedFullLHEEnvelope_rwgt65_pt300to450' : [ 3.14448101e+05, 1.75836847e+05, ], 'CountWeightedL1PrefireNom_rwgt65_pt300to450' : [ 2.23126491e+05, 2.23125723e+05, 2.23170564e+05, ], 'CountWeightedL1Prefire_rwgt65_pt300to450' : [ 2.23126491e+05, 2.21048409e+05, 2.25175899e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt65_pt300to450' : [ 3.02084821e+05, 2.70963555e+05, 2.45199448e+05, 2.48718645e+05, 2.23126491e+05, 2.01937482e+05, 2.08355599e+05, 1.86938384e+05, 1.69204436e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt65_pt300to450' : [ 3.02097068e+05, 1.69201060e+05, ], 'CountWeightedFullL1PrefireNom_rwgt65_pt300to450' : [ 2.23126491e+05, 2.23125723e+05, 2.23170564e+05, ], 'CountWeightedFullL1Prefire_rwgt65_pt300to450' : [ 2.23126491e+05, 2.21048409e+05, 2.25175899e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt65_pt300to450' : [ 3.02084821e+05, 2.70963555e+05, 2.45199448e+05, 2.48718645e+05, 2.23126491e+05, 2.01937482e+05, 2.08355599e+05, 1.86938384e+05, 1.69204436e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt65_pt300to450' : [ 3.02097068e+05, 1.69201060e+05, ], 'CountWeighted_rwgt65_ptGt450' : [ 6.44237312e+04, 6.43985071e+04, 6.44300405e+04, ], 'CountWeightedLHEWeightScale_rwgt65_ptGt450' : [ 8.78620009e+04, 7.76243338e+04, 6.93294893e+04, 7.29085502e+04, 6.44237312e+04, 5.75480639e+04, 6.14767712e+04, 5.43297422e+04, 4.85374079e+04, ], 'CountWeightedLHEEnvelope_rwgt65_ptGt450' : [ 8.78623086e+04, 4.85373178e+04, ], 'CountWeightedFull_rwgt65_ptGt450' : [ 6.44237312e+04, 6.43985071e+04, 6.44300405e+04, ], 'CountWeightedFullLHEWeightScale_rwgt65_ptGt450' : [ 8.78620009e+04, 7.76243338e+04, 6.93294893e+04, 7.29085502e+04, 6.44237312e+04, 5.75480639e+04, 6.14767712e+04, 5.43297422e+04, 4.85374079e+04, ], 'CountWeightedFullLHEEnvelope_rwgt65_ptGt450' : [ 8.78623086e+04, 4.85373178e+04, ], 'CountWeightedL1PrefireNom_rwgt65_ptGt450' : [ 6.22091512e+04, 6.21869845e+04, 6.22126030e+04, ], 'CountWeightedL1Prefire_rwgt65_ptGt450' : [ 6.22091512e+04, 6.16959541e+04, 6.27145097e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt65_ptGt450' : [ 8.47573088e+04, 7.49482328e+04, 6.69904802e+04, 7.03395867e+04, 6.22091512e+04, 5.56122382e+04, 5.93157952e+04, 5.24666881e+04, 4.69087148e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt65_ptGt450' : [ 8.47576110e+04, 4.69086264e+04, ], 'CountWeightedFullL1PrefireNom_rwgt65_ptGt450' : [ 6.22091512e+04, 6.21869845e+04, 6.22126030e+04, ], 'CountWeightedFullL1Prefire_rwgt65_ptGt450' : [ 6.22091512e+04, 6.16959541e+04, 6.27145097e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt65_ptGt450' : [ 8.47573088e+04, 7.49482328e+04, 6.69904802e+04, 7.03395867e+04, 6.22091512e+04, 5.56122382e+04, 5.93157952e+04, 5.24666881e+04, 4.69087148e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt65_ptGt450' : [ 8.47576110e+04, 4.69086264e+04, ], 'CountWeighted_rwgt66' : [ 5.62169323e+06, 5.62158464e+06, 5.62202565e+06, ], 'CountWeightedLHEWeightScale_rwgt66' : [ 7.44341888e+06, 6.88409628e+06, 6.39623783e+06, 6.07847938e+06, 5.62169323e+06, 5.22332354e+06, 5.05775843e+06, 4.67765698e+06, 4.34619099e+06, ], 'CountWeightedLHEEnvelope_rwgt66' : [ 7.44701193e+06, 4.34476762e+06, ], 'CountWeightedFull_rwgt66' : [ 5.62169323e+06, 5.62158464e+06, 5.62202565e+06, ], 'CountWeightedFullLHEWeightScale_rwgt66' : [ 7.44341888e+06, 6.88409628e+06, 6.39623783e+06, 6.07847938e+06, 5.62169323e+06, 5.22332354e+06, 5.05775843e+06, 4.67765698e+06, 4.34619099e+06, ], 'CountWeightedFullLHEEnvelope_rwgt66' : [ 7.44701193e+06, 4.34476762e+06, ], 'CountWeightedL1PrefireNom_rwgt66' : [ 5.43371795e+06, 5.43339524e+06, 5.43427213e+06, ], 'CountWeightedL1Prefire_rwgt66' : [ 5.43371795e+06, 5.38778084e+06, 5.47847474e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt66' : [ 7.19062388e+06, 6.65406461e+06, 6.18538209e+06, 5.87190492e+06, 5.43371795e+06, 5.05101543e+06, 4.88578133e+06, 4.52116330e+06, 4.20273714e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt66' : [ 7.19417914e+06, 4.20132777e+06, ], 'CountWeightedFullL1PrefireNom_rwgt66' : [ 5.43371795e+06, 5.43339524e+06, 5.43427213e+06, ], 'CountWeightedFullL1Prefire_rwgt66' : [ 5.43371795e+06, 5.38778084e+06, 5.47847474e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt66' : [ 7.19062388e+06, 6.65406461e+06, 6.18538209e+06, 5.87190492e+06, 5.43371795e+06, 5.05101543e+06, 4.88578133e+06, 4.52116330e+06, 4.20273714e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt66' : [ 7.19417914e+06, 4.20132777e+06, ], 'CountWeighted_rwgt66_fwd' : [ 7.74306685e+04, 7.74490500e+04, 7.74044498e+04, ], 'CountWeightedLHEWeightScale_rwgt66_fwd' : [ 1.02918904e+05, 9.48571497e+04, 8.80430359e+04, 8.40026675e+04, 7.74306685e+04, 7.18744575e+04, 6.98647402e+04, 6.44041808e+04, 5.97867499e+04, ], 'CountWeightedLHEEnvelope_rwgt66_fwd' : [ 1.02933116e+05, 5.97806329e+04, ], 'CountWeightedFull_rwgt66_fwd' : [ 7.74306685e+04, 7.74490500e+04, 7.74044498e+04, ], 'CountWeightedFullLHEWeightScale_rwgt66_fwd' : [ 1.02918904e+05, 9.48571497e+04, 8.80430359e+04, 8.40026675e+04, 7.74306685e+04, 7.18744575e+04, 6.98647402e+04, 6.44041808e+04, 5.97867499e+04, ], 'CountWeightedFullLHEEnvelope_rwgt66_fwd' : [ 1.02933116e+05, 5.97806329e+04, ], 'CountWeightedL1PrefireNom_rwgt66_fwd' : [ 6.65097142e+04, 6.65013832e+04, 6.65140299e+04, ], 'CountWeightedL1Prefire_rwgt66_fwd' : [ 6.65097142e+04, 6.40945010e+04, 6.89488875e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt66_fwd' : [ 8.83642779e+04, 8.15002725e+04, 7.56923830e+04, 7.21034561e+04, 6.65097142e+04, 6.17755434e+04, 5.99546980e+04, 5.53082192e+04, 5.13750050e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt66_fwd' : [ 8.83766752e+04, 5.13697018e+04, ], 'CountWeightedFullL1PrefireNom_rwgt66_fwd' : [ 6.65097142e+04, 6.65013832e+04, 6.65140299e+04, ], 'CountWeightedFullL1Prefire_rwgt66_fwd' : [ 6.65097142e+04, 6.40945010e+04, 6.89488875e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt66_fwd' : [ 8.83642779e+04, 8.15002725e+04, 7.56923830e+04, 7.21034561e+04, 6.65097142e+04, 6.17755434e+04, 5.99546980e+04, 5.53082192e+04, 5.13750050e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt66_fwd' : [ 8.83766752e+04, 5.13697018e+04, ], 'CountWeighted_rwgt66_pt0to60' : [ 1.15184511e+06, 1.15198097e+06, 1.15170543e+06, ], 'CountWeightedLHEWeightScale_rwgt66_pt0to60' : [ 1.50905061e+06, 1.41226654e+06, 1.32535248e+06, 1.23085230e+06, 1.15184511e+06, 1.08091019e+06, 1.02313501e+06, 9.57415647e+05, 8.98420138e+05, ], 'CountWeightedLHEEnvelope_rwgt66_pt0to60' : [ 1.51034088e+06, 8.97911999e+05, ], 'CountWeightedFull_rwgt66_pt0to60' : [ 1.15184511e+06, 1.15198097e+06, 1.15170543e+06, ], 'CountWeightedFullLHEWeightScale_rwgt66_pt0to60' : [ 1.50905061e+06, 1.41226654e+06, 1.32535248e+06, 1.23085230e+06, 1.15184511e+06, 1.08091019e+06, 1.02313501e+06, 9.57415647e+05, 8.98420138e+05, ], 'CountWeightedFullLHEEnvelope_rwgt66_pt0to60' : [ 1.51034088e+06, 8.97911999e+05, ], 'CountWeightedL1PrefireNom_rwgt66_pt0to60' : [ 1.11990315e+06, 1.11999326e+06, 1.11981559e+06, ], 'CountWeightedL1Prefire_rwgt66_pt0to60' : [ 1.11990315e+06, 1.11175419e+06, 1.12772869e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt66_pt0to60' : [ 1.46663632e+06, 1.37314112e+06, 1.28907635e+06, 1.19622282e+06, 1.11990315e+06, 1.05129591e+06, 9.94326028e+05, 9.30843873e+05, 8.73785840e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt66_pt0to60' : [ 1.46791384e+06, 8.73282158e+05, ], 'CountWeightedFullL1PrefireNom_rwgt66_pt0to60' : [ 1.11990315e+06, 1.11999326e+06, 1.11981559e+06, ], 'CountWeightedFullL1Prefire_rwgt66_pt0to60' : [ 1.11990315e+06, 1.11175419e+06, 1.12772869e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt66_pt0to60' : [ 1.46663632e+06, 1.37314112e+06, 1.28907635e+06, 1.19622282e+06, 1.11990315e+06, 1.05129591e+06, 9.94326028e+05, 9.30843873e+05, 8.73785840e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt66_pt0to60' : [ 1.46791384e+06, 8.73282158e+05, ], 'CountWeighted_rwgt66_pt60to120' : [ 1.89888732e+06, 1.89894679e+06, 1.89884650e+06, ], 'CountWeightedLHEWeightScale_rwgt66_pt60to120' : [ 2.50385332e+06, 2.33032148e+06, 2.17639278e+06, 2.04027589e+06, 1.89888732e+06, 1.77348317e+06, 1.69462471e+06, 1.57719606e+06, 1.47305334e+06, ], 'CountWeightedLHEEnvelope_rwgt66_pt60to120' : [ 2.50534307e+06, 1.47246423e+06, ], 'CountWeightedFull_rwgt66_pt60to120' : [ 1.89888732e+06, 1.89894679e+06, 1.89884650e+06, ], 'CountWeightedFullLHEWeightScale_rwgt66_pt60to120' : [ 2.50385332e+06, 2.33032148e+06, 2.17639278e+06, 2.04027589e+06, 1.89888732e+06, 1.77348317e+06, 1.69462471e+06, 1.57719606e+06, 1.47305334e+06, ], 'CountWeightedFullLHEEnvelope_rwgt66_pt60to120' : [ 2.50534307e+06, 1.47246423e+06, ], 'CountWeightedL1PrefireNom_rwgt66_pt60to120' : [ 1.84164137e+06, 1.84160890e+06, 1.84170213e+06, ], 'CountWeightedL1Prefire_rwgt66_pt60to120' : [ 1.84164137e+06, 1.82732672e+06, 1.85549666e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt66_pt60to120' : [ 2.42733238e+06, 2.26013905e+06, 2.11164095e+06, 1.97786003e+06, 1.84164137e+06, 1.72066590e+06, 1.64274070e+06, 1.52960918e+06, 1.42914705e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt66_pt60to120' : [ 2.42880663e+06, 1.42856348e+06, ], 'CountWeightedFullL1PrefireNom_rwgt66_pt60to120' : [ 1.84164137e+06, 1.84160890e+06, 1.84170213e+06, ], 'CountWeightedFullL1Prefire_rwgt66_pt60to120' : [ 1.84164137e+06, 1.82732672e+06, 1.85549666e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt66_pt60to120' : [ 2.42733238e+06, 2.26013905e+06, 2.11164095e+06, 1.97786003e+06, 1.84164137e+06, 1.72066590e+06, 1.64274070e+06, 1.52960918e+06, 1.42914705e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt66_pt60to120' : [ 2.42880663e+06, 1.42856348e+06, ], 'CountWeighted_rwgt66_pt120to200' : [ 1.48696537e+06, 1.48696471e+06, 1.48706274e+06, ], 'CountWeightedLHEWeightScale_rwgt66_pt120to200' : [ 1.97509852e+06, 1.82132702e+06, 1.68783859e+06, 1.61240868e+06, 1.48696537e+06, 1.37806984e+06, 1.34128471e+06, 1.23699616e+06, 1.14646478e+06, ], 'CountWeightedLHEEnvelope_rwgt66_pt120to200' : [ 1.97574305e+06, 1.14620139e+06, ], 'CountWeightedFull_rwgt66_pt120to200' : [ 1.48696537e+06, 1.48696471e+06, 1.48706274e+06, ], 'CountWeightedFullLHEWeightScale_rwgt66_pt120to200' : [ 1.97509852e+06, 1.82132702e+06, 1.68783859e+06, 1.61240868e+06, 1.48696537e+06, 1.37806984e+06, 1.34128471e+06, 1.23699616e+06, 1.14646478e+06, ], 'CountWeightedFullLHEEnvelope_rwgt66_pt120to200' : [ 1.97574305e+06, 1.14620139e+06, ], 'CountWeightedL1PrefireNom_rwgt66_pt120to200' : [ 1.43633745e+06, 1.43629354e+06, 1.43648441e+06, ], 'CountWeightedL1Prefire_rwgt66_pt120to200' : [ 1.43633745e+06, 1.42403939e+06, 1.44835096e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt66_pt120to200' : [ 1.90681851e+06, 1.75933722e+06, 1.63113440e+06, 1.55664767e+06, 1.43633745e+06, 1.33175525e+06, 1.29488691e+06, 1.19486654e+06, 1.10792265e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt66_pt120to200' : [ 1.90745607e+06, 1.10766196e+06, ], 'CountWeightedFullL1PrefireNom_rwgt66_pt120to200' : [ 1.43633745e+06, 1.43629354e+06, 1.43648441e+06, ], 'CountWeightedFullL1Prefire_rwgt66_pt120to200' : [ 1.43633745e+06, 1.42403939e+06, 1.44835096e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt66_pt120to200' : [ 1.90681851e+06, 1.75933722e+06, 1.63113440e+06, 1.55664767e+06, 1.43633745e+06, 1.33175525e+06, 1.29488691e+06, 1.19486654e+06, 1.10792265e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt66_pt120to200' : [ 1.90745607e+06, 1.10766196e+06, ], 'CountWeighted_rwgt66_pt200to300' : [ 6.77100976e+05, 6.76825415e+05, 6.77457816e+05, ], 'CountWeightedLHEWeightScale_rwgt66_pt200to300' : [ 9.06904674e+05, 8.26118390e+05, 7.57668602e+05, 7.43235246e+05, 6.77100976e+05, 6.21062314e+05, 6.20234240e+05, 5.65094600e+05, 5.18369630e+05, ], 'CountWeightedLHEEnvelope_rwgt66_pt200to300' : [ 9.07043680e+05, 5.18317451e+05, ], 'CountWeightedFull_rwgt66_pt200to300' : [ 6.77100976e+05, 6.76825415e+05, 6.77457816e+05, ], 'CountWeightedFullLHEWeightScale_rwgt66_pt200to300' : [ 9.06904674e+05, 8.26118390e+05, 7.57668602e+05, 7.43235246e+05, 6.77100976e+05, 6.21062314e+05, 6.20234240e+05, 5.65094600e+05, 5.18369630e+05, ], 'CountWeightedFullLHEEnvelope_rwgt66_pt200to300' : [ 9.07043680e+05, 5.18317451e+05, ], 'CountWeightedL1PrefireNom_rwgt66_pt200to300' : [ 6.52021498e+05, 6.51741162e+05, 6.52377275e+05, ], 'CountWeightedL1Prefire_rwgt66_pt200to300' : [ 6.52021498e+05, 6.46085446e+05, 6.57858668e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt66_pt200to300' : [ 8.72704678e+05, 7.95502768e+05, 7.30001267e+05, 7.15222944e+05, 6.52021498e+05, 5.98395476e+05, 5.96868569e+05, 5.44173261e+05, 4.99459199e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt66_pt200to300' : [ 8.72842061e+05, 4.99407656e+05, ], 'CountWeightedFullL1PrefireNom_rwgt66_pt200to300' : [ 6.52021498e+05, 6.51741162e+05, 6.52377275e+05, ], 'CountWeightedFullL1Prefire_rwgt66_pt200to300' : [ 6.52021498e+05, 6.46085446e+05, 6.57858668e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt66_pt200to300' : [ 8.72704678e+05, 7.95502768e+05, 7.30001267e+05, 7.15222944e+05, 6.52021498e+05, 5.98395476e+05, 5.96868569e+05, 5.44173261e+05, 4.99459199e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt66_pt200to300' : [ 8.72842061e+05, 4.99407656e+05, ], 'CountWeighted_rwgt66_ptGt300' : [ 3.29464942e+05, 3.29415523e+05, 3.29539967e+05, ], 'CountWeightedLHEWeightScale_rwgt66_ptGt300' : [ 4.45590942e+05, 3.99203126e+05, 3.60941523e+05, 3.67702642e+05, 3.29464942e+05, 2.97922731e+05, 3.08613870e+05, 2.76549986e+05, 2.50098304e+05, ], 'CountWeightedLHEEnvelope_rwgt66_ptGt300' : [ 4.45606852e+05, 2.50093867e+05, ], 'CountWeightedFull_rwgt66_ptGt300' : [ 3.29464942e+05, 3.29415523e+05, 3.29539967e+05, ], 'CountWeightedFullLHEWeightScale_rwgt66_ptGt300' : [ 4.45590942e+05, 3.99203126e+05, 3.60941523e+05, 3.67702642e+05, 3.29464942e+05, 2.97922731e+05, 3.08613870e+05, 2.76549986e+05, 2.50098304e+05, ], 'CountWeightedFullLHEEnvelope_rwgt66_ptGt300' : [ 4.45606852e+05, 2.50093867e+05, ], 'CountWeightedL1PrefireNom_rwgt66_ptGt300' : [ 3.17306883e+05, 3.17255709e+05, 3.17372653e+05, ], 'CountWeightedL1Prefire_rwgt66_ptGt300' : [ 3.17306883e+05, 3.14480121e+05, 3.20094111e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt66_ptGt300' : [ 4.28768707e+05, 3.84443448e+05, 3.47835263e+05, 3.53847207e+05, 3.17306883e+05, 2.87125524e+05, 2.97003426e+05, 2.66360907e+05, 2.41048883e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt66_ptGt300' : [ 4.28784325e+05, 2.41044561e+05, ], 'CountWeightedFullL1PrefireNom_rwgt66_ptGt300' : [ 3.17306883e+05, 3.17255709e+05, 3.17372653e+05, ], 'CountWeightedFullL1Prefire_rwgt66_ptGt300' : [ 3.17306883e+05, 3.14480121e+05, 3.20094111e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt66_ptGt300' : [ 4.28768707e+05, 3.84443448e+05, 3.47835263e+05, 3.53847207e+05, 3.17306883e+05, 2.87125524e+05, 2.97003426e+05, 2.66360907e+05, 2.41048883e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt66_ptGt300' : [ 4.28784325e+05, 2.41044561e+05, ], 'CountWeighted_rwgt66_pt300to450' : [ 2.58185959e+05, 2.58153931e+05, 2.58259664e+05, ], 'CountWeightedLHEWeightScale_rwgt66_pt300to450' : [ 3.48651312e+05, 3.13361906e+05, 2.84111939e+05, 2.87221154e+05, 2.58185959e+05, 2.34117167e+05, 2.40723106e+05, 2.16413860e+05, 1.96260621e+05, ], 'CountWeightedLHEEnvelope_rwgt66_pt300to450' : [ 3.48666837e+05, 1.96256300e+05, ], 'CountWeightedFull_rwgt66_pt300to450' : [ 2.58185959e+05, 2.58153931e+05, 2.58259664e+05, ], 'CountWeightedFullLHEWeightScale_rwgt66_pt300to450' : [ 3.48651312e+05, 3.13361906e+05, 2.84111939e+05, 2.87221154e+05, 2.58185959e+05, 2.34117167e+05, 2.40723106e+05, 2.16413860e+05, 1.96260621e+05, ], 'CountWeightedFullLHEEnvelope_rwgt66_pt300to450' : [ 3.48666837e+05, 1.96256300e+05, ], 'CountWeightedL1PrefireNom_rwgt66_pt300to450' : [ 2.48430222e+05, 2.48394338e+05, 2.48496491e+05, ], 'CountWeightedL1Prefire_rwgt66_pt300to450' : [ 2.48430222e+05, 2.46159882e+05, 2.50669403e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt66_pt300to450' : [ 3.35189625e+05, 3.01503934e+05, 2.73545969e+05, 2.76147525e+05, 2.48430222e+05, 2.25423264e+05, 2.31453491e+05, 2.08246457e+05, 1.88981435e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt66_pt300to450' : [ 3.35204863e+05, 1.88977226e+05, ], 'CountWeightedFullL1PrefireNom_rwgt66_pt300to450' : [ 2.48430222e+05, 2.48394338e+05, 2.48496491e+05, ], 'CountWeightedFullL1Prefire_rwgt66_pt300to450' : [ 2.48430222e+05, 2.46159882e+05, 2.50669403e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt66_pt300to450' : [ 3.35189625e+05, 3.01503934e+05, 2.73545969e+05, 2.76147525e+05, 2.48430222e+05, 2.25423264e+05, 2.31453491e+05, 2.08246457e+05, 1.88981435e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt66_pt300to450' : [ 3.35204863e+05, 1.88977226e+05, ], 'CountWeighted_rwgt66_ptGt450' : [ 7.12789786e+04, 7.12615884e+04, 7.12803065e+04, ], 'CountWeightedLHEWeightScale_rwgt66_ptGt450' : [ 9.69396222e+04, 8.58412273e+04, 7.68295970e+04, 8.04814953e+04, 7.12789786e+04, 6.38055665e+04, 6.78907701e+04, 6.01361224e+04, 5.38376811e+04, ], 'CountWeightedLHEEnvelope_rwgt66_ptGt450' : [ 9.69400060e+04, 5.38375657e+04, ], 'CountWeightedFull_rwgt66_ptGt450' : [ 7.12789786e+04, 7.12615884e+04, 7.12803065e+04, ], 'CountWeightedFullLHEWeightScale_rwgt66_ptGt450' : [ 9.69396222e+04, 8.58412273e+04, 7.68295970e+04, 8.04814953e+04, 7.12789786e+04, 6.38055665e+04, 6.78907701e+04, 6.01361224e+04, 5.38376811e+04, ], 'CountWeightedFullLHEEnvelope_rwgt66_ptGt450' : [ 9.69400060e+04, 5.38375657e+04, ], 'CountWeightedL1PrefireNom_rwgt66_ptGt450' : [ 6.88766853e+04, 6.88613780e+04, 6.88761581e+04, ], 'CountWeightedL1Prefire_rwgt66_ptGt450' : [ 6.88766853e+04, 6.83202594e+04, 6.94247170e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt66_ptGt450' : [ 9.35790684e+04, 8.29395018e+04, 7.42893054e+04, 7.76996851e+04, 6.88766853e+04, 6.17022640e+04, 6.55499461e+04, 5.81144432e+04, 5.20674582e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt66_ptGt450' : [ 9.35794458e+04, 5.20673457e+04, ], 'CountWeightedFullL1PrefireNom_rwgt66_ptGt450' : [ 6.88766853e+04, 6.88613780e+04, 6.88761581e+04, ], 'CountWeightedFullL1Prefire_rwgt66_ptGt450' : [ 6.88766853e+04, 6.83202594e+04, 6.94247170e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt66_ptGt450' : [ 9.35790684e+04, 8.29395018e+04, 7.42893054e+04, 7.76996851e+04, 6.88766853e+04, 6.17022640e+04, 6.55499461e+04, 5.81144432e+04, 5.20674582e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt66_ptGt450' : [ 9.35794458e+04, 5.20673457e+04, ], 'CountWeighted_rwgt67' : [ 6.79712539e+06, 6.79700108e+06, 6.79739854e+06, ], 'CountWeightedLHEWeightScale_rwgt67' : [ 8.97951808e+06, 8.32190082e+06, 7.74630206e+06, 7.33432728e+06, 6.79712539e+06, 6.32697665e+06, 6.10370245e+06, 5.65657459e+06, 5.26530747e+06, ], 'CountWeightedLHEEnvelope_rwgt67' : [ 8.98414008e+06, 5.26347658e+06, ], 'CountWeightedFull_rwgt67' : [ 6.79712539e+06, 6.79700108e+06, 6.79739854e+06, ], 'CountWeightedFullLHEWeightScale_rwgt67' : [ 8.97951808e+06, 8.32190082e+06, 7.74630206e+06, 7.33432728e+06, 6.79712539e+06, 6.32697665e+06, 6.10370245e+06, 5.65657459e+06, 5.26530747e+06, ], 'CountWeightedFullLHEEnvelope_rwgt67' : [ 8.98414008e+06, 5.26347658e+06, ], 'CountWeightedL1PrefireNom_rwgt67' : [ 6.57258761e+06, 6.57219841e+06, 6.57314777e+06, ], 'CountWeightedL1Prefire_rwgt67' : [ 6.57258761e+06, 6.51769213e+06, 6.62606651e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt67' : [ 8.67844092e+06, 8.04719891e+06, 7.49390077e+06, 7.08823368e+06, 6.57258761e+06, 6.12067077e+06, 5.89877878e+06, 5.46960276e+06, 5.09351450e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt67' : [ 8.68301245e+06, 5.09170188e+06, ], 'CountWeightedFullL1PrefireNom_rwgt67' : [ 6.57258761e+06, 6.57219841e+06, 6.57314777e+06, ], 'CountWeightedFullL1Prefire_rwgt67' : [ 6.57258761e+06, 6.51769213e+06, 6.62606651e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt67' : [ 8.67844092e+06, 8.04719891e+06, 7.49390077e+06, 7.08823368e+06, 6.57258761e+06, 6.12067077e+06, 5.89877878e+06, 5.46960276e+06, 5.09351450e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt67' : [ 8.68301245e+06, 5.09170188e+06, ], 'CountWeighted_rwgt67_fwd' : [ 9.66317123e+04, 9.66573410e+04, 9.65982334e+04, ], 'CountWeightedLHEWeightScale_rwgt67_fwd' : [ 1.28302782e+05, 1.18380069e+05, 1.09972778e+05, 1.04721333e+05, 9.66317123e+04, 8.97760473e+04, 8.70964539e+04, 8.03745563e+04, 7.46769777e+04, ], 'CountWeightedLHEEnvelope_rwgt67_fwd' : [ 1.28320862e+05, 7.46691932e+04, ], 'CountWeightedFull_rwgt67_fwd' : [ 9.66317123e+04, 9.66573410e+04, 9.65982334e+04, ], 'CountWeightedFullLHEWeightScale_rwgt67_fwd' : [ 1.28302782e+05, 1.18380069e+05, 1.09972778e+05, 1.04721333e+05, 9.66317123e+04, 8.97760473e+04, 8.70964539e+04, 8.03745563e+04, 7.46769777e+04, ], 'CountWeightedFullLHEEnvelope_rwgt67_fwd' : [ 1.28320862e+05, 7.46691932e+04, ], 'CountWeightedL1PrefireNom_rwgt67_fwd' : [ 8.30260700e+04, 8.30179299e+04, 8.30306789e+04, ], 'CountWeightedL1Prefire_rwgt67_fwd' : [ 8.30260700e+04, 8.00153107e+04, 8.60667103e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt67_fwd' : [ 1.10194234e+05, 1.01739845e+05, 9.45697594e+04, 8.99163154e+04, 8.30260700e+04, 7.71812362e+04, 7.47661846e+04, 6.90424790e+04, 6.41863080e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt67_fwd' : [ 1.10210013e+05, 6.41795544e+04, ], 'CountWeightedFullL1PrefireNom_rwgt67_fwd' : [ 8.30260700e+04, 8.30179299e+04, 8.30306789e+04, ], 'CountWeightedFullL1Prefire_rwgt67_fwd' : [ 8.30260700e+04, 8.00153107e+04, 8.60667103e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt67_fwd' : [ 1.10194234e+05, 1.01739845e+05, 9.45697594e+04, 8.99163154e+04, 8.30260700e+04, 7.71812362e+04, 7.47661846e+04, 6.90424790e+04, 6.41863080e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt67_fwd' : [ 1.10210013e+05, 6.41795544e+04, ], 'CountWeighted_rwgt67_pt0to60' : [ 1.44294581e+06, 1.44308089e+06, 1.44281888e+06, ], 'CountWeightedLHEWeightScale_rwgt67_pt0to60' : [ 1.88831518e+06, 1.76903323e+06, 1.66169681e+06, 1.54033305e+06, 1.44294581e+06, 1.35532924e+06, 1.28047984e+06, 1.19946007e+06, 1.12658215e+06, ], 'CountWeightedLHEEnvelope_rwgt67_pt0to60' : [ 1.88998552e+06, 1.12592434e+06, ], 'CountWeightedFull_rwgt67_pt0to60' : [ 1.44294581e+06, 1.44308089e+06, 1.44281888e+06, ], 'CountWeightedFullLHEWeightScale_rwgt67_pt0to60' : [ 1.88831518e+06, 1.76903323e+06, 1.66169681e+06, 1.54033305e+06, 1.44294581e+06, 1.35532924e+06, 1.28047984e+06, 1.19946007e+06, 1.12658215e+06, ], 'CountWeightedFullLHEEnvelope_rwgt67_pt0to60' : [ 1.88998552e+06, 1.12592434e+06, ], 'CountWeightedL1PrefireNom_rwgt67_pt0to60' : [ 1.40334997e+06, 1.40342935e+06, 1.40328755e+06, ], 'CountWeightedL1Prefire_rwgt67_pt0to60' : [ 1.40334997e+06, 1.39324115e+06, 1.41305506e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt67_pt0to60' : [ 1.83582128e+06, 1.72053905e+06, 1.61667587e+06, 1.49746893e+06, 1.40334997e+06, 1.31857171e+06, 1.24481673e+06, 1.16651848e+06, 1.09600308e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt67_pt0to60' : [ 1.83747493e+06, 1.09535102e+06, ], 'CountWeightedFullL1PrefireNom_rwgt67_pt0to60' : [ 1.40334997e+06, 1.40342935e+06, 1.40328755e+06, ], 'CountWeightedFullL1Prefire_rwgt67_pt0to60' : [ 1.40334997e+06, 1.39324115e+06, 1.41305506e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt67_pt0to60' : [ 1.83582128e+06, 1.72053905e+06, 1.61667587e+06, 1.49746893e+06, 1.40334997e+06, 1.31857171e+06, 1.24481673e+06, 1.16651848e+06, 1.09600308e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt67_pt0to60' : [ 1.83747493e+06, 1.09535102e+06, ], 'CountWeighted_rwgt67_pt60to120' : [ 2.33947566e+06, 2.33957120e+06, 2.33939369e+06, ], 'CountWeightedLHEWeightScale_rwgt67_pt60to120' : [ 3.07977011e+06, 2.87039427e+06, 2.68419720e+06, 2.51012393e+06, 2.33947566e+06, 2.18773936e+06, 2.08525409e+06, 1.94348884e+06, 1.81744640e+06, ], 'CountWeightedLHEEnvelope_rwgt67_pt60to120' : [ 3.08168883e+06, 1.81668804e+06, ], 'CountWeightedFull_rwgt67_pt60to120' : [ 2.33947566e+06, 2.33957120e+06, 2.33939369e+06, ], 'CountWeightedFullLHEWeightScale_rwgt67_pt60to120' : [ 3.07977011e+06, 2.87039427e+06, 2.68419720e+06, 2.51012393e+06, 2.33947566e+06, 2.18773936e+06, 2.08525409e+06, 1.94348884e+06, 1.81744640e+06, ], 'CountWeightedFullLHEEnvelope_rwgt67_pt60to120' : [ 3.08168883e+06, 1.81668804e+06, ], 'CountWeightedL1PrefireNom_rwgt67_pt60to120' : [ 2.26966418e+06, 2.26964539e+06, 2.26970712e+06, ], 'CountWeightedL1Prefire_rwgt67_pt60to120' : [ 2.26966418e+06, 2.25220783e+06, 2.28655914e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt67_pt60to120' : [ 2.98665871e+06, 2.78483002e+06, 2.60511691e+06, 2.43415479e+06, 2.26966418e+06, 2.12321688e+06, 2.02208841e+06, 1.88544321e+06, 1.76379905e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt67_pt60to120' : [ 2.98855746e+06, 1.76304773e+06, ], 'CountWeightedFullL1PrefireNom_rwgt67_pt60to120' : [ 2.26966418e+06, 2.26964539e+06, 2.26970712e+06, ], 'CountWeightedFullL1Prefire_rwgt67_pt60to120' : [ 2.26966418e+06, 2.25220783e+06, 2.28655914e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt67_pt60to120' : [ 2.98665871e+06, 2.78483002e+06, 2.60511691e+06, 2.43415479e+06, 2.26966418e+06, 2.12321688e+06, 2.02208841e+06, 1.88544321e+06, 1.76379905e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt67_pt60to120' : [ 2.98855746e+06, 1.76304773e+06, ], 'CountWeighted_rwgt67_pt120to200' : [ 1.77460574e+06, 1.77457375e+06, 1.77470073e+06, ], 'CountWeightedLHEWeightScale_rwgt67_pt120to200' : [ 2.35154296e+06, 2.17283523e+06, 2.01725378e+06, 1.92045801e+06, 1.77460574e+06, 1.64763225e+06, 1.59803851e+06, 1.47673686e+06, 1.37113814e+06, ], 'CountWeightedLHEEnvelope_rwgt67_pt120to200' : [ 2.35236411e+06, 1.37080251e+06, ], 'CountWeightedFull_rwgt67_pt120to200' : [ 1.77460574e+06, 1.77457375e+06, 1.77470073e+06, ], 'CountWeightedFullLHEWeightScale_rwgt67_pt120to200' : [ 2.35154296e+06, 2.17283523e+06, 2.01725378e+06, 1.92045801e+06, 1.77460574e+06, 1.64763225e+06, 1.59803851e+06, 1.47673686e+06, 1.37113814e+06, ], 'CountWeightedFullLHEEnvelope_rwgt67_pt120to200' : [ 2.35236411e+06, 1.37080251e+06, ], 'CountWeightedL1PrefireNom_rwgt67_pt120to200' : [ 1.71481201e+06, 1.71472820e+06, 1.71496550e+06, ], 'CountWeightedL1Prefire_rwgt67_pt120to200' : [ 1.71481201e+06, 1.70030012e+06, 1.72899081e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt67_pt120to200' : [ 2.27115136e+06, 2.09965372e+06, 1.95015295e+06, 1.85477692e+06, 1.71481201e+06, 1.59280311e+06, 1.54336650e+06, 1.42696213e+06, 1.32549355e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt67_pt120to200' : [ 2.27196362e+06, 1.32516137e+06, ], 'CountWeightedFullL1PrefireNom_rwgt67_pt120to200' : [ 1.71481201e+06, 1.71472820e+06, 1.71496550e+06, ], 'CountWeightedFullL1Prefire_rwgt67_pt120to200' : [ 1.71481201e+06, 1.70030012e+06, 1.72899081e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt67_pt120to200' : [ 2.27115136e+06, 2.09965372e+06, 1.95015295e+06, 1.85477692e+06, 1.71481201e+06, 1.59280311e+06, 1.54336650e+06, 1.42696213e+06, 1.32549355e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt67_pt120to200' : [ 2.27196362e+06, 1.32516137e+06, ], 'CountWeighted_rwgt67_pt200to300' : [ 7.75908558e+05, 7.75642503e+05, 7.76245957e+05, ], 'CountWeightedLHEWeightScale_rwgt67_pt200to300' : [ 1.03601485e+06, 9.46148008e+05, 8.69791597e+05, 8.49520071e+05, 7.75908558e+05, 7.13360072e+05, 7.09257702e+05, 6.47853907e+05, 5.95675626e+05, ], 'CountWeightedLHEEnvelope_rwgt67_pt200to300' : [ 1.03618902e+06, 5.95610198e+05, ], 'CountWeightedFull_rwgt67_pt200to300' : [ 7.75908558e+05, 7.75642503e+05, 7.76245957e+05, ], 'CountWeightedFullLHEWeightScale_rwgt67_pt200to300' : [ 1.03601485e+06, 9.46148008e+05, 8.69791597e+05, 8.49520071e+05, 7.75908558e+05, 7.13360072e+05, 7.09257702e+05, 6.47853907e+05, 5.95675626e+05, ], 'CountWeightedFullLHEEnvelope_rwgt67_pt200to300' : [ 1.03618902e+06, 5.95610198e+05, ], 'CountWeightedL1PrefireNom_rwgt67_pt200to300' : [ 7.47519665e+05, 7.47246266e+05, 7.47859747e+05, ], 'CountWeightedL1Prefire_rwgt67_pt200to300' : [ 7.47519665e+05, 7.40809325e+05, 7.54120355e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt67_pt200to300' : [ 9.97444219e+05, 9.11512767e+05, 8.38404508e+05, 8.17909399e+05, 7.47519665e+05, 6.87631013e+05, 6.82877874e+05, 6.24160443e+05, 5.74200201e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt67_pt200to300' : [ 9.97616346e+05, 5.74135576e+05, ], 'CountWeightedFullL1PrefireNom_rwgt67_pt200to300' : [ 7.47519665e+05, 7.47246266e+05, 7.47859747e+05, ], 'CountWeightedFullL1Prefire_rwgt67_pt200to300' : [ 7.47519665e+05, 7.40809325e+05, 7.54120355e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt67_pt200to300' : [ 9.97444219e+05, 9.11512767e+05, 8.38404508e+05, 8.17909399e+05, 7.47519665e+05, 6.87631013e+05, 6.82877874e+05, 6.24160443e+05, 5.74200201e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt67_pt200to300' : [ 9.97616346e+05, 5.74135576e+05, ], 'CountWeighted_rwgt67_ptGt300' : [ 3.67553452e+05, 3.67475488e+05, 3.67643319e+05, ], 'CountWeightedLHEWeightScale_rwgt67_ptGt300' : [ 4.95568660e+05, 4.45109408e+05, 4.03389253e+05, 4.09170045e+05, 3.67553452e+05, 3.33140966e+05, 3.43575423e+05, 3.08662123e+05, 2.79790087e+05, ], 'CountWeightedLHEEnvelope_rwgt67_ptGt300' : [ 4.95588176e+05, 2.79784635e+05, ], 'CountWeightedFull_rwgt67_ptGt300' : [ 3.67553452e+05, 3.67475488e+05, 3.67643319e+05, ], 'CountWeightedFullLHEWeightScale_rwgt67_ptGt300' : [ 4.95568660e+05, 4.45109408e+05, 4.03389253e+05, 4.09170045e+05, 3.67553452e+05, 3.33140966e+05, 3.43575423e+05, 3.08662123e+05, 2.79790087e+05, ], 'CountWeightedFullLHEEnvelope_rwgt67_ptGt300' : [ 4.95588176e+05, 2.79784635e+05, ], 'CountWeightedL1PrefireNom_rwgt67_ptGt300' : [ 3.54213237e+05, 3.54130907e+05, 3.54298204e+05, ], 'CountWeightedL1Prefire_rwgt67_ptGt300' : [ 3.54213237e+05, 3.51114369e+05, 3.57269100e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt67_ptGt300' : [ 4.77166967e+05, 4.28922760e+05, 3.88982749e+05, 3.94006074e+05, 3.54213237e+05, 3.21266631e+05, 3.30863144e+05, 2.97477628e+05, 2.69833702e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt67_ptGt300' : [ 4.77186123e+05, 2.69828392e+05, ], 'CountWeightedFullL1PrefireNom_rwgt67_ptGt300' : [ 3.54213237e+05, 3.54130907e+05, 3.54298204e+05, ], 'CountWeightedFullL1Prefire_rwgt67_ptGt300' : [ 3.54213237e+05, 3.51114369e+05, 3.57269100e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt67_ptGt300' : [ 4.77166967e+05, 4.28922760e+05, 3.88982749e+05, 3.94006074e+05, 3.54213237e+05, 3.21266631e+05, 3.30863144e+05, 2.97477628e+05, 2.69833702e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt67_ptGt300' : [ 4.77186123e+05, 2.69828392e+05, ], 'CountWeighted_rwgt67_pt300to450' : [ 2.88382208e+05, 2.88311260e+05, 2.88477457e+05, ], 'CountWeightedLHEWeightScale_rwgt67_pt300to450' : [ 3.88178573e+05, 3.49808363e+05, 3.17924821e+05, 3.19970216e+05, 2.88382208e+05, 2.62131141e+05, 2.68300500e+05, 2.41841200e+05, 2.19850133e+05, ], 'CountWeightedLHEEnvelope_rwgt67_pt300to450' : [ 3.88197616e+05, 2.19844831e+05, ], 'CountWeightedFull_rwgt67_pt300to450' : [ 2.88382208e+05, 2.88311260e+05, 2.88477457e+05, ], 'CountWeightedFullLHEWeightScale_rwgt67_pt300to450' : [ 3.88178573e+05, 3.49808363e+05, 3.17924821e+05, 3.19970216e+05, 2.88382208e+05, 2.62131141e+05, 2.68300500e+05, 2.41841200e+05, 2.19850133e+05, ], 'CountWeightedFullLHEEnvelope_rwgt67_pt300to450' : [ 3.88197616e+05, 2.19844831e+05, ], 'CountWeightedL1PrefireNom_rwgt67_pt300to450' : [ 2.77659596e+05, 2.77583437e+05, 2.77750584e+05, ], 'CountWeightedL1Prefire_rwgt67_pt300to450' : [ 2.77659596e+05, 2.75166752e+05, 2.80118453e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt67_pt300to450' : [ 3.73430763e+05, 3.36782218e+05, 3.06289567e+05, 3.07832100e+05, 2.77659596e+05, 2.52552271e+05, 2.58135267e+05, 2.32860354e+05, 2.11826398e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt67_pt300to450' : [ 3.73449462e+05, 2.11821229e+05, ], 'CountWeightedFullL1PrefireNom_rwgt67_pt300to450' : [ 2.77659596e+05, 2.77583437e+05, 2.77750584e+05, ], 'CountWeightedFullL1Prefire_rwgt67_pt300to450' : [ 2.77659596e+05, 2.75166752e+05, 2.80118453e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt67_pt300to450' : [ 3.73430763e+05, 3.36782218e+05, 3.06289567e+05, 3.07832100e+05, 2.77659596e+05, 2.52552271e+05, 2.58135267e+05, 2.32860354e+05, 2.11826398e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt67_pt300to450' : [ 3.73449462e+05, 2.11821229e+05, ], 'CountWeighted_rwgt67_ptGt450' : [ 7.91712694e+04, 7.91642388e+04, 7.91658524e+04, ], 'CountWeightedLHEWeightScale_rwgt67_ptGt450' : [ 1.07390115e+05, 9.53010677e+04, 8.54644413e+04, 8.91998311e+04, 7.91712694e+04, 7.10098605e+04, 7.52749273e+04, 6.68209170e+04, 5.99399470e+04, ], 'CountWeightedLHEEnvelope_rwgt67_ptGt450' : [ 1.07390588e+05, 5.99398014e+04, ], 'CountWeightedFull_rwgt67_ptGt450' : [ 7.91712694e+04, 7.91642388e+04, 7.91658524e+04, ], 'CountWeightedFullLHEWeightScale_rwgt67_ptGt450' : [ 1.07390115e+05, 9.53010677e+04, 8.54644413e+04, 8.91998311e+04, 7.91712694e+04, 7.10098605e+04, 7.52749273e+04, 6.68209170e+04, 5.99399470e+04, ], 'CountWeightedFullLHEEnvelope_rwgt67_ptGt450' : [ 1.07390588e+05, 5.99398014e+04, ], 'CountWeightedL1PrefireNom_rwgt67_ptGt450' : [ 7.65536610e+04, 7.65474867e+04, 7.65476281e+04, ], 'CountWeightedL1Prefire_rwgt67_ptGt450' : [ 7.65536610e+04, 7.59476369e+04, 7.71506418e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt67_ptGt450' : [ 1.03736226e+05, 9.21405583e+04, 8.26932039e+04, 8.61739848e+04, 7.65536610e+04, 6.87143885e+04, 7.27278883e+04, 6.46172834e+04, 5.80073120e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt67_ptGt450' : [ 1.03736690e+05, 5.80071707e+04, ], 'CountWeightedFullL1PrefireNom_rwgt67_ptGt450' : [ 7.65536610e+04, 7.65474867e+04, 7.65476281e+04, ], 'CountWeightedFullL1Prefire_rwgt67_ptGt450' : [ 7.65536610e+04, 7.59476369e+04, 7.71506418e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt67_ptGt450' : [ 1.03736226e+05, 9.21405583e+04, 8.26932039e+04, 8.61739848e+04, 7.65536610e+04, 6.87143885e+04, 7.27278883e+04, 6.46172834e+04, 5.80073120e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt67_ptGt450' : [ 1.03736690e+05, 5.80071707e+04, ], 'CountWeighted_rwgt68' : [ 8.12925291e+06, 8.12914159e+06, 8.12947080e+06, ], 'CountWeightedLHEWeightScale_rwgt68' : [ 1.07203953e+07, 9.95137396e+06, 9.27634804e+06, 8.75760031e+06, 8.12925291e+06, 7.57776887e+06, 7.28908355e+06, 6.76600049e+06, 6.30695983e+06, ], 'CountWeightedLHEEnvelope_rwgt68' : [ 1.07261827e+07, 6.30466788e+06, ], 'CountWeightedFull_rwgt68' : [ 8.12925291e+06, 8.12914159e+06, 8.12947080e+06, ], 'CountWeightedFullLHEWeightScale_rwgt68' : [ 1.07203953e+07, 9.95137396e+06, 9.27634804e+06, 8.75760031e+06, 8.12925291e+06, 7.57776887e+06, 7.28908355e+06, 6.76600049e+06, 6.30695983e+06, ], 'CountWeightedFullLHEEnvelope_rwgt68' : [ 1.07261827e+07, 6.30466788e+06, ], 'CountWeightedL1PrefireNom_rwgt68' : [ 7.86326492e+06, 7.86283007e+06, 7.86383343e+06, ], 'CountWeightedL1Prefire_rwgt68' : [ 7.86326492e+06, 7.79821677e+06, 7.92662769e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt68' : [ 1.03645771e+07, 9.62603389e+06, 8.97685908e+06, 8.46669957e+06, 7.86326492e+06, 7.33291728e+06, 7.04681350e+06, 6.54447607e+06, 6.10304141e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt68' : [ 1.03703014e+07, 6.10077220e+06, ], 'CountWeightedFullL1PrefireNom_rwgt68' : [ 7.86326492e+06, 7.86283007e+06, 7.86383343e+06, ], 'CountWeightedFullL1Prefire_rwgt68' : [ 7.86326492e+06, 7.79821677e+06, 7.92662769e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt68' : [ 1.03645771e+07, 9.62603389e+06, 8.97685908e+06, 8.46669957e+06, 7.86326492e+06, 7.33291728e+06, 7.04681350e+06, 6.54447607e+06, 6.10304141e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt68' : [ 1.03703014e+07, 6.10077220e+06, ], 'CountWeighted_rwgt68_fwd' : [ 1.18387859e+05, 1.18421672e+05, 1.18346890e+05, ], 'CountWeightedLHEWeightScale_rwgt68_fwd' : [ 1.57064793e+05, 1.45033223e+05, 1.34820574e+05, 1.28197259e+05, 1.18387859e+05, 1.10059681e+05, 1.06621365e+05, 9.84701339e+04, 9.15485364e+04, ], 'CountWeightedLHEEnvelope_rwgt68_fwd' : [ 1.57087243e+05, 9.15388710e+04, ], 'CountWeightedFull_rwgt68_fwd' : [ 1.18387859e+05, 1.18421672e+05, 1.18346890e+05, ], 'CountWeightedFullLHEWeightScale_rwgt68_fwd' : [ 1.57064793e+05, 1.45033223e+05, 1.34820574e+05, 1.28197259e+05, 1.18387859e+05, 1.10059681e+05, 1.06621365e+05, 9.84701339e+04, 9.15485364e+04, ], 'CountWeightedFullLHEEnvelope_rwgt68_fwd' : [ 1.57087243e+05, 9.15388710e+04, ], 'CountWeightedL1PrefireNom_rwgt68_fwd' : [ 1.01740494e+05, 1.01732758e+05, 1.01745719e+05, ], 'CountWeightedL1Prefire_rwgt68_fwd' : [ 1.01740494e+05, 9.80549949e+04, 1.05462566e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt68_fwd' : [ 1.34929789e+05, 1.24673023e+05, 1.15959242e+05, 1.10100043e+05, 1.01740494e+05, 9.46370141e+04, 9.15490532e+04, 8.46045375e+04, 7.87024388e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt68_fwd' : [ 1.34949386e+05, 7.86940487e+04, ], 'CountWeightedFullL1PrefireNom_rwgt68_fwd' : [ 1.01740494e+05, 1.01732758e+05, 1.01745719e+05, ], 'CountWeightedFullL1Prefire_rwgt68_fwd' : [ 1.01740494e+05, 9.80549949e+04, 1.05462566e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt68_fwd' : [ 1.34929789e+05, 1.24673023e+05, 1.15959242e+05, 1.10100043e+05, 1.01740494e+05, 9.46370141e+04, 9.15490532e+04, 8.46045375e+04, 7.87024388e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt68_fwd' : [ 1.34949386e+05, 7.86940487e+04, ], 'CountWeighted_rwgt68_pt0to60' : [ 1.77284807e+06, 1.77298205e+06, 1.77273485e+06, ], 'CountWeightedLHEWeightScale_rwgt68_pt0to60' : [ 2.31813223e+06, 2.17335517e+06, 2.04287438e+06, 1.89106613e+06, 1.77284807e+06, 1.66632784e+06, 1.57212698e+06, 1.47376777e+06, 1.38515771e+06, ], 'CountWeightedLHEEnvelope_rwgt68_pt0to60' : [ 2.32023316e+06, 1.38433036e+06, ], 'CountWeightedFull_rwgt68_pt0to60' : [ 1.77284807e+06, 1.77298205e+06, 1.77273485e+06, ], 'CountWeightedFullLHEWeightScale_rwgt68_pt0to60' : [ 2.31813223e+06, 2.17335517e+06, 2.04287438e+06, 1.89106613e+06, 1.77284807e+06, 1.66632784e+06, 1.57212698e+06, 1.47376777e+06, 1.38515771e+06, ], 'CountWeightedFullLHEEnvelope_rwgt68_pt0to60' : [ 2.32023316e+06, 1.38433036e+06, ], 'CountWeightedL1PrefireNom_rwgt68_pt0to60' : [ 1.72457953e+06, 1.72464583e+06, 1.72454482e+06, ], 'CountWeightedL1Prefire_rwgt68_pt0to60' : [ 1.72457953e+06, 1.71224953e+06, 1.73641448e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt68_pt0to60' : [ 2.25421682e+06, 2.11424478e+06, 1.98794365e+06, 1.83887051e+06, 1.72457953e+06, 1.62147534e+06, 1.52869655e+06, 1.43360801e+06, 1.34784184e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt68_pt0to60' : [ 2.25629686e+06, 1.34702174e+06, ], 'CountWeightedFullL1PrefireNom_rwgt68_pt0to60' : [ 1.72457953e+06, 1.72464583e+06, 1.72454482e+06, ], 'CountWeightedFullL1Prefire_rwgt68_pt0to60' : [ 1.72457953e+06, 1.71224953e+06, 1.73641448e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt68_pt0to60' : [ 2.25421682e+06, 2.11424478e+06, 1.98794365e+06, 1.83887051e+06, 1.72457953e+06, 1.62147534e+06, 1.52869655e+06, 1.43360801e+06, 1.34784184e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt68_pt0to60' : [ 2.25629686e+06, 1.34702174e+06, ], 'CountWeighted_rwgt68_pt60to120' : [ 2.83884273e+06, 2.83898497e+06, 2.83870813e+06, ], 'CountWeightedLHEWeightScale_rwgt68_pt60to120' : [ 3.73252198e+06, 3.48251713e+06, 3.25974679e+06, 3.04265457e+06, 2.83884273e+06, 2.65726074e+06, 2.52799754e+06, 2.35864802e+06, 2.20778438e+06, ], 'CountWeightedLHEEnvelope_rwgt68_pt60to120' : [ 3.73492665e+06, 2.20683373e+06, ], 'CountWeightedFull_rwgt68_pt60to120' : [ 2.83884273e+06, 2.83898497e+06, 2.83870813e+06, ], 'CountWeightedFullLHEWeightScale_rwgt68_pt60to120' : [ 3.73252198e+06, 3.48251713e+06, 3.25974679e+06, 3.04265457e+06, 2.83884273e+06, 2.65726074e+06, 2.52799754e+06, 2.35864802e+06, 2.20778438e+06, ], 'CountWeightedFullLHEEnvelope_rwgt68_pt60to120' : [ 3.73492665e+06, 2.20683373e+06, ], 'CountWeightedL1PrefireNom_rwgt68_pt60to120' : [ 2.75478569e+06, 2.75478925e+06, 2.75480294e+06, ], 'CountWeightedL1Prefire_rwgt68_pt60to120' : [ 2.75478569e+06, 2.73376813e+06, 2.77512681e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt68_pt60to120' : [ 3.62060278e+06, 3.37951463e+06, 3.16442264e+06, 2.95131942e+06, 2.75478569e+06, 2.57946920e+06, 2.45204261e+06, 2.28874574e+06, 2.14309370e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt68_pt60to120' : [ 3.62298250e+06, 2.14215201e+06, ], 'CountWeightedFullL1PrefireNom_rwgt68_pt60to120' : [ 2.75478569e+06, 2.75478925e+06, 2.75480294e+06, ], 'CountWeightedFullL1Prefire_rwgt68_pt60to120' : [ 2.75478569e+06, 2.73376813e+06, 2.77512681e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt68_pt60to120' : [ 3.62060278e+06, 3.37951463e+06, 3.16442264e+06, 2.95131942e+06, 2.75478569e+06, 2.57946920e+06, 2.45204261e+06, 2.28874574e+06, 2.14309370e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt68_pt60to120' : [ 3.62298250e+06, 2.14215201e+06, ], 'CountWeighted_rwgt68_pt120to200' : [ 2.10055252e+06, 2.10049275e+06, 2.10063304e+06, ], 'CountWeightedLHEWeightScale_rwgt68_pt120to200' : [ 2.77811756e+06, 2.57115511e+06, 2.39054046e+06, 2.26952888e+06, 2.10055252e+06, 1.95309463e+06, 1.88898219e+06, 1.74840451e+06, 1.62573213e+06, ], 'CountWeightedLHEEnvelope_rwgt68_pt120to200' : [ 2.77913889e+06, 1.62531465e+06, ], 'CountWeightedFull_rwgt68_pt120to200' : [ 2.10055252e+06, 2.10049275e+06, 2.10063304e+06, ], 'CountWeightedFullLHEWeightScale_rwgt68_pt120to200' : [ 2.77811756e+06, 2.57115511e+06, 2.39054046e+06, 2.26952888e+06, 2.10055252e+06, 1.95309463e+06, 1.88898219e+06, 1.74840451e+06, 1.62573213e+06, ], 'CountWeightedFullLHEEnvelope_rwgt68_pt120to200' : [ 2.77913889e+06, 1.62531465e+06, ], 'CountWeightedL1PrefireNom_rwgt68_pt120to200' : [ 2.03036885e+06, 2.03024789e+06, 2.03051855e+06, ], 'CountWeightedL1Prefire_rwgt68_pt120to200' : [ 2.03036885e+06, 2.01334846e+06, 2.04700236e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt68_pt120to200' : [ 2.68399777e+06, 2.48528803e+06, 2.31165509e+06, 2.19260398e+06, 2.03036885e+06, 1.88861388e+06, 1.82493224e+06, 1.68996477e+06, 1.57203799e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt68_pt120to200' : [ 2.68500807e+06, 1.57162482e+06, ], 'CountWeightedFullL1PrefireNom_rwgt68_pt120to200' : [ 2.03036885e+06, 2.03024789e+06, 2.03051855e+06, ], 'CountWeightedFullL1Prefire_rwgt68_pt120to200' : [ 2.03036885e+06, 2.01334846e+06, 2.04700236e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt68_pt120to200' : [ 2.68399777e+06, 2.48528803e+06, 2.31165509e+06, 2.19260398e+06, 2.03036885e+06, 1.88861388e+06, 1.82493224e+06, 1.68996477e+06, 1.57203799e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt68_pt120to200' : [ 2.68500807e+06, 1.57162482e+06, ], 'CountWeighted_rwgt68_pt200to300' : [ 8.87869468e+05, 8.87620300e+05, 8.88179361e+05, ], 'CountWeightedLHEWeightScale_rwgt68_pt200to300' : [ 1.18231328e+06, 1.08215591e+06, 9.96839681e+05, 9.69954406e+05, 8.87869468e+05, 8.17944207e+05, 8.10132927e+05, 7.41630313e+05, 6.83272393e+05, ], 'CountWeightedLHEEnvelope_rwgt68_pt200to300' : [ 1.18252726e+06, 6.83191983e+05, ], 'CountWeightedFull_rwgt68_pt200to300' : [ 8.87869468e+05, 8.87620300e+05, 8.88179361e+05, ], 'CountWeightedFullLHEWeightScale_rwgt68_pt200to300' : [ 1.18231328e+06, 1.08215591e+06, 9.96839681e+05, 9.69954406e+05, 8.87869468e+05, 8.17944207e+05, 8.10132927e+05, 7.41630313e+05, 6.83272393e+05, ], 'CountWeightedFullLHEEnvelope_rwgt68_pt200to300' : [ 1.18252726e+06, 6.83191983e+05, ], 'CountWeightedL1PrefireNom_rwgt68_pt200to300' : [ 8.55725203e+05, 8.55465451e+05, 8.56042059e+05, ], 'CountWeightedL1Prefire_rwgt68_pt200to300' : [ 8.55725203e+05, 8.48136449e+05, 8.63191902e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt68_pt200to300' : [ 1.13878185e+06, 1.04295897e+06, 9.61232053e+05, 9.34259426e+05, 8.55725203e+05, 7.88740494e+05, 7.80331707e+05, 7.14791103e+05, 6.58886537e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt68_pt200to300' : [ 1.13899335e+06, 6.58807110e+05, ], 'CountWeightedFullL1PrefireNom_rwgt68_pt200to300' : [ 8.55725203e+05, 8.55465451e+05, 8.56042059e+05, ], 'CountWeightedFullL1Prefire_rwgt68_pt200to300' : [ 8.55725203e+05, 8.48136449e+05, 8.63191902e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt68_pt200to300' : [ 1.13878185e+06, 1.04295897e+06, 9.61232053e+05, 9.34259426e+05, 8.55725203e+05, 7.88740494e+05, 7.80331707e+05, 7.14791103e+05, 6.58886537e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt68_pt200to300' : [ 1.13899335e+06, 6.58807110e+05, ], 'CountWeighted_rwgt68_ptGt300' : [ 4.10748043e+05, 4.10640176e+05, 4.10851842e+05, ], 'CountWeightedLHEWeightScale_rwgt68_ptGt300' : [ 5.52246408e+05, 4.97169906e+05, 4.51527364e+05, 4.56196500e+05, 4.10748043e+05, 3.73080547e+05, 3.83223881e+05, 3.45079234e+05, 3.13462299e+05, ], 'CountWeightedLHEEnvelope_rwgt68_ptGt300' : [ 5.52270028e+05, 3.13455692e+05, ], 'CountWeightedFull_rwgt68_ptGt300' : [ 4.10748043e+05, 4.10640176e+05, 4.10851842e+05, ], 'CountWeightedFullLHEWeightScale_rwgt68_ptGt300' : [ 5.52246408e+05, 4.97169906e+05, 4.51527364e+05, 4.56196500e+05, 4.10748043e+05, 3.73080547e+05, 3.83223881e+05, 3.45079234e+05, 3.13462299e+05, ], 'CountWeightedFullLHEEnvelope_rwgt68_ptGt300' : [ 5.52270028e+05, 3.13455692e+05, ], 'CountWeightedL1PrefireNom_rwgt68_ptGt300' : [ 3.96065220e+05, 3.95949877e+05, 3.96169338e+05, ], 'CountWeightedL1Prefire_rwgt68_ptGt300' : [ 3.96065220e+05, 3.92657330e+05, 3.99426133e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt68_ptGt300' : [ 5.32050823e+05, 4.79362579e+05, 4.35644255e+05, 4.39546414e+05, 3.96065220e+05, 3.59982896e+05, 3.69260223e+05, 3.32764261e+05, 3.02475915e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt68_ptGt300' : [ 5.32074012e+05, 3.02469473e+05, ], 'CountWeightedFullL1PrefireNom_rwgt68_ptGt300' : [ 3.96065220e+05, 3.95949877e+05, 3.96169338e+05, ], 'CountWeightedFullL1Prefire_rwgt68_ptGt300' : [ 3.96065220e+05, 3.92657330e+05, 3.99426133e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt68_ptGt300' : [ 5.32050823e+05, 4.79362579e+05, 4.35644255e+05, 4.39546414e+05, 3.96065220e+05, 3.59982896e+05, 3.69260223e+05, 3.32764261e+05, 3.02475915e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt68_ptGt300' : [ 5.32074012e+05, 3.02469473e+05, ], 'CountWeighted_rwgt68_pt300to450' : [ 3.22659015e+05, 3.22544437e+05, 3.22777358e+05, ], 'CountWeightedLHEWeightScale_rwgt68_pt300to450' : [ 4.33048465e+05, 3.91179939e+05, 3.56305914e+05, 3.57145944e+05, 3.22659015e+05, 2.93930022e+05, 2.99605508e+05, 2.70704839e+05, 2.46626893e+05, ], 'CountWeightedLHEEnvelope_rwgt68_pt300to450' : [ 4.33071515e+05, 2.46620469e+05, ], 'CountWeightedFull_rwgt68_pt300to450' : [ 3.22659015e+05, 3.22544437e+05, 3.22777358e+05, ], 'CountWeightedFullLHEWeightScale_rwgt68_pt300to450' : [ 4.33048465e+05, 3.91179939e+05, 3.56305914e+05, 3.57145944e+05, 3.22659015e+05, 2.93930022e+05, 2.99605508e+05, 2.70704839e+05, 2.46626893e+05, ], 'CountWeightedFullLHEEnvelope_rwgt68_pt300to450' : [ 4.33071515e+05, 2.46620469e+05, ], 'CountWeightedL1PrefireNom_rwgt68_pt300to450' : [ 3.10835899e+05, 3.10714477e+05, 3.10953633e+05, ], 'CountWeightedL1Prefire_rwgt68_pt300to450' : [ 3.10835899e+05, 3.08089812e+05, 3.13544769e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt68_pt300to450' : [ 4.16836324e+05, 3.76824076e+05, 3.43453791e+05, 3.43795894e+05, 3.10835899e+05, 2.83344028e+05, 2.88420639e+05, 2.60798089e+05, 2.37755846e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt68_pt300to450' : [ 4.16858942e+05, 2.37749582e+05, ], 'CountWeightedFullL1PrefireNom_rwgt68_pt300to450' : [ 3.10835899e+05, 3.10714477e+05, 3.10953633e+05, ], 'CountWeightedFullL1Prefire_rwgt68_pt300to450' : [ 3.10835899e+05, 3.08089812e+05, 3.13544769e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt68_pt300to450' : [ 4.16836324e+05, 3.76824076e+05, 3.43453791e+05, 3.43795894e+05, 3.10835899e+05, 2.83344028e+05, 2.88420639e+05, 2.60798089e+05, 2.37755846e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt68_pt300to450' : [ 4.16858942e+05, 2.37749582e+05, ], 'CountWeighted_rwgt68_ptGt450' : [ 8.80890341e+04, 8.80957543e+04, 8.80744724e+04, ], 'CountWeightedLHEWeightScale_rwgt68_ptGt450' : [ 1.19197939e+05, 1.05989947e+05, 9.52214706e+04, 9.90506452e+04, 8.80890341e+04, 7.91505099e+04, 8.36183474e+04, 7.43743752e+04, 6.68353997e+04, ], 'CountWeightedLHEEnvelope_rwgt68_ptGt450' : [ 1.19198515e+05, 6.68352187e+04, ], 'CountWeightedFull_rwgt68_ptGt450' : [ 8.80890341e+04, 8.80957543e+04, 8.80744724e+04, ], 'CountWeightedFullLHEWeightScale_rwgt68_ptGt450' : [ 1.19197939e+05, 1.05989947e+05, 9.52214706e+04, 9.90506452e+04, 8.80890341e+04, 7.91505099e+04, 8.36183474e+04, 7.43743752e+04, 6.68353997e+04, ], 'CountWeightedFullLHEEnvelope_rwgt68_ptGt450' : [ 1.19198515e+05, 6.68352187e+04, ], 'CountWeightedL1PrefireNom_rwgt68_ptGt450' : [ 8.52293373e+04, 8.52353892e+04, 8.52157023e+04, ], 'CountWeightedL1Prefire_rwgt68_ptGt450' : [ 8.52293373e+04, 8.45675281e+04, 8.58813734e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt68_ptGt450' : [ 1.15214478e+05, 1.02538512e+05, 9.21904656e+04, 9.57505763e+04, 8.52293373e+04, 7.66388634e+04, 8.08395681e+04, 7.19661377e+04, 6.47200528e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt68_ptGt450' : [ 1.15215040e+05, 6.47198776e+04, ], 'CountWeightedFullL1PrefireNom_rwgt68_ptGt450' : [ 8.52293373e+04, 8.52353892e+04, 8.52157023e+04, ], 'CountWeightedFullL1Prefire_rwgt68_ptGt450' : [ 8.52293373e+04, 8.45675281e+04, 8.58813734e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt68_ptGt450' : [ 1.15214478e+05, 1.02538512e+05, 9.21904656e+04, 9.57505763e+04, 8.52293373e+04, 7.66388634e+04, 8.08395681e+04, 7.19661377e+04, 6.47200528e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt68_ptGt450' : [ 1.15215040e+05, 6.47198776e+04, ], }), ("nof_tree_events", 9618000), ("nof_db_events", 9618000), ("fsize_local", 89316225387), # 89.32GB, avg file size 920.79MB ("fsize_db", 604098212165), # 604.10GB, avg file size 2.35GB ("use_it", False), ("xsection", 0.5071), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 306000 - 306102 -> NNPDF31_nnlo_hessian_pdfas PDF set, expecting 103 weights (counted 103 weights)"), ("nof_reweighting", 69), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/TTH_4f_ctcvcp"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/THQ_ctcvcp_4f_Hincl_13TeV_madgraph_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "tHq"), ("process_name_specific", "THQ_ctcvcp"), ("nof_files", 51), ("nof_db_files", 258), ("nof_events", { 'Count' : [ 9918994, ], 'CountWeighted' : [ 9.86419965e+06, 9.86435144e+06, 9.86426481e+06, ], 'CountWeightedLHEWeightScale' : [ 1.23642944e+07, 1.13078804e+07, 1.03873593e+07, 1.07886814e+07, 9.86415373e+06, 9.06067407e+06, 9.58180944e+06, 8.76010814e+06, 8.04497758e+06, ], 'CountWeightedLHEEnvelope' : [ 1.23972013e+07, 8.03377397e+06, ], 'CountWeightedFull' : [ 9.86419965e+06, 9.86435144e+06, 9.86426481e+06, ], 'CountWeightedFullLHEWeightScale' : [ 1.23642944e+07, 1.13078804e+07, 1.03873593e+07, 1.07886814e+07, 9.86415373e+06, 9.06067407e+06, 9.58180944e+06, 8.76010814e+06, 8.04497758e+06, ], 'CountWeightedFullLHEEnvelope' : [ 1.23972013e+07, 8.03377397e+06, ], 'CountWeightedL1PrefireNom' : [ 9.47269805e+06, 9.47211556e+06, 9.47334192e+06, ], 'CountWeightedL1Prefire' : [ 9.47269805e+06, 9.37812893e+06, 9.56498549e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 1.18685984e+07, 1.08622109e+07, 9.98373058e+06, 1.03528216e+07, 9.47262708e+06, 8.70579934e+06, 9.19242327e+06, 8.41002865e+06, 7.72800815e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 1.19010035e+07, 7.71692176e+06, ], 'CountWeightedFullL1PrefireNom' : [ 9.47269805e+06, 9.47211556e+06, 9.47334192e+06, ], 'CountWeightedFullL1Prefire' : [ 9.47269805e+06, 9.37812893e+06, 9.56498549e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 1.18685984e+07, 1.08622109e+07, 9.98373058e+06, 1.03528216e+07, 9.47262708e+06, 8.70579934e+06, 9.19242327e+06, 8.41002865e+06, 7.72800815e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 1.19010035e+07, 7.71692176e+06, ], 'CountWeighted_rwgt0' : [ 3.86189244e+07, 3.86188015e+07, 3.86195307e+07, ], 'CountWeightedLHEWeightScale_rwgt0' : [ 4.82732442e+07, 4.42442230e+07, 4.07156596e+07, 4.21450213e+07, 3.86185215e+07, 3.55341590e+07, 3.74456994e+07, 3.43074145e+07, 3.15636905e+07, ], 'CountWeightedLHEEnvelope_rwgt0' : [ 4.84050286e+07, 3.15189176e+07, ], 'CountWeightedFull_rwgt0' : [ 3.86189244e+07, 3.86188015e+07, 3.86195307e+07, ], 'CountWeightedFullLHEWeightScale_rwgt0' : [ 4.82732442e+07, 4.42442230e+07, 4.07156596e+07, 4.21450213e+07, 3.86185215e+07, 3.55341590e+07, 3.74456994e+07, 3.43074145e+07, 3.15636905e+07, ], 'CountWeightedFullLHEEnvelope_rwgt0' : [ 4.84050286e+07, 3.15189176e+07, ], 'CountWeightedL1PrefireNom_rwgt0' : [ 3.70722369e+07, 3.70694868e+07, 3.70753801e+07, ], 'CountWeightedL1Prefire_rwgt0' : [ 3.70722369e+07, 3.67000303e+07, 3.74358054e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt0' : [ 4.63234692e+07, 4.24862902e+07, 3.91198613e+07, 4.04292636e+07, 3.70718510e+07, 3.41301815e+07, 3.59121225e+07, 3.29250640e+07, 3.03089639e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt0' : [ 4.64532386e+07, 3.02646484e+07, ], 'CountWeightedFullL1PrefireNom_rwgt0' : [ 3.70722369e+07, 3.70694868e+07, 3.70753801e+07, ], 'CountWeightedFullL1Prefire_rwgt0' : [ 3.70722369e+07, 3.67000303e+07, 3.74358054e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt0' : [ 4.63234692e+07, 4.24862902e+07, 3.91198613e+07, 4.04292636e+07, 3.70718510e+07, 3.41301815e+07, 3.59121225e+07, 3.29250640e+07, 3.03089639e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt0' : [ 4.64532386e+07, 3.02646484e+07, ], 'CountWeighted_rwgt1' : [ 2.17919503e+07, 2.17917702e+07, 2.17920083e+07, ], 'CountWeightedLHEWeightScale_rwgt1' : [ 2.72629040e+07, 2.49706841e+07, 2.29664301e+07, 2.37974153e+07, 2.17917197e+07, 2.00399723e+07, 2.11409083e+07, 1.93561270e+07, 1.77982302e+07, ], 'CountWeightedLHEEnvelope_rwgt1' : [ 2.73367893e+07, 1.77730997e+07, ], 'CountWeightedFull_rwgt1' : [ 2.17919503e+07, 2.17917702e+07, 2.17920083e+07, ], 'CountWeightedFullLHEWeightScale_rwgt1' : [ 2.72629040e+07, 2.49706841e+07, 2.29664301e+07, 2.37974153e+07, 2.17917197e+07, 2.00399723e+07, 2.11409083e+07, 1.93561270e+07, 1.77982302e+07, ], 'CountWeightedFullLHEEnvelope_rwgt1' : [ 2.73367893e+07, 1.77730997e+07, ], 'CountWeightedL1PrefireNom_rwgt1' : [ 2.09228330e+07, 2.09212222e+07, 2.09244219e+07, ], 'CountWeightedL1Prefire_rwgt1' : [ 2.09228330e+07, 2.07134180e+07, 2.11273502e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt1' : [ 2.61661179e+07, 2.39827055e+07, 2.20701627e+07, 2.28325284e+07, 2.09226150e+07, 1.92516509e+07, 2.02786157e+07, 1.85795394e+07, 1.70938376e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt1' : [ 2.62388740e+07, 1.70689727e+07, ], 'CountWeightedFullL1PrefireNom_rwgt1' : [ 2.09228330e+07, 2.09212222e+07, 2.09244219e+07, ], 'CountWeightedFullL1Prefire_rwgt1' : [ 2.09228330e+07, 2.07134180e+07, 2.11273502e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt1' : [ 2.61661179e+07, 2.39827055e+07, 2.20701627e+07, 2.28325284e+07, 2.09226150e+07, 1.92516509e+07, 2.02786157e+07, 1.85795394e+07, 1.70938376e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt1' : [ 2.62388740e+07, 1.70689727e+07, ], 'CountWeighted_rwgt2' : [ 1.52158936e+07, 1.52158387e+07, 1.52160511e+07, ], 'CountWeightedLHEWeightScale_rwgt2' : [ 1.90495742e+07, 1.74379633e+07, 1.60306511e+07, 1.66257084e+07, 1.52157379e+07, 1.39859800e+07, 1.47681818e+07, 1.35136695e+07, 1.24200957e+07, ], 'CountWeightedLHEEnvelope_rwgt2' : [ 1.91008623e+07, 1.24026445e+07, ], 'CountWeightedFull_rwgt2' : [ 1.52158936e+07, 1.52158387e+07, 1.52160511e+07, ], 'CountWeightedFullLHEWeightScale_rwgt2' : [ 1.90495742e+07, 1.74379633e+07, 1.60306511e+07, 1.66257084e+07, 1.52157379e+07, 1.39859800e+07, 1.47681818e+07, 1.35136695e+07, 1.24200957e+07, ], 'CountWeightedFullLHEEnvelope_rwgt2' : [ 1.91008623e+07, 1.24026445e+07, ], 'CountWeightedL1PrefireNom_rwgt2' : [ 1.46104747e+07, 1.46094007e+07, 1.46116445e+07, ], 'CountWeightedL1Prefire_rwgt2' : [ 1.46104747e+07, 1.44644195e+07, 1.47530615e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt2' : [ 1.82848535e+07, 1.67496097e+07, 1.54065821e+07, 1.59530505e+07, 1.46103253e+07, 1.34371408e+07, 1.41671239e+07, 1.29727489e+07, 1.19297767e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt2' : [ 1.83353537e+07, 1.19125069e+07, ], 'CountWeightedFullL1PrefireNom_rwgt2' : [ 1.46104747e+07, 1.46094007e+07, 1.46116445e+07, ], 'CountWeightedFullL1Prefire_rwgt2' : [ 1.46104747e+07, 1.44644195e+07, 1.47530615e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt2' : [ 1.82848535e+07, 1.67496097e+07, 1.54065821e+07, 1.59530505e+07, 1.46103253e+07, 1.34371408e+07, 1.41671239e+07, 1.29727489e+07, 1.19297767e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt2' : [ 1.83353537e+07, 1.19125069e+07, ], 'CountWeighted_rwgt3' : [ 1.23872635e+07, 1.23872489e+07, 1.23872361e+07, ], 'CountWeightedLHEWeightScale_rwgt3' : [ 1.55159391e+07, 1.41976329e+07, 1.30474438e+07, 1.35403772e+07, 1.23871314e+07, 1.13822596e+07, 1.20267236e+07, 1.10007153e+07, 1.01071115e+07, ], 'CountWeightedLHEEnvelope_rwgt3' : [ 1.55575064e+07, 1.00929599e+07, ], 'CountWeightedFull_rwgt3' : [ 1.23872635e+07, 1.23872489e+07, 1.23872361e+07, ], 'CountWeightedFullLHEWeightScale_rwgt3' : [ 1.55159391e+07, 1.41976329e+07, 1.30474438e+07, 1.35403772e+07, 1.23871314e+07, 1.13822596e+07, 1.20267236e+07, 1.10007153e+07, 1.01071115e+07, ], 'CountWeightedFullLHEEnvelope_rwgt3' : [ 1.55575064e+07, 1.00929599e+07, ], 'CountWeightedL1PrefireNom_rwgt3' : [ 1.18949039e+07, 1.18940496e+07, 1.18957176e+07, ], 'CountWeightedL1Prefire_rwgt3' : [ 1.18949039e+07, 1.17760516e+07, 1.20109176e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt3' : [ 1.48936219e+07, 1.36376957e+07, 1.25400647e+07, 1.29930460e+07, 1.18947779e+07, 1.09360949e+07, 1.15376971e+07, 1.05608410e+07, 9.70855826e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt3' : [ 1.49345519e+07, 9.69455641e+06, ], 'CountWeightedFullL1PrefireNom_rwgt3' : [ 1.18949039e+07, 1.18940496e+07, 1.18957176e+07, ], 'CountWeightedFullL1Prefire_rwgt3' : [ 1.18949039e+07, 1.17760516e+07, 1.20109176e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt3' : [ 1.48936219e+07, 1.36376957e+07, 1.25400647e+07, 1.29930460e+07, 1.18947779e+07, 1.09360949e+07, 1.15376971e+07, 1.05608410e+07, 9.70855826e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt3' : [ 1.49345519e+07, 9.69455641e+06, ], 'CountWeighted_rwgt4' : [ 7.64885266e+06, 7.64879244e+06, 7.64891180e+06, ], 'CountWeightedLHEWeightScale_rwgt4' : [ 9.59449452e+06, 8.76885750e+06, 8.05052573e+06, 8.37077293e+06, 7.64877503e+06, 7.02128879e+06, 7.43356998e+06, 6.79138654e+06, 6.23359872e+06, ], 'CountWeightedLHEEnvelope_rwgt4' : [ 9.61979230e+06, 6.22498322e+06, ], 'CountWeightedFull_rwgt4' : [ 7.64885266e+06, 7.64879244e+06, 7.64891180e+06, ], 'CountWeightedFullLHEWeightScale_rwgt4' : [ 9.59449452e+06, 8.76885750e+06, 8.05052573e+06, 8.37077293e+06, 7.64877503e+06, 7.02128879e+06, 7.43356998e+06, 6.79138654e+06, 6.23359872e+06, ], 'CountWeightedFullLHEEnvelope_rwgt4' : [ 9.61979230e+06, 6.22498322e+06, ], 'CountWeightedL1PrefireNom_rwgt4' : [ 7.34500500e+06, 7.34444373e+06, 7.34556071e+06, ], 'CountWeightedL1Prefire_rwgt4' : [ 7.34500500e+06, 7.27153079e+06, 7.41669992e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt4' : [ 9.20973881e+06, 8.42322629e+06, 7.73770644e+06, 8.03249531e+06, 7.34492984e+06, 6.74631326e+06, 7.13140818e+06, 6.52001558e+06, 5.98800694e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt4' : [ 9.23464779e+06, 5.97948201e+06, ], 'CountWeightedFullL1PrefireNom_rwgt4' : [ 7.34500500e+06, 7.34444373e+06, 7.34556071e+06, ], 'CountWeightedFullL1Prefire_rwgt4' : [ 7.34500500e+06, 7.27153079e+06, 7.41669992e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt4' : [ 9.20973881e+06, 8.42322629e+06, 7.73770644e+06, 8.03249531e+06, 7.34492984e+06, 6.74631326e+06, 7.13140818e+06, 6.52001558e+06, 5.98800694e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt4' : [ 9.23464779e+06, 5.97948201e+06, ], 'CountWeighted_rwgt5' : [ 5.73896832e+06, 5.73896568e+06, 5.73905539e+06, ], 'CountWeightedLHEWeightScale_rwgt5' : [ 7.20676958e+06, 6.58049668e+06, 6.03675765e+06, 6.28649657e+06, 5.73890782e+06, 5.26409792e+06, 5.58191161e+06, 5.09498423e+06, 4.67291593e+06, ], 'CountWeightedLHEEnvelope_rwgt5' : [ 7.22551954e+06, 4.66652631e+06, ], 'CountWeightedFull_rwgt5' : [ 5.73896832e+06, 5.73896568e+06, 5.73905539e+06, ], 'CountWeightedFullLHEWeightScale_rwgt5' : [ 7.20676958e+06, 6.58049668e+06, 6.03675765e+06, 6.28649657e+06, 5.73890782e+06, 5.26409792e+06, 5.58191161e+06, 5.09498423e+06, 4.67291593e+06, ], 'CountWeightedFullLHEEnvelope_rwgt5' : [ 7.22551954e+06, 4.66652631e+06, ], 'CountWeightedL1PrefireNom_rwgt5' : [ 5.51060386e+06, 5.51021551e+06, 5.51106211e+06, ], 'CountWeightedL1Prefire_rwgt5' : [ 5.51060386e+06, 5.45533096e+06, 5.56453709e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt5' : [ 6.91717193e+06, 6.32066339e+06, 5.80181656e+06, 6.03193905e+06, 5.51054615e+06, 5.05762509e+06, 5.35457675e+06, 4.89105571e+06, 4.48855114e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt5' : [ 6.93563410e+06, 4.48222962e+06, ], 'CountWeightedFullL1PrefireNom_rwgt5' : [ 5.51060386e+06, 5.51021551e+06, 5.51106211e+06, ], 'CountWeightedFullL1Prefire_rwgt5' : [ 5.51060386e+06, 5.45533096e+06, 5.56453709e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt5' : [ 6.91717193e+06, 6.32066339e+06, 5.80181656e+06, 6.03193905e+06, 5.51054615e+06, 5.05762509e+06, 5.35457675e+06, 4.89105571e+06, 4.48855114e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt5' : [ 6.93563410e+06, 4.48222962e+06, ], 'CountWeighted_rwgt6' : [ 4.13542657e+06, 4.13539680e+06, 4.13545614e+06, ], 'CountWeightedLHEWeightScale_rwgt6' : [ 5.20100641e+06, 4.74278266e+06, 4.34614176e+06, 4.53589818e+06, 4.13538351e+06, 3.78908624e+06, 4.02688123e+06, 3.67078672e+06, 3.36303046e+06, ], 'CountWeightedLHEEnvelope_rwgt6' : [ 5.21426865e+06, 3.35851073e+06, ], 'CountWeightedFull_rwgt6' : [ 4.13542657e+06, 4.13539680e+06, 4.13545614e+06, ], 'CountWeightedFullLHEWeightScale_rwgt6' : [ 5.20100641e+06, 4.74278266e+06, 4.34614176e+06, 4.53589818e+06, 4.13538351e+06, 3.78908624e+06, 4.02688123e+06, 3.67078672e+06, 3.36303046e+06, ], 'CountWeightedFullLHEEnvelope_rwgt6' : [ 5.21426865e+06, 3.35851073e+06, ], 'CountWeightedL1PrefireNom_rwgt6' : [ 3.97001255e+06, 3.96970571e+06, 3.97031774e+06, ], 'CountWeightedL1Prefire_rwgt6' : [ 3.97001255e+06, 3.92992591e+06, 4.00911458e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt6' : [ 4.99082747e+06, 4.55451955e+06, 4.17615273e+06, 4.35120784e+06, 3.96997136e+06, 3.63973682e+06, 3.86197818e+06, 3.52310813e+06, 3.22970239e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt6' : [ 5.00388414e+06, 3.22523265e+06, ], 'CountWeightedFullL1PrefireNom_rwgt6' : [ 3.97001255e+06, 3.96970571e+06, 3.97031774e+06, ], 'CountWeightedFullL1Prefire_rwgt6' : [ 3.97001255e+06, 3.92992591e+06, 4.00911458e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt6' : [ 4.99082747e+06, 4.55451955e+06, 4.17615273e+06, 4.35120784e+06, 3.96997136e+06, 3.63973682e+06, 3.86197818e+06, 3.52310813e+06, 3.22970239e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt6' : [ 5.00388414e+06, 3.22523265e+06, ], 'CountWeighted_rwgt7' : [ 2.83857015e+06, 2.83853919e+06, 2.83861048e+06, ], 'CountWeightedLHEWeightScale_rwgt7' : [ 3.57780134e+06, 3.25626253e+06, 2.97913568e+06, 3.11947957e+06, 2.83854050e+06, 2.59667095e+06, 2.76888945e+06, 2.51917420e+06, 2.30427771e+06, ], 'CountWeightedLHEEnvelope_rwgt7' : [ 3.58663312e+06, 2.30127016e+06, ], 'CountWeightedFull_rwgt7' : [ 2.83857015e+06, 2.83853919e+06, 2.83861048e+06, ], 'CountWeightedFullLHEWeightScale_rwgt7' : [ 3.57780134e+06, 3.25626253e+06, 2.97913568e+06, 3.11947957e+06, 2.83854050e+06, 2.59667095e+06, 2.76888945e+06, 2.51917420e+06, 2.30427771e+06, ], 'CountWeightedFullLHEEnvelope_rwgt7' : [ 3.58663312e+06, 2.30127016e+06, ], 'CountWeightedL1PrefireNom_rwgt7' : [ 2.72356503e+06, 2.72334647e+06, 2.72379161e+06, ], 'CountWeightedL1Prefire_rwgt7' : [ 2.72356503e+06, 2.69566709e+06, 2.75077742e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt7' : [ 3.43127093e+06, 3.12532848e+06, 2.86114889e+06, 2.99076741e+06, 2.72353653e+06, 2.49304304e+06, 2.65399546e+06, 2.41652466e+06, 2.21178700e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt7' : [ 3.43996333e+06, 2.20881259e+06, ], 'CountWeightedFullL1PrefireNom_rwgt7' : [ 2.72356503e+06, 2.72334647e+06, 2.72379161e+06, ], 'CountWeightedFullL1Prefire_rwgt7' : [ 2.72356503e+06, 2.69566709e+06, 2.75077742e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt7' : [ 3.43127093e+06, 3.12532848e+06, 2.86114889e+06, 2.99076741e+06, 2.72353653e+06, 2.49304304e+06, 2.65399546e+06, 2.41652466e+06, 2.21178700e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt7' : [ 3.43996333e+06, 2.20881259e+06, ], 'CountWeighted_rwgt8' : [ 1.84706189e+06, 1.84702319e+06, 1.84711323e+06, ], 'CountWeightedLHEWeightScale_rwgt8' : [ 2.33542214e+06, 2.11936226e+06, 1.93431441e+06, 2.03574947e+06, 1.84704267e+06, 1.68559389e+06, 1.80662118e+06, 1.63893691e+06, 1.49553126e+06, ], 'CountWeightedLHEEnvelope_rwgt8' : [ 2.34087762e+06, 1.49367871e+06, ], 'CountWeightedFull_rwgt8' : [ 1.84706189e+06, 1.84702319e+06, 1.84711323e+06, ], 'CountWeightedFullLHEWeightScale_rwgt8' : [ 2.33542214e+06, 2.11936226e+06, 1.93431441e+06, 2.03574947e+06, 1.84704267e+06, 1.68559389e+06, 1.80662118e+06, 1.63893691e+06, 1.49553126e+06, ], 'CountWeightedFullLHEEnvelope_rwgt8' : [ 2.34087762e+06, 1.49367871e+06, ], 'CountWeightedL1PrefireNom_rwgt8' : [ 1.76997814e+06, 1.76981942e+06, 1.77015022e+06, ], 'CountWeightedL1Prefire_rwgt8' : [ 1.76997814e+06, 1.75127625e+06, 1.78822601e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt8' : [ 2.23684576e+06, 2.03157158e+06, 1.85542718e+06, 1.94918980e+06, 1.76995979e+06, 1.61633116e+06, 1.72937297e+06, 1.57015387e+06, 1.43372900e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt8' : [ 2.24221298e+06, 1.43189832e+06, ], 'CountWeightedFullL1PrefireNom_rwgt8' : [ 1.76997814e+06, 1.76981942e+06, 1.77015022e+06, ], 'CountWeightedFullL1Prefire_rwgt8' : [ 1.76997814e+06, 1.75127625e+06, 1.78822601e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt8' : [ 2.23684576e+06, 2.03157158e+06, 1.85542718e+06, 1.94918980e+06, 1.76995979e+06, 1.61633116e+06, 1.72937297e+06, 1.57015387e+06, 1.43372900e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt8' : [ 2.24221298e+06, 1.43189832e+06, ], 'CountWeighted_rwgt9' : [ 1.16226804e+06, 1.16222166e+06, 1.16234790e+06, ], 'CountWeightedLHEWeightScale_rwgt9' : [ 1.47559473e+06, 1.33364585e+06, 1.21311000e+06, 1.28619806e+06, 1.16225596e+06, 1.05711531e+06, 1.14140102e+06, 1.03129512e+06, 9.37917494e+05, ], 'CountWeightedLHEEnvelope_rwgt9' : [ 1.47873261e+06, 9.36862231e+05, ], 'CountWeightedFull_rwgt9' : [ 1.16226804e+06, 1.16222166e+06, 1.16234790e+06, ], 'CountWeightedFullLHEWeightScale_rwgt9' : [ 1.47559473e+06, 1.33364585e+06, 1.21311000e+06, 1.28619806e+06, 1.16225596e+06, 1.05711531e+06, 1.14140102e+06, 1.03129512e+06, 9.37917494e+05, ], 'CountWeightedFullLHEEnvelope_rwgt9' : [ 1.47873261e+06, 9.36862231e+05, ], 'CountWeightedL1PrefireNom_rwgt9' : [ 1.11056553e+06, 1.11044201e+06, 1.11071265e+06, ], 'CountWeightedL1Prefire_rwgt9' : [ 1.11056553e+06, 1.09805335e+06, 1.12278560e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt9' : [ 1.40920367e+06, 1.27475530e+06, 1.16037145e+06, 1.22790262e+06, 1.11055409e+06, 1.01081535e+06, 1.08938348e+06, 9.85161479e+05, 8.96607186e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt9' : [ 1.41228747e+06, 8.95565203e+05, ], 'CountWeightedFullL1PrefireNom_rwgt9' : [ 1.11056553e+06, 1.11044201e+06, 1.11071265e+06, ], 'CountWeightedFullL1Prefire_rwgt9' : [ 1.11056553e+06, 1.09805335e+06, 1.12278560e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt9' : [ 1.40920367e+06, 1.27475530e+06, 1.16037145e+06, 1.22790262e+06, 1.11055409e+06, 1.01081535e+06, 1.08938348e+06, 9.85161479e+05, 8.96607186e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt9' : [ 1.41228747e+06, 8.95565203e+05, ], 'CountWeighted_rwgt10' : [ 7.83732880e+05, 7.83672842e+05, 7.83846761e+05, ], 'CountWeightedLHEWeightScale_rwgt10' : [ 9.97736506e+05, 8.98587107e+05, 8.15041658e+05, 8.70320373e+05, 7.83724725e+05, 7.10814548e+05, 7.72785072e+05, 6.95833539e+05, 6.31060567e+05, ], 'CountWeightedLHEEnvelope_rwgt10' : [ 9.99614310e+05, 6.30444151e+05, ], 'CountWeightedFull_rwgt10' : [ 7.83732880e+05, 7.83672842e+05, 7.83846761e+05, ], 'CountWeightedFullLHEWeightScale_rwgt10' : [ 9.97736506e+05, 8.98587107e+05, 8.15041658e+05, 8.70320373e+05, 7.83724725e+05, 7.10814548e+05, 7.72785072e+05, 6.95833539e+05, 6.31060567e+05, ], 'CountWeightedFullLHEEnvelope_rwgt10' : [ 9.99614310e+05, 6.30444151e+05, ], 'CountWeightedL1PrefireNom_rwgt10' : [ 7.44885157e+05, 7.44775320e+05, 7.45038585e+05, ], 'CountWeightedL1Prefire_rwgt10' : [ 7.44885157e+05, 7.35564190e+05, 7.54011146e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt10' : [ 9.47783307e+05, 8.54373361e+05, 7.75516708e+05, 8.26429947e+05, 7.44877449e+05, 6.76089327e+05, 7.33596687e+05, 6.61151164e+05, 6.00059371e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt10' : [ 9.49624832e+05, 5.99451584e+05, ], 'CountWeightedFullL1PrefireNom_rwgt10' : [ 7.44885157e+05, 7.44775320e+05, 7.45038585e+05, ], 'CountWeightedFullL1Prefire_rwgt10' : [ 7.44885157e+05, 7.35564190e+05, 7.54011146e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt10' : [ 9.47783307e+05, 8.54373361e+05, 7.75516708e+05, 8.26429947e+05, 7.44877449e+05, 6.76089327e+05, 7.33596687e+05, 6.61151164e+05, 6.00059371e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt10' : [ 9.49624832e+05, 5.99451584e+05, ], 'CountWeighted_rwgt11' : [ 7.11464110e+05, 7.11385037e+05, 7.11617846e+05, ], 'CountWeightedLHEWeightScale_rwgt11' : [ 9.01874501e+05, 8.14208047e+05, 7.40118950e+05, 7.88138226e+05, 7.11456751e+05, 6.46701351e+05, 7.00785264e+05, 6.32569795e+05, 5.74971794e+05, ], 'CountWeightedLHEEnvelope_rwgt11' : [ 9.03549403e+05, 5.74436386e+05, ], 'CountWeightedFull_rwgt11' : [ 7.11464110e+05, 7.11385037e+05, 7.11617846e+05, ], 'CountWeightedFullLHEWeightScale_rwgt11' : [ 9.01874501e+05, 8.14208047e+05, 7.40118950e+05, 7.88138226e+05, 7.11456751e+05, 6.46701351e+05, 7.00785264e+05, 6.32569795e+05, 5.74971794e+05, ], 'CountWeightedFullLHEEnvelope_rwgt11' : [ 9.03549403e+05, 5.74436386e+05, ], 'CountWeightedL1PrefireNom_rwgt11' : [ 6.72947482e+05, 6.72824260e+05, 6.73132946e+05, ], 'CountWeightedL1Prefire_rwgt11' : [ 6.72947482e+05, 6.63817181e+05, 6.81912898e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt11' : [ 8.52613371e+05, 7.70442268e+05, 7.00875009e+05, 7.44781175e+05, 6.72940542e+05, 6.12164081e+05, 6.62026610e+05, 5.98138740e+05, 5.44098631e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt11' : [ 8.54253153e+05, 5.43570748e+05, ], 'CountWeightedFullL1PrefireNom_rwgt11' : [ 6.72947482e+05, 6.72824260e+05, 6.73132946e+05, ], 'CountWeightedFullL1Prefire_rwgt11' : [ 6.72947482e+05, 6.63817181e+05, 6.81912898e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt11' : [ 8.52613371e+05, 7.70442268e+05, 7.00875009e+05, 7.44781175e+05, 6.72940542e+05, 6.12164081e+05, 6.62026610e+05, 5.98138740e+05, 5.44098631e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt11' : [ 8.54253153e+05, 5.43570748e+05, ], 'CountWeighted_rwgt12' : [ 9.45463015e+05, 9.45359831e+05, 9.45662872e+05, ], 'CountWeightedLHEWeightScale_rwgt12' : [ 1.18799607e+06, 1.08049619e+06, 9.88342943e+05, 1.03964047e+06, 9.45453215e+05, 8.64775744e+05, 9.25400059e+05, 8.41501285e+05, 7.69649882e+05, ], 'CountWeightedLHEEnvelope_rwgt12' : [ 1.19052529e+06, 7.68837732e+05, ], 'CountWeightedFull_rwgt12' : [ 9.45463015e+05, 9.45359831e+05, 9.45662872e+05, ], 'CountWeightedFullLHEWeightScale_rwgt12' : [ 1.18799607e+06, 1.08049619e+06, 9.88342943e+05, 1.03964047e+06, 9.45453215e+05, 8.64775744e+05, 9.25400059e+05, 8.41501285e+05, 7.69649882e+05, ], 'CountWeightedFullLHEEnvelope_rwgt12' : [ 1.19052529e+06, 7.68837732e+05, ], 'CountWeightedL1PrefireNom_rwgt12' : [ 8.94753313e+05, 8.94592192e+05, 8.94998661e+05, ], 'CountWeightedL1Prefire_rwgt12' : [ 8.94753313e+05, 8.82813413e+05, 9.06491988e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt12' : [ 1.12367993e+06, 1.02295769e+06, 9.36444917e+05, 9.82954653e+05, 8.94744041e+05, 8.19039936e+05, 8.74670878e+05, 7.96122401e+05, 7.28723135e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt12' : [ 1.12615946e+06, 7.27921041e+05, ], 'CountWeightedFullL1PrefireNom_rwgt12' : [ 8.94753313e+05, 8.94592192e+05, 8.94998661e+05, ], 'CountWeightedFullL1Prefire_rwgt12' : [ 8.94753313e+05, 8.82813413e+05, 9.06491988e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt12' : [ 1.12367993e+06, 1.02295769e+06, 9.36444917e+05, 9.82954653e+05, 8.94744041e+05, 8.19039936e+05, 8.74670878e+05, 7.96122401e+05, 7.28723135e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt12' : [ 1.12615946e+06, 7.27921041e+05, ], 'CountWeighted_rwgt13' : [ 1.48571574e+06, 1.48558693e+06, 1.48597200e+06, ], 'CountWeightedLHEWeightScale_rwgt13' : [ 1.85608985e+06, 1.69744416e+06, 1.55970080e+06, 1.62482251e+06, 1.48570036e+06, 1.36502375e+06, 1.44661527e+06, 1.32261466e+06, 1.21508056e+06, ], 'CountWeightedLHEEnvelope_rwgt13' : [ 1.86053107e+06, 1.21363348e+06, ], 'CountWeightedFull_rwgt13' : [ 1.48571574e+06, 1.48558693e+06, 1.48597200e+06, ], 'CountWeightedFullLHEWeightScale_rwgt13' : [ 1.85608985e+06, 1.69744416e+06, 1.55970080e+06, 1.62482251e+06, 1.48570036e+06, 1.36502375e+06, 1.44661527e+06, 1.32261466e+06, 1.21508056e+06, ], 'CountWeightedFullLHEEnvelope_rwgt13' : [ 1.86053107e+06, 1.21363348e+06, ], 'CountWeightedL1PrefireNom_rwgt13' : [ 1.41028747e+06, 1.41006647e+06, 1.41062126e+06, ], 'CountWeightedL1Prefire_rwgt13' : [ 1.41028747e+06, 1.39253976e+06, 1.42773356e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt13' : [ 1.76097478e+06, 1.61190568e+06, 1.48221461e+06, 1.54094119e+06, 1.41027296e+06, 1.29670095e+06, 1.37151629e+06, 1.25508816e+06, 1.15391809e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt13' : [ 1.76533489e+06, 1.15248743e+06, ], 'CountWeightedFullL1PrefireNom_rwgt13' : [ 1.41028747e+06, 1.41006647e+06, 1.41062126e+06, ], 'CountWeightedFullL1Prefire_rwgt13' : [ 1.41028747e+06, 1.39253976e+06, 1.42773356e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt13' : [ 1.76097478e+06, 1.61190568e+06, 1.48221461e+06, 1.54094119e+06, 1.41027296e+06, 1.29670095e+06, 1.37151629e+06, 1.25508816e+06, 1.15391809e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt13' : [ 1.76533489e+06, 1.15248743e+06, ], 'CountWeighted_rwgt14' : [ 3.48499917e+06, 3.48480672e+06, 3.48538221e+06, ], 'CountWeightedLHEWeightScale_rwgt14' : [ 4.33820503e+06, 3.98332752e+06, 3.67182892e+06, 3.79622180e+06, 3.48496286e+06, 3.21205731e+06, 3.37886812e+06, 3.10140171e+06, 2.85822318e+06, ], 'CountWeightedLHEEnvelope_rwgt14' : [ 4.34964063e+06, 2.85443372e+06, ], 'CountWeightedFull_rwgt14' : [ 3.48499917e+06, 3.48480672e+06, 3.48538221e+06, ], 'CountWeightedFullLHEWeightScale_rwgt14' : [ 4.33820503e+06, 3.98332752e+06, 3.67182892e+06, 3.79622180e+06, 3.48496286e+06, 3.21205731e+06, 3.37886812e+06, 3.10140171e+06, 2.85822318e+06, ], 'CountWeightedFullLHEEnvelope_rwgt14' : [ 4.34964063e+06, 2.85443372e+06, ], 'CountWeightedL1PrefireNom_rwgt14' : [ 3.32256500e+06, 3.32214966e+06, 3.32315605e+06, ], 'CountWeightedL1Prefire_rwgt14' : [ 3.32256500e+06, 3.28419505e+06, 3.36022547e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt14' : [ 4.13425678e+06, 3.79911768e+06, 3.50436598e+06, 3.61635840e+06, 3.32253064e+06, 3.06440259e+06, 3.21782997e+06, 2.95598437e+06, 2.72604435e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt14' : [ 4.14549944e+06, 2.72229412e+06, ], 'CountWeightedFullL1PrefireNom_rwgt14' : [ 3.32256500e+06, 3.32214966e+06, 3.32315605e+06, ], 'CountWeightedFullL1Prefire_rwgt14' : [ 3.32256500e+06, 3.28419505e+06, 3.36022547e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt14' : [ 4.13425678e+06, 3.79911768e+06, 3.50436598e+06, 3.61635840e+06, 3.32253064e+06, 3.06440259e+06, 3.21782997e+06, 2.95598437e+06, 2.72604435e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt14' : [ 4.14549944e+06, 2.72229412e+06, ], 'CountWeighted_rwgt15' : [ 1.11586861e+07, 1.11583245e+07, 1.11593973e+07, ], 'CountWeightedLHEWeightScale_rwgt15' : [ 1.38861733e+07, 1.27630709e+07, 1.17737472e+07, 1.21432051e+07, 1.11585702e+07, 1.02922675e+07, 1.08026481e+07, 9.92521862e+06, 9.15360840e+06, ], 'CountWeightedLHEEnvelope_rwgt15' : [ 1.39242856e+07, 9.14083682e+06, ], 'CountWeightedFull_rwgt15' : [ 1.11586861e+07, 1.11583245e+07, 1.11593973e+07, ], 'CountWeightedFullLHEWeightScale_rwgt15' : [ 1.38861733e+07, 1.27630709e+07, 1.17737472e+07, 1.21432051e+07, 1.11585702e+07, 1.02922675e+07, 1.08026481e+07, 9.92521862e+06, 9.15360840e+06, ], 'CountWeightedFullLHEEnvelope_rwgt15' : [ 1.39242856e+07, 9.14083682e+06, ], 'CountWeightedL1PrefireNom_rwgt15' : [ 1.06719330e+07, 1.06708501e+07, 1.06733601e+07, ], 'CountWeightedL1Prefire_rwgt15' : [ 1.06719330e+07, 1.05563210e+07, 1.07852224e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt15' : [ 1.32756212e+07, 1.22108261e+07, 1.12711210e+07, 1.16049766e+07, 1.06718223e+07, 9.84929983e+06, 1.03209306e+07, 9.48962229e+06, 8.75722083e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt15' : [ 1.33131175e+07, 8.74457864e+06, ], 'CountWeightedFullL1PrefireNom_rwgt15' : [ 1.06719330e+07, 1.06708501e+07, 1.06733601e+07, ], 'CountWeightedFullL1Prefire_rwgt15' : [ 1.06719330e+07, 1.05563210e+07, 1.07852224e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt15' : [ 1.32756212e+07, 1.22108261e+07, 1.12711210e+07, 1.16049766e+07, 1.06718223e+07, 9.84929983e+06, 1.03209306e+07, 9.48962229e+06, 8.75722083e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt15' : [ 1.33131175e+07, 8.74457864e+06, ], 'CountWeighted_rwgt17' : [ 2.99205787e+07, 2.99204002e+07, 2.99207061e+07, ], 'CountWeightedLHEWeightScale_rwgt17' : [ 3.74707111e+07, 3.42920588e+07, 3.15179498e+07, 3.27009063e+07, 2.99202725e+07, 2.74962534e+07, 2.90460305e+07, 2.65720282e+07, 2.44167096e+07, ], 'CountWeightedLHEEnvelope_rwgt17' : [ 3.75712601e+07, 2.43824859e+07, ], 'CountWeightedFull_rwgt17' : [ 2.99205787e+07, 2.99204002e+07, 2.99207061e+07, ], 'CountWeightedFullLHEWeightScale_rwgt17' : [ 3.74707111e+07, 3.42920588e+07, 3.15179498e+07, 3.27009063e+07, 2.99202725e+07, 2.74962534e+07, 2.90460305e+07, 2.65720282e+07, 2.44167096e+07, ], 'CountWeightedFullLHEEnvelope_rwgt17' : [ 3.75712601e+07, 2.43824859e+07, ], 'CountWeightedL1PrefireNom_rwgt17' : [ 2.87308701e+07, 2.87286540e+07, 2.87330035e+07, ], 'CountWeightedL1Prefire_rwgt17' : [ 2.87308701e+07, 2.84437516e+07, 2.90111549e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt17' : [ 3.59673584e+07, 3.29392695e+07, 3.02918173e+07, 3.13786713e+07, 2.87305736e+07, 2.64180282e+07, 2.78646168e+07, 2.55091992e+07, 2.34534886e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt17' : [ 3.60663728e+07, 2.34196193e+07, ], 'CountWeightedFullL1PrefireNom_rwgt17' : [ 2.87308701e+07, 2.87286540e+07, 2.87330035e+07, ], 'CountWeightedFullL1Prefire_rwgt17' : [ 2.87308701e+07, 2.84437516e+07, 2.90111549e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt17' : [ 3.59673584e+07, 3.29392695e+07, 3.02918173e+07, 3.13786713e+07, 2.87305736e+07, 2.64180282e+07, 2.78646168e+07, 2.55091992e+07, 2.34534886e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt17' : [ 3.60663728e+07, 2.34196193e+07, ], 'CountWeighted_rwgt19' : [ 1.87985638e+07, 1.87986335e+07, 1.87986391e+07, ], 'CountWeightedLHEWeightScale_rwgt19' : [ 2.35734467e+07, 2.15500311e+07, 1.97889907e+07, 2.05676918e+07, 1.87983659e+07, 1.72599500e+07, 1.82656017e+07, 1.66918159e+07, 1.53241694e+07, ], 'CountWeightedLHEEnvelope_rwgt19' : [ 2.36358090e+07, 1.53029258e+07, ], 'CountWeightedFull_rwgt19' : [ 1.87985638e+07, 1.87986335e+07, 1.87986391e+07, ], 'CountWeightedFullLHEWeightScale_rwgt19' : [ 2.35734467e+07, 2.15500311e+07, 1.97889907e+07, 2.05676918e+07, 1.87983659e+07, 1.72599500e+07, 1.82656017e+07, 1.66918159e+07, 1.53241694e+07, ], 'CountWeightedFullLHEEnvelope_rwgt19' : [ 2.36358090e+07, 1.53029258e+07, ], 'CountWeightedL1PrefireNom_rwgt19' : [ 1.80518848e+07, 1.80506793e+07, 1.80532130e+07, ], 'CountWeightedL1Prefire_rwgt19' : [ 1.80518848e+07, 1.78714165e+07, 1.82280286e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt19' : [ 2.26282537e+07, 2.07007772e+07, 1.90201154e+07, 1.97366705e+07, 1.80516957e+07, 1.65840273e+07, 1.75232790e+07, 1.60249373e+07, 1.47204504e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt19' : [ 2.26896599e+07, 1.46994291e+07, ], 'CountWeightedFullL1PrefireNom_rwgt19' : [ 1.80518848e+07, 1.80506793e+07, 1.80532130e+07, ], 'CountWeightedFullL1Prefire_rwgt19' : [ 1.80518848e+07, 1.78714165e+07, 1.82280286e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt19' : [ 2.26282537e+07, 2.07007772e+07, 1.90201154e+07, 1.97366705e+07, 1.80516957e+07, 1.65840273e+07, 1.75232790e+07, 1.60249373e+07, 1.47204504e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt19' : [ 2.26896599e+07, 1.46994291e+07, ], 'CountWeighted_rwgt20' : [ 1.57038887e+07, 1.57037664e+07, 1.57039742e+07, ], 'CountWeightedLHEWeightScale_rwgt20' : [ 1.97048638e+07, 1.80043420e+07, 1.65256972e+07, 1.71906997e+07, 1.57037262e+07, 1.44122092e+07, 1.52654065e+07, 1.39428649e+07, 1.27948316e+07, ], 'CountWeightedLHEEnvelope_rwgt20' : [ 1.97566239e+07, 1.27771973e+07, ], 'CountWeightedFull_rwgt20' : [ 1.57038887e+07, 1.57037664e+07, 1.57039742e+07, ], 'CountWeightedFullLHEWeightScale_rwgt20' : [ 1.97048638e+07, 1.80043420e+07, 1.65256972e+07, 1.71906997e+07, 1.57037262e+07, 1.44122092e+07, 1.52654065e+07, 1.39428649e+07, 1.27948316e+07, ], 'CountWeightedFullLHEEnvelope_rwgt20' : [ 1.97566239e+07, 1.27771973e+07, ], 'CountWeightedL1PrefireNom_rwgt20' : [ 1.50798544e+07, 1.50786692e+07, 1.50809662e+07, ], 'CountWeightedL1Prefire_rwgt20' : [ 1.50798544e+07, 1.49288815e+07, 1.52271218e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt20' : [ 1.89143048e+07, 1.72944142e+07, 1.58833637e+07, 1.64956991e+07, 1.50796978e+07, 1.38476022e+07, 1.46446353e+07, 1.33855392e+07, 1.22906101e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt20' : [ 1.89652662e+07, 1.22731630e+07, ], 'CountWeightedFullL1PrefireNom_rwgt20' : [ 1.50798544e+07, 1.50786692e+07, 1.50809662e+07, ], 'CountWeightedFullL1Prefire_rwgt20' : [ 1.50798544e+07, 1.49288815e+07, 1.52271218e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt20' : [ 1.89143048e+07, 1.72944142e+07, 1.58833637e+07, 1.64956991e+07, 1.50796978e+07, 1.38476022e+07, 1.46446353e+07, 1.33855392e+07, 1.22906101e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt20' : [ 1.89652662e+07, 1.22731630e+07, ], 'CountWeighted_rwgt22' : [ 1.04330571e+07, 1.04330209e+07, 1.04330902e+07, ], 'CountWeightedLHEWeightScale_rwgt22' : [ 1.31138457e+07, 1.19644322e+07, 1.09683945e+07, 1.14376940e+07, 1.04329490e+07, 9.56326892e+06, 1.01547278e+07, 9.26138232e+06, 8.48845263e+06, ], 'CountWeightedLHEEnvelope_rwgt22' : [ 1.31475473e+07, 8.47696745e+06, ], 'CountWeightedFull_rwgt22' : [ 1.04330571e+07, 1.04330209e+07, 1.04330902e+07, ], 'CountWeightedFullLHEWeightScale_rwgt22' : [ 1.31138457e+07, 1.19644322e+07, 1.09683945e+07, 1.14376940e+07, 1.04329490e+07, 9.56326892e+06, 1.01547278e+07, 9.26138232e+06, 8.48845263e+06, ], 'CountWeightedFullLHEEnvelope_rwgt22' : [ 1.31475473e+07, 8.47696745e+06, ], 'CountWeightedL1PrefireNom_rwgt22' : [ 1.00167028e+07, 1.00159604e+07, 1.00174356e+07, ], 'CountWeightedL1Prefire_rwgt22' : [ 1.00167028e+07, 9.91583199e+06, 1.01150974e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt22' : [ 1.25851965e+07, 1.14906116e+07, 1.05403513e+07, 1.09731010e+07, 1.00165988e+07, 9.18715349e+06, 9.73988319e+06, 8.88962312e+06, 8.15263856e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt22' : [ 1.26183776e+07, 8.14127682e+06, ], 'CountWeightedFullL1PrefireNom_rwgt22' : [ 1.00167028e+07, 1.00159604e+07, 1.00174356e+07, ], 'CountWeightedFullL1Prefire_rwgt22' : [ 1.00167028e+07, 9.91583199e+06, 1.01150974e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt22' : [ 1.25851965e+07, 1.14906116e+07, 1.05403513e+07, 1.09731010e+07, 1.00165988e+07, 9.18715349e+06, 9.73988319e+06, 8.88962312e+06, 8.15263856e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt22' : [ 1.26183776e+07, 8.14127682e+06, ], 'CountWeighted_rwgt23' : [ 8.25708759e+06, 8.25702552e+06, 8.25713795e+06, ], 'CountWeightedLHEWeightScale_rwgt23' : [ 1.03912872e+07, 9.47051204e+06, 8.67449234e+06, 9.06171561e+06, 8.25700253e+06, 7.56208286e+06, 8.04433992e+06, 7.32892822e+06, 6.71138393e+06, ], 'CountWeightedLHEEnvelope_rwgt23' : [ 1.04175472e+07, 6.70243524e+06, ], 'CountWeightedFull_rwgt23' : [ 8.25708759e+06, 8.25702552e+06, 8.25713795e+06, ], 'CountWeightedFullLHEWeightScale_rwgt23' : [ 1.03912872e+07, 9.47051204e+06, 8.67449234e+06, 9.06171561e+06, 8.25700253e+06, 7.56208286e+06, 8.04433992e+06, 7.32892822e+06, 6.71138393e+06, ], 'CountWeightedFullLHEEnvelope_rwgt23' : [ 1.04175472e+07, 6.70243524e+06, ], 'CountWeightedL1PrefireNom_rwgt23' : [ 7.92577687e+06, 7.92515983e+06, 7.92637474e+06, ], 'CountWeightedL1Prefire_rwgt23' : [ 7.92577687e+06, 7.84545605e+06, 8.00412597e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt23' : [ 9.96999388e+06, 9.09340630e+06, 8.33418974e+06, 8.69154834e+06, 7.92569462e+06, 7.26312445e+06, 7.71385114e+06, 7.03315564e+06, 6.44451552e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt23' : [ 9.99584546e+06, 6.43566560e+06, ], 'CountWeightedFullL1PrefireNom_rwgt23' : [ 7.92577687e+06, 7.92515983e+06, 7.92637474e+06, ], 'CountWeightedFullL1Prefire_rwgt23' : [ 7.92577687e+06, 7.84545605e+06, 8.00412597e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt23' : [ 9.96999388e+06, 9.09340630e+06, 8.33418974e+06, 8.69154834e+06, 7.92569462e+06, 7.26312445e+06, 7.71385114e+06, 7.03315564e+06, 6.44451552e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt23' : [ 9.99584546e+06, 6.43566560e+06, ], 'CountWeighted_rwgt25' : [ 4.82388295e+06, 4.82381043e+06, 4.82397855e+06, ], 'CountWeightedLHEWeightScale_rwgt25' : [ 6.09211153e+06, 5.53463427e+06, 5.05603566e+06, 5.31080687e+06, 4.82383270e+06, 4.40621938e+06, 4.71332760e+06, 4.28056641e+06, 3.90958587e+06, ], 'CountWeightedLHEEnvelope_rwgt25' : [ 6.10665733e+06, 3.90463940e+06, ], 'CountWeightedFull_rwgt25' : [ 4.82388295e+06, 4.82381043e+06, 4.82397855e+06, ], 'CountWeightedFullLHEWeightScale_rwgt25' : [ 6.09211153e+06, 5.53463427e+06, 5.05603566e+06, 5.31080687e+06, 4.82383270e+06, 4.40621938e+06, 4.71332760e+06, 4.28056641e+06, 3.90958587e+06, ], 'CountWeightedFullLHEEnvelope_rwgt25' : [ 6.10665733e+06, 3.90463940e+06, ], 'CountWeightedL1PrefireNom_rwgt25' : [ 4.62511362e+06, 4.62471632e+06, 4.62551462e+06, ], 'CountWeightedL1Prefire_rwgt25' : [ 4.62511362e+06, 4.57687285e+06, 4.67216433e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt25' : [ 5.83825503e+06, 5.30827074e+06, 4.85241920e+06, 5.08786400e+06, 4.62506555e+06, 4.22742525e+06, 4.51435659e+06, 4.10317806e+06, 3.75003600e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt25' : [ 5.85256850e+06, 3.74514651e+06, ], 'CountWeightedFullL1PrefireNom_rwgt25' : [ 4.62511362e+06, 4.62471632e+06, 4.62551462e+06, ], 'CountWeightedFullL1Prefire_rwgt25' : [ 4.62511362e+06, 4.57687285e+06, 4.67216433e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt25' : [ 5.83825503e+06, 5.30827074e+06, 4.85241920e+06, 5.08786400e+06, 4.62506555e+06, 4.22742525e+06, 4.51435659e+06, 4.10317806e+06, 3.75003600e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt25' : [ 5.85256850e+06, 3.74514651e+06, ], 'CountWeighted_rwgt26' : [ 3.56666960e+06, 3.56658520e+06, 3.56679273e+06, ], 'CountWeightedLHEWeightScale_rwgt26' : [ 4.51549448e+06, 4.09268516e+06, 3.73152496e+06, 3.93586596e+06, 3.56663276e+06, 3.25155815e+06, 3.49273199e+06, 3.16466615e+06, 2.88482101e+06, ], 'CountWeightedLHEEnvelope_rwgt26' : [ 4.52577107e+06, 2.88133856e+06, ], 'CountWeightedFull_rwgt26' : [ 3.56666960e+06, 3.56658520e+06, 3.56679273e+06, ], 'CountWeightedFullLHEWeightScale_rwgt26' : [ 4.51549448e+06, 4.09268516e+06, 3.73152496e+06, 3.93586596e+06, 3.56663276e+06, 3.25155815e+06, 3.49273199e+06, 3.16466615e+06, 2.88482101e+06, ], 'CountWeightedFullLHEEnvelope_rwgt26' : [ 4.52577107e+06, 2.88133856e+06, ], 'CountWeightedL1PrefireNom_rwgt26' : [ 3.41537671e+06, 3.41505805e+06, 3.41572914e+06, ], 'CountWeightedL1Prefire_rwgt26' : [ 3.41537671e+06, 3.37867855e+06, 3.45118385e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt26' : [ 4.32174372e+06, 3.92036096e+06, 3.57684727e+06, 3.76574394e+06, 3.41534080e+06, 3.11576638e+06, 3.34092832e+06, 3.02966805e+06, 2.76366043e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt26' : [ 4.33185068e+06, 2.76021982e+06, ], 'CountWeightedFullL1PrefireNom_rwgt26' : [ 3.41537671e+06, 3.41505805e+06, 3.41572914e+06, ], 'CountWeightedFullL1Prefire_rwgt26' : [ 3.41537671e+06, 3.37867855e+06, 3.45118385e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt26' : [ 4.32174372e+06, 3.92036096e+06, 3.57684727e+06, 3.76574394e+06, 3.41534080e+06, 3.11576638e+06, 3.34092832e+06, 3.02966805e+06, 2.76366043e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt26' : [ 4.33185068e+06, 2.76021982e+06, ], 'CountWeighted_rwgt28' : [ 1.97101760e+06, 1.97090429e+06, 1.97122326e+06, ], 'CountWeightedLHEWeightScale_rwgt28' : [ 2.50817499e+06, 2.26077370e+06, 2.05189927e+06, 2.18702554e+06, 1.97099705e+06, 1.78876618e+06, 1.94135757e+06, 1.74942471e+06, 1.58756699e+06, ], 'CountWeightedLHEEnvelope_rwgt28' : [ 2.51308145e+06, 1.58593946e+06, ], 'CountWeightedFull_rwgt28' : [ 1.97101760e+06, 1.97090429e+06, 1.97122326e+06, ], 'CountWeightedFullLHEWeightScale_rwgt28' : [ 2.50817499e+06, 2.26077370e+06, 2.05189927e+06, 2.18702554e+06, 1.97099705e+06, 1.78876618e+06, 1.94135757e+06, 1.74942471e+06, 1.58756699e+06, ], 'CountWeightedFullLHEEnvelope_rwgt28' : [ 2.51308145e+06, 1.58593946e+06, ], 'CountWeightedL1PrefireNom_rwgt28' : [ 1.87711477e+06, 1.87687263e+06, 1.87743427e+06, ], 'CountWeightedL1Prefire_rwgt28' : [ 1.87711477e+06, 1.85449989e+06, 1.89923021e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt28' : [ 2.38740205e+06, 2.15385628e+06, 1.95630672e+06, 2.08094751e+06, 1.87709541e+06, 1.70481581e+06, 1.84667793e+06, 1.66561657e+06, 1.51263964e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt28' : [ 2.39221785e+06, 1.51103413e+06, ], 'CountWeightedFullL1PrefireNom_rwgt28' : [ 1.87711477e+06, 1.87687263e+06, 1.87743427e+06, ], 'CountWeightedFullL1Prefire_rwgt28' : [ 1.87711477e+06, 1.85449989e+06, 1.89923021e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt28' : [ 2.38740205e+06, 2.15385628e+06, 1.95630672e+06, 2.08094751e+06, 1.87709541e+06, 1.70481581e+06, 1.84667793e+06, 1.66561657e+06, 1.51263964e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt28' : [ 2.39221785e+06, 1.51103413e+06, ], 'CountWeighted_rwgt29' : [ 1.63257581e+06, 1.63244018e+06, 1.63284249e+06, ], 'CountWeightedLHEWeightScale_rwgt29' : [ 2.07746762e+06, 1.87080218e+06, 1.69679026e+06, 1.81311945e+06, 1.63255886e+06, 1.48063588e+06, 1.61057758e+06, 1.45007858e+06, 1.31506782e+06, ], 'CountWeightedLHEEnvelope_rwgt29' : [ 2.08127584e+06, 1.31383051e+06, ], 'CountWeightedFull_rwgt29' : [ 1.63257581e+06, 1.63244018e+06, 1.63284249e+06, ], 'CountWeightedFullLHEWeightScale_rwgt29' : [ 2.07746762e+06, 1.87080218e+06, 1.69679026e+06, 1.81311945e+06, 1.63255886e+06, 1.48063588e+06, 1.61057758e+06, 1.45007858e+06, 1.31506782e+06, ], 'CountWeightedFullLHEEnvelope_rwgt29' : [ 2.08127584e+06, 1.31383051e+06, ], 'CountWeightedL1PrefireNom_rwgt29' : [ 1.54858024e+06, 1.54833965e+06, 1.54893168e+06, ], 'CountWeightedL1Prefire_rwgt29' : [ 1.54858024e+06, 1.52850784e+06, 1.56825262e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt29' : [ 1.96956621e+06, 1.77525223e+06, 1.61134388e+06, 1.71826745e+06, 1.54856415e+06, 1.40552341e+06, 1.52585802e+06, 1.37506056e+06, 1.24798539e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt29' : [ 1.97329809e+06, 1.24676581e+06, ], 'CountWeightedFullL1PrefireNom_rwgt29' : [ 1.54858024e+06, 1.54833965e+06, 1.54893168e+06, ], 'CountWeightedFullL1Prefire_rwgt29' : [ 1.54858024e+06, 1.52850784e+06, 1.56825262e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt29' : [ 1.96956621e+06, 1.77525223e+06, 1.61134388e+06, 1.71826745e+06, 1.54856415e+06, 1.40552341e+06, 1.52585802e+06, 1.37506056e+06, 1.24798539e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt29' : [ 1.97329809e+06, 1.24676581e+06, ], 'CountWeighted_rwgt31' : [ 2.45487813e+06, 2.45464509e+06, 2.45534355e+06, ], 'CountWeightedLHEWeightScale_rwgt31' : [ 3.07734433e+06, 2.80498057e+06, 2.57037465e+06, 2.69358670e+06, 2.45485279e+06, 2.24939207e+06, 2.39794882e+06, 2.18523850e+06, 2.00220990e+06, ], 'CountWeightedLHEEnvelope_rwgt31' : [ 3.08420100e+06, 1.99999676e+06, ], 'CountWeightedFull_rwgt31' : [ 2.45487813e+06, 2.45464509e+06, 2.45534355e+06, ], 'CountWeightedFullLHEWeightScale_rwgt31' : [ 3.07734433e+06, 2.80498057e+06, 2.57037465e+06, 2.69358670e+06, 2.45485279e+06, 2.24939207e+06, 2.39794882e+06, 2.18523850e+06, 2.00220990e+06, ], 'CountWeightedFullLHEEnvelope_rwgt31' : [ 3.08420100e+06, 1.99999676e+06, ], 'CountWeightedL1PrefireNom_rwgt31' : [ 2.32546206e+06, 2.32507016e+06, 2.32605419e+06, ], 'CountWeightedL1Prefire_rwgt31' : [ 2.32546206e+06, 2.29501036e+06, 2.35540039e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt31' : [ 2.91357580e+06, 2.65817317e+06, 2.43774135e+06, 2.54920549e+06, 2.32543800e+06, 2.13247724e+06, 2.26871471e+06, 2.06940451e+06, 1.89756839e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt31' : [ 2.92030098e+06, 1.89538169e+06, ], 'CountWeightedFullL1PrefireNom_rwgt31' : [ 2.32546206e+06, 2.32507016e+06, 2.32605419e+06, ], 'CountWeightedFullL1Prefire_rwgt31' : [ 2.32546206e+06, 2.29501036e+06, 2.35540039e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt31' : [ 2.91357580e+06, 2.65817317e+06, 2.43774135e+06, 2.54920549e+06, 2.32543800e+06, 2.13247724e+06, 2.26871471e+06, 2.06940451e+06, 1.89756839e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt31' : [ 2.92030098e+06, 1.89538169e+06, ], 'CountWeighted_rwgt33' : [ 2.96213186e+07, 2.96210846e+07, 2.96217706e+07, ], 'CountWeightedLHEWeightScale_rwgt33' : [ 3.69886460e+07, 3.39273747e+07, 3.12417687e+07, 3.23010348e+07, 2.96210122e+07, 2.72726874e+07, 2.87048557e+07, 2.63191958e+07, 2.42298106e+07, ], 'CountWeightedLHEEnvelope_rwgt33' : [ 3.70903693e+07, 2.41952986e+07, ], 'CountWeightedFull_rwgt33' : [ 2.96213186e+07, 2.96210846e+07, 2.96217706e+07, ], 'CountWeightedFullLHEWeightScale_rwgt33' : [ 3.69886460e+07, 3.39273747e+07, 3.12417687e+07, 3.23010348e+07, 2.96210122e+07, 2.72726874e+07, 2.87048557e+07, 2.63191958e+07, 2.42298106e+07, ], 'CountWeightedFullLHEEnvelope_rwgt33' : [ 3.70903693e+07, 2.41952986e+07, ], 'CountWeightedL1PrefireNom_rwgt33' : [ 2.84260520e+07, 2.84238189e+07, 2.84285033e+07, ], 'CountWeightedL1Prefire_rwgt33' : [ 2.84260520e+07, 2.81389545e+07, 2.87066123e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt33' : [ 3.54838096e+07, 3.25693032e+07, 3.00079668e+07, 3.09764360e+07, 2.84257601e+07, 2.61868623e+07, 2.75205808e+07, 2.52506771e+07, 2.32592251e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt33' : [ 3.55839750e+07, 2.32250646e+07, ], 'CountWeightedFullL1PrefireNom_rwgt33' : [ 2.84260520e+07, 2.84238189e+07, 2.84285033e+07, ], 'CountWeightedFullL1Prefire_rwgt33' : [ 2.84260520e+07, 2.81389545e+07, 2.87066123e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt33' : [ 3.54838096e+07, 3.25693032e+07, 3.00079668e+07, 3.09764360e+07, 2.84257601e+07, 2.61868623e+07, 2.75205808e+07, 2.52506771e+07, 2.32592251e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt33' : [ 3.55839750e+07, 2.32250646e+07, ], 'CountWeighted_rwgt34' : [ 1.50838310e+07, 1.50837399e+07, 1.50840328e+07, ], 'CountWeightedLHEWeightScale_rwgt34' : [ 1.88454829e+07, 1.72789097e+07, 1.59058130e+07, 1.64549850e+07, 1.50836754e+07, 1.38832185e+07, 1.46215062e+07, 1.34009750e+07, 1.23330007e+07, ], 'CountWeightedLHEEnvelope_rwgt34' : [ 1.88971217e+07, 1.23154659e+07, ], 'CountWeightedFull_rwgt34' : [ 1.50838310e+07, 1.50837399e+07, 1.50840328e+07, ], 'CountWeightedFullLHEWeightScale_rwgt34' : [ 1.88454829e+07, 1.72789097e+07, 1.59058130e+07, 1.64549850e+07, 1.50836754e+07, 1.38832185e+07, 1.46215062e+07, 1.34009750e+07, 1.23330007e+07, ], 'CountWeightedFullLHEEnvelope_rwgt34' : [ 1.88971217e+07, 1.23154659e+07, ], 'CountWeightedL1PrefireNom_rwgt34' : [ 1.44777903e+07, 1.44766985e+07, 1.44790089e+07, ], 'CountWeightedL1Prefire_rwgt34' : [ 1.44777903e+07, 1.43320813e+07, 1.46201540e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt34' : [ 1.80819729e+07, 1.65902141e+07, 1.52803892e+07, 1.57830252e+07, 1.44776415e+07, 1.33329039e+07, 1.40208144e+07, 1.28592740e+07, 1.18411490e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt34' : [ 1.81328208e+07, 1.18237936e+07, ], 'CountWeightedFullL1PrefireNom_rwgt34' : [ 1.44777903e+07, 1.44766985e+07, 1.44790089e+07, ], 'CountWeightedFullL1Prefire_rwgt34' : [ 1.44777903e+07, 1.43320813e+07, 1.46201540e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt34' : [ 1.80819729e+07, 1.65902141e+07, 1.52803892e+07, 1.57830252e+07, 1.44776415e+07, 1.33329039e+07, 1.40208144e+07, 1.28592740e+07, 1.18411490e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt34' : [ 1.81328208e+07, 1.18237936e+07, ], 'CountWeighted_rwgt36' : [ 7.39647224e+06, 7.39644495e+06, 7.39656344e+06, ], 'CountWeightedLHEWeightScale_rwgt36' : [ 9.24889783e+06, 8.47450746e+06, 7.79677791e+06, 8.07410871e+06, 7.39639659e+06, 6.80401107e+06, 7.17338703e+06, 6.57028682e+06, 6.04337186e+06, ], 'CountWeightedLHEEnvelope_rwgt36' : [ 9.27406969e+06, 6.03481611e+06, ], 'CountWeightedFull_rwgt36' : [ 7.39647224e+06, 7.39644495e+06, 7.39656344e+06, ], 'CountWeightedFullLHEWeightScale_rwgt36' : [ 9.24889783e+06, 8.47450746e+06, 7.79677791e+06, 8.07410871e+06, 7.39639659e+06, 6.80401107e+06, 7.17338703e+06, 6.57028682e+06, 6.04337186e+06, ], 'CountWeightedFullLHEEnvelope_rwgt36' : [ 9.27406969e+06, 6.03481611e+06, ], 'CountWeightedL1PrefireNom_rwgt36' : [ 7.10084929e+06, 7.10032362e+06, 7.10143257e+06, ], 'CountWeightedL1Prefire_rwgt36' : [ 7.10084929e+06, 7.02966862e+06, 7.17037250e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt36' : [ 8.87605677e+06, 8.13848412e+06, 7.49183617e+06, 7.74605560e+06, 7.10077629e+06, 6.53574875e+06, 6.88018221e+06, 6.30609455e+06, 5.80364948e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt36' : [ 8.90084160e+06, 5.79518181e+06, ], 'CountWeightedFullL1PrefireNom_rwgt36' : [ 7.10084929e+06, 7.10032362e+06, 7.10143257e+06, ], 'CountWeightedFullL1Prefire_rwgt36' : [ 7.10084929e+06, 7.02966862e+06, 7.17037250e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt36' : [ 8.87605677e+06, 8.13848412e+06, 7.49183617e+06, 7.74605560e+06, 7.10077629e+06, 6.53574875e+06, 6.88018221e+06, 6.30609455e+06, 5.80364948e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt36' : [ 8.90084160e+06, 5.79518181e+06, ], 'CountWeighted_rwgt46' : [ 1.67885782e+06, 1.67878692e+06, 1.67900907e+06, ], 'CountWeightedLHEWeightScale_rwgt46' : [ 2.08891502e+06, 1.91971295e+06, 1.77076699e+06, 1.82721375e+06, 1.67884031e+06, 1.54838714e+06, 1.62583727e+06, 1.49359807e+06, 1.37737884e+06, ], 'CountWeightedLHEEnvelope_rwgt46' : [ 2.09458622e+06, 1.37548634e+06, ], 'CountWeightedFull_rwgt46' : [ 1.67885782e+06, 1.67878692e+06, 1.67900907e+06, ], 'CountWeightedFullLHEWeightScale_rwgt46' : [ 2.08891502e+06, 1.91971295e+06, 1.77076699e+06, 1.82721375e+06, 1.67884031e+06, 1.54838714e+06, 1.62583727e+06, 1.49359807e+06, 1.37737884e+06, ], 'CountWeightedFullLHEEnvelope_rwgt46' : [ 2.09458622e+06, 1.37548634e+06, ], 'CountWeightedL1PrefireNom_rwgt46' : [ 1.60387564e+06, 1.60369705e+06, 1.60412779e+06, ], 'CountWeightedL1Prefire_rwgt46' : [ 1.60387564e+06, 1.58610651e+06, 1.62130083e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt46' : [ 1.99485623e+06, 1.83465855e+06, 1.69337063e+06, 1.74428356e+06, 1.60385895e+06, 1.48016451e+06, 1.55159892e+06, 1.42648368e+06, 1.31631929e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt46' : [ 2.00043433e+06, 1.31444593e+06, ], 'CountWeightedFullL1PrefireNom_rwgt46' : [ 1.60387564e+06, 1.60369705e+06, 1.60412779e+06, ], 'CountWeightedFullL1Prefire_rwgt46' : [ 1.60387564e+06, 1.58610651e+06, 1.62130083e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt46' : [ 1.99485623e+06, 1.83465855e+06, 1.69337063e+06, 1.74428356e+06, 1.60385895e+06, 1.48016451e+06, 1.55159892e+06, 1.42648368e+06, 1.31631929e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt46' : [ 2.00043433e+06, 1.31444593e+06, ], 'CountWeighted_rwgt48' : [ 5.93563789e+06, 5.93548819e+06, 5.93596081e+06, ], 'CountWeightedLHEWeightScale_rwgt48' : [ 7.38949774e+06, 6.79123306e+06, 6.26417557e+06, 6.45994145e+06, 5.93557669e+06, 5.47421021e+06, 5.74541903e+06, 5.27825118e+06, 4.86739470e+06, ], 'CountWeightedLHEEnvelope_rwgt48' : [ 7.40993051e+06, 4.86052389e+06, ], 'CountWeightedFull_rwgt48' : [ 5.93563789e+06, 5.93548819e+06, 5.93596081e+06, ], 'CountWeightedFullLHEWeightScale_rwgt48' : [ 7.38949774e+06, 6.79123306e+06, 6.26417557e+06, 6.45994145e+06, 5.93557669e+06, 5.47421021e+06, 5.74541903e+06, 5.27825118e+06, 4.86739470e+06, ], 'CountWeightedFullLHEEnvelope_rwgt48' : [ 7.40993051e+06, 4.86052389e+06, ], 'CountWeightedL1PrefireNom_rwgt48' : [ 5.68262864e+06, 5.68208689e+06, 5.68332382e+06, ], 'CountWeightedL1Prefire_rwgt48' : [ 5.68262864e+06, 5.62238150e+06, 5.74162967e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt48' : [ 7.07203509e+06, 6.50408651e+06, 6.00283182e+06, 6.18017338e+06, 5.68256953e+06, 5.24394909e+06, 5.49507252e+06, 5.05187609e+06, 4.66139464e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt48' : [ 7.09214426e+06, 4.65459277e+06, ], 'CountWeightedFullL1PrefireNom_rwgt48' : [ 5.68262864e+06, 5.68208689e+06, 5.68332382e+06, ], 'CountWeightedFullL1Prefire_rwgt48' : [ 5.68262864e+06, 5.62238150e+06, 5.74162967e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt48' : [ 7.07203509e+06, 6.50408651e+06, 6.00283182e+06, 6.18017338e+06, 5.68256953e+06, 5.24394909e+06, 5.49507252e+06, 5.05187609e+06, 4.66139464e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt48' : [ 7.09214426e+06, 4.65459277e+06, ], 'CountWeighted_rwgt49' : [ 1.58989668e+07, 1.58986678e+07, 1.58996419e+07, ], 'CountWeightedLHEWeightScale_rwgt49' : [ 1.98046283e+07, 1.81958647e+07, 1.67793189e+07, 1.73084296e+07, 1.58988029e+07, 1.46591522e+07, 1.53906752e+07, 1.41350875e+07, 1.30313993e+07, ], 'CountWeightedLHEEnvelope_rwgt49' : [ 1.98595498e+07, 1.30128807e+07, ], 'CountWeightedFull_rwgt49' : [ 1.58989668e+07, 1.58986678e+07, 1.58996419e+07, ], 'CountWeightedFullLHEWeightScale_rwgt49' : [ 1.98046283e+07, 1.81958647e+07, 1.67793189e+07, 1.73084296e+07, 1.58988029e+07, 1.46591522e+07, 1.53906752e+07, 1.41350875e+07, 1.30313993e+07, ], 'CountWeightedFullLHEEnvelope_rwgt49' : [ 1.98595498e+07, 1.30128807e+07, ], 'CountWeightedL1PrefireNom_rwgt49' : [ 1.52332433e+07, 1.52319037e+07, 1.52349461e+07, ], 'CountWeightedL1Prefire_rwgt49' : [ 1.52332433e+07, 1.50743680e+07, 1.53887486e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt49' : [ 1.89688597e+07, 1.74401407e+07, 1.60916292e+07, 1.65721161e+07, 1.52330851e+07, 1.40534403e+07, 1.47319366e+07, 1.35395814e+07, 1.24895960e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt49' : [ 1.90229211e+07, 1.24712629e+07, ], 'CountWeightedFullL1PrefireNom_rwgt49' : [ 1.52332433e+07, 1.52319037e+07, 1.52349461e+07, ], 'CountWeightedFullL1Prefire_rwgt49' : [ 1.52332433e+07, 1.50743680e+07, 1.53887486e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt49' : [ 1.89688597e+07, 1.74401407e+07, 1.60916292e+07, 1.65721161e+07, 1.52330851e+07, 1.40534403e+07, 1.47319366e+07, 1.35395814e+07, 1.24895960e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt49' : [ 1.90229211e+07, 1.24712629e+07, ], 'CountWeighted_rwgt50' : [ 9.02237613e+06, 9.02236614e+06, 9.02237176e+06, ], 'CountWeightedLHEWeightScale_rwgt50' : [ 1.13120546e+07, 1.03423163e+07, 9.49802960e+06, 9.87036924e+06, 9.02228207e+06, 8.28468475e+06, 8.76603446e+06, 8.01164399e+06, 7.35587231e+06, ], 'CountWeightedLHEEnvelope_rwgt50' : [ 1.13419865e+07, 7.34568075e+06, ], 'CountWeightedFull_rwgt50' : [ 9.02237613e+06, 9.02236614e+06, 9.02237176e+06, ], 'CountWeightedFullLHEWeightScale_rwgt50' : [ 1.13120546e+07, 1.03423163e+07, 9.49802960e+06, 9.87036924e+06, 9.02228207e+06, 8.28468475e+06, 8.76603446e+06, 8.01164399e+06, 7.35587231e+06, ], 'CountWeightedFullLHEEnvelope_rwgt50' : [ 1.13419865e+07, 7.34568075e+06, ], 'CountWeightedL1PrefireNom_rwgt50' : [ 8.66357296e+06, 8.66294696e+06, 8.66418762e+06, ], 'CountWeightedL1Prefire_rwgt50' : [ 8.66357296e+06, 8.57687948e+06, 8.74818746e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt50' : [ 1.08579815e+07, 9.93423195e+06, 9.12851319e+06, 9.47110326e+06, 8.66348197e+06, 7.95982774e+06, 8.40936092e+06, 7.69115990e+06, 7.06570052e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt50' : [ 1.08874535e+07, 7.05561727e+06, ], 'CountWeightedFullL1PrefireNom_rwgt50' : [ 8.66357296e+06, 8.66294696e+06, 8.66418762e+06, ], 'CountWeightedFullL1Prefire_rwgt50' : [ 8.66357296e+06, 8.57687948e+06, 8.74818746e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt50' : [ 1.08579815e+07, 9.93423195e+06, 9.12851319e+06, 9.47110326e+06, 8.66348197e+06, 7.95982774e+06, 8.40936092e+06, 7.69115990e+06, 7.06570052e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt50' : [ 1.08874535e+07, 7.05561727e+06, ], 'CountWeighted_rwgt51' : [ 8.20780416e+06, 8.20778554e+06, 8.20790038e+06, ], 'CountWeightedLHEWeightScale_rwgt51' : [ 1.02949017e+07, 9.40891219e+06, 8.63814624e+06, 8.98257955e+06, 8.20771982e+06, 7.53443452e+06, 7.97739317e+06, 7.28816533e+06, 6.68953905e+06, ], 'CountWeightedLHEEnvelope_rwgt51' : [ 1.03219731e+07, 6.68032093e+06, ], 'CountWeightedFull_rwgt51' : [ 8.20780416e+06, 8.20778554e+06, 8.20790038e+06, ], 'CountWeightedFullLHEWeightScale_rwgt51' : [ 1.02949017e+07, 9.40891219e+06, 8.63814624e+06, 8.98257955e+06, 8.20771982e+06, 7.53443452e+06, 7.97739317e+06, 7.28816533e+06, 6.68953905e+06, ], 'CountWeightedFullLHEEnvelope_rwgt51' : [ 1.03219731e+07, 6.68032093e+06, ], 'CountWeightedL1PrefireNom_rwgt51' : [ 7.88105057e+06, 7.88047685e+06, 7.88170084e+06, ], 'CountWeightedL1Prefire_rwgt51' : [ 7.88105057e+06, 7.80208836e+06, 7.95811154e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt51' : [ 9.88119087e+06, 9.03724987e+06, 8.30174146e+06, 8.61881886e+06, 7.88096881e+06, 7.23869115e+06, 7.65244293e+06, 6.99629219e+06, 6.42540288e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt51' : [ 9.90784860e+06, 6.41628261e+06, ], 'CountWeightedFullL1PrefireNom_rwgt51' : [ 7.88105057e+06, 7.88047685e+06, 7.88170084e+06, ], 'CountWeightedFullL1Prefire_rwgt51' : [ 7.88105057e+06, 7.80208836e+06, 7.95811154e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt51' : [ 9.88119087e+06, 9.03724987e+06, 8.30174146e+06, 8.61881886e+06, 7.88096881e+06, 7.23869115e+06, 7.65244293e+06, 6.99629219e+06, 6.42540288e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt51' : [ 9.90784860e+06, 6.41628261e+06, ], 'CountWeighted_rwgt52' : [ 7.43499622e+06, 7.43496846e+06, 7.43506997e+06, ], 'CountWeightedLHEWeightScale_rwgt52' : [ 9.32971468e+06, 8.52328400e+06, 7.82243254e+06, 8.14016410e+06, 7.43491933e+06, 6.82270163e+06, 7.22903798e+06, 6.60176877e+06, 6.05749850e+06, ], 'CountWeightedLHEEnvelope_rwgt52' : [ 9.35408351e+06, 6.04920488e+06, ], 'CountWeightedFull_rwgt52' : [ 7.43499622e+06, 7.43496846e+06, 7.43506997e+06, ], 'CountWeightedFullLHEWeightScale_rwgt52' : [ 9.32971468e+06, 8.52328400e+06, 7.82243254e+06, 8.14016410e+06, 7.43491933e+06, 6.82270163e+06, 7.22903798e+06, 6.60176877e+06, 6.05749850e+06, ], 'CountWeightedFullLHEEnvelope_rwgt52' : [ 9.35408351e+06, 6.04920488e+06, ], 'CountWeightedL1PrefireNom_rwgt52' : [ 7.13859947e+06, 7.13808065e+06, 7.13917223e+06, ], 'CountWeightedL1Prefire_rwgt52' : [ 7.13859947e+06, 7.06696637e+06, 7.20851512e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt52' : [ 8.95424841e+06, 8.18614412e+06, 7.51740659e+06, 7.81004220e+06, 7.13852534e+06, 6.55455424e+06, 6.93415172e+06, 6.33704308e+06, 5.81800531e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt52' : [ 8.97824198e+06, 5.80979921e+06, ], 'CountWeightedFullL1PrefireNom_rwgt52' : [ 7.13859947e+06, 7.13808065e+06, 7.13917223e+06, ], 'CountWeightedFullL1Prefire_rwgt52' : [ 7.13859947e+06, 7.06696637e+06, 7.20851512e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt52' : [ 8.95424841e+06, 8.18614412e+06, 7.51740659e+06, 7.81004220e+06, 7.13852534e+06, 6.55455424e+06, 6.93415172e+06, 6.33704308e+06, 5.81800531e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt52' : [ 8.97824198e+06, 5.80979921e+06, ], 'CountWeighted_rwgt53' : [ 6.70425891e+06, 6.70423438e+06, 6.70431279e+06, ], 'CountWeightedLHEWeightScale_rwgt53' : [ 8.41689906e+06, 7.68586777e+06, 7.05122539e+06, 7.34345283e+06, 6.70418856e+06, 6.14985327e+06, 6.52133399e+06, 5.95277009e+06, 5.45994860e+06, ], 'CountWeightedLHEEnvelope_rwgt53' : [ 8.43871128e+06, 5.45252707e+06, ], 'CountWeightedFull_rwgt53' : [ 6.70425891e+06, 6.70423438e+06, 6.70431279e+06, ], 'CountWeightedFullLHEWeightScale_rwgt53' : [ 8.41689906e+06, 7.68586777e+06, 7.05122539e+06, 7.34345283e+06, 6.70418856e+06, 6.14985327e+06, 6.52133399e+06, 5.95277009e+06, 5.45994860e+06, ], 'CountWeightedFullLHEEnvelope_rwgt53' : [ 8.43871128e+06, 5.45252707e+06, ], 'CountWeightedL1PrefireNom_rwgt53' : [ 6.43654602e+06, 6.43606698e+06, 6.43705733e+06, ], 'CountWeightedL1Prefire_rwgt53' : [ 6.43654602e+06, 6.37183185e+06, 6.49969758e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt53' : [ 8.07755163e+06, 7.38132484e+06, 6.77580675e+06, 7.04511088e+06, 6.43647864e+06, 5.90775724e+06, 6.25484460e+06, 5.71366083e+06, 5.24373950e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt53' : [ 8.09902957e+06, 5.23639580e+06, ], 'CountWeightedFullL1PrefireNom_rwgt53' : [ 6.43654602e+06, 6.43606698e+06, 6.43705733e+06, ], 'CountWeightedFullL1Prefire_rwgt53' : [ 6.43654602e+06, 6.37183185e+06, 6.49969758e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt53' : [ 8.07755163e+06, 7.38132484e+06, 6.77580675e+06, 7.04511088e+06, 6.43647864e+06, 5.90775724e+06, 6.25484460e+06, 5.71366083e+06, 5.24373950e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt53' : [ 8.09902957e+06, 5.23639580e+06, ], 'CountWeighted_rwgt54' : [ 6.01509247e+06, 6.01507491e+06, 6.01517800e+06, ], 'CountWeightedLHEWeightScale_rwgt54' : [ 7.55578044e+06, 6.89605446e+06, 6.32400503e+06, 6.59191146e+06, 6.01502928e+06, 5.51537695e+06, 5.85376125e+06, 5.34070601e+06, 4.89653446e+06, ], 'CountWeightedLHEEnvelope_rwgt54' : [ 7.57519062e+06, 4.88993132e+06, ], 'CountWeightedFull_rwgt54' : [ 6.01509247e+06, 6.01507491e+06, 6.01517800e+06, ], 'CountWeightedFullLHEWeightScale_rwgt54' : [ 7.55578044e+06, 6.89605446e+06, 6.32400503e+06, 6.59191146e+06, 6.01502928e+06, 5.51537695e+06, 5.85376125e+06, 5.34070601e+06, 4.89653446e+06, ], 'CountWeightedFullLHEEnvelope_rwgt54' : [ 7.57519062e+06, 4.88993132e+06, ], 'CountWeightedL1PrefireNom_rwgt54' : [ 5.77437384e+06, 5.77395247e+06, 5.77486700e+06, ], 'CountWeightedL1Prefire_rwgt54' : [ 5.77437384e+06, 5.71618250e+06, 5.83117170e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt54' : [ 7.25045145e+06, 6.62220862e+06, 6.07646715e+06, 6.32349074e+06, 5.77431315e+06, 5.29780655e+06, 5.61402156e+06, 5.12572510e+06, 4.70223588e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt54' : [ 7.26956212e+06, 4.69570232e+06, ], 'CountWeightedFullL1PrefireNom_rwgt54' : [ 5.77437384e+06, 5.77395247e+06, 5.77486700e+06, ], 'CountWeightedFullL1Prefire_rwgt54' : [ 5.77437384e+06, 5.71618250e+06, 5.83117170e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt54' : [ 7.25045145e+06, 6.62220862e+06, 6.07646715e+06, 6.32349074e+06, 5.77431315e+06, 5.29780655e+06, 5.61402156e+06, 5.12572510e+06, 4.70223588e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt54' : [ 7.26956212e+06, 4.69570232e+06, ], 'CountWeighted_rwgt55' : [ 5.36802847e+06, 5.36800458e+06, 5.36812340e+06, ], 'CountWeightedLHEWeightScale_rwgt55' : [ 6.74704109e+06, 6.15445754e+06, 5.64128634e+06, 5.88610484e+06, 5.36797273e+06, 4.91978790e+06, 5.22683714e+06, 4.76605218e+06, 4.36765402e+06, ], 'CountWeightedLHEEnvelope_rwgt55' : [ 6.76420540e+06, 4.36181831e+06, ], 'CountWeightedFull_rwgt55' : [ 5.36802847e+06, 5.36800458e+06, 5.36812340e+06, ], 'CountWeightedFullLHEWeightScale_rwgt55' : [ 6.74704109e+06, 6.15445754e+06, 5.64128634e+06, 5.88610484e+06, 5.36797273e+06, 4.91978790e+06, 5.22683714e+06, 4.76605218e+06, 4.36765402e+06, ], 'CountWeightedFullLHEEnvelope_rwgt55' : [ 6.76420540e+06, 4.36181831e+06, ], 'CountWeightedL1PrefireNom_rwgt55' : [ 5.15261496e+06, 5.15222930e+06, 5.15306742e+06, ], 'CountWeightedL1Prefire_rwgt55' : [ 5.15261496e+06, 5.10053601e+06, 5.20344525e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt55' : [ 6.47360342e+06, 5.90937610e+06, 5.41987929e+06, 5.64574679e+06, 5.15256161e+06, 4.72519399e+06, 5.01216906e+06, 4.57368399e+06, 4.19388099e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt55' : [ 6.49050229e+06, 4.18810712e+06, ], 'CountWeightedFullL1PrefireNom_rwgt55' : [ 5.15261496e+06, 5.15222930e+06, 5.15306742e+06, ], 'CountWeightedFullL1Prefire_rwgt55' : [ 5.15261496e+06, 5.10053601e+06, 5.20344525e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt55' : [ 6.47360342e+06, 5.90937610e+06, 5.41987929e+06, 5.64574679e+06, 5.15256161e+06, 4.72519399e+06, 5.01216906e+06, 4.57368399e+06, 4.19388099e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt55' : [ 6.49050229e+06, 4.18810712e+06, ], 'CountWeighted_rwgt56' : [ 4.76219089e+06, 4.76215806e+06, 4.76227916e+06, ], 'CountWeightedLHEWeightScale_rwgt56' : [ 5.98956577e+06, 5.46006962e+06, 5.00220183e+06, 5.22508552e+06, 4.76214183e+06, 4.36227573e+06, 4.63972239e+06, 4.22803855e+06, 3.87259511e+06, ], 'CountWeightedLHEEnvelope_rwgt56' : [ 6.00463103e+06, 3.86747503e+06, ], 'CountWeightedFull_rwgt56' : [ 4.76219089e+06, 4.76215806e+06, 4.76227916e+06, ], 'CountWeightedFullLHEWeightScale_rwgt56' : [ 5.98956577e+06, 5.46006962e+06, 5.00220183e+06, 5.22508552e+06, 4.76214183e+06, 4.36227573e+06, 4.63972239e+06, 4.22803855e+06, 3.87259511e+06, ], 'CountWeightedFullLHEEnvelope_rwgt56' : [ 6.00463103e+06, 3.86747503e+06, ], 'CountWeightedL1PrefireNom_rwgt56' : [ 4.57042095e+06, 4.57006888e+06, 4.57082902e+06, ], 'CountWeightedL1Prefire_rwgt56' : [ 4.57042095e+06, 4.52404975e+06, 4.61567744e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt56' : [ 5.74594865e+06, 5.24187112e+06, 4.80520037e+06, 5.01094914e+06, 4.57037408e+06, 4.18914676e+06, 4.44848148e+06, 4.05678787e+06, 3.71799682e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt56' : [ 5.76077944e+06, 3.71293149e+06, ], 'CountWeightedFullL1PrefireNom_rwgt56' : [ 4.57042095e+06, 4.57006888e+06, 4.57082902e+06, ], 'CountWeightedFullL1Prefire_rwgt56' : [ 4.57042095e+06, 4.52404975e+06, 4.61567744e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt56' : [ 5.74594865e+06, 5.24187112e+06, 4.80520037e+06, 5.01094914e+06, 4.57037408e+06, 4.18914676e+06, 4.44848148e+06, 4.05678787e+06, 3.71799682e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt56' : [ 5.76077944e+06, 3.71293149e+06, ], 'CountWeighted_rwgt57' : [ 4.19970034e+06, 4.19966123e+06, 4.19979080e+06, ], 'CountWeightedLHEWeightScale_rwgt57' : [ 5.28605443e+06, 4.81533092e+06, 4.40894649e+06, 4.61118060e+06, 4.19965702e+06, 3.84477087e+06, 4.09446406e+06, 3.72852479e+06, 3.41308256e+06, ], 'CountWeightedLHEEnvelope_rwgt57' : [ 5.29917405e+06, 3.40862519e+06, ], 'CountWeightedFull_rwgt57' : [ 4.19970034e+06, 4.19966123e+06, 4.19979080e+06, ], 'CountWeightedFullLHEWeightScale_rwgt57' : [ 5.28605443e+06, 4.81533092e+06, 4.40894649e+06, 4.61118060e+06, 4.19965702e+06, 3.84477087e+06, 4.09446406e+06, 3.72852479e+06, 3.41308256e+06, ], 'CountWeightedFullLHEEnvelope_rwgt57' : [ 5.29917405e+06, 3.40862519e+06, ], 'CountWeightedL1PrefireNom_rwgt57' : [ 4.02982244e+06, 4.02950624e+06, 4.03020150e+06, ], 'CountWeightedL1Prefire_rwgt57' : [ 4.02982244e+06, 3.98874597e+06, 4.06991877e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt57' : [ 5.07006579e+06, 4.62203865e+06, 4.23454819e+06, 4.42133775e+06, 4.02978123e+06, 3.69151037e+06, 3.92493239e+06, 3.57683509e+06, 3.27623642e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt57' : [ 5.08298125e+06, 3.27182668e+06, ], 'CountWeightedFullL1PrefireNom_rwgt57' : [ 4.02982244e+06, 4.02950624e+06, 4.03020150e+06, ], 'CountWeightedFullL1Prefire_rwgt57' : [ 4.02982244e+06, 3.98874597e+06, 4.06991877e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt57' : [ 5.07006579e+06, 4.62203865e+06, 4.23454819e+06, 4.42133775e+06, 4.02978123e+06, 3.69151037e+06, 3.92493239e+06, 3.57683509e+06, 3.27623642e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt57' : [ 5.08298125e+06, 3.27182668e+06, ], 'CountWeighted_rwgt58' : [ 3.67843024e+06, 3.67839054e+06, 3.67852927e+06, ], 'CountWeightedLHEWeightScale_rwgt58' : [ 4.63382994e+06, 4.21781812e+06, 3.85931370e+06, 4.04206474e+06, 3.67839221e+06, 3.36533720e+06, 3.58901189e+06, 3.26564509e+06, 2.98739824e+06, ], 'CountWeightedLHEEnvelope_rwgt58' : [ 4.64515960e+06, 2.98355328e+06, ], 'CountWeightedFull_rwgt58' : [ 3.67843024e+06, 3.67839054e+06, 3.67852927e+06, ], 'CountWeightedFullLHEWeightScale_rwgt58' : [ 4.63382994e+06, 4.21781812e+06, 3.85931370e+06, 4.04206474e+06, 3.67839221e+06, 3.36533720e+06, 3.58901189e+06, 3.26564509e+06, 2.98739824e+06, ], 'CountWeightedFullLHEEnvelope_rwgt58' : [ 4.64515960e+06, 2.98355328e+06, ], 'CountWeightedL1PrefireNom_rwgt58' : [ 3.52878894e+06, 3.52850231e+06, 3.52913670e+06, ], 'CountWeightedL1Prefire_rwgt58' : [ 3.52878894e+06, 3.49260636e+06, 3.56411150e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt58' : [ 4.44337638e+06, 4.04753751e+06, 3.70579129e+06, 3.87468302e+06, 3.52875263e+06, 3.23043946e+06, 3.43954540e+06, 3.13203132e+06, 2.86695428e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt58' : [ 4.45452970e+06, 2.86315052e+06, ], 'CountWeightedFullL1PrefireNom_rwgt58' : [ 3.52878894e+06, 3.52850231e+06, 3.52913670e+06, ], 'CountWeightedFullL1Prefire_rwgt58' : [ 3.52878894e+06, 3.49260636e+06, 3.56411150e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt58' : [ 4.44337638e+06, 4.04753751e+06, 3.70579129e+06, 3.87468302e+06, 3.52875263e+06, 3.23043946e+06, 3.43954540e+06, 3.13203132e+06, 2.86695428e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt58' : [ 4.45452970e+06, 2.86315052e+06, ], 'CountWeighted_rwgt59' : [ 3.19955463e+06, 3.19950954e+06, 3.19965840e+06, ], 'CountWeightedLHEWeightScale_rwgt59' : [ 4.03435341e+06, 3.66885234e+06, 3.35451222e+06, 3.51900978e+06, 3.19952160e+06, 2.92505745e+06, 3.12449678e+06, 2.84043754e+06, 2.59649926e+06, ], 'CountWeightedLHEEnvelope_rwgt59' : [ 4.04404569e+06, 2.59321348e+06, ], 'CountWeightedFull_rwgt59' : [ 3.19955463e+06, 3.19950954e+06, 3.19965840e+06, ], 'CountWeightedFullLHEWeightScale_rwgt59' : [ 4.03435341e+06, 3.66885234e+06, 3.35451222e+06, 3.51900978e+06, 3.19952160e+06, 2.92505745e+06, 3.12449678e+06, 2.84043754e+06, 2.59649926e+06, ], 'CountWeightedFullLHEEnvelope_rwgt59' : [ 4.04404569e+06, 2.59321348e+06, ], 'CountWeightedL1PrefireNom_rwgt59' : [ 3.06844541e+06, 3.06818520e+06, 3.06876396e+06, ], 'CountWeightedL1Prefire_rwgt59' : [ 3.06844541e+06, 3.03674501e+06, 3.09938946e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt59' : [ 3.86729840e+06, 3.51964576e+06, 3.22010620e+06, 3.37220385e+06, 3.06841383e+06, 2.80696065e+06, 2.99341179e+06, 2.72337637e+06, 2.49106301e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt59' : [ 3.87683946e+06, 2.48781323e+06, ], 'CountWeightedFullL1PrefireNom_rwgt59' : [ 3.06844541e+06, 3.06818520e+06, 3.06876396e+06, ], 'CountWeightedFullL1Prefire_rwgt59' : [ 3.06844541e+06, 3.03674501e+06, 3.09938946e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt59' : [ 3.86729840e+06, 3.51964576e+06, 3.22010620e+06, 3.37220385e+06, 3.06841383e+06, 2.80696065e+06, 2.99341179e+06, 2.72337637e+06, 2.49106301e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt59' : [ 3.87683946e+06, 2.48781323e+06, ], 'CountWeighted_rwgt60' : [ 2.76170571e+06, 2.76165425e+06, 2.76181407e+06, ], 'CountWeightedLHEWeightScale_rwgt60' : [ 3.48589938e+06, 3.16686694e+06, 2.89310908e+06, 3.04051730e+06, 2.76167718e+06, 2.52265911e+06, 2.69958705e+06, 2.45167777e+06, 2.23925645e+06, ], 'CountWeightedLHEEnvelope_rwgt60' : [ 3.49410264e+06, 2.23647863e+06, ], 'CountWeightedFull_rwgt60' : [ 2.76170571e+06, 2.76165425e+06, 2.76181407e+06, ], 'CountWeightedFullLHEWeightScale_rwgt60' : [ 3.48589938e+06, 3.16686694e+06, 2.89310908e+06, 3.04051730e+06, 2.76167718e+06, 2.52265911e+06, 2.69958705e+06, 2.45167777e+06, 2.23925645e+06, ], 'CountWeightedFullLHEEnvelope_rwgt60' : [ 3.49410264e+06, 2.23647863e+06, ], 'CountWeightedL1PrefireNom_rwgt60' : [ 2.64746789e+06, 2.64723331e+06, 2.64775935e+06, ], 'CountWeightedL1Prefire_rwgt60' : [ 2.64746789e+06, 2.61985208e+06, 2.67443211e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt60' : [ 3.34017394e+06, 3.03685459e+06, 2.77610345e+06, 2.91246474e+06, 2.64744068e+06, 2.41985827e+06, 2.58525110e+06, 2.34968880e+06, 2.14748032e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt60' : [ 3.34824819e+06, 2.14473341e+06, ], 'CountWeightedFullL1PrefireNom_rwgt60' : [ 2.64746789e+06, 2.64723331e+06, 2.64775935e+06, ], 'CountWeightedFullL1Prefire_rwgt60' : [ 2.64746789e+06, 2.61985208e+06, 2.67443211e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt60' : [ 3.34017394e+06, 3.03685459e+06, 2.77610345e+06, 2.91246474e+06, 2.64744068e+06, 2.41985827e+06, 2.58525110e+06, 2.34968880e+06, 2.14748032e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt60' : [ 3.34824819e+06, 2.14473341e+06, ], 'CountWeighted_rwgt61' : [ 2.36624623e+06, 2.36619248e+06, 2.36635603e+06, ], 'CountWeightedLHEWeightScale_rwgt61' : [ 2.99019576e+06, 2.71344079e+06, 2.47654782e+06, 2.60809487e+06, 2.36622148e+06, 2.15940694e+06, 2.31561441e+06, 2.10058845e+06, 1.91679104e+06, ], 'CountWeightedLHEEnvelope_rwgt61' : [ 2.99706503e+06, 1.91447001e+06, ], 'CountWeightedFull_rwgt61' : [ 2.36624623e+06, 2.36619248e+06, 2.36635603e+06, ], 'CountWeightedFullLHEWeightScale_rwgt61' : [ 2.99019576e+06, 2.71344079e+06, 2.47654782e+06, 2.60809487e+06, 2.36622148e+06, 2.15940694e+06, 2.31561441e+06, 2.10058845e+06, 1.91679104e+06, ], 'CountWeightedFullLHEEnvelope_rwgt61' : [ 2.99706503e+06, 1.91447001e+06, ], 'CountWeightedL1PrefireNom_rwgt61' : [ 2.26717836e+06, 2.26696753e+06, 2.26744484e+06, ], 'CountWeightedL1Prefire_rwgt61' : [ 2.26717836e+06, 2.24323977e+06, 2.29055333e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt61' : [ 2.86365912e+06, 2.60068435e+06, 2.37517574e+06, 2.49690914e+06, 2.26715502e+06, 2.07034529e+06, 2.21634349e+06, 2.01214325e+06, 1.83728434e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt61' : [ 2.87041864e+06, 1.83498924e+06, ], 'CountWeightedFullL1PrefireNom_rwgt61' : [ 2.26717836e+06, 2.26696753e+06, 2.26744484e+06, ], 'CountWeightedFullL1Prefire_rwgt61' : [ 2.26717836e+06, 2.24323977e+06, 2.29055333e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt61' : [ 2.86365912e+06, 2.60068435e+06, 2.37517574e+06, 2.49690914e+06, 2.26715502e+06, 2.07034529e+06, 2.21634349e+06, 2.01214325e+06, 1.83728434e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt61' : [ 2.87041864e+06, 1.83498924e+06, ], 'CountWeighted_rwgt62' : [ 2.01229157e+06, 2.01223317e+06, 2.01240808e+06, ], 'CountWeightedLHEWeightScale_rwgt62' : [ 2.54612437e+06, 2.30755284e+06, 2.10389561e+06, 2.22075811e+06, 2.01227093e+06, 1.83447741e+06, 1.97171298e+06, 1.78637512e+06, 1.62837947e+06, ], 'CountWeightedLHEEnvelope_rwgt62' : [ 2.55181007e+06, 1.62646310e+06, ], 'CountWeightedFull_rwgt62' : [ 2.01229157e+06, 2.01223317e+06, 2.01240808e+06, ], 'CountWeightedFullLHEWeightScale_rwgt62' : [ 2.54612437e+06, 2.30755284e+06, 2.10389561e+06, 2.22075811e+06, 2.01227093e+06, 1.83447741e+06, 1.97171298e+06, 1.78637512e+06, 1.62837947e+06, ], 'CountWeightedFullLHEEnvelope_rwgt62' : [ 2.55181007e+06, 1.62646310e+06, ], 'CountWeightedL1PrefireNom_rwgt62' : [ 1.92671890e+06, 1.92652879e+06, 1.92696808e+06, ], 'CountWeightedL1Prefire_rwgt62' : [ 1.92671890e+06, 1.90605609e+06, 1.94690298e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt62' : [ 2.43667795e+06, 2.21015224e+06, 2.01642585e+06, 2.12459466e+06, 1.92669890e+06, 1.75763517e+06, 1.88585824e+06, 1.70998196e+06, 1.55978118e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt62' : [ 2.44227160e+06, 1.55788686e+06, ], 'CountWeightedFullL1PrefireNom_rwgt62' : [ 1.92671890e+06, 1.92652879e+06, 1.92696808e+06, ], 'CountWeightedFullL1Prefire_rwgt62' : [ 1.92671890e+06, 1.90605609e+06, 1.94690298e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt62' : [ 2.43667795e+06, 2.21015224e+06, 2.01642585e+06, 2.12459466e+06, 1.92669890e+06, 1.75763517e+06, 1.88585824e+06, 1.70998196e+06, 1.55978118e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt62' : [ 2.44227160e+06, 1.55788686e+06, ], 'CountWeighted_rwgt63' : [ 1.70113464e+06, 1.70106962e+06, 1.70125916e+06, ], 'CountWeightedLHEWeightScale_rwgt63' : [ 2.15531530e+06, 1.95067863e+06, 1.77649929e+06, 1.87993620e+06, 1.70111698e+06, 1.54906350e+06, 1.66914583e+06, 1.51018682e+06, 1.37507071e+06, ], 'CountWeightedLHEEnvelope_rwgt63' : [ 2.15997367e+06, 1.37350627e+06, ], 'CountWeightedFull_rwgt63' : [ 1.70113464e+06, 1.70106962e+06, 1.70125916e+06, ], 'CountWeightedFullLHEWeightScale_rwgt63' : [ 2.15531530e+06, 1.95067863e+06, 1.77649929e+06, 1.87993620e+06, 1.70111698e+06, 1.54906350e+06, 1.66914583e+06, 1.51018682e+06, 1.37507071e+06, ], 'CountWeightedFullLHEEnvelope_rwgt63' : [ 2.15997367e+06, 1.37350627e+06, ], 'CountWeightedL1PrefireNom_rwgt63' : [ 1.62733518e+06, 1.62715735e+06, 1.62756880e+06, ], 'CountWeightedL1Prefire_rwgt63' : [ 1.62733518e+06, 1.60953104e+06, 1.64473061e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt63' : [ 2.06079787e+06, 1.86667562e+06, 1.70114699e+06, 1.79688984e+06, 1.62731832e+06, 1.48286693e+06, 1.59500234e+06, 1.44430320e+06, 1.31597515e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt63' : [ 2.06537831e+06, 1.31442886e+06, ], 'CountWeightedFullL1PrefireNom_rwgt63' : [ 1.62733518e+06, 1.62715735e+06, 1.62756880e+06, ], 'CountWeightedFullL1Prefire_rwgt63' : [ 1.62733518e+06, 1.60953104e+06, 1.64473061e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt63' : [ 2.06079787e+06, 1.86667562e+06, 1.70114699e+06, 1.79688984e+06, 1.62731832e+06, 1.48286693e+06, 1.59500234e+06, 1.44430320e+06, 1.31597515e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt63' : [ 2.06537831e+06, 1.31442886e+06, ], 'CountWeighted_rwgt64' : [ 1.43147715e+06, 1.43141017e+06, 1.43160851e+06, ], 'CountWeightedLHEWeightScale_rwgt64' : [ 1.81613099e+06, 1.64133474e+06, 1.49300615e+06, 1.58419775e+06, 1.43146229e+06, 1.30197759e+06, 1.40664381e+06, 1.27087665e+06, 1.15581351e+06, ], 'CountWeightedLHEEnvelope_rwgt64' : [ 1.81991119e+06, 1.15455040e+06, ], 'CountWeightedFull_rwgt64' : [ 1.43147715e+06, 1.43141017e+06, 1.43160851e+06, ], 'CountWeightedFullLHEWeightScale_rwgt64' : [ 1.81613099e+06, 1.64133474e+06, 1.49300615e+06, 1.58419775e+06, 1.43146229e+06, 1.30197759e+06, 1.40664381e+06, 1.27087665e+06, 1.15581351e+06, ], 'CountWeightedFullLHEEnvelope_rwgt64' : [ 1.81991119e+06, 1.15455040e+06, ], 'CountWeightedL1PrefireNom_rwgt64' : [ 1.36777745e+06, 1.36761591e+06, 1.36799826e+06, ], 'CountWeightedL1Prefire_rwgt64' : [ 1.36777745e+06, 1.35243235e+06, 1.38277725e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt64' : [ 1.73444436e+06, 1.56883311e+06, 1.42804024e+06, 1.51242491e+06, 1.36776315e+06, 1.24490153e+06, 1.34256332e+06, 1.21400832e+06, 1.10485941e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt64' : [ 1.73815994e+06, 1.10361161e+06, ], 'CountWeightedFullL1PrefireNom_rwgt64' : [ 1.36777745e+06, 1.36761591e+06, 1.36799826e+06, ], 'CountWeightedFullL1Prefire_rwgt64' : [ 1.36777745e+06, 1.35243235e+06, 1.38277725e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt64' : [ 1.73444436e+06, 1.56883311e+06, 1.42804024e+06, 1.51242491e+06, 1.36776315e+06, 1.24490153e+06, 1.34256332e+06, 1.21400832e+06, 1.10485941e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt64' : [ 1.73815994e+06, 1.10361161e+06, ], 'CountWeighted_rwgt65' : [ 1.20380578e+06, 1.20373443e+06, 1.20394356e+06, ], 'CountWeightedLHEWeightScale_rwgt65' : [ 1.52918587e+06, 1.38008140e+06, 1.25392391e+06, 1.33408094e+06, 1.20379323e+06, 1.09365975e+06, 1.18468636e+06, 1.06887267e+06, 9.71001742e+05, ], 'CountWeightedLHEEnvelope_rwgt65' : [ 1.53224061e+06, 9.69987712e+05, ], 'CountWeightedFull_rwgt65' : [ 1.20380578e+06, 1.20373443e+06, 1.20394356e+06, ], 'CountWeightedFullLHEWeightScale_rwgt65' : [ 1.52918587e+06, 1.38008140e+06, 1.25392391e+06, 1.33408094e+06, 1.20379323e+06, 1.09365975e+06, 1.18468636e+06, 1.06887267e+06, 9.71001742e+05, ], 'CountWeightedFullLHEEnvelope_rwgt65' : [ 1.53224061e+06, 9.69987712e+05, ], 'CountWeightedL1PrefireNom_rwgt65' : [ 1.14851438e+06, 1.14836455e+06, 1.14872390e+06, ], 'CountWeightedL1Prefire_rwgt65' : [ 1.14851438e+06, 1.13522294e+06, 1.16151654e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt65' : [ 1.45821312e+06, 1.31715533e+06, 1.19759342e+06, 1.27171349e+06, 1.14850239e+06, 1.04416314e+06, 1.12899778e+06, 1.01950519e+06, 9.26810693e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt65' : [ 1.46121443e+06, 9.25809441e+05, ], 'CountWeightedFullL1PrefireNom_rwgt65' : [ 1.14851438e+06, 1.14836455e+06, 1.14872390e+06, ], 'CountWeightedFullL1Prefire_rwgt65' : [ 1.14851438e+06, 1.13522294e+06, 1.16151654e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt65' : [ 1.45821312e+06, 1.31715533e+06, 1.19759342e+06, 1.27171349e+06, 1.14850239e+06, 1.04416314e+06, 1.12899778e+06, 1.01950519e+06, 9.26810693e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt65' : [ 1.46121443e+06, 9.25809441e+05, ], 'CountWeighted_rwgt66' : [ 1.01793663e+06, 1.01786057e+06, 1.01808072e+06, ], 'CountWeightedLHEWeightScale_rwgt66' : [ 1.29424626e+06, 1.16670355e+06, 1.05906080e+06, 1.12938016e+06, 1.01792604e+06, 9.23943180e+05, 1.00308858e+06, 9.04011873e+05, 8.20486226e+05, ], 'CountWeightedLHEEnvelope_rwgt66' : [ 1.29672822e+06, 8.19669748e+05, ], 'CountWeightedFull_rwgt66' : [ 1.01793663e+06, 1.01786057e+06, 1.01808072e+06, ], 'CountWeightedFullLHEWeightScale_rwgt66' : [ 1.29424626e+06, 1.16670355e+06, 1.05906080e+06, 1.12938016e+06, 1.01792604e+06, 9.23943180e+05, 1.00308858e+06, 9.04011873e+05, 8.20486226e+05, ], 'CountWeightedFullLHEEnvelope_rwgt66' : [ 1.29672822e+06, 8.19669748e+05, ], 'CountWeightedL1PrefireNom_rwgt66' : [ 9.69368962e+05, 9.69226590e+05, 9.69572279e+05, ], 'CountWeightedL1Prefire_rwgt66' : [ 9.69368962e+05, 9.57726042e+05, 9.80767694e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt66' : [ 1.23187336e+06, 1.11144241e+06, 1.00962134e+06, 1.07455887e+06, 9.69358855e+05, 8.80493922e+05, 9.54131608e+05, 8.60640976e+05, 7.81686841e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt66' : [ 1.23431001e+06, 7.80880753e+05, ], 'CountWeightedFullL1PrefireNom_rwgt66' : [ 9.69368962e+05, 9.69226590e+05, 9.69572279e+05, ], 'CountWeightedFullL1Prefire_rwgt66' : [ 9.69368962e+05, 9.57726042e+05, 9.80767694e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt66' : [ 1.23187336e+06, 1.11144241e+06, 1.00962134e+06, 1.07455887e+06, 9.69358855e+05, 8.80493922e+05, 9.54131608e+05, 8.60640976e+05, 7.81686841e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt66' : [ 1.23431001e+06, 7.80880753e+05, ], 'CountWeighted_rwgt67' : [ 8.74038372e+05, 8.73958301e+05, 8.74190964e+05, ], 'CountWeightedLHEWeightScale_rwgt67' : [ 1.11152349e+06, 1.00139573e+06, 9.08591413e+05, 9.70280849e+05, 8.74029249e+05, 7.92984307e+05, 8.62019163e+05, 7.76443077e+05, 7.04401361e+05, ], 'CountWeightedLHEEnvelope_rwgt67' : [ 1.11358473e+06, 7.03730445e+05, ], 'CountWeightedFull_rwgt67' : [ 8.74038372e+05, 8.73958301e+05, 8.74190964e+05, ], 'CountWeightedFullLHEWeightScale_rwgt67' : [ 1.11152349e+06, 1.00139573e+06, 9.08591413e+05, 9.70280849e+05, 8.74029249e+05, 7.92984307e+05, 8.62019163e+05, 7.76443077e+05, 7.04401361e+05, ], 'CountWeightedFullLHEEnvelope_rwgt67' : [ 1.11358473e+06, 7.03730445e+05, ], 'CountWeightedL1PrefireNom_rwgt67' : [ 8.30504516e+05, 8.30368374e+05, 8.30704429e+05, ], 'CountWeightedL1Prefire_rwgt67' : [ 8.30504516e+05, 8.20102478e+05, 8.40697433e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt67' : [ 1.05563139e+06, 9.51879597e+05, 8.64293926e+05, 9.21139367e+05, 8.30495940e+05, 7.54038367e+05, 8.18123326e+05, 7.37556823e+05, 6.69614948e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt67' : [ 1.05765299e+06, 6.68953006e+05, ], 'CountWeightedFullL1PrefireNom_rwgt67' : [ 8.30504516e+05, 8.30368374e+05, 8.30704429e+05, ], 'CountWeightedFullL1Prefire_rwgt67' : [ 8.30504516e+05, 8.20102478e+05, 8.40697433e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt67' : [ 1.05563139e+06, 9.51879597e+05, 8.64293926e+05, 9.21139367e+05, 8.30495940e+05, 7.54038367e+05, 8.18123326e+05, 7.37556823e+05, 6.69614948e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt67' : [ 1.05765299e+06, 6.68953006e+05, ], 'CountWeighted_rwgt68' : [ 7.71991874e+05, 7.71907926e+05, 7.72149439e+05, ], 'CountWeightedLHEWeightScale_rwgt68' : [ 9.80871975e+05, 8.84023368e+05, 8.02394304e+05, 8.56655651e+05, 7.71983866e+05, 7.00670722e+05, 7.61359420e+05, 6.86060227e+05, 6.22653780e+05, ], 'CountWeightedLHEEnvelope_rwgt68' : [ 9.82664337e+05, 6.22076608e+05, ], 'CountWeightedFull_rwgt68' : [ 7.71991874e+05, 7.71907926e+05, 7.72149439e+05, ], 'CountWeightedFullLHEWeightScale_rwgt68' : [ 9.80871975e+05, 8.84023368e+05, 8.02394304e+05, 8.56655651e+05, 7.71983866e+05, 7.00670722e+05, 7.61359420e+05, 6.86060227e+05, 6.22653780e+05, ], 'CountWeightedFullLHEEnvelope_rwgt68' : [ 9.82664337e+05, 6.22076608e+05, ], 'CountWeightedL1PrefireNom_rwgt68' : [ 7.31803925e+05, 7.31671810e+05, 7.32000446e+05, ], 'CountWeightedL1Prefire_rwgt68' : [ 7.31803925e+05, 7.22238808e+05, 7.41186064e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt68' : [ 9.29345711e+05, 8.38335067e+05, 7.61489803e+05, 8.11332330e+05, 7.31796358e+05, 6.64692732e+05, 7.20859059e+05, 6.50151235e+05, 5.90507106e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt68' : [ 9.31101961e+05, 5.89937996e+05, ], 'CountWeightedFullL1PrefireNom_rwgt68' : [ 7.31803925e+05, 7.31671810e+05, 7.32000446e+05, ], 'CountWeightedFullL1Prefire_rwgt68' : [ 7.31803925e+05, 7.22238808e+05, 7.41186064e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt68' : [ 9.29345711e+05, 8.38335067e+05, 7.61489803e+05, 8.11332330e+05, 7.31796358e+05, 6.64692732e+05, 7.20859059e+05, 6.50151235e+05, 5.90507106e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt68' : [ 9.31101961e+05, 5.89937996e+05, ], }), ("nof_tree_events", 9918994), ("nof_db_events", 9918994), ("fsize_local", 76686599069), # 76.69GB, avg file size 1.50GB ("fsize_db", 569542482347), # 569.54GB, avg file size 2.21GB ("use_it", True), ("xsection", 0.07096), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 306000 - 306102 -> NNPDF31_nnlo_hessian_pdfas PDF set, expecting 103 weights (counted 103 weights)"), ("nof_reweighting", 69), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/THQ_ctcvcp"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/THW_ctcvcp_5f_Hincl_13TeV_madgraph_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "tHW"), ("process_name_specific", "THW_ctcvcp"), ("nof_files", 24), ("nof_db_files", 172), ("nof_events", { 'Count' : [ 4719999, ], 'CountWeighted' : [ 4.71453943e+06, 4.71419652e+06, 4.71397986e+06, ], 'CountWeightedLHEWeightScale' : [ 4.67459986e+06, 5.36293561e+06, 5.67903341e+06, 4.10917934e+06, 4.71453943e+06, 4.99204380e+06, 3.66844730e+06, 4.20890999e+06, 4.45665573e+06, ], 'CountWeightedLHEEnvelope' : [ 5.36799977e+06, 4.04424917e+06, ], 'CountWeightedFull' : [ 4.71453943e+06, 4.71419652e+06, 4.71397986e+06, ], 'CountWeightedFullLHEWeightScale' : [ 4.67459986e+06, 5.36293561e+06, 5.67903341e+06, 4.10917934e+06, 4.71453943e+06, 4.99204380e+06, 3.66844730e+06, 4.20890999e+06, 4.45665573e+06, ], 'CountWeightedFullLHEEnvelope' : [ 5.36799977e+06, 4.04424917e+06, ], 'CountWeightedL1PrefireNom' : [ 4.53795845e+06, 4.53749842e+06, 4.53790709e+06, ], 'CountWeightedL1Prefire' : [ 4.53795845e+06, 4.49607741e+06, 4.57909677e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 4.49447630e+06, 5.16219212e+06, 5.47145828e+06, 3.95083631e+06, 4.53795845e+06, 4.80959458e+06, 3.52709459e+06, 4.05125348e+06, 4.29376345e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 5.16660853e+06, 3.89182220e+06, ], 'CountWeightedFullL1PrefireNom' : [ 4.53795845e+06, 4.53749842e+06, 4.53790709e+06, ], 'CountWeightedFullL1Prefire' : [ 4.53795845e+06, 4.49607741e+06, 4.57909677e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 4.49447630e+06, 5.16219212e+06, 5.47145828e+06, 3.95083631e+06, 4.53795845e+06, 4.80959458e+06, 3.52709459e+06, 4.05125348e+06, 4.29376345e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 5.16660853e+06, 3.89182220e+06, ], 'CountWeighted_rwgt0' : [ 2.09272876e+07, 2.09271148e+07, 2.09273122e+07, ], 'CountWeightedLHEWeightScale_rwgt0' : [ 2.06866260e+07, 2.38062902e+07, 2.52737533e+07, 1.81845038e+07, 2.09272876e+07, 2.22166711e+07, 1.62340356e+07, 1.86824533e+07, 1.98337580e+07, ], 'CountWeightedLHEEnvelope_rwgt0' : [ 2.38288219e+07, 1.79161431e+07, ], 'CountWeightedFull_rwgt0' : [ 2.09272876e+07, 2.09271148e+07, 2.09273122e+07, ], 'CountWeightedFullLHEWeightScale_rwgt0' : [ 2.06866260e+07, 2.38062902e+07, 2.52737533e+07, 1.81845038e+07, 2.09272876e+07, 2.22166711e+07, 1.62340356e+07, 1.86824533e+07, 1.98337580e+07, ], 'CountWeightedFullLHEEnvelope_rwgt0' : [ 2.38288219e+07, 1.79161431e+07, ], 'CountWeightedL1PrefireNom_rwgt0' : [ 2.01601693e+07, 2.01588991e+07, 2.01613266e+07, ], 'CountWeightedL1Prefire_rwgt0' : [ 2.01601693e+07, 1.99778384e+07, 2.03389531e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt0' : [ 1.99056666e+07, 2.29336426e+07, 2.43693199e+07, 1.74979634e+07, 2.01601693e+07, 2.14216856e+07, 1.56211863e+07, 1.79976172e+07, 1.91240016e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt0' : [ 2.29534581e+07, 1.72543166e+07, ], 'CountWeightedFullL1PrefireNom_rwgt0' : [ 2.01601693e+07, 2.01588991e+07, 2.01613266e+07, ], 'CountWeightedFullL1Prefire_rwgt0' : [ 2.01601693e+07, 1.99778384e+07, 2.03389531e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt0' : [ 1.99056666e+07, 2.29336426e+07, 2.43693199e+07, 1.74979634e+07, 2.01601693e+07, 2.14216856e+07, 1.56211863e+07, 1.79976172e+07, 1.91240016e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt0' : [ 2.29534581e+07, 1.72543166e+07, ], 'CountWeighted_rwgt1' : [ 1.13176753e+07, 1.13176895e+07, 1.13176963e+07, ], 'CountWeightedLHEWeightScale_rwgt1' : [ 1.12004534e+07, 1.28747154e+07, 1.36554646e+07, 9.84570003e+06, 1.13176753e+07, 1.20037931e+07, 8.78964541e+06, 1.01036359e+07, 1.07161955e+07, ], 'CountWeightedLHEEnvelope_rwgt1' : [ 1.28868682e+07, 9.69660733e+06, ], 'CountWeightedFull_rwgt1' : [ 1.13176753e+07, 1.13176895e+07, 1.13176963e+07, ], 'CountWeightedFullLHEWeightScale_rwgt1' : [ 1.12004534e+07, 1.28747154e+07, 1.36554646e+07, 9.84570003e+06, 1.13176753e+07, 1.20037931e+07, 8.78964541e+06, 1.01036359e+07, 1.07161955e+07, ], 'CountWeightedFullLHEEnvelope_rwgt1' : [ 1.28868682e+07, 9.69660733e+06, ], 'CountWeightedL1PrefireNom_rwgt1' : [ 1.08996718e+07, 1.08991023e+07, 1.09003058e+07, ], 'CountWeightedL1Prefire_rwgt1' : [ 1.08996718e+07, 1.08003742e+07, 1.09970605e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt1' : [ 1.07744576e+07, 1.23992106e+07, 1.31630478e+07, 9.47123234e+06, 1.08996718e+07, 1.15709338e+07, 8.45535844e+06, 9.73047636e+06, 1.03297852e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt1' : [ 1.24098654e+07, 9.33583422e+06, ], 'CountWeightedFullL1PrefireNom_rwgt1' : [ 1.08996718e+07, 1.08991023e+07, 1.09003058e+07, ], 'CountWeightedFullL1Prefire_rwgt1' : [ 1.08996718e+07, 1.08003742e+07, 1.09970605e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt1' : [ 1.07744576e+07, 1.23992106e+07, 1.31630478e+07, 9.47123234e+06, 1.08996718e+07, 1.15709338e+07, 8.45535844e+06, 9.73047636e+06, 1.03297852e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt1' : [ 1.24098654e+07, 9.33583422e+06, ], 'CountWeighted_rwgt2' : [ 7.64023777e+06, 7.64023692e+06, 7.64019039e+06, ], 'CountWeightedLHEWeightScale_rwgt2' : [ 7.56749678e+06, 8.69132903e+06, 9.21198812e+06, 6.65214678e+06, 7.64023777e+06, 8.09775394e+06, 5.93866662e+06, 6.82063686e+06, 7.22921809e+06, ], 'CountWeightedLHEEnvelope_rwgt2' : [ 8.69952950e+06, 6.54949402e+06, ], 'CountWeightedFull_rwgt2' : [ 7.64023777e+06, 7.64023692e+06, 7.64019039e+06, ], 'CountWeightedFullLHEWeightScale_rwgt2' : [ 7.56749678e+06, 8.69132903e+06, 9.21198812e+06, 6.65214678e+06, 7.64023777e+06, 8.09775394e+06, 5.93866662e+06, 6.82063686e+06, 7.22921809e+06, ], 'CountWeightedFullLHEEnvelope_rwgt2' : [ 8.69952950e+06, 6.54949402e+06, ], 'CountWeightedL1PrefireNom_rwgt2' : [ 7.35646128e+06, 7.35606281e+06, 7.35684175e+06, ], 'CountWeightedL1Prefire_rwgt2' : [ 7.35646128e+06, 7.28906709e+06, 7.42258350e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt2' : [ 7.27808530e+06, 8.36850464e+06, 8.87790600e+06, 6.39774733e+06, 7.35646128e+06, 7.80408017e+06, 5.71155095e+06, 6.56730712e+06, 6.96703078e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt2' : [ 8.37567803e+06, 6.30450838e+06, ], 'CountWeightedFullL1PrefireNom_rwgt2' : [ 7.35646128e+06, 7.35606281e+06, 7.35684175e+06, ], 'CountWeightedFullL1Prefire_rwgt2' : [ 7.35646128e+06, 7.28906709e+06, 7.42258350e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt2' : [ 7.27808530e+06, 8.36850464e+06, 8.87790600e+06, 6.39774733e+06, 7.35646128e+06, 7.80408017e+06, 5.71155095e+06, 6.56730712e+06, 6.96703078e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt2' : [ 8.37567803e+06, 6.30450838e+06, ], 'CountWeighted_rwgt3' : [ 6.08329256e+06, 6.08332688e+06, 6.08322491e+06, ], 'CountWeightedLHEWeightScale_rwgt3' : [ 6.02854555e+06, 6.92025006e+06, 7.33171516e+06, 5.29932766e+06, 6.08329256e+06, 6.44488392e+06, 4.73093566e+06, 5.43076219e+06, 5.75363561e+06, ], 'CountWeightedLHEEnvelope_rwgt3' : [ 6.92677995e+06, 5.21659659e+06, ], 'CountWeightedFull_rwgt3' : [ 6.08329256e+06, 6.08332688e+06, 6.08322491e+06, ], 'CountWeightedFullLHEWeightScale_rwgt3' : [ 6.02854555e+06, 6.92025006e+06, 7.33171516e+06, 5.29932766e+06, 6.08329256e+06, 6.44488392e+06, 4.73093566e+06, 5.43076219e+06, 5.75363561e+06, ], 'CountWeightedFullLHEEnvelope_rwgt3' : [ 6.92677995e+06, 5.21659659e+06, ], 'CountWeightedL1PrefireNom_rwgt3' : [ 5.85655852e+06, 5.85626194e+06, 5.85681981e+06, ], 'CountWeightedL1Prefire_rwgt3' : [ 5.85655852e+06, 5.80271759e+06, 5.90937252e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt3' : [ 5.79718527e+06, 6.66227866e+06, 7.06485970e+06, 5.09594955e+06, 5.85655852e+06, 6.21031281e+06, 4.54938130e+06, 5.22832781e+06, 5.54421503e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt3' : [ 6.66798512e+06, 5.02079934e+06, ], 'CountWeightedFullL1PrefireNom_rwgt3' : [ 5.85655852e+06, 5.85626194e+06, 5.85681981e+06, ], 'CountWeightedFullL1Prefire_rwgt3' : [ 5.85655852e+06, 5.80271759e+06, 5.90937252e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt3' : [ 5.79718527e+06, 6.66227866e+06, 7.06485970e+06, 5.09594955e+06, 5.85655852e+06, 6.21031281e+06, 4.54938130e+06, 5.22832781e+06, 5.54421503e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt3' : [ 6.66798512e+06, 5.02079934e+06, ], 'CountWeighted_rwgt4' : [ 3.53318752e+06, 3.53316191e+06, 3.53317509e+06, ], 'CountWeightedLHEWeightScale_rwgt4' : [ 3.50570495e+06, 4.01925177e+06, 4.25391658e+06, 3.08166245e+06, 3.53318752e+06, 3.73938998e+06, 2.75112966e+06, 3.15415878e+06, 3.33829709e+06, ], 'CountWeightedLHEEnvelope_rwgt4' : [ 4.02306225e+06, 3.03220220e+06, ], 'CountWeightedFull_rwgt4' : [ 3.53318752e+06, 3.53316191e+06, 3.53317509e+06, ], 'CountWeightedFullLHEWeightScale_rwgt4' : [ 3.50570495e+06, 4.01925177e+06, 4.25391658e+06, 3.08166245e+06, 3.53318752e+06, 3.73938998e+06, 2.75112966e+06, 3.15415878e+06, 3.33829709e+06, ], 'CountWeightedFullLHEEnvelope_rwgt4' : [ 4.02306225e+06, 3.03220220e+06, ], 'CountWeightedL1PrefireNom_rwgt4' : [ 3.40031433e+06, 3.40010966e+06, 3.40050084e+06, ], 'CountWeightedL1Prefire_rwgt4' : [ 3.40031433e+06, 3.36877527e+06, 3.43125459e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt4' : [ 3.36998980e+06, 3.86810398e+06, 4.09769410e+06, 2.96236365e+06, 3.40031433e+06, 3.60206573e+06, 2.64462323e+06, 3.03555453e+06, 3.21569568e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt4' : [ 3.87142112e+06, 2.91742406e+06, ], 'CountWeightedFullL1PrefireNom_rwgt4' : [ 3.40031433e+06, 3.40010966e+06, 3.40050084e+06, ], 'CountWeightedFullL1Prefire_rwgt4' : [ 3.40031433e+06, 3.36877527e+06, 3.43125459e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt4' : [ 3.36998980e+06, 3.86810398e+06, 4.09769410e+06, 2.96236365e+06, 3.40031433e+06, 3.60206573e+06, 2.64462323e+06, 3.03555453e+06, 3.21569568e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt4' : [ 3.87142112e+06, 2.91742406e+06, ], 'CountWeighted_rwgt5' : [ 2.53991664e+06, 2.53989273e+06, 2.53994469e+06, ], 'CountWeightedLHEWeightScale_rwgt5' : [ 2.52180850e+06, 2.88934997e+06, 3.05644771e+06, 2.21677998e+06, 2.53991664e+06, 2.68675359e+06, 1.97901359e+06, 2.26746522e+06, 2.39856490e+06, ], 'CountWeightedLHEEnvelope_rwgt5' : [ 2.89210812e+06, 2.18064979e+06, ], 'CountWeightedFull_rwgt5' : [ 2.53991664e+06, 2.53989273e+06, 2.53994469e+06, ], 'CountWeightedFullLHEWeightScale_rwgt5' : [ 2.52180850e+06, 2.88934997e+06, 3.05644771e+06, 2.21677998e+06, 2.53991664e+06, 2.68675359e+06, 1.97901359e+06, 2.26746522e+06, 2.39856490e+06, ], 'CountWeightedFullLHEEnvelope_rwgt5' : [ 2.89210812e+06, 2.18064979e+06, ], 'CountWeightedL1PrefireNom_rwgt5' : [ 2.44391223e+06, 2.44375078e+06, 2.44407946e+06, ], 'CountWeightedL1Prefire_rwgt5' : [ 2.44391223e+06, 2.42112789e+06, 2.46626557e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt5' : [ 2.42368243e+06, 2.78013627e+06, 2.94362384e+06, 2.13052308e+06, 2.44391223e+06, 2.58757315e+06, 1.90200903e+06, 2.18176015e+06, 2.31002517e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt5' : [ 2.78253542e+06, 2.09769513e+06, ], 'CountWeightedFullL1PrefireNom_rwgt5' : [ 2.44391223e+06, 2.44375078e+06, 2.44407946e+06, ], 'CountWeightedFullL1Prefire_rwgt5' : [ 2.44391223e+06, 2.42112789e+06, 2.46626557e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt5' : [ 2.42368243e+06, 2.78013627e+06, 2.94362384e+06, 2.13052308e+06, 2.44391223e+06, 2.58757315e+06, 1.90200903e+06, 2.18176015e+06, 2.31002517e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt5' : [ 2.78253542e+06, 2.09769513e+06, ], 'CountWeighted_rwgt6' : [ 1.73456839e+06, 1.73450029e+06, 1.73460621e+06, ], 'CountWeightedLHEWeightScale_rwgt6' : [ 1.72294971e+06, 1.97319976e+06, 2.08659311e+06, 1.51454693e+06, 1.73456839e+06, 1.83420949e+06, 1.35209813e+06, 1.54850091e+06, 1.63747142e+06, ], 'CountWeightedLHEEnvelope_rwgt6' : [ 1.97511193e+06, 1.48954730e+06, ], 'CountWeightedFull_rwgt6' : [ 1.73456839e+06, 1.73450029e+06, 1.73460621e+06, ], 'CountWeightedFullLHEWeightScale_rwgt6' : [ 1.72294971e+06, 1.97319976e+06, 2.08659311e+06, 1.51454693e+06, 1.73456839e+06, 1.83420949e+06, 1.35209813e+06, 1.54850091e+06, 1.63747142e+06, ], 'CountWeightedFullLHEEnvelope_rwgt6' : [ 1.97511193e+06, 1.48954730e+06, ], 'CountWeightedL1PrefireNom_rwgt6' : [ 1.66869771e+06, 1.66853724e+06, 1.66883446e+06, ], 'CountWeightedL1Prefire_rwgt6' : [ 1.66869771e+06, 1.65306686e+06, 1.68403620e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt6' : [ 1.65558958e+06, 1.89826876e+06, 2.00921441e+06, 1.45533672e+06, 1.66869771e+06, 1.76618914e+06, 1.29923821e+06, 1.48969700e+06, 1.57674509e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt6' : [ 1.89993172e+06, 1.43262231e+06, ], 'CountWeightedFullL1PrefireNom_rwgt6' : [ 1.66869771e+06, 1.66853724e+06, 1.66883446e+06, ], 'CountWeightedFullL1Prefire_rwgt6' : [ 1.66869771e+06, 1.65306686e+06, 1.68403620e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt6' : [ 1.65558958e+06, 1.89826876e+06, 2.00921441e+06, 1.45533672e+06, 1.66869771e+06, 1.76618914e+06, 1.29923821e+06, 1.48969700e+06, 1.57674509e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt6' : [ 1.89993172e+06, 1.43262231e+06, ], 'CountWeighted_rwgt7' : [ 1.11730785e+06, 1.11719458e+06, 1.11737235e+06, ], 'CountWeightedLHEWeightScale_rwgt7' : [ 1.10931279e+06, 1.27101940e+06, 1.34459898e+06, 9.75136885e+05, 1.11730785e+06, 1.18196310e+06, 8.70544002e+05, 9.97455311e+05, 1.05518590e+06, ], 'CountWeightedLHEEnvelope_rwgt7' : [ 1.27229084e+06, 9.59068631e+05, ], 'CountWeightedFull_rwgt7' : [ 1.11730785e+06, 1.11719458e+06, 1.11737235e+06, ], 'CountWeightedFullLHEWeightScale_rwgt7' : [ 1.10931279e+06, 1.27101940e+06, 1.34459898e+06, 9.75136885e+05, 1.11730785e+06, 1.18196310e+06, 8.70544002e+05, 9.97455311e+05, 1.05518590e+06, ], 'CountWeightedFullLHEEnvelope_rwgt7' : [ 1.27229084e+06, 9.59068631e+05, ], 'CountWeightedL1PrefireNom_rwgt7' : [ 1.07484408e+06, 1.07467153e+06, 1.07497159e+06, ], 'CountWeightedL1Prefire_rwgt7' : [ 1.07484408e+06, 1.06476410e+06, 1.08473488e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt7' : [ 1.06589506e+06, 1.22271472e+06, 1.29471101e+06, 9.36968895e+05, 1.07484408e+06, 1.13810789e+06, 8.36470986e+05, 9.59546748e+05, 1.01603683e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt7' : [ 1.22382476e+06, 9.22376773e+05, ], 'CountWeightedFullL1PrefireNom_rwgt7' : [ 1.07484408e+06, 1.07467153e+06, 1.07497159e+06, ], 'CountWeightedFullL1Prefire_rwgt7' : [ 1.07484408e+06, 1.06476410e+06, 1.08473488e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt7' : [ 1.06589506e+06, 1.22271472e+06, 1.29471101e+06, 9.36968895e+05, 1.07484408e+06, 1.13810789e+06, 8.36470986e+05, 9.59546748e+05, 1.01603683e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt7' : [ 1.22382476e+06, 9.22376773e+05, ], 'CountWeighted_rwgt8' : [ 6.87517033e+05, 6.87349623e+05, 6.87618148e+05, ], 'CountWeightedLHEWeightScale_rwgt8' : [ 6.80286475e+05, 7.82101578e+05, 8.29717033e+05, 5.98001784e+05, 6.87517033e+05, 7.29357713e+05, 5.33861046e+05, 6.13767423e+05, 6.51127027e+05, ], 'CountWeightedLHEEnvelope_rwgt8' : [ 7.82936598e+05, 5.88674463e+05, ], 'CountWeightedFull_rwgt8' : [ 6.87517033e+05, 6.87349623e+05, 6.87618148e+05, ], 'CountWeightedFullLHEWeightScale_rwgt8' : [ 6.80286475e+05, 7.82101578e+05, 8.29717033e+05, 5.98001784e+05, 6.87517033e+05, 7.29357713e+05, 5.33861046e+05, 6.13767423e+05, 6.51127027e+05, ], 'CountWeightedFullLHEEnvelope_rwgt8' : [ 7.82936598e+05, 5.88674463e+05, ], 'CountWeightedL1PrefireNom_rwgt8' : [ 6.61752162e+05, 6.61547832e+05, 6.61890520e+05, ], 'CountWeightedL1Prefire_rwgt8' : [ 6.61752162e+05, 6.55625705e+05, 6.67761033e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt8' : [ 6.54001205e+05, 7.52791629e+05, 7.99391188e+05, 5.74896571e+05, 6.61752162e+05, 7.02699904e+05, 5.13232883e+05, 5.90766087e+05, 6.27328279e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt8' : [ 7.53530883e+05, 5.66436090e+05, ], 'CountWeightedFullL1PrefireNom_rwgt8' : [ 6.61752162e+05, 6.61547832e+05, 6.61890520e+05, ], 'CountWeightedFullL1Prefire_rwgt8' : [ 6.61752162e+05, 6.55625705e+05, 6.67761033e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt8' : [ 6.54001205e+05, 7.52791629e+05, 7.99391188e+05, 5.74896571e+05, 6.61752162e+05, 7.02699904e+05, 5.13232883e+05, 5.90766087e+05, 6.27328279e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt8' : [ 7.53530883e+05, 5.66436090e+05, ], 'CountWeighted_rwgt9' : [ 4.45823052e+05, 4.45591678e+05, 4.45965218e+05, ], 'CountWeightedLHEWeightScale_rwgt9' : [ 4.36489938e+05, 5.07155520e+05, 5.42696414e+05, 3.83694547e+05, 4.45823052e+05, 4.77054539e+05, 3.42539272e+05, 3.97999672e+05, 4.25885777e+05, ], 'CountWeightedLHEEnvelope_rwgt9' : [ 5.07760329e+05, 3.78905507e+05, ], 'CountWeightedFull_rwgt9' : [ 4.45823052e+05, 4.45591678e+05, 4.45965218e+05, ], 'CountWeightedFullLHEWeightScale_rwgt9' : [ 4.36489938e+05, 5.07155520e+05, 5.42696414e+05, 3.83694547e+05, 4.45823052e+05, 4.77054539e+05, 3.42539272e+05, 3.97999672e+05, 4.25885777e+05, ], 'CountWeightedFullLHEEnvelope_rwgt9' : [ 5.07760329e+05, 3.78905507e+05, ], 'CountWeightedL1PrefireNom_rwgt9' : [ 4.30026524e+05, 4.29773662e+05, 4.30191036e+05, ], 'CountWeightedL1Prefire_rwgt9' : [ 4.30026524e+05, 4.26250527e+05, 4.33723674e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt9' : [ 4.20507510e+05, 4.89186536e+05, 5.23976465e+05, 3.69645602e+05, 4.30026524e+05, 4.60598494e+05, 3.29997091e+05, 3.83897686e+05, 4.11194813e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt9' : [ 4.89738140e+05, 3.65321876e+05, ], 'CountWeightedFullL1PrefireNom_rwgt9' : [ 4.30026524e+05, 4.29773662e+05, 4.30191036e+05, ], 'CountWeightedFullL1Prefire_rwgt9' : [ 4.30026524e+05, 4.26250527e+05, 4.33723674e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt9' : [ 4.20507510e+05, 4.89186536e+05, 5.23976465e+05, 3.69645602e+05, 4.30026524e+05, 4.60598494e+05, 3.29997091e+05, 3.83897686e+05, 4.11194813e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt9' : [ 4.89738140e+05, 3.65321876e+05, ], 'CountWeighted_rwgt10' : [ 3.92014595e+05, 3.91710694e+05, 3.92203581e+05, ], 'CountWeightedLHEWeightScale_rwgt10' : [ 3.77715143e+05, 4.45944352e+05, 4.83286837e+05, 3.32028050e+05, 3.92014595e+05, 4.24831563e+05, 2.96414668e+05, 3.49963120e+05, 3.79264392e+05, ], 'CountWeightedLHEEnvelope_rwgt10' : [ 4.46524148e+05, 3.29579771e+05, ], 'CountWeightedFull_rwgt10' : [ 3.92014595e+05, 3.91710694e+05, 3.92203581e+05, ], 'CountWeightedFullLHEWeightScale_rwgt10' : [ 3.77715143e+05, 4.45944352e+05, 4.83286837e+05, 3.32028050e+05, 3.92014595e+05, 4.24831563e+05, 2.96414668e+05, 3.49963120e+05, 3.79264392e+05, ], 'CountWeightedFullLHEEnvelope_rwgt10' : [ 4.46524148e+05, 3.29579771e+05, ], 'CountWeightedL1PrefireNom_rwgt10' : [ 3.79464048e+05, 3.79142636e+05, 3.79668819e+05, ], 'CountWeightedL1Prefire_rwgt10' : [ 3.79464048e+05, 3.76439044e+05, 3.82417559e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt10' : [ 3.65214873e+05, 4.31667685e+05, 4.68226412e+05, 3.21040116e+05, 3.79464048e+05, 4.11592413e+05, 2.86605012e+05, 3.38758954e+05, 3.67445356e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt10' : [ 4.32214332e+05, 3.18859693e+05, ], 'CountWeightedFullL1PrefireNom_rwgt10' : [ 3.79464048e+05, 3.79142636e+05, 3.79668819e+05, ], 'CountWeightedFullL1Prefire_rwgt10' : [ 3.79464048e+05, 3.76439044e+05, 3.82417559e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt10' : [ 3.65214873e+05, 4.31667685e+05, 4.68226412e+05, 3.21040116e+05, 3.79464048e+05, 4.11592413e+05, 2.86605012e+05, 3.38758954e+05, 3.67445356e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt10' : [ 4.32214332e+05, 3.18859693e+05, ], 'CountWeighted_rwgt11' : [ 5.26079472e+05, 5.25694524e+05, 5.26321146e+05, ], 'CountWeightedLHEWeightScale_rwgt11' : [ 5.03948588e+05, 5.98454403e+05, 6.51475367e+05, 4.42993964e+05, 5.26079472e+05, 5.72675284e+05, 3.95480122e+05, 4.69647762e+05, 5.11249909e+05, ], 'CountWeightedLHEEnvelope_rwgt11' : [ 5.99214576e+05, 4.40688431e+05, ], 'CountWeightedFull_rwgt11' : [ 5.26079472e+05, 5.25694524e+05, 5.26321146e+05, ], 'CountWeightedFullLHEWeightScale_rwgt11' : [ 5.03948588e+05, 5.98454403e+05, 6.51475367e+05, 4.42993964e+05, 5.26079472e+05, 5.72675284e+05, 3.95480122e+05, 4.69647762e+05, 5.11249909e+05, ], 'CountWeightedFullLHEEnvelope_rwgt11' : [ 5.99214576e+05, 4.40688431e+05, ], 'CountWeightedL1PrefireNom_rwgt11' : [ 5.10052410e+05, 5.09645119e+05, 5.10312995e+05, ], 'CountWeightedL1Prefire_rwgt11' : [ 5.10052410e+05, 5.06177429e+05, 5.13831103e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt11' : [ 4.88109450e+05, 5.80222539e+05, 6.32126371e+05, 4.29071092e+05, 5.10052410e+05, 5.55667131e+05, 3.83050437e+05, 4.55340434e+05, 4.96066387e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt11' : [ 5.80946792e+05, 4.27039730e+05, ], 'CountWeightedFullL1PrefireNom_rwgt11' : [ 5.10052410e+05, 5.09645119e+05, 5.10312995e+05, ], 'CountWeightedFullL1Prefire_rwgt11' : [ 5.10052410e+05, 5.06177429e+05, 5.13831103e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt11' : [ 4.88109450e+05, 5.80222539e+05, 6.32126371e+05, 4.29071092e+05, 5.10052410e+05, 5.55667131e+05, 3.83050437e+05, 4.55340434e+05, 4.96066387e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt11' : [ 5.80946792e+05, 4.27039730e+05, ], 'CountWeighted_rwgt12' : [ 8.48057977e+05, 8.47582705e+05, 8.48353896e+05, ], 'CountWeightedLHEWeightScale_rwgt12' : [ 8.15230068e+05, 9.64727969e+05, 1.04730546e+06, 7.16624098e+05, 8.48057977e+05, 9.20627291e+05, 6.39758103e+05, 7.57089369e+05, 8.21883387e+05, ], 'CountWeightedLHEEnvelope_rwgt12' : [ 9.65873814e+05, 7.12262922e+05, ], 'CountWeightedFull_rwgt12' : [ 8.48057977e+05, 8.47582705e+05, 8.48353896e+05, ], 'CountWeightedFullLHEWeightScale_rwgt12' : [ 8.15230068e+05, 9.64727969e+05, 1.04730546e+06, 7.16624098e+05, 8.48057977e+05, 9.20627291e+05, 6.39758103e+05, 7.57089369e+05, 8.21883387e+05, ], 'CountWeightedFullLHEEnvelope_rwgt12' : [ 9.65873814e+05, 7.12262922e+05, ], 'CountWeightedL1PrefireNom_rwgt12' : [ 8.21831977e+05, 8.21320139e+05, 8.22159945e+05, ], 'CountWeightedL1Prefire_rwgt12' : [ 8.21831977e+05, 8.15506621e+05, 8.28003973e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt12' : [ 7.89230637e+05, 9.34892869e+05, 1.01572232e+06, 6.93768674e+05, 8.21831977e+05, 8.92864602e+05, 6.19354228e+05, 7.33675699e+05, 7.97098230e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt12' : [ 9.35977967e+05, 6.89892969e+05, ], 'CountWeightedFullL1PrefireNom_rwgt12' : [ 8.21831977e+05, 8.21320139e+05, 8.22159945e+05, ], 'CountWeightedFullL1Prefire_rwgt12' : [ 8.21831977e+05, 8.15506621e+05, 8.28003973e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt12' : [ 7.89230637e+05, 9.34892869e+05, 1.01572232e+06, 6.93768674e+05, 8.21831977e+05, 8.92864602e+05, 6.19354228e+05, 7.33675699e+05, 7.97098230e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt12' : [ 9.35977967e+05, 6.89892969e+05, ], 'CountWeighted_rwgt13' : [ 1.35791678e+06, 1.35733752e+06, 1.35827054e+06, ], 'CountWeightedLHEWeightScale_rwgt13' : [ 1.31152375e+06, 1.54472946e+06, 1.67074061e+06, 1.15288816e+06, 1.35791678e+06, 1.46865652e+06, 1.02923055e+06, 1.21225358e+06, 1.31112881e+06, ], 'CountWeightedLHEEnvelope_rwgt13' : [ 1.54646675e+06, 1.14427461e+06, ], 'CountWeightedFull_rwgt13' : [ 1.35791678e+06, 1.35733752e+06, 1.35827054e+06, ], 'CountWeightedFullLHEWeightScale_rwgt13' : [ 1.31152375e+06, 1.54472946e+06, 1.67074061e+06, 1.15288816e+06, 1.35791678e+06, 1.46865652e+06, 1.02923055e+06, 1.21225358e+06, 1.31112881e+06, ], 'CountWeightedFullLHEEnvelope_rwgt13' : [ 1.54646675e+06, 1.14427461e+06, ], 'CountWeightedL1PrefireNom_rwgt13' : [ 1.31476784e+06, 1.31412848e+06, 1.31517577e+06, ], 'CountWeightedL1Prefire_rwgt13' : [ 1.31476784e+06, 1.30439255e+06, 1.32490114e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt13' : [ 1.26854044e+06, 1.49564611e+06, 1.61897424e+06, 1.11510497e+06, 1.31476784e+06, 1.42315164e+06, 9.95498801e+05, 1.17373338e+06, 1.27050418e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt13' : [ 1.49727429e+06, 1.10739138e+06, ], 'CountWeightedFullL1PrefireNom_rwgt13' : [ 1.31476784e+06, 1.31412848e+06, 1.31517577e+06, ], 'CountWeightedFullL1Prefire_rwgt13' : [ 1.31476784e+06, 1.30439255e+06, 1.32490114e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt13' : [ 1.26854044e+06, 1.49564611e+06, 1.61897424e+06, 1.11510497e+06, 1.31476784e+06, 1.42315164e+06, 9.95498801e+05, 1.17373338e+06, 1.27050418e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt13' : [ 1.49727429e+06, 1.10739138e+06, ], 'CountWeighted_rwgt14' : [ 2.94129021e+06, 2.94048115e+06, 2.94178909e+06, ], 'CountWeightedLHEWeightScale_rwgt14' : [ 2.85918096e+06, 3.34593562e+06, 3.60044214e+06, 2.51334484e+06, 2.94129021e+06, 3.16495253e+06, 2.24376768e+06, 2.62578173e+06, 2.82548255e+06, ], 'CountWeightedLHEEnvelope_rwgt14' : [ 3.34947082e+06, 2.48963131e+06, ], 'CountWeightedFull_rwgt14' : [ 2.94129021e+06, 2.94048115e+06, 2.94178909e+06, ], 'CountWeightedFullLHEWeightScale_rwgt14' : [ 2.85918096e+06, 3.34593562e+06, 3.60044214e+06, 2.51334484e+06, 2.94129021e+06, 3.16495253e+06, 2.24376768e+06, 2.62578173e+06, 2.82548255e+06, ], 'CountWeightedFullLHEEnvelope_rwgt14' : [ 3.34947082e+06, 2.48963131e+06, ], 'CountWeightedL1PrefireNom_rwgt14' : [ 2.84413226e+06, 2.84318389e+06, 2.84475366e+06, ], 'CountWeightedL1Prefire_rwgt14' : [ 2.84413226e+06, 2.82085230e+06, 2.86689377e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt14' : [ 2.76177032e+06, 3.23540773e+06, 3.48446924e+06, 2.42771526e+06, 2.84413226e+06, 3.06300652e+06, 2.16732272e+06, 2.53904368e+06, 2.73447005e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt14' : [ 3.23867116e+06, 2.40634760e+06, ], 'CountWeightedFullL1PrefireNom_rwgt14' : [ 2.84413226e+06, 2.84318389e+06, 2.84475366e+06, ], 'CountWeightedFullL1Prefire_rwgt14' : [ 2.84413226e+06, 2.82085230e+06, 2.86689377e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt14' : [ 2.76177032e+06, 3.23540773e+06, 3.48446924e+06, 2.42771526e+06, 2.84413226e+06, 3.06300652e+06, 2.16732272e+06, 2.53904368e+06, 2.73447005e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt14' : [ 3.23867116e+06, 2.40634760e+06, ], 'CountWeighted_rwgt15' : [ 8.36269341e+06, 8.36129927e+06, 8.36352298e+06, ], 'CountWeightedLHEWeightScale_rwgt15' : [ 8.17475622e+06, 9.51317456e+06, 1.01912011e+07, 7.18598653e+06, 8.36269341e+06, 8.95852172e+06, 6.41520647e+06, 7.46562077e+06, 7.99763627e+06, ], 'CountWeightedLHEEnvelope_rwgt15' : [ 9.52277339e+06, 7.10569048e+06, ], 'CountWeightedFull_rwgt15' : [ 8.36269341e+06, 8.36129927e+06, 8.36352298e+06, ], 'CountWeightedFullLHEWeightScale_rwgt15' : [ 8.17475622e+06, 9.51317456e+06, 1.01912011e+07, 7.18598653e+06, 8.36269341e+06, 8.95852172e+06, 6.41520647e+06, 7.46562077e+06, 7.99763627e+06, ], 'CountWeightedFullLHEEnvelope_rwgt15' : [ 9.52277339e+06, 7.10569048e+06, ], 'CountWeightedL1PrefireNom_rwgt15' : [ 8.07682616e+06, 8.07503569e+06, 8.07804184e+06, ], 'CountWeightedL1Prefire_rwgt15' : [ 8.07682616e+06, 8.00854208e+06, 8.14367402e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt15' : [ 7.88662647e+06, 9.18799412e+06, 9.85145791e+06, 6.93270880e+06, 8.07682616e+06, 8.65986553e+06, 6.18909420e+06, 7.21043178e+06, 7.73101300e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt15' : [ 9.19671962e+06, 6.86010072e+06, ], 'CountWeightedFullL1PrefireNom_rwgt15' : [ 8.07682616e+06, 8.07503569e+06, 8.07804184e+06, ], 'CountWeightedFullL1Prefire_rwgt15' : [ 8.07682616e+06, 8.00854208e+06, 8.14367402e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt15' : [ 7.88662647e+06, 9.18799412e+06, 9.85145791e+06, 6.93270880e+06, 8.07682616e+06, 8.65986553e+06, 6.18909420e+06, 7.21043178e+06, 7.73101300e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt15' : [ 9.19671962e+06, 6.86010072e+06, ], 'CountWeighted_rwgt17' : [ 1.48082413e+07, 1.48082250e+07, 1.48081750e+07, ], 'CountWeightedLHEWeightScale_rwgt17' : [ 1.46722099e+07, 1.68454287e+07, 1.78496275e+07, 1.28974723e+07, 1.48082413e+07, 1.56906010e+07, 1.15141483e+07, 1.32196547e+07, 1.40076766e+07, ], 'CountWeightedLHEEnvelope_rwgt17' : [ 1.68613205e+07, 1.26969593e+07, ], 'CountWeightedFull_rwgt17' : [ 1.48082413e+07, 1.48082250e+07, 1.48081750e+07, ], 'CountWeightedFullLHEWeightScale_rwgt17' : [ 1.46722099e+07, 1.68454287e+07, 1.78496275e+07, 1.28974723e+07, 1.48082413e+07, 1.56906010e+07, 1.15141483e+07, 1.32196547e+07, 1.40076766e+07, ], 'CountWeightedFullLHEEnvelope_rwgt17' : [ 1.68613205e+07, 1.26969593e+07, ], 'CountWeightedL1PrefireNom_rwgt17' : [ 1.42569514e+07, 1.42561548e+07, 1.42576709e+07, ], 'CountWeightedL1Prefire_rwgt17' : [ 1.42569514e+07, 1.41260432e+07, 1.43853585e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt17' : [ 1.41097946e+07, 1.62183013e+07, 1.72007650e+07, 1.24031180e+07, 1.42569514e+07, 1.51202375e+07, 1.10727977e+07, 1.27275421e+07, 1.34984599e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt17' : [ 1.62321843e+07, 1.22209728e+07, ], 'CountWeightedFullL1PrefireNom_rwgt17' : [ 1.42569514e+07, 1.42561548e+07, 1.42576709e+07, ], 'CountWeightedFullL1Prefire_rwgt17' : [ 1.42569514e+07, 1.41260432e+07, 1.43853585e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt17' : [ 1.41097946e+07, 1.62183013e+07, 1.72007650e+07, 1.24031180e+07, 1.42569514e+07, 1.51202375e+07, 1.10727977e+07, 1.27275421e+07, 1.34984599e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt17' : [ 1.62321843e+07, 1.22209728e+07, ], 'CountWeighted_rwgt19' : [ 8.78850634e+06, 8.78855856e+06, 8.78844614e+06, ], 'CountWeightedLHEWeightScale_rwgt19' : [ 8.71824761e+06, 9.99742345e+06, 1.05832090e+07, 7.66373000e+06, 8.78850634e+06, 9.30310966e+06, 6.84171920e+06, 7.84575722e+06, 8.30526819e+06, ], 'CountWeightedLHEEnvelope_rwgt19' : [ 1.00068888e+07, 7.54132948e+06, ], 'CountWeightedFull_rwgt19' : [ 8.78850634e+06, 8.78855856e+06, 8.78844614e+06, ], 'CountWeightedFullLHEWeightScale_rwgt19' : [ 8.71824761e+06, 9.99742345e+06, 1.05832090e+07, 7.66373000e+06, 8.78850634e+06, 9.30310966e+06, 6.84171920e+06, 7.84575722e+06, 8.30526819e+06, ], 'CountWeightedFullLHEEnvelope_rwgt19' : [ 1.00068888e+07, 7.54132948e+06, ], 'CountWeightedL1PrefireNom_rwgt19' : [ 8.45854969e+06, 8.45812670e+06, 8.45897747e+06, ], 'CountWeightedL1Prefire_rwgt19' : [ 8.45854969e+06, 8.38024808e+06, 8.53539247e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt19' : [ 8.38129300e+06, 9.62212114e+06, 1.01951870e+07, 7.36752975e+06, 8.45854969e+06, 8.96202816e+06, 6.57727403e+06, 7.55119211e+06, 8.00077789e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt19' : [ 9.63036825e+06, 7.25632028e+06, ], 'CountWeightedFullL1PrefireNom_rwgt19' : [ 8.45854969e+06, 8.45812670e+06, 8.45897747e+06, ], 'CountWeightedFullL1Prefire_rwgt19' : [ 8.45854969e+06, 8.38024808e+06, 8.53539247e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt19' : [ 8.38129300e+06, 9.62212114e+06, 1.01951870e+07, 7.36752975e+06, 8.45854969e+06, 8.96202816e+06, 6.57727403e+06, 7.55119211e+06, 8.00077789e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt19' : [ 9.63036825e+06, 7.25632028e+06, ], 'CountWeighted_rwgt20' : [ 7.15774500e+06, 7.15770225e+06, 7.15773278e+06, ], 'CountWeightedLHEWeightScale_rwgt20' : [ 7.10365672e+06, 8.14243672e+06, 8.61630794e+06, 6.24442027e+06, 7.15774500e+06, 7.57412352e+06, 5.57465942e+06, 6.38988784e+06, 6.76174020e+06, ], 'CountWeightedLHEEnvelope_rwgt20' : [ 8.15016938e+06, 6.14366294e+06, ], 'CountWeightedFull_rwgt20' : [ 7.15774500e+06, 7.15770225e+06, 7.15773278e+06, ], 'CountWeightedFullLHEWeightScale_rwgt20' : [ 7.10365672e+06, 8.14243672e+06, 8.61630794e+06, 6.24442027e+06, 7.15774500e+06, 7.57412352e+06, 5.57465942e+06, 6.38988784e+06, 6.76174020e+06, ], 'CountWeightedFullLHEEnvelope_rwgt20' : [ 8.15016938e+06, 6.14366294e+06, ], 'CountWeightedL1PrefireNom_rwgt20' : [ 6.88811567e+06, 6.88768631e+06, 6.88850917e+06, ], 'CountWeightedL1Prefire_rwgt20' : [ 6.88811567e+06, 6.82412527e+06, 6.95090836e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt20' : [ 6.82819633e+06, 7.83573144e+06, 8.29934030e+06, 6.00227067e+06, 6.88811567e+06, 7.29549808e+06, 5.35848973e+06, 6.14920067e+06, 6.51298631e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt20' : [ 7.84245841e+06, 5.91072819e+06, ], 'CountWeightedFullL1PrefireNom_rwgt20' : [ 6.88811567e+06, 6.88768631e+06, 6.88850917e+06, ], 'CountWeightedFullL1Prefire_rwgt20' : [ 6.88811567e+06, 6.82412527e+06, 6.95090836e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt20' : [ 6.82819633e+06, 7.83573144e+06, 8.29934030e+06, 6.00227067e+06, 6.88811567e+06, 7.29549808e+06, 5.35848973e+06, 6.14920067e+06, 6.51298631e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt20' : [ 7.84245841e+06, 5.91072819e+06, ], 'CountWeighted_rwgt22' : [ 4.45981461e+06, 4.45970157e+06, 4.45986850e+06, ], 'CountWeightedLHEWeightScale_rwgt22' : [ 4.42951311e+06, 5.07337216e+06, 5.36532480e+06, 3.89375059e+06, 4.45981461e+06, 4.71634694e+06, 3.47610783e+06, 3.98142414e+06, 4.21048476e+06, ], 'CountWeightedLHEEnvelope_rwgt22' : [ 5.07825828e+06, 3.82969973e+06, ], 'CountWeightedFull_rwgt22' : [ 4.45981461e+06, 4.45970157e+06, 4.45986850e+06, ], 'CountWeightedFullLHEWeightScale_rwgt22' : [ 4.42951311e+06, 5.07337216e+06, 5.36532480e+06, 3.89375059e+06, 4.45981461e+06, 4.71634694e+06, 3.47610783e+06, 3.98142414e+06, 4.21048476e+06, ], 'CountWeightedFullLHEEnvelope_rwgt22' : [ 5.07825828e+06, 3.82969973e+06, ], 'CountWeightedL1PrefireNom_rwgt22' : [ 4.29069544e+06, 4.29033141e+06, 4.29099423e+06, ], 'CountWeightedL1Prefire_rwgt22' : [ 4.29069544e+06, 4.25056312e+06, 4.33007366e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt22' : [ 4.25659284e+06, 4.88097527e+06, 5.16661583e+06, 3.74174067e+06, 4.29069544e+06, 4.54168031e+06, 3.34040167e+06, 3.83043707e+06, 4.05454905e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt22' : [ 4.88522407e+06, 3.68354489e+06, ], 'CountWeightedFullL1PrefireNom_rwgt22' : [ 4.29069544e+06, 4.29033141e+06, 4.29099423e+06, ], 'CountWeightedFullL1Prefire_rwgt22' : [ 4.29069544e+06, 4.25056312e+06, 4.33007366e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt22' : [ 4.25659284e+06, 4.88097527e+06, 5.16661583e+06, 3.74174067e+06, 4.29069544e+06, 4.54168031e+06, 3.34040167e+06, 3.83043707e+06, 4.05454905e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt22' : [ 4.88522407e+06, 3.68354489e+06, ], 'CountWeighted_rwgt23' : [ 3.39270794e+06, 3.39251748e+06, 3.39280960e+06, ], 'CountWeightedLHEWeightScale_rwgt23' : [ 3.36999780e+06, 3.85944637e+06, 4.08124155e+06, 2.96237470e+06, 3.39270794e+06, 3.58760321e+06, 2.64463094e+06, 3.02876705e+06, 3.20279455e+06, ], 'CountWeightedLHEEnvelope_rwgt23' : [ 3.86321720e+06, 2.91337509e+06, ], 'CountWeightedFull_rwgt23' : [ 3.39270794e+06, 3.39251748e+06, 3.39280960e+06, ], 'CountWeightedFullLHEWeightScale_rwgt23' : [ 3.36999780e+06, 3.85944637e+06, 4.08124155e+06, 2.96237470e+06, 3.39270794e+06, 3.58760321e+06, 2.64463094e+06, 3.02876705e+06, 3.20279455e+06, ], 'CountWeightedFullLHEEnvelope_rwgt23' : [ 3.86321720e+06, 2.91337509e+06, ], 'CountWeightedL1PrefireNom_rwgt23' : [ 3.26373783e+06, 3.26336898e+06, 3.26403492e+06, ], 'CountWeightedL1Prefire_rwgt23' : [ 3.26373783e+06, 3.23313466e+06, 3.29377334e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt23' : [ 3.23811088e+06, 3.71274111e+06, 3.92975011e+06, 2.84643987e+06, 3.26373783e+06, 3.45443412e+06, 2.54113301e+06, 2.91363865e+06, 3.08390743e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt23' : [ 3.71602304e+06, 2.80192352e+06, ], 'CountWeightedFullL1PrefireNom_rwgt23' : [ 3.26373783e+06, 3.26336898e+06, 3.26403492e+06, ], 'CountWeightedFullL1Prefire_rwgt23' : [ 3.26373783e+06, 3.23313466e+06, 3.29377334e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt23' : [ 3.23811088e+06, 3.71274111e+06, 3.92975011e+06, 2.84643987e+06, 3.26373783e+06, 3.45443412e+06, 2.54113301e+06, 2.91363865e+06, 3.08390743e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt23' : [ 3.71602304e+06, 2.80192352e+06, ], 'CountWeighted_rwgt25' : [ 1.82212845e+06, 1.82179563e+06, 1.82232795e+06, ], 'CountWeightedLHEWeightScale_rwgt25' : [ 1.80600491e+06, 2.07280115e+06, 2.19593189e+06, 1.58755871e+06, 1.82212845e+06, 1.93032553e+06, 1.41727678e+06, 1.62667091e+06, 1.72327516e+06, ], 'CountWeightedLHEEnvelope_rwgt25' : [ 2.07495597e+06, 1.56206652e+06, ], 'CountWeightedFull_rwgt25' : [ 1.82212845e+06, 1.82179563e+06, 1.82232795e+06, ], 'CountWeightedFullLHEWeightScale_rwgt25' : [ 1.80600491e+06, 2.07280115e+06, 2.19593189e+06, 1.58755871e+06, 1.82212845e+06, 1.93032553e+06, 1.41727678e+06, 1.62667091e+06, 1.72327516e+06, ], 'CountWeightedFullLHEEnvelope_rwgt25' : [ 2.07495597e+06, 1.56206652e+06, ], 'CountWeightedL1PrefireNom_rwgt25' : [ 1.75332176e+06, 1.75289069e+06, 1.75362144e+06, ], 'CountWeightedL1Prefire_rwgt25' : [ 1.75332176e+06, 1.73697217e+06, 1.76935943e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt25' : [ 1.73572513e+06, 1.99452784e+06, 2.11502199e+06, 1.52577874e+06, 1.75332176e+06, 1.85920069e+06, 1.36212196e+06, 1.56524142e+06, 1.65977980e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt25' : [ 1.99642402e+06, 1.50264227e+06, ], 'CountWeightedFullL1PrefireNom_rwgt25' : [ 1.75332176e+06, 1.75289069e+06, 1.75362144e+06, ], 'CountWeightedFullL1Prefire_rwgt25' : [ 1.75332176e+06, 1.73697217e+06, 1.76935943e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt25' : [ 1.73572513e+06, 1.99452784e+06, 2.11502199e+06, 1.52577874e+06, 1.75332176e+06, 1.85920069e+06, 1.36212196e+06, 1.56524142e+06, 1.65977980e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt25' : [ 1.99642402e+06, 1.50264227e+06, ], 'CountWeighted_rwgt26' : [ 1.31866969e+06, 1.31824920e+06, 1.31892696e+06, ], 'CountWeightedLHEWeightScale_rwgt26' : [ 1.30154157e+06, 1.50008521e+06, 1.59469431e+06, 1.14411275e+06, 1.31866969e+06, 1.40180559e+06, 1.02139704e+06, 1.17721731e+06, 1.25144872e+06, ], 'CountWeightedLHEEnvelope_rwgt26' : [ 1.50174014e+06, 1.12707890e+06, ], 'CountWeightedFull_rwgt26' : [ 1.31866969e+06, 1.31824920e+06, 1.31892696e+06, ], 'CountWeightedFullLHEWeightScale_rwgt26' : [ 1.30154157e+06, 1.50008521e+06, 1.59469431e+06, 1.14411275e+06, 1.31866969e+06, 1.40180559e+06, 1.02139704e+06, 1.17721731e+06, 1.25144872e+06, ], 'CountWeightedFullLHEEnvelope_rwgt26' : [ 1.50174014e+06, 1.12707890e+06, ], 'CountWeightedL1PrefireNom_rwgt26' : [ 1.26985707e+06, 1.26936722e+06, 1.27018575e+06, ], 'CountWeightedL1Prefire_rwgt26' : [ 1.26985707e+06, 1.25823554e+06, 1.28125130e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt26' : [ 1.25183337e+06, 1.44455526e+06, 1.53715265e+06, 1.10041668e+06, 1.26985707e+06, 1.35122348e+06, 9.82387074e+05, 1.13364046e+06, 1.20629295e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt26' : [ 1.44603262e+06, 1.08498237e+06, ], 'CountWeightedFullL1PrefireNom_rwgt26' : [ 1.26985707e+06, 1.26936722e+06, 1.27018575e+06, ], 'CountWeightedFullL1Prefire_rwgt26' : [ 1.26985707e+06, 1.25823554e+06, 1.28125130e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt26' : [ 1.25183337e+06, 1.44455526e+06, 1.53715265e+06, 1.10041668e+06, 1.26985707e+06, 1.35122348e+06, 9.82387074e+05, 1.13364046e+06, 1.20629295e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt26' : [ 1.44603262e+06, 1.08498237e+06, ], 'CountWeighted_rwgt28' : [ 8.75417812e+05, 8.74790414e+05, 8.75803799e+05, ], 'CountWeightedLHEWeightScale_rwgt28' : [ 8.47684387e+05, 9.95848508e+05, 1.07504996e+06, 7.45153152e+05, 8.75417812e+05, 9.45018574e+05, 6.65228453e+05, 7.81512678e+05, 8.43656617e+05, ], 'CountWeightedLHEEnvelope_rwgt28' : [ 9.97120568e+05, 7.38439346e+05, ], 'CountWeightedFull_rwgt28' : [ 8.75417812e+05, 8.74790414e+05, 8.75803799e+05, ], 'CountWeightedFullLHEWeightScale_rwgt28' : [ 8.47684387e+05, 9.95848508e+05, 1.07504996e+06, 7.45153152e+05, 8.75417812e+05, 9.45018574e+05, 6.65228453e+05, 7.81512678e+05, 8.43656617e+05, ], 'CountWeightedFullLHEEnvelope_rwgt28' : [ 9.97120568e+05, 7.38439346e+05, ], 'CountWeightedL1PrefireNom_rwgt28' : [ 8.46425438e+05, 8.45757705e+05, 8.46851727e+05, ], 'CountWeightedL1Prefire_rwgt28' : [ 8.46425438e+05, 8.39456447e+05, 8.53236336e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt28' : [ 8.18653592e+05, 9.62868719e+05, 1.04040533e+06, 7.19633279e+05, 8.46425438e+05, 9.14564846e+05, 6.42446026e+05, 7.55630812e+05, 8.16468178e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt28' : [ 9.64056725e+05, 7.13618252e+05, ], 'CountWeightedFullL1PrefireNom_rwgt28' : [ 8.46425438e+05, 8.45757705e+05, 8.46851727e+05, ], 'CountWeightedFullL1Prefire_rwgt28' : [ 8.46425438e+05, 8.39456447e+05, 8.53236336e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt28' : [ 8.18653592e+05, 9.62868719e+05, 1.04040533e+06, 7.19633279e+05, 8.46425438e+05, 9.14564846e+05, 6.42446026e+05, 7.55630812e+05, 8.16468178e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt28' : [ 9.64056725e+05, 7.13618252e+05, ], 'CountWeighted_rwgt29' : [ 9.35616867e+05, 9.34876623e+05, 9.36077234e+05, ], 'CountWeightedLHEWeightScale_rwgt29' : [ 8.98284340e+05, 1.06433179e+06, 1.15664274e+06, 7.89632750e+05, 9.35616867e+05, 1.01674065e+06, 7.04937385e+05, 8.35254416e+05, 9.07684650e+05, ], 'CountWeightedLHEEnvelope_rwgt29' : [ 1.06572008e+06, 7.84781520e+05, ], 'CountWeightedFull_rwgt29' : [ 9.35616867e+05, 9.34876623e+05, 9.36077234e+05, ], 'CountWeightedFullLHEWeightScale_rwgt29' : [ 8.98284340e+05, 1.06433179e+06, 1.15664274e+06, 7.89632750e+05, 9.35616867e+05, 1.01674065e+06, 7.04937385e+05, 8.35254416e+05, 9.07684650e+05, ], 'CountWeightedFullLHEEnvelope_rwgt29' : [ 1.06572008e+06, 7.84781520e+05, ], 'CountWeightedL1PrefireNom_rwgt29' : [ 9.06451334e+05, 9.05670066e+05, 9.06947346e+05, ], 'CountWeightedL1Prefire_rwgt29' : [ 9.06451334e+05, 8.99407268e+05, 9.13323777e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt29' : [ 8.69360434e+05, 1.03115371e+06, 1.12152550e+06, 7.64208473e+05, 9.06451334e+05, 9.85871809e+05, 6.82239021e+05, 8.09217633e+05, 8.80127332e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt29' : [ 1.03247101e+06, 7.59912752e+05, ], 'CountWeightedFullL1PrefireNom_rwgt29' : [ 9.06451334e+05, 9.05670066e+05, 9.06947346e+05, ], 'CountWeightedFullL1Prefire_rwgt29' : [ 9.06451334e+05, 8.99407268e+05, 9.13323777e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt29' : [ 8.69360434e+05, 1.03115371e+06, 1.12152550e+06, 7.64208473e+05, 9.06451334e+05, 9.85871809e+05, 6.82239021e+05, 8.09217633e+05, 8.80127332e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt29' : [ 1.03247101e+06, 7.59912752e+05, ], 'CountWeighted_rwgt31' : [ 2.24354982e+06, 2.24240689e+06, 2.24426024e+06, ], 'CountWeightedLHEWeightScale_rwgt31' : [ 2.16023121e+06, 2.55220668e+06, 2.76711432e+06, 1.89893831e+06, 2.24354982e+06, 2.43241248e+06, 1.69526038e+06, 2.00288559e+06, 2.17151290e+06, ], 'CountWeightedLHEEnvelope_rwgt31' : [ 2.55517721e+06, 1.88648514e+06, ], 'CountWeightedFull_rwgt31' : [ 2.24354982e+06, 2.24240689e+06, 2.24426024e+06, ], 'CountWeightedFullLHEWeightScale_rwgt31' : [ 2.16023121e+06, 2.55220668e+06, 2.76711432e+06, 1.89893831e+06, 2.24354982e+06, 2.43241248e+06, 1.69526038e+06, 2.00288559e+06, 2.17151290e+06, ], 'CountWeightedFullLHEEnvelope_rwgt31' : [ 2.55517721e+06, 1.88648514e+06, ], 'CountWeightedL1PrefireNom_rwgt31' : [ 2.17352841e+06, 2.17228657e+06, 2.17432595e+06, ], 'CountWeightedL1Prefire_rwgt31' : [ 2.17352841e+06, 2.15665971e+06, 2.18999569e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt31' : [ 2.09069951e+06, 2.47255320e+06, 2.68289925e+06, 1.83781674e+06, 2.17352841e+06, 2.35838507e+06, 1.64069579e+06, 1.94037664e+06, 2.10542416e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt31' : [ 2.47535675e+06, 1.82671645e+06, ], 'CountWeightedFullL1PrefireNom_rwgt31' : [ 2.17352841e+06, 2.17228657e+06, 2.17432595e+06, ], 'CountWeightedFullL1Prefire_rwgt31' : [ 2.17352841e+06, 2.15665971e+06, 2.18999569e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt31' : [ 2.09069951e+06, 2.47255320e+06, 2.68289925e+06, 1.83781674e+06, 2.17352841e+06, 2.35838507e+06, 1.64069579e+06, 1.94037664e+06, 2.10542416e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt31' : [ 2.47535675e+06, 1.82671645e+06, ], 'CountWeighted_rwgt33' : [ 1.69483552e+07, 1.69479067e+07, 1.69485444e+07, ], 'CountWeightedLHEWeightScale_rwgt33' : [ 1.67268823e+07, 1.92799311e+07, 2.04948166e+07, 1.47036620e+07, 1.69483552e+07, 1.80158761e+07, 1.31265515e+07, 1.51302660e+07, 1.60834954e+07, ], 'CountWeightedLHEEnvelope_rwgt33' : [ 1.92982689e+07, 1.44943536e+07, ], 'CountWeightedFull_rwgt33' : [ 1.69483552e+07, 1.69479067e+07, 1.69485444e+07, ], 'CountWeightedFullLHEWeightScale_rwgt33' : [ 1.67268823e+07, 1.92799311e+07, 2.04948166e+07, 1.47036620e+07, 1.69483552e+07, 1.80158761e+07, 1.31265515e+07, 1.51302660e+07, 1.60834954e+07, ], 'CountWeightedFullLHEEnvelope_rwgt33' : [ 1.92982689e+07, 1.44943536e+07, ], 'CountWeightedL1PrefireNom_rwgt33' : [ 1.63333890e+07, 1.63320788e+07, 1.63344528e+07, ], 'CountWeightedL1Prefire_rwgt33' : [ 1.63333890e+07, 1.61871438e+07, 1.64767749e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt33' : [ 1.61016615e+07, 1.85803788e+07, 1.97689857e+07, 1.41540663e+07, 1.63333890e+07, 1.73778275e+07, 1.26359039e+07, 1.45812901e+07, 1.55139037e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt33' : [ 1.85965902e+07, 1.39641182e+07, ], 'CountWeightedFullL1PrefireNom_rwgt33' : [ 1.63333890e+07, 1.63320788e+07, 1.63344528e+07, ], 'CountWeightedFullL1Prefire_rwgt33' : [ 1.63333890e+07, 1.61871438e+07, 1.64767749e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt33' : [ 1.61016615e+07, 1.85803788e+07, 1.97689857e+07, 1.41540663e+07, 1.63333890e+07, 1.73778275e+07, 1.26359039e+07, 1.45812901e+07, 1.55139037e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt33' : [ 1.85965902e+07, 1.39641182e+07, ], 'CountWeighted_rwgt34' : [ 8.38577650e+06, 8.38564773e+06, 8.38583067e+06, ], 'CountWeightedLHEWeightScale_rwgt34' : [ 8.28331706e+06, 9.53941594e+06, 1.01334420e+07, 7.28140641e+06, 8.38577650e+06, 8.90774744e+06, 6.50040066e+06, 7.48623631e+06, 7.95231678e+06, ], 'CountWeightedLHEEnvelope_rwgt34' : [ 9.54846419e+06, 7.17569797e+06, ], 'CountWeightedFull_rwgt34' : [ 8.38577650e+06, 8.38564773e+06, 8.38583067e+06, ], 'CountWeightedFullLHEWeightScale_rwgt34' : [ 8.28331706e+06, 9.53941594e+06, 1.01334420e+07, 7.28140641e+06, 8.38577650e+06, 8.90774744e+06, 6.50040066e+06, 7.48623631e+06, 7.95231678e+06, ], 'CountWeightedFullLHEEnvelope_rwgt34' : [ 9.54846419e+06, 7.17569797e+06, ], 'CountWeightedL1PrefireNom_rwgt34' : [ 8.07983327e+06, 8.07926572e+06, 8.08032603e+06, ], 'CountWeightedL1Prefire_rwgt34' : [ 8.07983327e+06, 8.00709056e+06, 8.15115291e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt34' : [ 7.97204044e+06, 9.19137652e+06, 9.77255980e+06, 7.00777733e+06, 8.07983327e+06, 8.59052389e+06, 6.25611827e+06, 7.21310855e+06, 7.66910086e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt34' : [ 9.19935375e+06, 6.91181625e+06, ], 'CountWeightedFullL1PrefireNom_rwgt34' : [ 8.07983327e+06, 8.07926572e+06, 8.08032603e+06, ], 'CountWeightedFullL1Prefire_rwgt34' : [ 8.07983327e+06, 8.00709056e+06, 8.15115291e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt34' : [ 7.97204044e+06, 9.19137652e+06, 9.77255980e+06, 7.00777733e+06, 8.07983327e+06, 8.59052389e+06, 6.25611827e+06, 7.21310855e+06, 7.66910086e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt34' : [ 9.19935375e+06, 6.91181625e+06, ], 'CountWeighted_rwgt36' : [ 3.93669145e+06, 3.93665965e+06, 3.93669394e+06, ], 'CountWeightedLHEWeightScale_rwgt36' : [ 3.89338344e+06, 4.47825634e+06, 4.75233350e+06, 3.42245523e+06, 3.93669145e+06, 4.17751893e+06, 3.05536831e+06, 3.51439440e+06, 3.72943748e+06, ], 'CountWeightedLHEEnvelope_rwgt36' : [ 4.48248809e+06, 3.37137098e+06, ], 'CountWeightedFull_rwgt36' : [ 3.93669145e+06, 3.93665965e+06, 3.93669394e+06, ], 'CountWeightedFullLHEWeightScale_rwgt36' : [ 3.89338344e+06, 4.47825634e+06, 4.75233350e+06, 3.42245523e+06, 3.93669145e+06, 4.17751893e+06, 3.05536831e+06, 3.51439440e+06, 3.72943748e+06, ], 'CountWeightedFullLHEEnvelope_rwgt36' : [ 4.48248809e+06, 3.37137098e+06, ], 'CountWeightedL1PrefireNom_rwgt36' : [ 3.79191238e+06, 3.79167651e+06, 3.79212106e+06, ], 'CountWeightedL1Prefire_rwgt36' : [ 3.79191238e+06, 3.75750912e+06, 3.82565156e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt36' : [ 3.74592344e+06, 4.31356487e+06, 4.58171397e+06, 3.29282872e+06, 3.79191238e+06, 4.02753459e+06, 2.93964499e+06, 3.38514673e+06, 3.59554237e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt36' : [ 4.31728280e+06, 3.24644480e+06, ], 'CountWeightedFullL1PrefireNom_rwgt36' : [ 3.79191238e+06, 3.79167651e+06, 3.79212106e+06, ], 'CountWeightedFullL1Prefire_rwgt36' : [ 3.79191238e+06, 3.75750912e+06, 3.82565156e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt36' : [ 3.74592344e+06, 4.31356487e+06, 4.58171397e+06, 3.29282872e+06, 3.79191238e+06, 4.02753459e+06, 2.93964499e+06, 3.38514673e+06, 3.59554237e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt36' : [ 4.31728280e+06, 3.24644480e+06, ], 'CountWeighted_rwgt46' : [ 1.31905459e+06, 1.31878366e+06, 1.31921723e+06, ], 'CountWeightedLHEWeightScale_rwgt46' : [ 1.28673146e+06, 1.50052068e+06, 1.61014818e+06, 1.13109550e+06, 1.31905459e+06, 1.41539429e+06, 1.00977375e+06, 1.17756142e+06, 1.26357962e+06, ], 'CountWeightedLHEEnvelope_rwgt46' : [ 1.50205941e+06, 1.11919191e+06, ], 'CountWeightedFull_rwgt46' : [ 1.31905459e+06, 1.31878366e+06, 1.31921723e+06, ], 'CountWeightedFullLHEWeightScale_rwgt46' : [ 1.28673146e+06, 1.50052068e+06, 1.61014818e+06, 1.13109550e+06, 1.31905459e+06, 1.41539429e+06, 1.00977375e+06, 1.17756142e+06, 1.26357962e+06, ], 'CountWeightedFullLHEEnvelope_rwgt46' : [ 1.50205941e+06, 1.11919191e+06, ], 'CountWeightedL1PrefireNom_rwgt46' : [ 1.27453850e+06, 1.27420450e+06, 1.27476090e+06, ], 'CountWeightedL1Prefire_rwgt46' : [ 1.27453850e+06, 1.26389285e+06, 1.28495446e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt46' : [ 1.24194956e+06, 1.44988087e+06, 1.55715723e+06, 1.09172967e+06, 1.27453850e+06, 1.36881076e+06, 9.74630295e+05, 1.13782078e+06, 1.22199340e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt46' : [ 1.45128843e+06, 1.08097847e+06, ], 'CountWeightedFullL1PrefireNom_rwgt46' : [ 1.27453850e+06, 1.27420450e+06, 1.27476090e+06, ], 'CountWeightedFullL1Prefire_rwgt46' : [ 1.27453850e+06, 1.26389285e+06, 1.28495446e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt46' : [ 1.24194956e+06, 1.44988087e+06, 1.55715723e+06, 1.09172967e+06, 1.27453850e+06, 1.36881076e+06, 9.74630295e+05, 1.13782078e+06, 1.22199340e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt46' : [ 1.45128843e+06, 1.08097847e+06, ], 'CountWeighted_rwgt48' : [ 4.19757112e+06, 4.19704316e+06, 4.19788365e+06, ], 'CountWeightedLHEWeightScale_rwgt48' : [ 4.11267209e+06, 4.77504670e+06, 5.10594031e+06, 3.61522283e+06, 4.19757112e+06, 4.48835217e+06, 3.22745449e+06, 3.74729670e+06, 4.00692936e+06, ], 'CountWeightedLHEEnvelope_rwgt48' : [ 4.77978481e+06, 3.57220991e+06, ], 'CountWeightedFull_rwgt48' : [ 4.19757112e+06, 4.19704316e+06, 4.19788365e+06, ], 'CountWeightedFullLHEWeightScale_rwgt48' : [ 4.11267209e+06, 4.77504670e+06, 5.10594031e+06, 3.61522283e+06, 4.19757112e+06, 4.48835217e+06, 3.22745449e+06, 3.74729670e+06, 4.00692936e+06, ], 'CountWeightedFullLHEEnvelope_rwgt48' : [ 4.77978481e+06, 3.57220991e+06, ], 'CountWeightedL1PrefireNom_rwgt48' : [ 4.05204789e+06, 4.05130752e+06, 4.05255546e+06, ], 'CountWeightedL1Prefire_rwgt48' : [ 4.05204789e+06, 4.01731453e+06, 4.08604877e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt48' : [ 3.96567849e+06, 4.60949402e+06, 4.93327141e+06, 3.48600131e+06, 4.05204789e+06, 4.33656427e+06, 3.11209573e+06, 3.61738535e+06, 3.87142730e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt48' : [ 4.61377443e+06, 3.44706632e+06, ], 'CountWeightedFullL1PrefireNom_rwgt48' : [ 4.05204789e+06, 4.05130752e+06, 4.05255546e+06, ], 'CountWeightedFullL1Prefire_rwgt48' : [ 4.05204789e+06, 4.01731453e+06, 4.08604877e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt48' : [ 3.96567849e+06, 4.60949402e+06, 4.93327141e+06, 3.48600131e+06, 4.05204789e+06, 4.33656427e+06, 3.11209573e+06, 3.61738535e+06, 3.87142730e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt48' : [ 4.61377443e+06, 3.44706632e+06, ], 'CountWeighted_rwgt49' : [ 1.06660155e+07, 1.06650133e+07, 1.06666217e+07, ], 'CountWeightedLHEWeightScale_rwgt49' : [ 1.04709121e+07, 1.21333687e+07, 1.29535362e+07, 9.20439031e+06, 1.06660155e+07, 1.13867543e+07, 8.21713392e+06, 9.52189594e+06, 1.01654316e+07, ], 'CountWeightedLHEEnvelope_rwgt49' : [ 1.21452433e+07, 9.08913497e+06, ], 'CountWeightedFull_rwgt49' : [ 1.06660155e+07, 1.06650133e+07, 1.06666217e+07, ], 'CountWeightedFullLHEWeightScale_rwgt49' : [ 1.04709121e+07, 1.21333687e+07, 1.29535362e+07, 9.20439031e+06, 1.06660155e+07, 1.13867543e+07, 8.21713392e+06, 9.52189594e+06, 1.01654316e+07, ], 'CountWeightedFullLHEEnvelope_rwgt49' : [ 1.21452433e+07, 9.08913497e+06, ], 'CountWeightedL1PrefireNom_rwgt49' : [ 1.02916991e+07, 1.02901546e+07, 1.02928085e+07, ], 'CountWeightedL1Prefire_rwgt49' : [ 1.02916991e+07, 1.02024519e+07, 1.03791055e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt49' : [ 1.00921167e+07, 1.17075459e+07, 1.25100373e+07, 8.87142752e+06, 1.02916991e+07, 1.09968980e+07, 7.91988116e+06, 9.18771888e+06, 9.81738384e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt49' : [ 1.17182152e+07, 8.76700428e+06, ], 'CountWeightedFullL1PrefireNom_rwgt49' : [ 1.02916991e+07, 1.02901546e+07, 1.02928085e+07, ], 'CountWeightedFullL1Prefire_rwgt49' : [ 1.02916991e+07, 1.02024519e+07, 1.03791055e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt49' : [ 1.00921167e+07, 1.17075459e+07, 1.25100373e+07, 8.87142752e+06, 1.02916991e+07, 1.09968980e+07, 7.91988116e+06, 9.18771888e+06, 9.81738384e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt49' : [ 1.17182152e+07, 8.76700428e+06, ], 'CountWeighted_rwgt50' : [ 4.31432374e+06, 4.31430122e+06, 4.31432009e+06, ], 'CountWeightedLHEWeightScale_rwgt50' : [ 4.27893949e+06, 4.90783234e+06, 5.19623719e+06, 3.76138346e+06, 4.31432374e+06, 4.56773933e+06, 3.35793343e+06, 3.85151877e+06, 4.07780709e+06, ], 'CountWeightedLHEEnvelope_rwgt50' : [ 4.91248764e+06, 3.70154605e+06, ], 'CountWeightedFull_rwgt50' : [ 4.31432374e+06, 4.31430122e+06, 4.31432009e+06, ], 'CountWeightedFullLHEWeightScale_rwgt50' : [ 4.27893949e+06, 4.90783234e+06, 5.19623719e+06, 3.76138346e+06, 4.31432374e+06, 4.56773933e+06, 3.35793343e+06, 3.85151877e+06, 4.07780709e+06, ], 'CountWeightedFullLHEEnvelope_rwgt50' : [ 4.91248764e+06, 3.70154605e+06, ], 'CountWeightedL1PrefireNom_rwgt50' : [ 4.15252994e+06, 4.15228314e+06, 4.15277031e+06, ], 'CountWeightedL1Prefire_rwgt50' : [ 4.15252994e+06, 4.11412114e+06, 4.19020822e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt50' : [ 4.11373890e+06, 4.72379617e+06, 5.00594423e+06, 3.61616402e+06, 4.15252994e+06, 4.40046477e+06, 3.22828941e+06, 3.70709474e+06, 3.92847163e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt50' : [ 4.72785518e+06, 3.56179715e+06, ], 'CountWeightedFullL1PrefireNom_rwgt50' : [ 4.15252994e+06, 4.15228314e+06, 4.15277031e+06, ], 'CountWeightedFullL1Prefire_rwgt50' : [ 4.15252994e+06, 4.11412114e+06, 4.19020822e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt50' : [ 4.11373890e+06, 4.72379617e+06, 5.00594423e+06, 3.61616402e+06, 4.15252994e+06, 4.40046477e+06, 3.22828941e+06, 3.70709474e+06, 3.92847163e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt50' : [ 4.72785518e+06, 3.56179715e+06, ], 'CountWeighted_rwgt51' : [ 3.93458127e+06, 3.93452230e+06, 3.93464116e+06, ], 'CountWeightedLHEWeightScale_rwgt51' : [ 3.90313642e+06, 4.47587051e+06, 4.73807705e+06, 3.43102994e+06, 3.93458127e+06, 4.16498472e+06, 3.06301850e+06, 3.51252482e+06, 3.71825739e+06, ], 'CountWeightedLHEEnvelope_rwgt51' : [ 4.48012991e+06, 3.37614058e+06, ], 'CountWeightedFull_rwgt51' : [ 3.93458127e+06, 3.93452230e+06, 3.93464116e+06, ], 'CountWeightedFullLHEWeightScale_rwgt51' : [ 3.90313642e+06, 4.47587051e+06, 4.73807705e+06, 3.43102994e+06, 3.93458127e+06, 4.16498472e+06, 3.06301850e+06, 3.51252482e+06, 3.71825739e+06, ], 'CountWeightedFullLHEEnvelope_rwgt51' : [ 4.48012991e+06, 3.37614058e+06, ], 'CountWeightedL1PrefireNom_rwgt51' : [ 3.78675607e+06, 3.78649712e+06, 3.78702828e+06, ], 'CountWeightedL1Prefire_rwgt51' : [ 3.78675607e+06, 3.75167412e+06, 3.82118206e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt51' : [ 3.75216473e+06, 4.30771523e+06, 4.56423734e+06, 3.29832111e+06, 3.78675607e+06, 4.01217401e+06, 2.94454404e+06, 3.38055999e+06, 3.58183881e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt51' : [ 4.31142876e+06, 3.24844956e+06, ], 'CountWeightedFullL1PrefireNom_rwgt51' : [ 3.78675607e+06, 3.78649712e+06, 3.78702828e+06, ], 'CountWeightedFullL1Prefire_rwgt51' : [ 3.78675607e+06, 3.75167412e+06, 3.82118206e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt51' : [ 3.75216473e+06, 4.30771523e+06, 4.56423734e+06, 3.29832111e+06, 3.78675607e+06, 4.01217401e+06, 2.94454404e+06, 3.38055999e+06, 3.58183881e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt51' : [ 4.31142876e+06, 3.24844956e+06, ], 'CountWeighted_rwgt52' : [ 3.57487086e+06, 3.57478482e+06, 3.57494812e+06, ], 'CountWeightedLHEWeightScale_rwgt52' : [ 3.54699564e+06, 4.06668197e+06, 4.30422338e+06, 3.11796911e+06, 3.57487086e+06, 3.78360751e+06, 2.78353659e+06, 3.19138782e+06, 3.37778137e+06, ], 'CountWeightedLHEEnvelope_rwgt52' : [ 4.07056667e+06, 3.06781566e+06, ], 'CountWeightedFull_rwgt52' : [ 3.57487086e+06, 3.57478482e+06, 3.57494812e+06, ], 'CountWeightedFullLHEWeightScale_rwgt52' : [ 3.54699564e+06, 4.06668197e+06, 4.30422338e+06, 3.11796911e+06, 3.57487086e+06, 3.78360751e+06, 2.78353659e+06, 3.19138782e+06, 3.37778137e+06, ], 'CountWeightedFullLHEEnvelope_rwgt52' : [ 4.07056667e+06, 3.06781566e+06, ], 'CountWeightedL1PrefireNom_rwgt52' : [ 3.44032705e+06, 3.44004956e+06, 3.44059339e+06, ], 'CountWeightedL1Prefire_rwgt52' : [ 3.44032705e+06, 3.40839305e+06, 3.47166050e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt52' : [ 3.40956077e+06, 3.91362202e+06, 4.14602855e+06, 2.99715187e+06, 3.44032705e+06, 3.64454426e+06, 2.67568077e+06, 3.07127469e+06, 3.25363383e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt52' : [ 3.91700888e+06, 2.95158400e+06, ], 'CountWeightedFullL1PrefireNom_rwgt52' : [ 3.44032705e+06, 3.44004956e+06, 3.44059339e+06, ], 'CountWeightedFullL1Prefire_rwgt52' : [ 3.44032705e+06, 3.40839305e+06, 3.47166050e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt52' : [ 3.40956077e+06, 3.91362202e+06, 4.14602855e+06, 2.99715187e+06, 3.44032705e+06, 3.64454426e+06, 2.67568077e+06, 3.07127469e+06, 3.25363383e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt52' : [ 3.91700888e+06, 2.95158400e+06, ], 'CountWeighted_rwgt53' : [ 3.23530028e+06, 3.23519652e+06, 3.23539833e+06, ], 'CountWeightedLHEWeightScale_rwgt53' : [ 3.21064645e+06, 3.68039377e+06, 3.89483809e+06, 2.82230039e+06, 3.23530028e+06, 3.42374167e+06, 2.51958041e+06, 2.88825443e+06, 3.05650822e+06, ], 'CountWeightedLHEEnvelope_rwgt53' : [ 3.68392845e+06, 2.77666980e+06, ], 'CountWeightedFull_rwgt53' : [ 3.23530028e+06, 3.23519652e+06, 3.23539833e+06, ], 'CountWeightedFullLHEWeightScale_rwgt53' : [ 3.21064645e+06, 3.68039377e+06, 3.89483809e+06, 2.82230039e+06, 3.23530028e+06, 3.42374167e+06, 2.51958041e+06, 2.88825443e+06, 3.05650822e+06, ], 'CountWeightedFullLHEEnvelope_rwgt53' : [ 3.68392845e+06, 2.77666980e+06, ], 'CountWeightedL1PrefireNom_rwgt53' : [ 3.11332402e+06, 3.11305377e+06, 3.11359528e+06, ], 'CountWeightedL1Prefire_rwgt53' : [ 3.11332402e+06, 3.08437809e+06, 3.14172551e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt53' : [ 3.08603062e+06, 3.54164152e+06, 3.75144509e+06, 2.71275859e+06, 3.11332402e+06, 3.29769251e+06, 2.42178797e+06, 2.77936720e+06, 2.94398088e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt53' : [ 3.54472189e+06, 2.67129858e+06, ], 'CountWeightedFullL1PrefireNom_rwgt53' : [ 3.11332402e+06, 3.11305377e+06, 3.11359528e+06, ], 'CountWeightedFullL1Prefire_rwgt53' : [ 3.11332402e+06, 3.08437809e+06, 3.14172551e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt53' : [ 3.08603062e+06, 3.54164152e+06, 3.75144509e+06, 2.71275859e+06, 3.11332402e+06, 3.29769251e+06, 2.42178797e+06, 2.77936720e+06, 2.94398088e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt53' : [ 3.54472189e+06, 2.67129858e+06, ], 'CountWeighted_rwgt54' : [ 2.91566081e+06, 2.91552686e+06, 2.91577846e+06, ], 'CountWeightedLHEWeightScale_rwgt54' : [ 2.89385359e+06, 3.31677970e+06, 3.50964154e+06, 2.54382423e+06, 2.91566081e+06, 3.08512456e+06, 2.27097627e+06, 2.60289927e+06, 2.75421952e+06, ], 'CountWeightedLHEEnvelope_rwgt54' : [ 3.31998238e+06, 2.50250402e+06, ], 'CountWeightedFull_rwgt54' : [ 2.91566081e+06, 2.91552686e+06, 2.91577846e+06, ], 'CountWeightedFullLHEWeightScale_rwgt54' : [ 2.89385359e+06, 3.31677970e+06, 3.50964154e+06, 2.54382423e+06, 2.91566081e+06, 3.08512456e+06, 2.27097627e+06, 2.60289927e+06, 2.75421952e+06, ], 'CountWeightedFullLHEEnvelope_rwgt54' : [ 3.31998238e+06, 2.50250402e+06, ], 'CountWeightedL1PrefireNom_rwgt54' : [ 2.80556729e+06, 2.80527968e+06, 2.80584180e+06, ], 'CountWeightedL1Prefire_rwgt54' : [ 2.80556729e+06, 2.77944102e+06, 2.83120241e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt54' : [ 2.78135808e+06, 3.19153724e+06, 3.38022662e+06, 2.44493554e+06, 2.80556729e+06, 2.97136870e+06, 2.18269245e+06, 2.50461303e+06, 2.65266233e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt54' : [ 3.19432770e+06, 2.40738823e+06, ], 'CountWeightedFullL1PrefireNom_rwgt54' : [ 2.80556729e+06, 2.80527968e+06, 2.80584180e+06, ], 'CountWeightedFullL1Prefire_rwgt54' : [ 2.80556729e+06, 2.77944102e+06, 2.83120241e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt54' : [ 2.78135808e+06, 3.19153724e+06, 3.38022662e+06, 2.44493554e+06, 2.80556729e+06, 2.97136870e+06, 2.18269245e+06, 2.50461303e+06, 2.65266233e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt54' : [ 3.19432770e+06, 2.40738823e+06, ], 'CountWeighted_rwgt55' : [ 2.61614723e+06, 2.61598305e+06, 2.61628278e+06, ], 'CountWeightedLHEWeightScale_rwgt55' : [ 2.59683086e+06, 2.97605791e+06, 3.14887473e+06, 2.28272932e+06, 2.61614723e+06, 2.76800147e+06, 2.03788711e+06, 2.33551059e+06, 2.47110171e+06, ], 'CountWeightedLHEEnvelope_rwgt55' : [ 2.97894967e+06, 2.24550363e+06, ], 'CountWeightedFull_rwgt55' : [ 2.61614723e+06, 2.61598305e+06, 2.61628278e+06, ], 'CountWeightedFullLHEWeightScale_rwgt55' : [ 2.59683086e+06, 2.97605791e+06, 3.14887473e+06, 2.28272932e+06, 2.61614723e+06, 2.76800147e+06, 2.03788711e+06, 2.33551059e+06, 2.47110171e+06, ], 'CountWeightedFullLHEEnvelope_rwgt55' : [ 2.97894967e+06, 2.24550363e+06, ], 'CountWeightedL1PrefireNom_rwgt55' : [ 2.51722860e+06, 2.51693405e+06, 2.51750702e+06, ], 'CountWeightedL1Prefire_rwgt55' : [ 2.51722860e+06, 2.49375380e+06, 2.54026067e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt55' : [ 2.49574184e+06, 2.86353364e+06, 3.03261272e+06, 2.19386662e+06, 2.51722860e+06, 2.66580252e+06, 1.95855618e+06, 2.24720388e+06, 2.37986425e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt55' : [ 2.86605393e+06, 2.16004239e+06, ], 'CountWeightedFullL1PrefireNom_rwgt55' : [ 2.51722860e+06, 2.51693405e+06, 2.51750702e+06, ], 'CountWeightedFullL1Prefire_rwgt55' : [ 2.51722860e+06, 2.49375380e+06, 2.54026067e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt55' : [ 2.49574184e+06, 2.86353364e+06, 3.03261272e+06, 2.19386662e+06, 2.51722860e+06, 2.66580252e+06, 1.95855618e+06, 2.24720388e+06, 2.37986425e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt55' : [ 2.86605393e+06, 2.16004239e+06, ], 'CountWeighted_rwgt56' : [ 2.33640026e+06, 2.33621391e+06, 2.33655961e+06, ], 'CountWeightedLHEWeightScale_rwgt56' : [ 2.31921415e+06, 2.65783081e+06, 2.81212016e+06, 2.03869755e+06, 2.33640026e+06, 2.47197640e+06, 1.82002681e+06, 2.08577804e+06, 2.20683228e+06, ], 'CountWeightedLHEEnvelope_rwgt56' : [ 2.66043350e+06, 2.00535931e+06, ], 'CountWeightedFull_rwgt56' : [ 2.33640026e+06, 2.33621391e+06, 2.33655961e+06, ], 'CountWeightedFullLHEWeightScale_rwgt56' : [ 2.31921415e+06, 2.65783081e+06, 2.81212016e+06, 2.03869755e+06, 2.33640026e+06, 2.47197640e+06, 1.82002681e+06, 2.08577804e+06, 2.20683228e+06, ], 'CountWeightedFullLHEEnvelope_rwgt56' : [ 2.66043350e+06, 2.00535931e+06, ], 'CountWeightedL1PrefireNom_rwgt56' : [ 2.24796974e+06, 2.24766563e+06, 2.24825206e+06, ], 'CountWeightedL1Prefire_rwgt56' : [ 2.24796974e+06, 2.22698500e+06, 2.26856275e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt56' : [ 2.22883515e+06, 2.55723391e+06, 2.70818712e+06, 1.95924839e+06, 2.24796974e+06, 2.38061684e+06, 1.74909860e+06, 2.00683269e+06, 2.12527292e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt56' : [ 2.55950384e+06, 1.92895771e+06, ], 'CountWeightedFullL1PrefireNom_rwgt56' : [ 2.24796974e+06, 2.24766563e+06, 2.24825206e+06, ], 'CountWeightedFullL1Prefire_rwgt56' : [ 2.24796974e+06, 2.22698500e+06, 2.26856275e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt56' : [ 2.22883515e+06, 2.55723391e+06, 2.70818712e+06, 1.95924839e+06, 2.24796974e+06, 2.38061684e+06, 1.74909860e+06, 2.00683269e+06, 2.12527292e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt56' : [ 2.55950384e+06, 1.92895771e+06, ], 'CountWeighted_rwgt57' : [ 2.07728034e+06, 2.07706865e+06, 2.07745091e+06, ], 'CountWeightedLHEWeightScale_rwgt57' : [ 2.06186068e+06, 2.36305245e+06, 2.50039031e+06, 1.81247035e+06, 2.07728034e+06, 2.19795643e+06, 1.61806610e+06, 1.85445434e+06, 1.96220536e+06, ], 'CountWeightedLHEEnvelope_rwgt57' : [ 2.36538701e+06, 1.78279978e+06, ], 'CountWeightedFull_rwgt57' : [ 2.07728034e+06, 2.07706865e+06, 2.07745091e+06, ], 'CountWeightedFullLHEWeightScale_rwgt57' : [ 2.06186068e+06, 2.36305245e+06, 2.50039031e+06, 1.81247035e+06, 2.07728034e+06, 2.19795643e+06, 1.61806610e+06, 1.85445434e+06, 1.96220536e+06, ], 'CountWeightedFullLHEEnvelope_rwgt57' : [ 2.36538701e+06, 1.78279978e+06, ], 'CountWeightedL1PrefireNom_rwgt57' : [ 1.99861452e+06, 1.99829715e+06, 1.99889586e+06, ], 'CountWeightedL1Prefire_rwgt57' : [ 1.99861452e+06, 1.97994556e+06, 2.01693360e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt57' : [ 1.98146132e+06, 2.27356683e+06, 2.40793672e+06, 1.74179507e+06, 1.99861452e+06, 2.11668534e+06, 1.55496926e+06, 1.78422497e+06, 1.88964888e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt57' : [ 2.27560599e+06, 1.71483666e+06, ], 'CountWeightedFullL1PrefireNom_rwgt57' : [ 1.99861452e+06, 1.99829715e+06, 1.99889586e+06, ], 'CountWeightedFullL1Prefire_rwgt57' : [ 1.99861452e+06, 1.97994556e+06, 2.01693360e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt57' : [ 1.98146132e+06, 2.27356683e+06, 2.40793672e+06, 1.74179507e+06, 1.99861452e+06, 2.11668534e+06, 1.55496926e+06, 1.78422497e+06, 1.88964888e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt57' : [ 2.27560599e+06, 1.71483666e+06, ], 'CountWeighted_rwgt58' : [ 1.83792052e+06, 1.83768589e+06, 1.83811015e+06, ], 'CountWeightedLHEWeightScale_rwgt58' : [ 1.82391007e+06, 2.09077070e+06, 2.21266652e+06, 1.60329809e+06, 1.83792052e+06, 1.94503218e+06, 1.43132843e+06, 1.64076811e+06, 1.73641013e+06, ], 'CountWeightedLHEEnvelope_rwgt58' : [ 2.09285880e+06, 1.57708316e+06, ], 'CountWeightedFull_rwgt58' : [ 1.83792052e+06, 1.83768589e+06, 1.83811015e+06, ], 'CountWeightedFullLHEWeightScale_rwgt58' : [ 1.82391007e+06, 2.09077070e+06, 2.21266652e+06, 1.60329809e+06, 1.83792052e+06, 1.94503218e+06, 1.43132843e+06, 1.64076811e+06, 1.73641013e+06, ], 'CountWeightedFullLHEEnvelope_rwgt58' : [ 2.09285880e+06, 1.57708316e+06, ], 'CountWeightedL1PrefireNom_rwgt58' : [ 1.76833139e+06, 1.76799956e+06, 1.76861558e+06, ], 'CountWeightedL1Prefire_rwgt58' : [ 1.76833139e+06, 1.75181373e+06, 1.78453963e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt58' : [ 1.75279070e+06, 2.01160438e+06, 2.13087039e+06, 1.54078164e+06, 1.76833139e+06, 1.87313185e+06, 1.37551849e+06, 1.57864253e+06, 1.67222001e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt58' : [ 2.01342992e+06, 1.51696413e+06, ], 'CountWeightedFullL1PrefireNom_rwgt58' : [ 1.76833139e+06, 1.76799956e+06, 1.76861558e+06, ], 'CountWeightedFullL1Prefire_rwgt58' : [ 1.76833139e+06, 1.75181373e+06, 1.78453963e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt58' : [ 1.75279070e+06, 2.01160438e+06, 2.13087039e+06, 1.54078164e+06, 1.76833139e+06, 1.87313185e+06, 1.37551849e+06, 1.57864253e+06, 1.67222001e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt58' : [ 2.01342992e+06, 1.51696413e+06, ], 'CountWeighted_rwgt59' : [ 1.61881790e+06, 1.61855862e+06, 1.61901480e+06, ], 'CountWeightedLHEWeightScale_rwgt59' : [ 1.60585311e+06, 1.84152222e+06, 1.94952624e+06, 1.41161516e+06, 1.61881790e+06, 1.71372188e+06, 1.26020591e+06, 1.44516609e+06, 1.52990856e+06, ], 'CountWeightedLHEEnvelope_rwgt59' : [ 1.84338450e+06, 1.38863945e+06, ], 'CountWeightedFull_rwgt59' : [ 1.61881790e+06, 1.61855862e+06, 1.61901480e+06, ], 'CountWeightedFullLHEWeightScale_rwgt59' : [ 1.60585311e+06, 1.84152222e+06, 1.94952624e+06, 1.41161516e+06, 1.61881790e+06, 1.71372188e+06, 1.26020591e+06, 1.44516609e+06, 1.52990856e+06, ], 'CountWeightedFullLHEEnvelope_rwgt59' : [ 1.84338450e+06, 1.38863945e+06, ], 'CountWeightedL1PrefireNom_rwgt59' : [ 1.55759089e+06, 1.55725103e+06, 1.55787657e+06, ], 'CountWeightedL1Prefire_rwgt59' : [ 1.55759089e+06, 1.54305486e+06, 1.57185325e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt59' : [ 1.54329691e+06, 1.77187266e+06, 1.87754823e+06, 1.35662646e+06, 1.55759089e+06, 1.65045052e+06, 1.21111490e+06, 1.39050980e+06, 1.47342469e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt59' : [ 1.77350432e+06, 1.33575479e+06, ], 'CountWeightedFullL1PrefireNom_rwgt59' : [ 1.55759089e+06, 1.55725103e+06, 1.55787657e+06, ], 'CountWeightedFullL1Prefire_rwgt59' : [ 1.55759089e+06, 1.54305486e+06, 1.57185325e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt59' : [ 1.54329691e+06, 1.77187266e+06, 1.87754823e+06, 1.35662646e+06, 1.55759089e+06, 1.65045052e+06, 1.21111490e+06, 1.39050980e+06, 1.47342469e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt59' : [ 1.77350432e+06, 1.33575479e+06, ], 'CountWeighted_rwgt60' : [ 1.41933484e+06, 1.41905474e+06, 1.41954348e+06, ], 'CountWeightedLHEWeightScale_rwgt60' : [ 1.40705914e+06, 1.61459772e+06, 1.71021594e+06, 1.23686840e+06, 1.41933484e+06, 1.50335518e+06, 1.10420049e+06, 1.26708422e+06, 1.34210631e+06, ], 'CountWeightedLHEEnvelope_rwgt60' : [ 1.61625498e+06, 1.21692452e+06, ], 'CountWeightedFull_rwgt60' : [ 1.41933484e+06, 1.41905474e+06, 1.41954348e+06, ], 'CountWeightedFullLHEWeightScale_rwgt60' : [ 1.40705914e+06, 1.61459772e+06, 1.71021594e+06, 1.23686840e+06, 1.41933484e+06, 1.50335518e+06, 1.10420049e+06, 1.26708422e+06, 1.34210631e+06, ], 'CountWeightedFullLHEEnvelope_rwgt60' : [ 1.61625498e+06, 1.21692452e+06, ], 'CountWeightedL1PrefireNom_rwgt60' : [ 1.36579081e+06, 1.36543914e+06, 1.36607368e+06, ], 'CountWeightedL1Prefire_rwgt60' : [ 1.36579081e+06, 1.35307415e+06, 1.37826639e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt60' : [ 1.35237425e+06, 1.55368484e+06, 1.64724830e+06, 1.18879974e+06, 1.36579081e+06, 1.44800354e+06, 1.06128748e+06, 1.21928324e+06, 1.29269090e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt60' : [ 1.55514153e+06, 1.17068525e+06, ], 'CountWeightedFullL1PrefireNom_rwgt60' : [ 1.36579081e+06, 1.36543914e+06, 1.36607368e+06, ], 'CountWeightedFullL1Prefire_rwgt60' : [ 1.36579081e+06, 1.35307415e+06, 1.37826639e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt60' : [ 1.35237425e+06, 1.55368484e+06, 1.64724830e+06, 1.18879974e+06, 1.36579081e+06, 1.44800354e+06, 1.06128748e+06, 1.21928324e+06, 1.29269090e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt60' : [ 1.55514153e+06, 1.17068525e+06, ], 'CountWeighted_rwgt61' : [ 1.24010067e+06, 1.23980062e+06, 1.24031769e+06, ], 'CountWeightedLHEWeightScale_rwgt61' : [ 1.22815293e+06, 1.41070444e+06, 1.49548508e+06, 1.07960091e+06, 1.24010067e+06, 1.31459540e+06, 9.63803189e+05, 1.10707540e+06, 1.17359271e+06, ], 'CountWeightedLHEEnvelope_rwgt61' : [ 1.41217781e+06, 1.06247316e+06, ], 'CountWeightedFull_rwgt61' : [ 1.24010067e+06, 1.23980062e+06, 1.24031769e+06, ], 'CountWeightedFullLHEWeightScale_rwgt61' : [ 1.22815293e+06, 1.41070444e+06, 1.49548508e+06, 1.07960091e+06, 1.24010067e+06, 1.31459540e+06, 9.63803189e+05, 1.10707540e+06, 1.17359271e+06, ], 'CountWeightedFullLHEEnvelope_rwgt61' : [ 1.41217781e+06, 1.06247316e+06, ], 'CountWeightedL1PrefireNom_rwgt61' : [ 1.19352631e+06, 1.19316460e+06, 1.19381064e+06, ], 'CountWeightedL1Prefire_rwgt61' : [ 1.19352631e+06, 1.18246175e+06, 1.20438212e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt61' : [ 1.18062234e+06, 1.35772436e+06, 1.44068423e+06, 1.03781975e+06, 1.19352631e+06, 1.26642490e+06, 9.26503086e+05, 1.06549901e+06, 1.13058647e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt61' : [ 1.35902472e+06, 1.02226712e+06, ], 'CountWeightedFullL1PrefireNom_rwgt61' : [ 1.19352631e+06, 1.19316460e+06, 1.19381064e+06, ], 'CountWeightedFullL1Prefire_rwgt61' : [ 1.19352631e+06, 1.18246175e+06, 1.20438212e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt61' : [ 1.18062234e+06, 1.35772436e+06, 1.44068423e+06, 1.03781975e+06, 1.19352631e+06, 1.26642490e+06, 9.26503086e+05, 1.06549901e+06, 1.13058647e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt61' : [ 1.35902472e+06, 1.02226712e+06, ], 'CountWeighted_rwgt62' : [ 1.08073805e+06, 1.08041932e+06, 1.08096254e+06, ], 'CountWeightedLHEWeightScale_rwgt62' : [ 1.06875974e+06, 1.22941876e+06, 1.30488022e+06, 9.39489301e+05, 1.08073805e+06, 1.14704834e+06, 8.38720098e+05, 9.64808195e+05, 1.02401623e+06, ], 'CountWeightedLHEEnvelope_rwgt62' : [ 1.23072911e+06, 9.24964832e+05, ], 'CountWeightedFull_rwgt62' : [ 1.08073805e+06, 1.08041932e+06, 1.08096254e+06, ], 'CountWeightedFullLHEWeightScale_rwgt62' : [ 1.06875974e+06, 1.22941876e+06, 1.30488022e+06, 9.39489301e+05, 1.08073805e+06, 1.14704834e+06, 8.38720098e+05, 9.64808195e+05, 1.02401623e+06, ], 'CountWeightedFullLHEEnvelope_rwgt62' : [ 1.23072911e+06, 9.24964832e+05, ], 'CountWeightedL1PrefireNom_rwgt62' : [ 1.04044339e+06, 1.04007055e+06, 1.04072377e+06, ], 'CountWeightedL1Prefire_rwgt62' : [ 1.04044339e+06, 1.03086293e+06, 1.04984048e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt62' : [ 1.02768088e+06, 1.18358080e+06, 1.25742371e+06, 9.03378367e+05, 1.04044339e+06, 1.10533293e+06, 8.06482350e+05, 9.28836355e+05, 9.86775145e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt62' : [ 1.18474295e+06, 8.90195490e+05, ], 'CountWeightedFullL1PrefireNom_rwgt62' : [ 1.04044339e+06, 1.04007055e+06, 1.04072377e+06, ], 'CountWeightedFullL1Prefire_rwgt62' : [ 1.04044339e+06, 1.03086293e+06, 1.04984048e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt62' : [ 1.02768088e+06, 1.18358080e+06, 1.25742371e+06, 9.03378367e+05, 1.04044339e+06, 1.10533293e+06, 8.06482350e+05, 9.28836355e+05, 9.86775145e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt62' : [ 1.18474295e+06, 8.90195490e+05, ], 'CountWeighted_rwgt63' : [ 9.41727193e+05, 9.41387426e+05, 9.41957455e+05, ], 'CountWeightedLHEWeightScale_rwgt63' : [ 9.29359576e+05, 1.07128261e+06, 1.13897919e+06, 8.16947266e+05, 9.41727193e+05, 1.00121265e+06, 7.29322912e+05, 8.40708125e+05, 8.93824381e+05, ], 'CountWeightedLHEEnvelope_rwgt63' : [ 1.07245246e+06, 8.04808717e+05, ], 'CountWeightedFull_rwgt63' : [ 9.41727193e+05, 9.41387426e+05, 9.41957455e+05, ], 'CountWeightedFullLHEWeightScale_rwgt63' : [ 9.29359576e+05, 1.07128261e+06, 1.13897919e+06, 8.16947266e+05, 9.41727193e+05, 1.00121265e+06, 7.29322912e+05, 8.40708125e+05, 8.93824381e+05, ], 'CountWeightedFullLHEEnvelope_rwgt63' : [ 1.07245246e+06, 8.04808717e+05, ], 'CountWeightedL1PrefireNom_rwgt63' : [ 9.06994887e+05, 9.06609174e+05, 9.07275518e+05, ], 'CountWeightedL1Prefire_rwgt63' : [ 9.06994887e+05, 8.98729604e+05, 9.15100240e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt63' : [ 8.94007418e+05, 1.03177334e+06, 1.09802224e+06, 7.85872152e+05, 9.06994887e+05, 9.65210639e+05, 7.01580031e+05, 8.09702492e+05, 8.61682949e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt63' : [ 1.03281778e+06, 7.74861537e+05, ], 'CountWeightedFullL1PrefireNom_rwgt63' : [ 9.06994887e+05, 9.06609174e+05, 9.07275518e+05, ], 'CountWeightedFullL1Prefire_rwgt63' : [ 9.06994887e+05, 8.98729604e+05, 9.15100240e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt63' : [ 8.94007418e+05, 1.03177334e+06, 1.09802224e+06, 7.85872152e+05, 9.06994887e+05, 9.65210639e+05, 7.01580031e+05, 8.09702492e+05, 8.61682949e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt63' : [ 1.03281778e+06, 7.74861537e+05, ], 'CountWeighted_rwgt64' : [ 8.22576137e+05, 8.22218955e+05, 8.22812139e+05, ], 'CountWeightedLHEWeightScale_rwgt64' : [ 8.09461633e+05, 9.35740498e+05, 9.97192459e+05, 7.11552082e+05, 8.22576137e+05, 8.76575730e+05, 6.35231155e+05, 7.34338602e+05, 7.82554855e+05, ], 'CountWeightedLHEEnvelope_rwgt64' : [ 9.36789578e+05, 7.01586434e+05, ], 'CountWeightedFull_rwgt64' : [ 8.22576137e+05, 8.22218955e+05, 8.22812139e+05, ], 'CountWeightedFullLHEWeightScale_rwgt64' : [ 8.09461633e+05, 9.35740498e+05, 9.97192459e+05, 7.11552082e+05, 8.22576137e+05, 8.76575730e+05, 6.35231155e+05, 7.34338602e+05, 7.82554855e+05, ], 'CountWeightedFullLHEEnvelope_rwgt64' : [ 9.36789578e+05, 7.01586434e+05, ], 'CountWeightedL1PrefireNom_rwgt64' : [ 7.92714219e+05, 7.92315684e+05, 7.92993412e+05, ], 'CountWeightedL1Prefire_rwgt64' : [ 7.92714219e+05, 7.85597850e+05, 7.99689760e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt64' : [ 7.79134203e+05, 9.01771283e+05, 9.61912352e+05, 6.84893336e+05, 7.92714219e+05, 8.45562963e+05, 6.11432661e+05, 7.07679252e+05, 7.54868627e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt64' : [ 9.02716025e+05, 6.75864141e+05, ], 'CountWeightedFullL1PrefireNom_rwgt64' : [ 7.92714219e+05, 7.92315684e+05, 7.92993412e+05, ], 'CountWeightedFullL1Prefire_rwgt64' : [ 7.92714219e+05, 7.85597850e+05, 7.99689760e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt64' : [ 7.79134203e+05, 9.01771283e+05, 9.61912352e+05, 6.84893336e+05, 7.92714219e+05, 8.45562963e+05, 6.11432661e+05, 7.07679252e+05, 7.54868627e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt64' : [ 9.02716025e+05, 6.75864141e+05, ], 'CountWeighted_rwgt65' : [ 7.23458771e+05, 7.23086164e+05, 7.23698594e+05, ], 'CountWeightedLHEWeightScale_rwgt65' : [ 7.09239348e+05, 8.22987602e+05, 8.79724453e+05, 6.23452479e+05, 7.23458771e+05, 7.73316811e+05, 5.56581673e+05, 6.45854516e+05, 6.90371064e+05, ], 'CountWeightedLHEEnvelope_rwgt65' : [ 8.23937873e+05, 6.15447614e+05, ], 'CountWeightedFull_rwgt65' : [ 7.23458771e+05, 7.23086164e+05, 7.23698594e+05, ], 'CountWeightedFullLHEWeightScale_rwgt65' : [ 7.09239348e+05, 8.22987602e+05, 8.79724453e+05, 6.23452479e+05, 7.23458771e+05, 7.73316811e+05, 5.56581673e+05, 6.45854516e+05, 6.90371064e+05, ], 'CountWeightedFullLHEEnvelope_rwgt65' : [ 8.23937873e+05, 6.15447614e+05, ], 'CountWeightedL1PrefireNom_rwgt65' : [ 6.97764604e+05, 6.97355924e+05, 6.98040328e+05, ], 'CountWeightedL1Prefire_rwgt65' : [ 6.97764604e+05, 6.91629443e+05, 7.03773678e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt65' : [ 6.83227838e+05, 7.93757283e+05, 8.49287277e+05, 6.00587121e+05, 6.97764604e+05, 7.46562131e+05, 5.36168435e+05, 6.22915477e+05, 6.66486295e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt65' : [ 7.94621438e+05, 5.93344477e+05, ], 'CountWeightedFullL1PrefireNom_rwgt65' : [ 6.97764604e+05, 6.97355924e+05, 6.98040328e+05, ], 'CountWeightedFullL1Prefire_rwgt65' : [ 6.97764604e+05, 6.91629443e+05, 7.03773678e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt65' : [ 6.83227838e+05, 7.93757283e+05, 8.49287277e+05, 6.00587121e+05, 6.97764604e+05, 7.46562131e+05, 5.36168435e+05, 6.22915477e+05, 6.66486295e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt65' : [ 7.94621438e+05, 5.93344477e+05, ], 'CountWeighted_rwgt66' : [ 6.44302780e+05, 6.43916056e+05, 6.44542962e+05, ], 'CountWeightedLHEWeightScale_rwgt66' : [ 6.28621412e+05, 7.32941961e+05, 7.86487445e+05, 5.52585331e+05, 6.44302780e+05, 6.91357258e+05, 4.93314860e+05, 5.75188932e+05, 6.17202805e+05, ], 'CountWeightedLHEEnvelope_rwgt66' : [ 7.33813574e+05, 5.46326519e+05, ], 'CountWeightedFull_rwgt66' : [ 6.44302780e+05, 6.43916056e+05, 6.44542962e+05, ], 'CountWeightedFullLHEWeightScale_rwgt66' : [ 6.28621412e+05, 7.32941961e+05, 7.86487445e+05, 5.52585331e+05, 6.44302780e+05, 6.91357258e+05, 4.93314860e+05, 5.75188932e+05, 6.17202805e+05, ], 'CountWeightedFullLHEEnvelope_rwgt66' : [ 7.33813574e+05, 5.46326519e+05, ], 'CountWeightedL1PrefireNom_rwgt66' : [ 6.22075535e+05, 6.21657508e+05, 6.22346886e+05, ], 'CountWeightedL1Prefire_rwgt66' : [ 6.22075535e+05, 6.16756617e+05, 6.27281956e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt66' : [ 6.06216302e+05, 7.07655926e+05, 7.60067432e+05, 5.32890426e+05, 6.22075535e+05, 6.68132738e+05, 4.75732518e+05, 5.55346101e+05, 5.96468627e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt66' : [ 7.08457623e+05, 5.27241843e+05, ], 'CountWeightedFullL1PrefireNom_rwgt66' : [ 6.22075535e+05, 6.21657508e+05, 6.22346886e+05, ], 'CountWeightedFullL1Prefire_rwgt66' : [ 6.22075535e+05, 6.16756617e+05, 6.27281956e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt66' : [ 6.06216302e+05, 7.07655926e+05, 7.60067432e+05, 5.32890426e+05, 6.22075535e+05, 6.68132738e+05, 4.75732518e+05, 5.55346101e+05, 5.96468627e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt66' : [ 7.08457623e+05, 5.27241843e+05, ], 'CountWeighted_rwgt67' : [ 5.85143026e+05, 5.84745734e+05, 5.85383061e+05, ], 'CountWeightedLHEWeightScale_rwgt67' : [ 5.67645803e+05, 6.65642979e+05, 7.17523109e+05, 4.98986059e+05, 5.85143026e+05, 6.30733979e+05, 4.45464975e+05, 5.22374364e+05, 5.63081935e+05, ], 'CountWeightedLHEEnvelope_rwgt67' : [ 6.66457465e+05, 4.94259392e+05, ], 'CountWeightedFull_rwgt67' : [ 5.85143026e+05, 5.84745734e+05, 5.85383061e+05, ], 'CountWeightedFullLHEWeightScale_rwgt67' : [ 5.67645803e+05, 6.65642979e+05, 7.17523109e+05, 4.98986059e+05, 5.85143026e+05, 6.30733979e+05, 4.45464975e+05, 5.22374364e+05, 5.63081935e+05, ], 'CountWeightedFullLHEEnvelope_rwgt67' : [ 6.66457465e+05, 4.94259392e+05, ], 'CountWeightedL1PrefireNom_rwgt67' : [ 5.65681131e+05, 5.65256247e+05, 5.65949517e+05, ], 'CountWeightedL1Prefire_rwgt67' : [ 5.65681131e+05, 5.61009549e+05, 5.70248010e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt67' : [ 5.48137273e+05, 6.43504343e+05, 6.94287322e+05, 4.81837859e+05, 5.65681131e+05, 6.10308885e+05, 4.30155960e+05, 5.05000561e+05, 5.44847617e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt67' : [ 6.44262712e+05, 4.77588542e+05, ], 'CountWeightedFullL1PrefireNom_rwgt67' : [ 5.65681131e+05, 5.65256247e+05, 5.65949517e+05, ], 'CountWeightedFullL1Prefire_rwgt67' : [ 5.65681131e+05, 5.61009549e+05, 5.70248010e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt67' : [ 5.48137273e+05, 6.43504343e+05, 6.94287322e+05, 4.81837859e+05, 5.65681131e+05, 6.10308885e+05, 4.30155960e+05, 5.05000561e+05, 5.44847617e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt67' : [ 6.44262712e+05, 4.77588542e+05, ], 'CountWeighted_rwgt68' : [ 5.45900725e+05, 5.45499014e+05, 5.46141425e+05, ], 'CountWeightedLHEWeightScale_rwgt68' : [ 5.26240315e+05, 6.21002435e+05, 6.72732756e+05, 4.62588509e+05, 5.45900725e+05, 5.91361719e+05, 4.12971725e+05, 4.87342263e+05, 5.27932982e+05, ], 'CountWeightedLHEEnvelope_rwgt68' : [ 6.21780422e+05, 4.59180065e+05, ], 'CountWeightedFull_rwgt68' : [ 5.45900725e+05, 5.45499014e+05, 5.46141425e+05, ], 'CountWeightedFullLHEWeightScale_rwgt68' : [ 5.26240315e+05, 6.21002435e+05, 6.72732756e+05, 4.62588509e+05, 5.45900725e+05, 5.91361719e+05, 4.12971725e+05, 4.87342263e+05, 5.27932982e+05, ], 'CountWeightedFullLHEEnvelope_rwgt68' : [ 6.21780422e+05, 4.59180065e+05, ], 'CountWeightedL1PrefireNom_rwgt68' : [ 5.28504976e+05, 5.28076561e+05, 5.28769545e+05, ], 'CountWeightedL1Prefire_rwgt68' : [ 5.28504976e+05, 5.24314580e+05, 5.32596409e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_rwgt68' : [ 5.08919330e+05, 6.01212414e+05, 6.51852207e+05, 4.47362741e+05, 5.28504976e+05, 5.73006347e+05, 3.99379243e+05, 4.71812376e+05, 5.11546945e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_rwgt68' : [ 6.01945716e+05, 4.44319546e+05, ], 'CountWeightedFullL1PrefireNom_rwgt68' : [ 5.28504976e+05, 5.28076561e+05, 5.28769545e+05, ], 'CountWeightedFullL1Prefire_rwgt68' : [ 5.28504976e+05, 5.24314580e+05, 5.32596409e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_rwgt68' : [ 5.08919330e+05, 6.01212414e+05, 6.51852207e+05, 4.47362741e+05, 5.28504976e+05, 5.73006347e+05, 3.99379243e+05, 4.71812376e+05, 5.11546945e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_rwgt68' : [ 6.01945716e+05, 4.44319546e+05, ], }), ("nof_tree_events", 4719999), ("nof_db_events", 4719999), ("fsize_local", 43728622871), # 43.73GB, avg file size 1.82GB ("fsize_db", 308444472684), # 308.44GB, avg file size 1.79GB ("use_it", True), ("xsection", 0.01561), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 69), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/THW_ctcvcp"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/GluGluHToTauTau_M125_13TeV_powheg_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_new_pmx_94X_mc2017_realistic_v14-v2/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "ggH"), ("process_name_specific", "GluGluHToTauTau"), ("nof_files", 6), ("nof_db_files", 35), ("nof_events", { 'Count' : [ 2921180, ], 'CountWeighted' : [ 2.89145759e+06, 2.89172069e+06, 2.89119866e+06, ], 'CountWeightedLHEWeightScale' : [ 3.39114316e+06, 3.47231506e+06, 3.53910875e+06, 2.81281966e+06, 2.89145759e+06, 2.95315956e+06, 2.37228288e+06, 2.44627838e+06, 2.50289762e+06, ], 'CountWeightedLHEEnvelope' : [ 3.61801775e+06, 2.36708216e+06, ], 'CountWeightedFull' : [ 6.27292340e+07, 6.27288620e+07, 6.27413570e+07, ], 'CountWeightedFullLHEWeightScale' : [ 7.35742340e+07, 7.53333190e+07, 7.67834960e+07, 6.10263020e+07, 6.27292340e+07, 6.40709150e+07, 5.14678510e+07, 5.30753290e+07, 5.43016510e+07, ], 'CountWeightedFullLHEEnvelope' : [ 7.84947520e+07, 5.13559965e+07, ], 'CountWeightedL1PrefireNom' : [ 2.85567309e+06, 2.85580688e+06, 2.85551112e+06, ], 'CountWeightedL1Prefire' : [ 2.85567309e+06, 2.84593781e+06, 2.86488881e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 3.34713247e+06, 3.42824050e+06, 3.49501725e+06, 2.77724594e+06, 2.85567309e+06, 2.91728284e+06, 2.34290306e+06, 2.41662081e+06, 2.47309184e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 3.57171312e+06, 2.33861841e+06, ], 'CountWeightedFullL1PrefireNom' : [ 6.19533440e+07, 6.19519410e+07, 6.19635060e+07, ], 'CountWeightedFullL1Prefire' : [ 6.19533440e+07, 6.17428160e+07, 6.21535370e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 7.26191880e+07, 7.43770910e+07, 7.58268100e+07, 6.02544110e+07, 6.19533440e+07, 6.32925590e+07, 5.08304895e+07, 5.24312560e+07, 5.36549800e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 7.74901210e+07, 5.07381975e+07, ], }), ("nof_tree_events", 2921180), ("nof_db_events", 2921180), ("fsize_local", 10736319936), # 10.74GB, avg file size 1.79GB ("fsize_db", 121621260930), # 121.62GB, avg file size 3.47GB ("use_it", True), ("xsection", 3.0469), ("genWeight", True), ("triggers", ['1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/GluGluHToTauTau"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/GluGluHToTauTau_M125_13TeV_powheg_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14_ext1-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "ggH"), ("process_name_specific", "GluGluHToTauTau_ext1"), ("nof_files", 19), ("nof_db_files", 169), ("nof_events", { 'Count' : [ 9259000, ], 'CountWeighted' : [ 9.16428109e+06, 9.16185438e+06, 9.16226527e+06, ], 'CountWeightedLHEWeightScale' : [ 1.07466971e+07, 1.10036337e+07, 1.12146306e+07, 8.91477141e+06, 9.16428109e+06, 9.35909388e+06, 7.51928923e+06, 7.75357259e+06, 7.93268780e+06, ], 'CountWeightedLHEEnvelope' : [ 1.14651146e+07, 7.50285142e+06, ], 'CountWeightedFull' : [ 1.98803482e+08, 1.98783002e+08, 1.98776544e+08, ], 'CountWeightedFullLHEWeightScale' : [ 2.33160037e+08, 2.38735970e+08, 2.43308832e+08, 1.93414178e+08, 1.98803482e+08, 2.03052594e+08, 1.63134814e+08, 1.68222730e+08, 1.72105205e+08, ], 'CountWeightedFullLHEEnvelope' : [ 2.48744962e+08, 1.62780542e+08, ], 'CountWeightedL1PrefireNom' : [ 9.05021858e+06, 9.04815612e+06, 9.04886661e+06, ], 'CountWeightedL1Prefire' : [ 9.05021858e+06, 9.01921581e+06, 9.07954700e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 1.06065748e+07, 1.08632789e+07, 1.10742569e+07, 8.80151903e+06, 9.05021858e+06, 9.24484333e+06, 7.42574334e+06, 7.65916602e+06, 7.83778523e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 1.13177019e+07, 7.41220933e+06, ], 'CountWeightedFullL1PrefireNom' : [ 1.96335602e+08, 1.96315150e+08, 1.96316278e+08, ], 'CountWeightedFullL1Prefire' : [ 1.96335602e+08, 1.95666800e+08, 1.96973453e+08, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 2.30119358e+08, 2.35688827e+08, 2.40263018e+08, 1.90956980e+08, 1.96335602e+08, 2.00573728e+08, 1.61105434e+08, 1.66172777e+08, 1.70046186e+08, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 2.45546048e+08, 1.60813336e+08, ], }), ("nof_tree_events", 9259000), ("nof_db_events", 9259000), ("fsize_local", 34023836092), # 34.02GB, avg file size 1.79GB ("fsize_db", 387946138466), # 387.95GB, avg file size 2.30GB ("use_it", True), ("xsection", 3.0469), ("genWeight", True), ("triggers", ['1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/GluGluHToTauTau_ext1"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/GluGluHToZZTo4L_M125_13TeV_powheg2_JHUGenV7011_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14_ext1-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "ggH"), ("process_name_specific", "GluGluHToZZTo4L_ext1"), ("nof_files", 2), ("nof_db_files", 20), ("nof_events", { 'Count' : [ 965198, ], 'CountWeighted' : [ 9.55177750e+05, 9.55331156e+05, 9.55322406e+05, ], 'CountWeightedLHEWeightScale' : [ 1.12043556e+06, 1.14709375e+06, 1.16896081e+06, 9.29398844e+05, 9.55174062e+05, 9.75575781e+05, 7.83895688e+05, 8.08263969e+05, 8.26868906e+05, ], 'CountWeightedLHEEnvelope' : [ 1.19516750e+06, 7.82169531e+05, ], 'CountWeightedPSWeight' : [ 9.55331625e+05, 9.55198812e+05, 1.28360350e+06, 9.55174719e+05, 9.54679625e+05, 6.56322844e+05, ], 'CountWeightedPSWeightOriginalXWGTUP' : [ 9.65169500e+06, 9.64566000e+06, 9.65169500e+06, 9.65169500e+06, 9.57956600e+06, 9.57353250e+06, ], 'CountWeightedFull' : [ 2.78621250e+07, 2.78664670e+07, 2.78640310e+07, ], 'CountWeightedFullLHEWeightScale' : [ 3.26841420e+07, 3.34619750e+07, 3.40998580e+07, 2.71116000e+07, 2.78618730e+07, 2.84584030e+07, 2.28670860e+07, 2.35776070e+07, 2.41209710e+07, ], 'CountWeightedFullLHEEnvelope' : [ 3.48643560e+07, 2.28166350e+07, ], 'CountWeightedFullPSWeight' : [ 2.78680820e+07, 2.78641200e+07, 3.74440240e+07, 2.78634620e+07, 2.78489790e+07, 1.91455990e+07, ], 'CountWeightedFullPSWeightOriginalXWGTUP' : [ 2.81559888e+08, 2.81383968e+08, 2.81559888e+08, 2.81559888e+08, 2.79455896e+08, 2.79279992e+08, ], 'CountWeightedL1PrefireNom' : [ 9.37796719e+05, 9.37870750e+05, 9.37929812e+05, ], 'CountWeightedL1Prefire' : [ 9.37796719e+05, 9.33205406e+05, 9.42234250e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 1.09923244e+06, 1.12578525e+06, 1.14758325e+06, 9.12149344e+05, 9.37787188e+05, 9.58069375e+05, 7.69571500e+05, 7.93758500e+05, 8.12255281e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 1.17279869e+06, 7.68235469e+05, ], 'CountWeightedPSWeightL1PrefireNom' : [ 9.37989594e+05, 9.37756906e+05, 1.25988706e+06, 9.37680625e+05, 9.37316656e+05, 6.44613562e+05, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNom' : [ 9.47360000e+06, 9.46770650e+06, 9.47360000e+06, 9.47360000e+06, 9.40314300e+06, 9.39724900e+06, ], 'CountWeightedFullL1PrefireNom' : [ 2.73556540e+07, 2.73577230e+07, 2.73575720e+07, ], 'CountWeightedFullL1Prefire' : [ 2.73556540e+07, 2.72217380e+07, 2.74850530e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 3.20656750e+07, 3.28404280e+07, 3.34763060e+07, 2.66084660e+07, 2.73552330e+07, 2.79477610e+07, 2.24492970e+07, 2.31546370e+07, 2.36946240e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 3.42119260e+07, 2.24101610e+07, ], 'CountWeightedFullPSWeightL1PrefireNom' : [ 2.73623320e+07, 2.73552960e+07, 3.67522900e+07, 2.73531590e+07, 2.73425470e+07, 1.88040710e+07, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNom' : [ 2.76362616e+08, 2.76190712e+08, 2.76362616e+08, 2.76362616e+08, 2.74307224e+08, 2.74135312e+08, ], }), ("nof_tree_events", 965198), ("nof_db_events", 965198), ("fsize_local", 4461521071), # 4.46GB, avg file size 2.23GB ("fsize_db", 44829063769), # 44.83GB, avg file size 2.24GB ("use_it", True), ("xsection", 0.01297), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 4), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/GluGluHToZZTo4L_ext1"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/GluGluHToZZTo4L_M125_13TeV_powheg2_JHUGenV7011_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14_ext3-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "ggH"), ("process_name_specific", "GluGluHToZZTo4L_ext3"), ("nof_files", 2), ("nof_db_files", 50), ("nof_events", { 'Count' : [ 988000, ], 'CountWeighted' : [ 9.77745469e+05, 9.77940469e+05, 9.77940062e+05, ], 'CountWeightedLHEWeightScale' : [ 1.14680788e+06, 1.17416012e+06, 1.19648338e+06, 9.51394312e+05, 9.77731562e+05, 9.98618594e+05, 8.02501438e+05, 8.27415125e+05, 8.46498594e+05, ], 'CountWeightedLHEEnvelope' : [ 1.22353888e+06, 8.00561750e+05, ], 'CountWeightedPSWeight' : [ 9.77606375e+05, 9.77413469e+05, 1.31428912e+06, 9.78169094e+05, 9.78014500e+05, 6.71945844e+05, ], 'CountWeightedPSWeightOriginalXWGTUP' : [ 9.87735600e+06, 9.87153300e+06, 9.87735600e+06, 9.87735600e+06, 9.80392450e+06, 9.79810050e+06, ], 'CountWeightedFull' : [ 2.85260240e+07, 2.85302300e+07, 2.85249780e+07, ], 'CountWeightedFullLHEWeightScale' : [ 3.34541240e+07, 3.42496240e+07, 3.49029820e+07, 2.77530390e+07, 2.85257250e+07, 2.91307470e+07, 2.34098450e+07, 2.41374650e+07, 2.46934410e+07, ], 'CountWeightedFullLHEEnvelope' : [ 3.56909020e+07, 2.33537110e+07, ], 'CountWeightedFullPSWeight' : [ 2.85179890e+07, 2.85122280e+07, 3.83393340e+07, 2.85345380e+07, 2.85297290e+07, 1.96014790e+07, ], 'CountWeightedFullPSWeightOriginalXWGTUP' : [ 2.88192496e+08, 2.88022464e+08, 2.88192496e+08, 2.88192496e+08, 2.86047968e+08, 2.85877904e+08, ], 'CountWeightedL1PrefireNom' : [ 9.60173031e+05, 9.60275469e+05, 9.60347281e+05, ], 'CountWeightedL1Prefire' : [ 9.60173031e+05, 9.55503531e+05, 9.64674438e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 1.12539375e+06, 1.15259475e+06, 1.17484512e+06, 9.33966000e+05, 9.60154562e+05, 9.80896000e+05, 7.88027250e+05, 8.12754969e+05, 8.31701969e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 1.20092181e+06, 7.86462562e+05, ], 'CountWeightedPSWeightL1PrefireNom' : [ 9.60066344e+05, 9.59723125e+05, 1.29040706e+06, 9.60479344e+05, 9.60602344e+05, 6.60091406e+05, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNom' : [ 9.69784700e+06, 9.69214150e+06, 9.69784700e+06, 9.69784700e+06, 9.62610100e+06, 9.62039500e+06, ], 'CountWeightedFullL1PrefireNom' : [ 2.80122560e+07, 2.80140020e+07, 2.80124000e+07, ], 'CountWeightedFullL1Prefire' : [ 2.80122560e+07, 2.78760030e+07, 2.81438130e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 3.28293890e+07, 3.36212280e+07, 3.42717080e+07, 2.72447440e+07, 2.80118020e+07, 2.86137840e+07, 2.29876340e+07, 2.37095760e+07, 2.42617940e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 3.50314700e+07, 2.29423170e+07, ], 'CountWeightedFullPSWeightL1PrefireNom' : [ 2.80062970e+07, 2.79962360e+07, 3.76426720e+07, 2.80184480e+07, 2.80218150e+07, 1.92556810e+07, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNom' : [ 2.82938256e+08, 2.82771712e+08, 2.82938256e+08, 2.82938256e+08, 2.80843648e+08, 2.80677088e+08, ], }), ("nof_tree_events", 988000), ("nof_db_events", 988000), ("fsize_local", 4580158498), # 4.58GB, avg file size 2.29GB ("fsize_db", 46820541357), # 46.82GB, avg file size 936.41MB ("use_it", True), ("xsection", 0.01297), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 4), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/GluGluHToZZTo4L_ext3"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/GluGluHToZZTo4L_M125_13TeV_powheg2_JHUGenV7011_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14_ext4-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "ggH"), ("process_name_specific", "GluGluHToZZTo4L_ext4"), ("nof_files", 2), ("nof_db_files", 45), ("nof_events", { 'Count' : [ 988312, ], 'CountWeighted' : [ 9.88159094e+05, 9.88248438e+05, 9.88329344e+05, ], 'CountWeightedLHEWeightScale' : [ 1.15889988e+06, 1.18647825e+06, 1.20905569e+06, 9.61424125e+05, 9.88159094e+05, 1.00926606e+06, 8.11003281e+05, 8.36237562e+05, 8.55513562e+05, ], 'CountWeightedLHEEnvelope' : [ 1.20528938e+06, 8.28943500e+05, ], 'CountWeightedPSWeight' : [ 9.88360531e+05, 9.88329062e+05, 1.32838369e+06, 9.88002594e+05, 9.87992688e+05, 6.78802812e+05, ], 'CountWeightedPSWeightOriginalXWGTUP' : [ 9.88439150e+06, 9.87795250e+06, 9.88439150e+06, 9.88439150e+06, 9.80650300e+06, 9.80006300e+06, ], 'CountWeightedFull' : [ 2.85096950e+07, 2.85080250e+07, 2.85016360e+07, ], 'CountWeightedFullLHEWeightScale' : [ 3.34274180e+07, 3.42233000e+07, 3.48738180e+07, 2.77313020e+07, 2.85096950e+07, 2.91114700e+07, 2.33923360e+07, 2.41199120e+07, 2.46762220e+07, ], 'CountWeightedFullLHEEnvelope' : [ 3.47652040e+07, 2.39098400e+07, ], 'CountWeightedFullPSWeight' : [ 2.85085470e+07, 2.85072990e+07, 3.83157500e+07, 2.84979660e+07, 2.84975450e+07, 1.95792820e+07, ], 'CountWeightedFullPSWeightOriginalXWGTUP' : [ 2.85068336e+08, 2.84882768e+08, 2.85068336e+08, 2.85068336e+08, 2.82823504e+08, 2.82637984e+08, ], 'CountWeightedL1PrefireNom' : [ 9.70174281e+05, 9.70199562e+05, 9.70296375e+05, ], 'CountWeightedL1Prefire' : [ 9.70174281e+05, 9.65399188e+05, 9.74769219e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 1.13697919e+06, 1.16443406e+06, 1.18692088e+06, 9.43585031e+05, 9.70174281e+05, 9.91132406e+05, 7.96180406e+05, 8.21212906e+05, 8.40366438e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 1.18263950e+06, 8.14191688e+05, ], 'CountWeightedPSWeightL1PrefireNom' : [ 9.70405688e+05, 9.70251250e+05, 1.30385038e+06, 9.69899438e+05, 9.70052094e+05, 6.66683281e+05, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNom' : [ 9.70381350e+06, 9.69753000e+06, 9.70381350e+06, 9.70381350e+06, 9.62769350e+06, 9.62140850e+06, ], 'CountWeightedFullL1PrefireNom' : [ 2.79881920e+07, 2.79866070e+07, 2.79828600e+07, ], 'CountWeightedFullL1Prefire' : [ 2.79881920e+07, 2.78503390e+07, 2.81210590e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 3.27951450e+07, 3.35871130e+07, 3.42353960e+07, 2.72166560e+07, 2.79881920e+07, 2.85883460e+07, 2.29648680e+07, 2.36868010e+07, 2.42393350e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 3.41118280e+07, 2.34844400e+07, ], 'CountWeightedFullPSWeightL1PrefireNom' : [ 2.79906200e+07, 2.79858350e+07, 3.76081400e+07, 2.79757350e+07, 2.79800620e+07, 1.92297440e+07, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNom' : [ 2.79869120e+08, 2.79687984e+08, 2.79869120e+08, 2.79869120e+08, 2.77674832e+08, 2.77493664e+08, ], }), ("nof_tree_events", 988312), ("nof_db_events", 988312), ("fsize_local", 4586447857), # 4.59GB, avg file size 2.29GB ("fsize_db", 47000353665), # 47.00GB, avg file size 1.04GB ("use_it", True), ("xsection", 0.01297), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 4), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/GluGluHToZZTo4L_ext4"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/GluGluHToZZTo2L2Q_M125_13TeV_powheg2_JHUGenV7011_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v2/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "ggH"), ("process_name_specific", "GluGluHToZZTo2L2Q_M125"), ("nof_files", 2), ("nof_db_files", 48), ("nof_events", { 'Count' : [ 992000, ], 'CountWeighted' : [ 9.82034250e+05, 9.82215031e+05, 9.82010469e+05, ], 'CountWeightedLHEWeightScale' : [ 1.15173100e+06, 1.17919562e+06, 1.20165656e+06, 9.55507656e+05, 9.82021719e+05, 1.00295647e+06, 8.06003344e+05, 8.31037531e+05, 8.50198219e+05, ], 'CountWeightedLHEEnvelope' : [ 1.22879244e+06, 8.04026562e+05, ], 'CountWeightedFull' : [ 2.86517260e+07, 2.86460660e+07, 2.86503240e+07, ], 'CountWeightedFullLHEWeightScale' : [ 3.35987650e+07, 3.43977480e+07, 3.50550000e+07, 2.78740940e+07, 2.86514880e+07, 2.92584230e+07, 2.35126850e+07, 2.42437710e+07, 2.48019220e+07, ], 'CountWeightedFullLHEEnvelope' : [ 3.58454160e+07, 2.34554310e+07, ], 'CountWeightedL1PrefireNom' : [ 9.69374344e+05, 9.69477500e+05, 9.69384375e+05, ], 'CountWeightedL1Prefire' : [ 9.69374344e+05, 9.65875125e+05, 9.72649594e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 1.13611256e+06, 1.16355119e+06, 1.18603212e+06, 9.42893562e+05, 9.69357375e+05, 9.90249438e+05, 7.95594625e+05, 8.20542656e+05, 8.39651031e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 1.21235906e+06, 7.93953969e+05, ], 'CountWeightedFullL1PrefireNom' : [ 2.82813770e+07, 2.82763860e+07, 2.82808590e+07, ], 'CountWeightedFullL1Prefire' : [ 2.82813770e+07, 2.81792990e+07, 2.83771280e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 3.31430760e+07, 3.39420060e+07, 3.45991520e+07, 2.75062730e+07, 2.82809930e+07, 2.88877100e+07, 2.32090260e+07, 2.39373920e+07, 2.44942430e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 3.53662940e+07, 2.31615140e+07, ], }), ("nof_tree_events", 992000), ("nof_db_events", 992000), ("fsize_local", 4222962453), # 4.22GB, avg file size 2.11GB ("fsize_db", 44974281652), # 44.97GB, avg file size 936.96MB ("use_it", True), ("xsection", 0.17963), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/GluGluHToZZTo2L2Q_M125"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/GluGluHToWWToLNuQQ_M125_NNPDF31_TuneCP5_PSweights_13TeV_powheg_JHUGen710_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v2/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "ggH"), ("process_name_specific", "GluGluHToWWToLNuQQ_M125_PSweights"), ("nof_files", 1), ("nof_db_files", 19), ("nof_events", { 'Count' : [ 465000, ], 'CountWeighted' : [ 4.60424344e+05, 4.60408375e+05, 4.60392438e+05, ], 'CountWeightedLHEWeightScale' : [ 5.40101312e+05, 5.52957562e+05, 5.63511750e+05, 4.47934719e+05, 4.60420156e+05, 4.70224750e+05, 3.77763250e+05, 3.89511531e+05, 3.98491281e+05, ], 'CountWeightedLHEEnvelope' : [ 5.76222125e+05, 3.76848031e+05, ], 'CountWeightedPSWeight' : [ 4.60458438e+05, 4.60471281e+05, 6.33329750e+05, 4.60364656e+05, 4.59751938e+05, 3.02869531e+05, ], 'CountWeightedPSWeightOriginalXWGTUP' : [ 4.65021200e+06, 4.64610100e+06, 4.65021200e+06, 4.65021200e+06, 4.60054850e+06, 4.59643750e+06, ], 'CountWeightedFull' : [ 1.34303880e+07, 1.34273900e+07, 1.34289010e+07, ], 'CountWeightedFullLHEWeightScale' : [ 1.57535020e+07, 1.61281330e+07, 1.64364020e+07, 1.30652030e+07, 1.34296060e+07, 1.37153780e+07, 1.10184270e+07, 1.13611170e+07, 1.16230610e+07, ], 'CountWeightedFullLHEEnvelope' : [ 1.68068420e+07, 1.09918040e+07, ], 'CountWeightedFullPSWeight' : [ 1.34306400e+07, 1.34308930e+07, 1.84727100e+07, 1.34278060e+07, 1.34098770e+07, 8.83400600e+06, ], 'CountWeightedFullPSWeightOriginalXWGTUP' : [ 1.35627232e+08, 1.35507408e+08, 1.35627232e+08, 1.35627232e+08, 1.34179120e+08, 1.34059280e+08, ], 'CountWeightedL1PrefireNom' : [ 4.56148969e+05, 4.56129781e+05, 4.56134375e+05, ], 'CountWeightedL1Prefire' : [ 4.56148969e+05, 4.54927344e+05, 4.57275094e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 5.34777125e+05, 5.47648250e+05, 5.58223625e+05, 4.43669531e+05, 4.56143062e+05, 4.65957469e+05, 3.74266375e+05, 3.85994156e+05, 3.94970750e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 5.70640875e+05, 3.73476812e+05, ], 'CountWeightedPSWeightL1PrefireNom' : [ 4.56208531e+05, 4.56159250e+05, 6.27365375e+05, 4.56062906e+05, 4.55569500e+05, 3.00159750e+05, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNom' : [ 4.60678950e+06, 4.60272000e+06, 4.60678950e+06, 4.60678950e+06, 4.55779200e+06, 4.55372250e+06, ], 'CountWeightedFullL1PrefireNom' : [ 1.33055180e+07, 1.33029160e+07, 1.33045940e+07, ], 'CountWeightedFullL1Prefire' : [ 1.33055180e+07, 1.32697550e+07, 1.33383470e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 1.55982020e+07, 1.59733740e+07, 1.62821460e+07, 1.29408080e+07, 1.33048420e+07, 1.35908840e+07, 1.09164710e+07, 1.12585510e+07, 1.15203590e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 1.66441240e+07, 1.08934870e+07, ], 'CountWeightedFullPSWeightL1PrefireNom' : [ 1.33066660e+07, 1.33051160e+07, 1.82987560e+07, 1.33023280e+07, 1.32878540e+07, 8.75496800e+06, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNom' : [ 1.34362144e+08, 1.34243568e+08, 1.34362144e+08, 1.34362144e+08, 1.32933312e+08, 1.32814728e+08, ], }), ("nof_tree_events", 465000), ("nof_db_events", 465000), ("fsize_local", 1786213103), # 1.79GB, avg file size 1.79GB ("fsize_db", 19992436481), # 19.99GB, avg file size 1.05GB ("use_it", True), ("xsection", 4.5621), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 4), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/GluGluHToWWToLNuQQ_M125_PSweights"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/GluGluHToWWTo2L2Nu_M125_13TeV_powheg2_JHUGenV714_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "ggH"), ("process_name_specific", "GluGluHToWWTo2L2Nu_M125"), ("nof_files", 2), ("nof_db_files", 58), ("nof_events", { 'Count' : [ 953600, ], 'CountWeighted' : [ 9.43484250e+05, 9.43528875e+05, 9.43505531e+05, ], 'CountWeightedLHEWeightScale' : [ 1.10679156e+06, 1.13334500e+06, 1.15513100e+06, 9.17964562e+05, 9.43474594e+05, 9.63799531e+05, 7.74137906e+05, 7.98282781e+05, 8.16786625e+05, ], 'CountWeightedLHEEnvelope' : [ 1.18077381e+06, 7.72590125e+05, ], 'CountWeightedFull' : [ 2.75314410e+07, 2.75307820e+07, 2.75285920e+07, ], 'CountWeightedFullLHEWeightScale' : [ 3.22877970e+07, 3.30607250e+07, 3.36978380e+07, 2.67786720e+07, 2.75312260e+07, 2.81161400e+07, 2.25831740e+07, 2.32880560e+07, 2.38271170e+07, ], 'CountWeightedFullLHEEnvelope' : [ 3.44448730e+07, 2.25383450e+07, ], 'CountWeightedL1PrefireNom' : [ 9.33168562e+05, 9.33193875e+05, 9.33201594e+05, ], 'CountWeightedL1Prefire' : [ 9.33168562e+05, 9.30337125e+05, 9.35854188e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 1.09400672e+06, 1.12056088e+06, 1.14236931e+06, 9.07664781e+05, 9.33155969e+05, 9.53443781e+05, 7.65654312e+05, 7.89738156e+05, 8.08205375e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 1.16734194e+06, 7.64387594e+05, ], 'CountWeightedFullL1PrefireNom' : [ 2.72289520e+07, 2.72277720e+07, 2.72269790e+07, ], 'CountWeightedFullL1Prefire' : [ 2.72289520e+07, 2.71461930e+07, 2.73073370e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 3.19148460e+07, 3.26880910e+07, 3.33255660e+07, 2.64782600e+07, 2.72285760e+07, 2.78140540e+07, 2.23356920e+07, 2.30386610e+07, 2.35767700e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 3.40531920e+07, 2.22990160e+07, ], }), ("nof_tree_events", 953600), ("nof_db_events", 953600), ("fsize_local", 3554691454), # 3.55GB, avg file size 1.78GB ("fsize_db", 41071656137), # 41.07GB, avg file size 708.13MB ("use_it", True), ("xsection", 1.1033), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/GluGluHToWWTo2L2Nu_M125"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/GluGluHToMuMu_M-125_TuneCP5_PSweights_13TeV_powheg_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "ggH"), ("process_name_specific", "GluGluHToMuMu_M125"), ("nof_files", 2), ("nof_db_files", 16), ("nof_events", { 'Count' : [ 494000, ], 'CountWeighted' : [ 4.88946804e+05, 4.88904837e+05, 4.89019700e+05, ], 'CountWeightedLHEWeightScale' : [ 5.73584788e+05, 5.87089936e+05, 5.98170406e+05, 4.75814062e+05, 4.88946804e+05, 4.99261508e+05, 4.01344528e+05, 4.13761824e+05, 4.23195769e+05, ], 'CountWeightedLHEEnvelope' : [ 6.11870258e+05, 4.00268903e+05, ], 'CountWeightedPSWeight' : [ 4.88946028e+05, 4.89331020e+05, 6.56960672e+05, 4.89009003e+05, 4.87935095e+05, 3.35724830e+05, ], 'CountWeightedPSWeightOriginalXWGTUP' : [ 4.94107492e+06, 4.92580392e+06, 4.94107492e+06, 4.94107492e+06, 4.83183839e+06, 4.81656789e+06, ], 'CountWeightedFull' : [ 1.06082138e+07, 1.06080865e+07, 1.06086756e+07, ], 'CountWeightedFullLHEWeightScale' : [ 1.24439460e+07, 1.27370368e+07, 1.29773060e+07, 1.03227340e+07, 1.06082138e+07, 1.08313995e+07, 8.70703261e+06, 8.97588139e+06, 9.18117806e+06, ], 'CountWeightedFullLHEEnvelope' : [ 1.32745123e+07, 8.68354767e+06, ], 'CountWeightedFullPSWeight' : [ 1.06076354e+07, 1.06159920e+07, 1.42526953e+07, 1.06090160e+07, 1.05856613e+07, 7.28353105e+06, ], 'CountWeightedFullPSWeightOriginalXWGTUP' : [ 1.07167342e+08, 1.06836930e+08, 1.07167342e+08, 1.07167342e+08, 1.04801440e+08, 1.04470979e+08, ], 'CountWeightedL1PrefireNom' : [ 4.84193033e+05, 4.84156545e+05, 4.84263319e+05, ], 'CountWeightedL1Prefire' : [ 4.84193033e+05, 4.82885041e+05, 4.85430916e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 5.67688257e+05, 5.81199721e+05, 5.92291959e+05, 4.71079719e+05, 4.84193033e+05, 4.94504890e+05, 3.97455223e+05, 4.09835047e+05, 4.19263283e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 6.05687705e+05, 3.96502015e+05, ], 'CountWeightedPSWeightL1PrefireNom' : [ 4.84218992e+05, 4.84538829e+05, 6.50458176e+05, 4.84219426e+05, 4.83265034e+05, 3.32584623e+05, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNom' : [ 4.89256253e+06, 4.87748934e+06, 4.89256253e+06, 4.89256253e+06, 4.78487372e+06, 4.76980056e+06, ], 'CountWeightedFullL1PrefireNom' : [ 1.05050606e+07, 1.05047216e+07, 1.05056615e+07, ], 'CountWeightedFullL1Prefire' : [ 1.05050606e+07, 1.04765411e+07, 1.05318228e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 1.23160095e+07, 1.26091578e+07, 1.28497631e+07, 1.02200317e+07, 1.05050606e+07, 1.07282138e+07, 8.62269506e+06, 8.89090686e+06, 9.09589570e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 1.31403676e+07, 8.60189948e+06, ], 'CountWeightedFullPSWeightL1PrefireNom' : [ 1.05051205e+07, 1.05120477e+07, 1.41116560e+07, 1.05051515e+07, 1.04843439e+07, 7.21540322e+06, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNom' : [ 1.06121774e+08, 1.05795327e+08, 1.06121774e+08, 1.06121774e+08, 1.03788499e+08, 1.03462084e+08, ], }), ("nof_tree_events", 494000), ("nof_db_events", 494000), ("fsize_local", 2001614949), # 2.00GB, avg file size 1.00GB ("fsize_db", 21883331893), # 21.88GB, avg file size 1.37GB ("use_it", True), ("xsection", 0.010571), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 4), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/GluGluHToMuMu_M125"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/GluGluHToMuMu_M-125_TuneCP5_PSweights_13TeV_powheg_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14_ext1-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "ggH"), ("process_name_specific", "GluGluHToMuMu_M125_ext1"), ("nof_files", 3), ("nof_db_files", 53), ("nof_events", { 'Count' : [ 1489600, ], 'CountWeighted' : [ 1.47477562e+06, 1.47472616e+06, 1.47464450e+06, ], 'CountWeightedLHEWeightScale' : [ 1.72982538e+06, 1.77109488e+06, 1.80489669e+06, 1.43483744e+06, 1.47477562e+06, 1.50608872e+06, 1.21011738e+06, 1.24776053e+06, 1.27650078e+06, ], 'CountWeightedLHEEnvelope' : [ 1.84552712e+06, 1.20726381e+06, ], 'CountWeightedPSWeight' : [ 1.47462294e+06, 1.47496247e+06, 1.98137575e+06, 1.47491666e+06, 1.47323041e+06, 1.01318181e+06, ], 'CountWeightedPSWeightOriginalXWGTUP' : [ 1.48940215e+07, 1.48481535e+07, 1.48940365e+07, 1.48940240e+07, 1.45643035e+07, 1.45184060e+07, ], 'CountWeightedFull' : [ 3.19953280e+07, 3.19899710e+07, 3.19957040e+07, ], 'CountWeightedFullLHEWeightScale' : [ 3.75287130e+07, 3.84224030e+07, 3.91570090e+07, 3.11289570e+07, 3.19953280e+07, 3.26747170e+07, 2.62532600e+07, 2.70700680e+07, 2.76936020e+07, ], 'CountWeightedFullLHEEnvelope' : [ 4.00377710e+07, 2.61914500e+07, ], 'CountWeightedFullPSWeight' : [ 3.19917270e+07, 3.19990840e+07, 4.29856930e+07, 3.19981690e+07, 3.19615600e+07, 2.19809195e+07, ], 'CountWeightedFullPSWeightOriginalXWGTUP' : [ 3.23113936e+08, 3.22118560e+08, 3.23113984e+08, 3.23113984e+08, 3.15960264e+08, 3.14964800e+08, ], 'CountWeightedL1PrefireNom' : [ 1.46067903e+06, 1.46060709e+06, 1.46061216e+06, ], 'CountWeightedL1Prefire' : [ 1.46067903e+06, 1.45677569e+06, 1.46433959e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 1.71235612e+06, 1.75361625e+06, 1.78746456e+06, 1.42080697e+06, 1.46067903e+06, 1.49198353e+06, 1.19858809e+06, 1.23613150e+06, 1.26483903e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 1.82718994e+06, 1.19610547e+06, ], 'CountWeightedPSWeightL1PrefireNom' : [ 1.46061759e+06, 1.46077303e+06, 1.96207650e+06, 1.46071562e+06, 1.45935066e+06, 1.00386512e+06, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNom' : [ 1.47516085e+07, 1.47062730e+07, 1.47516225e+07, 1.47516110e+07, 1.44261185e+07, 1.43807555e+07, ], 'CountWeightedFullL1PrefireNom' : [ 3.16896330e+07, 3.16846210e+07, 3.16904120e+07, ], 'CountWeightedFullL1Prefire' : [ 3.16896330e+07, 3.16050190e+07, 3.17683770e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 3.71497580e+07, 3.80436370e+07, 3.87789030e+07, 3.08244960e+07, 3.16896330e+07, 3.23686800e+07, 2.60031640e+07, 2.68178170e+07, 2.74406250e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 3.96400950e+07, 2.59493720e+07, ], 'CountWeightedFullPSWeightL1PrefireNom' : [ 3.16878990e+07, 3.16912380e+07, 4.25670710e+07, 3.16900470e+07, 3.16605140e+07, 2.17788180e+07, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNom' : [ 3.20023416e+08, 3.19039736e+08, 3.20023456e+08, 3.20023456e+08, 3.12961888e+08, 3.11978096e+08, ], }), ("nof_tree_events", 1489600), ("nof_db_events", 1489600), ("fsize_local", 6035547983), # 6.04GB, avg file size 2.01GB ("fsize_db", 66238692309), # 66.24GB, avg file size 1.25GB ("use_it", True), ("xsection", 0.010571), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 4), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/GluGluHToMuMu_M125_ext1"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/GluGluHToBB_M125_13TeV_amcatnloFXFX_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v2/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "ggH"), ("process_name_specific", "GluGluHToBB_M125"), ("nof_files", 19), ("nof_db_files", 200), ("nof_events", { 'Count' : [ 9358631, ], 'CountWeighted' : [ 5.33891222e+06, 5.33894259e+06, 5.33993692e+06, ], 'CountWeightedLHEWeightScale' : [ 6.32383191e+06, 6.46241916e+06, 6.60641281e+06, 5.22197356e+06, 5.33889167e+06, 5.43954434e+06, 4.33398389e+06, 4.43550219e+06, 4.51340381e+06, ], 'CountWeightedLHEEnvelope' : [ 7.13237725e+06, 3.96153431e+06, ], 'CountWeightedFull' : [ 1.03005612e+09, 1.02985354e+09, 1.02996944e+09, ], 'CountWeightedFullLHEWeightScale' : [ 1.21985648e+09, 1.24659644e+09, 1.27436863e+09, 1.00731372e+09, 1.03004990e+09, 1.04928146e+09, 8.36018108e+08, 8.55600816e+08, 8.70629512e+08, ], 'CountWeightedFullLHEEnvelope' : [ 1.37583207e+09, 7.64174512e+08, ], 'CountWeightedL1PrefireNom' : [ 5.27899517e+06, 5.27884723e+06, 5.27994505e+06, ], 'CountWeightedL1Prefire' : [ 5.27899517e+06, 5.26250038e+06, 5.29436212e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 6.24936084e+06, 6.38824831e+06, 6.53223078e+06, 5.16135786e+06, 5.27897588e+06, 5.38007270e+06, 4.28485303e+06, 4.38704097e+06, 4.46559358e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 7.05027872e+06, 3.91828173e+06, ], 'CountWeightedFullL1PrefireNom' : [ 1.01844195e+09, 1.01825802e+09, 1.01842850e+09, ], 'CountWeightedFullL1Prefire' : [ 1.01844195e+09, 1.01525462e+09, 1.02141079e+09, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 1.20549106e+09, 1.23228789e+09, 1.26005859e+09, 9.95619748e+08, 1.01843706e+09, 1.03780902e+09, 8.26540264e+08, 8.46252648e+08, 8.61407752e+08, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 1.35999362e+09, 7.55830940e+08, ], }), ("nof_tree_events", 9358631), ("nof_db_events", 9358631), ("fsize_local", 37535105299), # 37.54GB, avg file size 1.98GB ("fsize_db", 416027040109), # 416.03GB, avg file size 2.08GB ("use_it", True), ("xsection", 28.293), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/GluGluHToBB_M125"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/GluGluHToGG_M125_13TeV_amcatnloFXFX_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v2/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "ggH"), ("process_name_specific", "GluGluHToGG_M125"), ("nof_files", 5), ("nof_db_files", 61), ("nof_events", { 'Count' : [ 1995838, ], 'CountWeighted' : [ 1.13726430e+06, 1.13703978e+06, 1.13740062e+06, ], 'CountWeightedLHEWeightScale' : [ 1.34615965e+06, 1.37574870e+06, 1.40655431e+06, 1.11224671e+06, 1.13726374e+06, 1.15855480e+06, 9.23451658e+05, 9.45059590e+05, 9.61613685e+05, ], 'CountWeightedLHEEnvelope' : [ 1.51871719e+06, 8.43628645e+05, ], 'CountWeightedFull' : [ 2.19362332e+08, 2.19332485e+08, 2.19397963e+08, ], 'CountWeightedFullLHEWeightScale' : [ 2.59672083e+08, 2.65379683e+08, 2.71322166e+08, 2.14550101e+08, 2.19362344e+08, 2.23483512e+08, 1.78131507e+08, 1.82301147e+08, 1.85494305e+08, ], 'CountWeightedFullLHEEnvelope' : [ 2.92958453e+08, 1.62734205e+08, ], 'CountWeightedL1PrefireNom' : [ 1.07507065e+06, 1.07480830e+06, 1.07533089e+06, ], 'CountWeightedL1Prefire' : [ 1.07507065e+06, 1.06119149e+06, 1.08904188e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 1.27154341e+06, 1.30022612e+06, 1.32993336e+06, 1.05069493e+06, 1.07507018e+06, 1.09584909e+06, 8.72530326e+05, 8.93654118e+05, 9.09913181e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 1.43533963e+06, 7.97581537e+05, ], 'CountWeightedFullL1PrefireNom' : [ 2.07370988e+08, 2.07327860e+08, 2.07425712e+08, ], 'CountWeightedFullL1Prefire' : [ 2.07370988e+08, 2.04693560e+08, 2.10067067e+08, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 2.45278996e+08, 2.50811462e+08, 2.56541892e+08, 2.02677683e+08, 2.07370976e+08, 2.11387467e+08, 1.68309414e+08, 1.72384501e+08, 1.75521353e+08, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 2.76875353e+08, 1.53851799e+08, ], }), ("nof_tree_events", 1995838), ("nof_db_events", 1995838), ("fsize_local", 8215919854), # 8.22GB, avg file size 1.64GB ("fsize_db", 88338303082), # 88.34GB, avg file size 1.45GB ("use_it", True), ("xsection", 0.11028), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/GluGluHToGG_M125"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/VBFHToTauTau_M125_13TeV_powheg_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_new_pmx_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "qqH"), ("process_name_specific", "VBFHToTauTau"), ("nof_files", 6), ("nof_db_files", 39), ("nof_events", { 'Count' : [ 2977152, ], 'CountWeighted' : [ 2.97337862e+06, 2.97335153e+06, 2.97347419e+06, ], 'CountWeightedLHEWeightScale' : [ 2.95453834e+06, 2.96307591e+06, 2.98922694e+06, 2.97129288e+06, 2.97337862e+06, 2.99004072e+06, 2.98482962e+06, 2.98136762e+06, 2.99068666e+06, ], 'CountWeightedLHEEnvelope' : [ 3.11821562e+06, 2.82436253e+06, ], 'CountWeightedFull' : [ 1.14930310e+07, 1.14898662e+07, 1.14918269e+07, ], 'CountWeightedFullLHEWeightScale' : [ 1.14198028e+07, 1.14528058e+07, 1.15539009e+07, 1.14845894e+07, 1.14930310e+07, 1.15570356e+07, 1.15368935e+07, 1.15235566e+07, 1.15595421e+07, ], 'CountWeightedFullLHEEnvelope' : [ 1.20524669e+07, 1.09166178e+07, ], 'CountWeightedL1PrefireNom' : [ 2.84215403e+06, 2.84187628e+06, 2.84238634e+06, ], 'CountWeightedL1Prefire' : [ 2.84215403e+06, 2.81126175e+06, 2.87262847e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 2.82455947e+06, 2.83261550e+06, 2.85744422e+06, 2.83987266e+06, 2.84215403e+06, 2.85835406e+06, 2.85225316e+06, 2.84966081e+06, 2.85908256e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 2.98066303e+06, 2.70028056e+06, ], 'CountWeightedFullL1PrefireNom' : [ 1.09854689e+07, 1.09828144e+07, 1.09857995e+07, ], 'CountWeightedFullL1Prefire' : [ 1.09854689e+07, 1.08659876e+07, 1.11032612e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 1.09174054e+07, 1.09485500e+07, 1.10445146e+07, 1.09766185e+07, 1.09854689e+07, 1.10480295e+07, 1.10244229e+07, 1.10144694e+07, 1.10508526e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 1.15208078e+07, 1.04370325e+07, ], }), ("nof_tree_events", 2977152), ("nof_db_events", 2977152), ("fsize_local", 14663666002), # 14.66GB, avg file size 2.44GB ("fsize_db", 133660549317), # 133.66GB, avg file size 3.43GB ("use_it", True), ("xsection", 0.2372), ("genWeight", True), ("triggers", ['1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/VBFHToTauTau"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/VBF_HToZZTo4L_M125_13TeV_powheg2_JHUGenV7011_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14_ext1-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "qqH"), ("process_name_specific", "VBF_HToZZTo4L_ext1"), ("nof_files", 2), ("nof_db_files", 19), ("nof_events", { 'Count' : [ 986020, ], 'CountWeighted' : [ 9.84534188e+05, 9.84630125e+05, 9.84709125e+05, ], 'CountWeightedLHEWeightScale' : [ 9.78358906e+05, 9.81239844e+05, 9.89893812e+05, 9.83936500e+05, 9.84452188e+05, 9.90261625e+05, 9.88438562e+05, 9.87410625e+05, 9.90563938e+05, ], 'CountWeightedLHEEnvelope' : [ 1.03315875e+06, 9.34905375e+05, ], 'CountWeightedPSWeight' : [ 9.84584125e+05, 9.84958156e+05, 1.29044469e+06, 9.84701625e+05, 9.83641281e+05, 6.97870375e+05, ], 'CountWeightedPSWeightOriginalXWGTUP' : [ 3.88529550e+06, 3.88611525e+06, 5.01329900e+06, 3.88575388e+06, 3.80338575e+06, 2.75400150e+06, ], 'CountWeightedFull' : [ 3.87956525e+06, 3.88008250e+06, 3.87994538e+06, ], 'CountWeightedFullLHEWeightScale' : [ 3.85478938e+06, 3.86614762e+06, 3.90024775e+06, 3.87677550e+06, 3.87927675e+06, 3.90172800e+06, 3.89450100e+06, 3.89047775e+06, 3.90288425e+06, ], 'CountWeightedFullLHEEnvelope' : [ 4.07068150e+06, 3.68359238e+06, ], 'CountWeightedFullPSWeight' : [ 3.87942350e+06, 3.88080150e+06, 5.08443425e+06, 3.87989875e+06, 3.87560975e+06, 2.74968325e+06, ], 'CountWeightedFullPSWeightOriginalXWGTUP' : [ 1.53091605e+07, 1.53115880e+07, 1.97529270e+07, 1.53107965e+07, 1.49856930e+07, 1.08510120e+07, ], 'CountWeightedL1PrefireNom' : [ 9.34662500e+05, 9.34639906e+05, 9.34814062e+05, ], 'CountWeightedL1Prefire' : [ 9.34662500e+05, 9.22926031e+05, 9.46303094e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 9.28853625e+05, 9.31541250e+05, 9.39693188e+05, 9.33928188e+05, 9.34610875e+05, 9.40113219e+05, 9.38027250e+05, 9.37289312e+05, 9.40454875e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 9.80780969e+05, 8.87651188e+05, ], 'CountWeightedPSWeightL1PrefireNom' : [ 9.34669812e+05, 9.34754469e+05, 1.22453206e+06, 9.34773250e+05, 9.34176469e+05, 6.63042906e+05, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNom' : [ 3.68832562e+06, 3.68809712e+06, 4.75745050e+06, 3.68871188e+06, 3.61237112e+06, 2.61658150e+06, ], 'CountWeightedFullL1PrefireNom' : [ 3.68288175e+06, 3.68276812e+06, 3.68336838e+06, ], 'CountWeightedFullL1Prefire' : [ 3.68288175e+06, 3.63658662e+06, 3.72870338e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 3.65975125e+06, 3.67033775e+06, 3.70245412e+06, 3.67975325e+06, 3.68269850e+06, 3.70414625e+06, 3.69589800e+06, 3.69299688e+06, 3.70545925e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 3.86433250e+06, 3.49741375e+06, ], 'CountWeightedFullPSWeightL1PrefireNom' : [ 3.68273312e+06, 3.68301062e+06, 4.82472900e+06, 3.68314025e+06, 3.68071800e+06, 2.61246775e+06, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNom' : [ 1.45326235e+07, 1.45313965e+07, 1.87448110e+07, 1.45341125e+07, 1.42331090e+07, 1.03095960e+07, ], }), ("nof_tree_events", 986020), ("nof_db_events", 986020), ("fsize_local", 5882966558), # 5.88GB, avg file size 2.94GB ("fsize_db", 49857117667), # 49.86GB, avg file size 2.62GB ("use_it", True), ("xsection", 0.0010099), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 4), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/VBF_HToZZTo4L_ext1"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/VBF_HToZZTo4L_M125_13TeV_powheg2_JHUGenV7011_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14_ext2-v2/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "qqH"), ("process_name_specific", "VBF_HToZZTo4L_ext2"), ("nof_files", 2), ("nof_db_files", 29), ("nof_events", { 'Count' : [ 1000000, ], 'CountWeighted' : [ 9.98892125e+05, 9.98766250e+05, 9.98674719e+05, ], 'CountWeightedLHEWeightScale' : [ 9.92405000e+05, 9.95243031e+05, 1.00398516e+06, 9.98071094e+05, 9.98815344e+05, 1.00442638e+06, 1.00263691e+06, 1.00156672e+06, 1.00477784e+06, ], 'CountWeightedLHEEnvelope' : [ 1.04805059e+06, 9.48245688e+05, ], 'CountWeightedPSWeight' : [ 9.98718125e+05, 9.98703312e+05, 1.30948712e+06, 9.98881906e+05, 9.98783344e+05, 7.07989281e+05, ], 'CountWeightedPSWeightOriginalXWGTUP' : [ 3.94033850e+06, 3.93993975e+06, 5.08549050e+06, 3.94102562e+06, 3.86020450e+06, 2.79349462e+06, ], 'CountWeightedFull' : [ 3.93515000e+06, 3.93502250e+06, 3.93509175e+06, ], 'CountWeightedFullLHEWeightScale' : [ 3.91015388e+06, 3.92135438e+06, 3.95579425e+06, 3.93247888e+06, 3.93508900e+06, 3.95752675e+06, 3.95047000e+06, 3.94626438e+06, 3.95891188e+06, ], 'CountWeightedFullLHEEnvelope' : [ 4.12941662e+06, 3.73616750e+06, ], 'CountWeightedFullPSWeight' : [ 3.93486112e+06, 3.93494588e+06, 5.15942650e+06, 3.93556775e+06, 3.93529388e+06, 2.78955700e+06, ], 'CountWeightedFullPSWeightOriginalXWGTUP' : [ 1.55249425e+07, 1.55236930e+07, 2.00371910e+07, 1.55275310e+07, 1.52096095e+07, 1.10066290e+07, ], 'CountWeightedL1PrefireNom' : [ 9.48130781e+05, 9.47989344e+05, 9.48145375e+05, ], 'CountWeightedL1Prefire' : [ 9.48130781e+05, 9.36209344e+05, 9.59941812e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 9.42158719e+05, 9.44807438e+05, 9.53041281e+05, 9.47314562e+05, 9.48080625e+05, 9.53529625e+05, 9.51467094e+05, 9.50696375e+05, 9.53919969e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 9.94878656e+05, 9.00298406e+05, ], 'CountWeightedPSWeightL1PrefireNom' : [ 9.48040094e+05, 9.47710781e+05, 1.24266200e+06, 9.48155156e+05, 9.48664312e+05, 6.72614844e+05, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNom' : [ 3.74054775e+06, 3.73884050e+06, 4.82612025e+06, 3.74100125e+06, 3.66667662e+06, 2.65397012e+06, ], 'CountWeightedFullL1PrefireNom' : [ 3.73543238e+06, 3.73499400e+06, 3.73588800e+06, ], 'CountWeightedFullL1Prefire' : [ 3.73543238e+06, 3.68846425e+06, 3.78199925e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 3.71218600e+06, 3.72262375e+06, 3.75507412e+06, 3.73249362e+06, 3.73534450e+06, 3.75698950e+06, 3.74886075e+06, 3.74582950e+06, 3.75853462e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 3.91991875e+06, 3.54725725e+06, ], 'CountWeightedFullPSWeightL1PrefireNom' : [ 3.73528250e+06, 3.73403388e+06, 4.89616175e+06, 3.73575425e+06, 3.73782600e+06, 2.65018100e+06, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNom' : [ 1.47380150e+07, 1.47314055e+07, 1.90152820e+07, 1.47397325e+07, 1.44470920e+07, 1.04569380e+07, ], }), ("nof_tree_events", 1000000), ("nof_db_events", 1000000), ("fsize_local", 5968389142), # 5.97GB, avg file size 2.98GB ("fsize_db", 51167133340), # 51.17GB, avg file size 1.76GB ("use_it", True), ("xsection", 0.0010099), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 4), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/VBF_HToZZTo4L_ext2"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/VBFHToWWToLNuQQ_M125_NNPDF31_TuneCP5_PSweights_13TeV_powheg_JHUGen710_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "qqH"), ("process_name_specific", "VBFHToWWToLNuQQ_M125_PSweights"), ("nof_files", 1), ("nof_db_files", 30), ("nof_events", { 'Count' : [ 483600, ], 'CountWeighted' : [ 4.82891938e+05, 4.82859875e+05, 4.82890688e+05, ], 'CountWeightedLHEWeightScale' : [ 4.79748406e+05, 4.81168375e+05, 4.85432375e+05, 4.82526938e+05, 4.82891938e+05, 4.85655969e+05, 4.84768125e+05, 4.84274875e+05, 4.85840156e+05, ], 'CountWeightedLHEEnvelope' : [ 5.06744312e+05, 4.58407125e+05, ], 'CountWeightedPSWeight' : [ 4.82929781e+05, 4.83148688e+05, 6.49363750e+05, 4.82847156e+05, 4.82123250e+05, 3.26825531e+05, ], 'CountWeightedPSWeightOriginalXWGTUP' : [ 1.90748275e+06, 1.90804275e+06, 2.51297775e+06, 1.90716988e+06, 1.85276912e+06, 1.29094538e+06, ], 'CountWeightedFull' : [ 1.90401388e+06, 1.90409288e+06, 1.90419725e+06, ], 'CountWeightedFullLHEWeightScale' : [ 1.89170088e+06, 1.89729112e+06, 1.91409675e+06, 1.90265200e+06, 1.90401388e+06, 1.91498500e+06, 1.91148825e+06, 1.90954325e+06, 1.91570100e+06, ], 'CountWeightedFullLHEEnvelope' : [ 1.99815175e+06, 1.80753662e+06, ], 'CountWeightedFullPSWeight' : [ 1.90420875e+06, 1.90510175e+06, 2.56049675e+06, 1.90387950e+06, 1.90105862e+06, 1.28870700e+06, ], 'CountWeightedFullPSWeightOriginalXWGTUP' : [ 7.52156050e+06, 7.52354050e+06, 9.90890100e+06, 7.52036900e+06, 7.30557100e+06, 5.09029500e+06, ], 'CountWeightedL1PrefireNom' : [ 4.63093000e+05, 4.63034969e+05, 4.63132812e+05, ], 'CountWeightedL1Prefire' : [ 4.63093000e+05, 4.58377562e+05, 4.67710500e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 4.60131969e+05, 4.61482719e+05, 4.65550375e+05, 4.62679562e+05, 4.63093000e+05, 4.65784781e+05, 4.64732531e+05, 4.64386062e+05, 4.65974125e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 4.85965625e+05, 4.39696938e+05, ], 'CountWeightedPSWeightL1PrefireNom' : [ 4.63136688e+05, 4.63167594e+05, 6.22542250e+05, 4.63038781e+05, 4.62629438e+05, 3.13695438e+05, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNom' : [ 1.82934200e+06, 1.82916088e+06, 2.40925450e+06, 1.82896600e+06, 1.77794962e+06, 1.23909362e+06, ], 'CountWeightedFullL1PrefireNom' : [ 1.82599712e+06, 1.82585250e+06, 1.82623300e+06, ], 'CountWeightedFullL1Prefire' : [ 1.82599712e+06, 1.80742500e+06, 1.84422512e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 1.81436012e+06, 1.81968000e+06, 1.83570300e+06, 1.82439700e+06, 1.82599712e+06, 1.83662875e+06, 1.83249525e+06, 1.83111850e+06, 1.83737788e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 1.91622212e+06, 1.73376862e+06, ], 'CountWeightedFullPSWeightL1PrefireNom' : [ 1.82618688e+06, 1.82631462e+06, 2.45474275e+06, 1.82579350e+06, 1.82419525e+06, 1.23693688e+06, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNom' : [ 7.21336200e+06, 7.21252200e+06, 9.49990100e+06, 7.21191350e+06, 7.01059250e+06, 4.88585400e+06, ], }), ("nof_tree_events", 483600), ("nof_db_events", 483600), ("fsize_local", 2489119250), # 2.49GB, avg file size 2.49GB ("fsize_db", 22613864866), # 22.61GB, avg file size 753.80MB ("use_it", True), ("xsection", 0.35517), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 4), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/VBFHToWWToLNuQQ_M125_PSweights"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/VBFHToWWTo2L2Nu_M125_13TeV_powheg2_JHUGenV714_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "qqH"), ("process_name_specific", "VBFHToWWTo2L2Nu_M125"), ("nof_files", 2), ("nof_db_files", 32), ("nof_events", { 'Count' : [ 500000, ], 'CountWeighted' : [ 4.99285275e+05, 4.99236009e+05, 4.99291788e+05, ], 'CountWeightedLHEWeightScale' : [ 4.96028787e+05, 4.97483972e+05, 5.01889011e+05, 4.98918077e+05, 4.99283223e+05, 5.02147955e+05, 5.01261613e+05, 5.00744513e+05, 5.02342904e+05, ], 'CountWeightedLHEEnvelope' : [ 5.23733168e+05, 4.74169651e+05, ], 'CountWeightedFull' : [ 1.93921012e+06, 1.93937944e+06, 1.93917334e+06, ], 'CountWeightedFullLHEWeightScale' : [ 1.92664092e+06, 1.93229839e+06, 1.94939974e+06, 1.93785573e+06, 1.93917251e+06, 1.95040802e+06, 1.94696027e+06, 1.94496104e+06, 1.95117479e+06, ], 'CountWeightedFullLHEEnvelope' : [ 2.03426116e+06, 1.84173853e+06, ], 'CountWeightedL1PrefireNom' : [ 4.78206951e+05, 4.78133913e+05, 4.78250655e+05, ], 'CountWeightedL1Prefire' : [ 4.78206951e+05, 4.73235689e+05, 4.83108784e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 4.75147828e+05, 4.76521661e+05, 4.80713290e+05, 4.77791131e+05, 4.78199815e+05, 4.80977709e+05, 4.79939233e+05, 4.79563059e+05, 4.81178325e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 5.01620826e+05, 4.54228602e+05, ], 'CountWeightedFullL1PrefireNom' : [ 1.85735627e+06, 1.85727135e+06, 1.85750556e+06, ], 'CountWeightedFullL1Prefire' : [ 1.85735627e+06, 1.83805296e+06, 1.87641841e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 1.84554560e+06, 1.85087321e+06, 1.86714634e+06, 1.85580344e+06, 1.85731329e+06, 1.86818406e+06, 1.86413765e+06, 1.86267986e+06, 1.86896329e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 1.94836676e+06, 1.76429085e+06, ], }), ("nof_tree_events", 500000), ("nof_db_events", 500000), ("fsize_local", 2542286108), # 2.54GB, avg file size 1.27GB ("fsize_db", 22373340398), # 22.37GB, avg file size 699.17MB ("use_it", True), ("xsection", 0.085894), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 306000 - 306102 -> NNPDF31_nnlo_hessian_pdfas PDF set, expecting 103 weights (counted 103 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/VBFHToWWTo2L2Nu_M125"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/VBFHToMuMu_M-125_TuneCP5_PSweights_13TeV_powheg_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "qqH"), ("process_name_specific", "VBFHToMuMu_M125"), ("nof_files", 5), ("nof_db_files", 69), ("nof_events", { 'Count' : [ 982200, ], 'CountWeighted' : [ 9.80936867e+05, 9.80879514e+05, 9.80802971e+05, ], 'CountWeightedLHEWeightScale' : [ 9.74863474e+05, 9.77581476e+05, 9.86126968e+05, 9.80354496e+05, 9.80936867e+05, 9.86371356e+05, 9.84772448e+05, 9.83555879e+05, 9.86572649e+05, ], 'CountWeightedLHEEnvelope' : [ 1.02875884e+06, 9.31789961e+05, ], 'CountWeightedPSWeight' : [ 9.80970555e+05, 9.80916835e+05, 1.28592908e+06, 9.80822158e+05, 9.80747390e+05, 6.95322418e+05, ], 'CountWeightedPSWeightOriginalXWGTUP' : [ 3.79665363e+06, 3.79595579e+06, 4.90432304e+06, 3.79605985e+06, 3.72387275e+06, 2.69130184e+06, ], 'CountWeightedFull' : [ 3.79095650e+06, 3.79063866e+06, 3.79087359e+06, ], 'CountWeightedFullLHEWeightScale' : [ 3.76751151e+06, 3.77800900e+06, 3.81102289e+06, 3.78871507e+06, 3.79095650e+06, 3.81194632e+06, 3.80577925e+06, 3.80107185e+06, 3.81273487e+06, ], 'CountWeightedFullLHEEnvelope' : [ 3.97580218e+06, 3.60102440e+06, ], 'CountWeightedFullPSWeight' : [ 3.79108321e+06, 3.79089117e+06, 4.96963738e+06, 3.79051672e+06, 3.79023917e+06, 2.68718210e+06, ], 'CountWeightedFullPSWeightOriginalXWGTUP' : [ 1.46727195e+07, 1.46699101e+07, 1.89532472e+07, 1.46704083e+07, 1.43913366e+07, 1.04009456e+07, ], 'CountWeightedL1PrefireNom' : [ 9.41462734e+05, 9.41377287e+05, 9.41468109e+05, ], 'CountWeightedL1Prefire' : [ 9.41462734e+05, 9.32151461e+05, 9.50637802e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 9.35793084e+05, 9.38369628e+05, 9.46518000e+05, 9.40821546e+05, 9.41462734e+05, 9.46772216e+05, 9.44866944e+05, 9.43925718e+05, 9.46982009e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 9.87395155e+05, 8.94479173e+05, ], 'CountWeightedPSWeightL1PrefireNom' : [ 9.41537320e+05, 9.41195231e+05, 1.23379431e+06, 9.41352024e+05, 9.41811571e+05, 6.67937477e+05, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNom' : [ 3.64408106e+06, 3.64231170e+06, 4.70560254e+06, 3.64334703e+06, 3.57616914e+06, 2.58533308e+06, ], 'CountWeightedFullL1PrefireNom' : [ 3.63845916e+06, 3.63803013e+06, 3.63868769e+06, ], 'CountWeightedFullL1Prefire' : [ 3.63845916e+06, 3.60244879e+06, 3.67387418e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 3.61652649e+06, 3.62647357e+06, 3.65795960e+06, 3.63595157e+06, 3.63845916e+06, 3.65892759e+06, 3.65158027e+06, 3.64793855e+06, 3.65974536e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 3.81595669e+06, 3.45684167e+06, ], 'CountWeightedFullPSWeightL1PrefireNom' : [ 3.63870389e+06, 3.63739524e+06, 4.76816730e+06, 3.63799486e+06, 3.63977466e+06, 2.58135385e+06, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNom' : [ 1.40830650e+07, 1.40761806e+07, 1.81853409e+07, 1.40802261e+07, 1.38205606e+07, 9.99143181e+06, ], }), ("nof_tree_events", 982200), ("nof_db_events", 982200), ("fsize_local", 5218764503), # 5.22GB, avg file size 1.04GB ("fsize_db", 47471748498), # 47.47GB, avg file size 688.00MB ("use_it", True), ("xsection", 0.00082296), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 4), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/VBFHToMuMu_M125"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/VBFHToBB_M-125_13TeV_powheg_pythia8_weightfix/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "qqH"), ("process_name_specific", "VBFHToBB_M125"), ("nof_files", 11), ("nof_db_files", 69), ("nof_events", { 'Count' : [ 5000000, ], 'CountWeighted' : [ 4.99389303e+06, 4.99329858e+06, 4.99346621e+06, ], 'CountWeightedLHEWeightScale' : [ 4.96202615e+06, 4.97612671e+06, 5.01996796e+06, 4.99011432e+06, 4.99389303e+06, 5.02136701e+06, 5.01283177e+06, 5.00691160e+06, 5.02241808e+06, ], 'CountWeightedLHEEnvelope' : [ 5.23710180e+06, 4.74286812e+06, ], 'CountWeightedFull' : [ 1.93006023e+07, 1.93011128e+07, 1.92970463e+07, ], 'CountWeightedFullLHEWeightScale' : [ 1.91790681e+07, 1.92335284e+07, 1.94029122e+07, 1.92875388e+07, 1.93006023e+07, 1.94082553e+07, 1.93752744e+07, 1.93524691e+07, 1.94124492e+07, ], 'CountWeightedFullLHEEnvelope' : [ 2.02423429e+07, 1.83319843e+07, ], 'CountWeightedL1PrefireNom' : [ 4.78184060e+06, 4.78118528e+06, 4.78201704e+06, ], 'CountWeightedL1Prefire' : [ 4.78184060e+06, 4.73173393e+06, 4.83107587e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 4.75226586e+06, 4.76561717e+06, 4.80734759e+06, 4.77792428e+06, 4.78184060e+06, 4.80888107e+06, 4.79868223e+06, 4.79429709e+06, 4.81006224e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 5.01511663e+06, 4.54265552e+06, ], 'CountWeightedFullL1PrefireNom' : [ 1.84818158e+07, 1.84804563e+07, 1.84816760e+07, ], 'CountWeightedFullL1Prefire' : [ 1.84818158e+07, 1.82882745e+07, 1.86721019e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 1.83683015e+07, 1.84198777e+07, 1.85811023e+07, 1.84674149e+07, 1.84818158e+07, 1.85870482e+07, 1.85476266e+07, 1.85307198e+07, 1.85916697e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 1.93843105e+07, 1.75581317e+07, ], }), ("nof_tree_events", 5000000), ("nof_db_events", 5000000), ("fsize_local", 24348577681), # 24.35GB, avg file size 2.21GB ("fsize_db", 227405574450), # 227.41GB, avg file size 3.30GB ("use_it", True), ("xsection", 2.2026), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/VBFHToBB_M125"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/VBFHToGG_M125_13TeV_amcatnlo_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "qqH"), ("process_name_specific", "VBFHToGG_M125"), ("nof_files", 4), ("nof_db_files", 28), ("nof_events", { 'Count' : [ 1925302, ], 'CountWeighted' : [ 5.92280703e+05, 5.92251891e+05, 5.92353938e+05, ], 'CountWeightedLHEWeightScale' : [ 5.88716344e+05, 5.91674531e+05, 5.97563781e+05, 5.90508484e+05, 5.92276328e+05, 5.96357828e+05, 5.91928062e+05, 5.92719594e+05, 5.95333984e+05, ], 'CountWeightedLHEEnvelope' : [ 6.76764062e+05, 5.10453109e+05, ], 'CountWeightedFull' : [ 7.71244112e+06, 7.71228712e+06, 7.71349400e+06, ], 'CountWeightedFullLHEWeightScale' : [ 7.66596312e+06, 7.70447638e+06, 7.78115588e+06, 7.68931088e+06, 7.71239850e+06, 7.76547100e+06, 7.70778562e+06, 7.71809850e+06, 7.75213638e+06, ], 'CountWeightedFullLHEEnvelope' : [ 8.81246788e+06, 6.64685238e+06, ], 'CountWeightedL1PrefireNom' : [ 5.40877062e+05, 5.40740969e+05, 5.41028188e+05, ], 'CountWeightedL1Prefire' : [ 5.40877062e+05, 5.29651070e+05, 5.52223039e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 5.37523945e+05, 5.40221203e+05, 5.45595344e+05, 5.39187453e+05, 5.40873070e+05, 5.44657727e+05, 5.40503648e+05, 5.41354844e+05, 5.43857891e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 6.17516734e+05, 4.66673461e+05, ], 'CountWeightedFullL1PrefireNom' : [ 7.04302188e+06, 7.04137600e+06, 7.04501262e+06, ], 'CountWeightedFullL1Prefire' : [ 7.04302188e+06, 6.89680862e+06, 7.19076400e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 6.99937088e+06, 7.03447100e+06, 7.10446188e+06, 7.02102825e+06, 7.04299662e+06, 7.09226212e+06, 7.03815788e+06, 7.04924062e+06, 7.08184075e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 8.04099800e+06, 6.07678075e+06, ], }), ("nof_tree_events", 1925302), ("nof_db_events", 1925302), ("fsize_local", 9438044681), # 9.44GB, avg file size 2.36GB ("fsize_db", 86362858092), # 86.36GB, avg file size 3.08GB ("use_it", True), ("xsection", 0.0085851), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/VBFHToGG_M125"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/VBFHToGG_M125_13TeV_amcatnlo_pythia8_PSWeights/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14_ext1-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "qqH"), ("process_name_specific", "VBFHToGG_M125_PSWeights_ext1"), ("nof_files", 2), ("nof_db_files", 16), ("nof_events", { 'Count' : [ 975930, ], 'CountWeighted' : [ 3.01181531e+05, 3.01263953e+05, 3.01142031e+05, ], 'CountWeightedLHEWeightScale' : [ 2.99087766e+05, 3.00812594e+05, 3.04016188e+05, 3.00098578e+05, 3.01185391e+05, 3.03429906e+05, 3.00893219e+05, 3.01457000e+05, 3.02956891e+05, ], 'CountWeightedLHEEnvelope' : [ 3.44309875e+05, 2.59353328e+05, ], 'CountWeightedPSWeight' : [ 3.01059891e+05, 3.01674000e+05, 3.95246078e+05, 3.01315297e+05, 3.00644297e+05, 2.14641555e+05, ], 'CountWeightedPSWeightOriginalXWGTUP' : [ 9.75342900e+06, 9.41155600e+06, 9.75981000e+06, 9.75826000e+06, 8.79618400e+06, 8.44539300e+06, ], 'CountWeightedFull' : [ 3.92058088e+06, 3.92148088e+06, 3.91989550e+06, ], 'CountWeightedFullLHEWeightScale' : [ 3.89328150e+06, 3.91573538e+06, 3.95744438e+06, 3.90645050e+06, 3.92053750e+06, 3.94980188e+06, 3.91676812e+06, 3.92412862e+06, 3.94363125e+06, ], 'CountWeightedFullLHEEnvelope' : [ 4.48195400e+06, 3.37603688e+06, ], 'CountWeightedFullPSWeight' : [ 3.91879900e+06, 3.92695288e+06, 5.14494525e+06, 3.92213625e+06, 3.91351900e+06, 2.79394000e+06, ], 'CountWeightedFullPSWeightOriginalXWGTUP' : [ 1.26941304e+08, 1.22493508e+08, 1.27022028e+08, 1.27004092e+08, 1.14488280e+08, 1.09927544e+08, ], 'CountWeightedL1PrefireNom' : [ 2.74615797e+05, 2.74681094e+05, 2.74605188e+05, ], 'CountWeightedL1Prefire' : [ 2.74615797e+05, 2.68829781e+05, 2.80468609e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 2.72555953e+05, 2.74163016e+05, 2.77125500e+05, 2.73560797e+05, 2.74616266e+05, 2.76728438e+05, 2.74352547e+05, 2.74962484e+05, 2.76411500e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 3.13668203e+05, 2.36738938e+05, ], 'CountWeightedPSWeightL1PrefireNom' : [ 2.74497562e+05, 2.74967953e+05, 3.60410719e+05, 2.74740219e+05, 2.74362219e+05, 1.95791211e+05, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNom' : [ 8.91984700e+06, 8.60725000e+06, 8.92565950e+06, 8.92427500e+06, 8.04780875e+06, 7.72709675e+06, ], 'CountWeightedFullL1PrefireNom' : [ 3.57475450e+06, 3.57552275e+06, 3.57452012e+06, ], 'CountWeightedFullL1Prefire' : [ 3.57475450e+06, 3.49942675e+06, 3.65093750e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 3.54790188e+06, 3.56881238e+06, 3.60739725e+06, 3.56099100e+06, 3.57472062e+06, 3.60221988e+06, 3.57127350e+06, 3.57923375e+06, 3.59808500e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 4.08308112e+06, 3.08164812e+06, ], 'CountWeightedFullPSWeightL1PrefireNom' : [ 3.57306238e+06, 3.57930425e+06, 4.69149200e+06, 3.57623162e+06, 3.57138250e+06, 2.54856812e+06, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNom' : [ 1.16102244e+08, 1.12032956e+08, 1.16176044e+08, 1.16159888e+08, 1.04752688e+08, 1.00580984e+08, ], }), ("nof_tree_events", 975930), ("nof_db_events", 975930), ("fsize_local", 4797337253), # 4.80GB, avg file size 2.40GB ("fsize_db", 44420652691), # 44.42GB, avg file size 2.78GB ("use_it", True), ("xsection", 0.0085851), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 4), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/VBFHToGG_M125_PSWeights_ext1"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/TTZToLLNuNu_M-10_TuneCP5_13TeV-amcatnlo-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v2/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "TTZ"), ("process_name_specific", "TTZToLL_M10"), ("nof_files", 16), ("nof_db_files", 150), ("nof_events", { 'Count' : [ 7932650, ], 'CountWeighted' : [ 3.74391286e+06, 3.74454622e+06, 3.74383489e+06, ], 'CountWeightedLHEWeightScale' : [ 4.09404745e+06, 4.03799483e+06, 3.99802189e+06, 3.84167164e+06, 3.74386556e+06, 3.66479042e+06, 3.55536736e+06, 3.43701288e+06, 3.33754470e+06, ], 'CountWeightedLHEEnvelope' : [ 4.36130002e+06, 3.17500950e+06, ], 'CountWeightedFull' : [ 1.92774925e+06, 1.92798821e+06, 1.92774344e+06, ], 'CountWeightedFullLHEWeightScale' : [ 2.10783233e+06, 2.07896588e+06, 2.05839242e+06, 1.97789895e+06, 1.92769917e+06, 1.88682831e+06, 1.83049209e+06, 1.76955743e+06, 1.71834461e+06, ], 'CountWeightedFullLHEEnvelope' : [ 2.24542343e+06, 1.63466551e+06, ], 'CountWeightedL1PrefireNom' : [ 3.59705116e+06, 3.59721945e+06, 3.59721531e+06, ], 'CountWeightedL1Prefire' : [ 3.59705116e+06, 3.56201184e+06, 3.63144239e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 3.92980681e+06, 3.87729062e+06, 3.84024777e+06, 3.68943806e+06, 3.59699959e+06, 3.52217708e+06, 3.41565431e+06, 3.30332089e+06, 3.20896062e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 4.18726875e+06, 3.05210602e+06, ], 'CountWeightedFullL1PrefireNom' : [ 1.85204613e+06, 1.85208715e+06, 1.85215162e+06, ], 'CountWeightedFullL1Prefire' : [ 1.85204613e+06, 1.83400841e+06, 1.86976231e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 2.02327328e+06, 1.99623170e+06, 1.97716229e+06, 1.89952009e+06, 1.85200311e+06, 1.81340291e+06, 1.75856119e+06, 1.70072481e+06, 1.65214341e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 2.15582507e+06, 1.57138632e+06, ], }), ("nof_tree_events", 7932650), ("nof_db_events", 7932650), ("fsize_local", 67520950251), # 67.52GB, avg file size 4.22GB ("fsize_db", 479409585023), # 479.41GB, avg file size 3.20GB ("use_it", True), ("xsection", 0.2814), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/TTZToLL_M10"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/TTZToLLNuNu_M-10_TuneCP5_PSweights_13TeV-amcatnlo-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "TTZ"), ("process_name_specific", "TTZToLL_M10_PSweights"), ("nof_files", 23), ("nof_db_files", 300), ("nof_events", { 'Count' : [ 11092000, ], 'CountWeighted' : [ 5.23906229e+06, 5.24021198e+06, 5.23803723e+06, ], 'CountWeightedLHEWeightScale' : [ 5.73207472e+06, 5.65175092e+06, 5.59390085e+06, 5.37728396e+06, 5.23903872e+06, 5.12709025e+06, 4.97563842e+06, 4.80876236e+06, 4.66867980e+06, ], 'CountWeightedLHEEnvelope' : [ 6.10625074e+06, 4.44082632e+06, ], 'CountWeightedPSWeight' : [ 5.23965195e+06, 5.24109322e+06, 7.68678097e+06, 5.23921643e+06, 5.22181514e+06, 3.04978467e+06, ], 'CountWeightedPSWeightOriginalXWGTUP' : [ 5.71073576e+06, 5.70981663e+06, 8.51175125e+06, 5.71057241e+06, 5.70914673e+06, 3.22669083e+06, ], 'CountWeightedFull' : [ 2.69474738e+06, 2.69511771e+06, 2.69377424e+06, ], 'CountWeightedFullLHEWeightScale' : [ 2.94801474e+06, 2.90669497e+06, 2.87695259e+06, 2.76554961e+06, 2.69470554e+06, 2.63687082e+06, 2.55897574e+06, 2.47315263e+06, 2.40110762e+06, ], 'CountWeightedFullLHEEnvelope' : [ 3.14045271e+06, 2.28391893e+06, ], 'CountWeightedFullPSWeight' : [ 2.69476640e+06, 2.69549435e+06, 3.95332701e+06, 2.69451476e+06, 2.68560171e+06, 1.56850630e+06, ], 'CountWeightedFullPSWeightOriginalXWGTUP' : [ 2.93701732e+06, 2.93648987e+06, 4.37749975e+06, 2.93690225e+06, 2.93615738e+06, 1.65947225e+06, ], 'CountWeightedL1PrefireNom' : [ 5.03206434e+06, 5.03285973e+06, 5.03117451e+06, ], 'CountWeightedL1Prefire' : [ 5.03206434e+06, 4.98278914e+06, 5.08045011e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 5.50025707e+06, 5.42516732e+06, 5.37166860e+06, 5.16254866e+06, 5.03202838e+06, 4.92625546e+06, 4.77864919e+06, 4.62040308e+06, 4.48761878e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 5.86063166e+06, 4.26782192e+06, ], 'CountWeightedPSWeightL1PrefireNom' : [ 5.03742346e+06, 5.03130680e+06, 7.38166190e+06, 5.02569115e+06, 5.01912602e+06, 2.93082271e+06, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNom' : [ 5.48269085e+06, 5.47289717e+06, 8.16131316e+06, 5.46912478e+06, 5.47969095e+06, 3.09675365e+06, ], 'CountWeightedFullL1PrefireNom' : [ 2.58816857e+06, 2.58846623e+06, 2.58745488e+06, ], 'CountWeightedFullL1Prefire' : [ 2.58816857e+06, 2.56281681e+06, 2.61305922e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 2.82879865e+06, 2.79018096e+06, 2.76266998e+06, 2.65511848e+06, 2.58813542e+06, 2.53359381e+06, 2.45767406e+06, 2.37628877e+06, 2.30800264e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 3.01414178e+06, 2.19495669e+06, ], 'CountWeightedFullPSWeightL1PrefireNom' : [ 2.59077589e+06, 2.58761179e+06, 3.79641791e+06, 2.58471494e+06, 2.58136645e+06, 1.50733361e+06, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNom' : [ 2.81975215e+06, 2.81466954e+06, 4.19730814e+06, 2.81274782e+06, 2.81817808e+06, 1.59265766e+06, ], }), ("nof_tree_events", 11092000), ("nof_db_events", 11092000), ("fsize_local", 94250910107), # 94.25GB, avg file size 4.10GB ("fsize_db", 673564862733), # 673.56GB, avg file size 2.25GB ("use_it", True), ("xsection", 0.2814), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 4), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/TTZToLL_M10_PSweights"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/TTZToQQ_TuneCP5_13TeV-amcatnlo-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v2/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "TTZ"), ("process_name_specific", "TTZToQQ"), ("nof_files", 1), ("nof_db_files", 16), ("nof_events", { 'Count' : [ 352900, ], 'CountWeighted' : [ 1.68319766e+05, 1.68346766e+05, 1.68255625e+05, ], 'CountWeightedLHEWeightScale' : [ 1.84487453e+05, 1.81724125e+05, 1.79709984e+05, 1.72912500e+05, 1.68320484e+05, 1.64591672e+05, 1.59923078e+05, 1.54449250e+05, 1.49841578e+05, ], 'CountWeightedLHEEnvelope' : [ 1.96353375e+05, 1.42561750e+05, ], 'CountWeightedFull' : [ 1.80998828e+05, 1.80983438e+05, 1.80902297e+05, ], 'CountWeightedFullLHEWeightScale' : [ 1.98352859e+05, 1.95382469e+05, 1.93216344e+05, 1.85907812e+05, 1.80998562e+05, 1.76960734e+05, 1.71942141e+05, 1.66055812e+05, 1.61102484e+05, ], 'CountWeightedFullLHEEnvelope' : [ 2.11112297e+05, 1.53275812e+05, ], 'CountWeightedL1PrefireNom' : [ 1.61306438e+05, 1.61330469e+05, 1.61237797e+05, ], 'CountWeightedL1Prefire' : [ 1.61306438e+05, 1.59627219e+05, 1.62953531e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 1.76582828e+05, 1.74025062e+05, 1.72180609e+05, 1.65617016e+05, 1.61306828e+05, 1.57802609e+05, 1.53246281e+05, 1.48079297e+05, 1.43731125e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 1.88003078e+05, 1.36712016e+05, ], 'CountWeightedFullL1PrefireNom' : [ 1.73445203e+05, 1.73447625e+05, 1.73354312e+05, ], 'CountWeightedFullL1Prefire' : [ 1.73445203e+05, 1.71637594e+05, 1.75215484e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 1.89853734e+05, 1.87104125e+05, 1.85121219e+05, 1.78063547e+05, 1.73445016e+05, 1.69662109e+05, 1.64763625e+05, 1.59207312e+05, 1.54532969e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 2.02133172e+05, 1.46986156e+05, ], }), ("nof_tree_events", 352900), ("nof_db_events", 750000), ("fsize_local", 3329128984), # 3.33GB, avg file size 3.33GB ("fsize_db", 47371109410), # 47.37GB, avg file size 2.96GB ("use_it", False), ("xsection", 0.5868), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/TTZToQQ"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/TTZToQQ_TuneCP5_13TeV-amcatnlo-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14_ext1-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "TTZ"), ("process_name_specific", "TTZToQQ_ext1"), ("nof_files", 16), ("nof_db_files", 223), ("nof_events", { 'Count' : [ 7540000, ], 'CountWeighted' : [ 3.58155493e+06, 3.58193803e+06, 3.58113809e+06, ], 'CountWeightedLHEWeightScale' : [ 3.92231438e+06, 3.86561629e+06, 3.82438241e+06, 3.67725748e+06, 3.58155657e+06, 3.50350176e+06, 3.40204106e+06, 3.28683146e+06, 3.18982211e+06, ], 'CountWeightedLHEEnvelope' : [ 4.17509600e+06, 3.03490112e+06, ], 'CountWeightedFull' : [ 3.85126588e+06, 3.85096547e+06, 3.85049026e+06, ], 'CountWeightedFullLHEWeightScale' : [ 4.21709510e+06, 4.15612561e+06, 4.11179819e+06, 3.95361821e+06, 3.85126254e+06, 3.76680607e+06, 3.65772089e+06, 3.53383864e+06, 3.42954674e+06, ], 'CountWeightedFullLHEEnvelope' : [ 4.48887077e+06, 3.26298638e+06, ], 'CountWeightedL1PrefireNom' : [ 3.43173164e+06, 3.43190066e+06, 3.43140426e+06, ], 'CountWeightedL1Prefire' : [ 3.43173164e+06, 3.39588918e+06, 3.46685874e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 3.75425755e+06, 3.70151584e+06, 3.66355100e+06, 3.52177670e+06, 3.43173126e+06, 3.35829876e+06, 3.25949856e+06, 3.15061292e+06, 3.05897784e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 3.99717434e+06, 2.90984875e+06, ], 'CountWeightedFullL1PrefireNom' : [ 3.68989253e+06, 3.68972371e+06, 3.68937187e+06, ], 'CountWeightedFullL1Prefire' : [ 3.68989253e+06, 3.65133428e+06, 3.72768008e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 4.03640386e+06, 3.97969930e+06, 3.93887726e+06, 3.78645159e+06, 3.68989075e+06, 3.61069132e+06, 3.50445927e+06, 3.38738951e+06, 3.28886923e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 4.29757580e+06, 3.12853612e+06, ], }), ("nof_tree_events", 7540000), ("nof_db_events", 8940000), ("fsize_local", 70994886301), # 70.99GB, avg file size 4.44GB ("fsize_db", 565843250989), # 565.84GB, avg file size 2.54GB ("use_it", False), ("xsection", 0.5868), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/TTZToQQ_ext1"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/TTZToLL_M-1to10_TuneCP5_13TeV-amcatnlo-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v2/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "TTZ"), ("process_name_specific", "TTZToLL_M-1to10"), ("nof_files", 1), ("nof_db_files", 6), ("nof_events", { 'Count' : [ 245978, ], 'CountWeighted' : [ 1.29108500e+05, 1.29055047e+05, 1.29099898e+05, ], 'CountWeightedLHEWeightScale' : [ 1.45729125e+05, 1.43012609e+05, 1.41029766e+05, 1.32314328e+05, 1.29114242e+05, 1.26487219e+05, 1.19505047e+05, 1.16140422e+05, 1.13271969e+05, ], 'CountWeightedLHEEnvelope' : [ 1.54982688e+05, 1.07388938e+05, ], 'CountWeightedFull' : [ 1.31815635e+04, 1.31749111e+04, 1.31837109e+04, ], 'CountWeightedFullLHEWeightScale' : [ 1.48798594e+04, 1.46024727e+04, 1.44000693e+04, 1.35101162e+04, 1.31822285e+04, 1.29150703e+04, 1.22023018e+04, 1.18585928e+04, 1.15657900e+04, ], 'CountWeightedFullLHEEnvelope' : [ 1.58247207e+04, 1.09650752e+04, ], 'CountWeightedL1PrefireNom' : [ 1.23571703e+05, 1.23502172e+05, 1.23593555e+05, ], 'CountWeightedL1Prefire' : [ 1.23571703e+05, 1.22247422e+05, 1.24870461e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 1.39297641e+05, 1.36766719e+05, 1.34935375e+05, 1.26580359e+05, 1.23577336e+05, 1.21122812e+05, 1.14392727e+05, 1.11229891e+05, 1.08533906e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 1.48188000e+05, 1.02874117e+05, ], 'CountWeightedFullL1PrefireNom' : [ 1.26167910e+04, 1.26091934e+04, 1.26206357e+04, ], 'CountWeightedFullL1Prefire' : [ 1.26167910e+04, 1.24816582e+04, 1.27494229e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 1.42232500e+04, 1.39647344e+04, 1.37777207e+04, 1.29246006e+04, 1.26174395e+04, 1.23673770e+04, 1.16802383e+04, 1.13572852e+04, 1.10818945e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 1.51309365e+04, 1.05040391e+04, ], }), ("nof_tree_events", 245978), ("nof_db_events", 245978), ("fsize_local", 1999669248), # 2.00GB, avg file size 2.00GB ("fsize_db", 14747523608), # 14.75GB, avg file size 2.46GB ("use_it", True), ("xsection", 0.0822), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/TTZToLL_M-1to10"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/ttZJets_TuneCP5_13TeV_madgraphMLM_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "TTZ"), ("process_name_specific", "TTZJets_LO"), ("nof_files", 20), ("nof_db_files", 197), ("nof_events", { 'Count' : [ 9698473, ], 'CountWeighted' : [ 9.67752245e+06, 9.67995756e+06, 9.67875838e+06, ], 'CountWeightedLHEWeightScale' : [ 1.27989559e+07, 1.17066557e+07, 1.07665669e+07, 1.05804962e+07, 9.67749638e+06, 8.90283969e+06, 8.89902638e+06, 8.14131098e+06, 7.48963941e+06, ], 'CountWeightedLHEEnvelope' : [ 1.28141164e+07, 7.48267722e+06, ], 'CountWeightedFull' : [ 9.67752245e+06, 9.67995756e+06, 9.67875838e+06, ], 'CountWeightedFullLHEWeightScale' : [ 1.27989559e+07, 1.17066557e+07, 1.07665669e+07, 1.05804962e+07, 9.67749638e+06, 8.90283969e+06, 8.89902638e+06, 8.14131098e+06, 7.48963941e+06, ], 'CountWeightedFullLHEEnvelope' : [ 1.28141164e+07, 7.48267722e+06, ], 'CountWeightedL1PrefireNom' : [ 9.34368909e+06, 9.34479231e+06, 9.34495573e+06, ], 'CountWeightedL1Prefire' : [ 9.34368909e+06, 9.26223111e+06, 9.42340202e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 1.23455910e+07, 1.13012571e+07, 1.04010671e+07, 1.02066641e+07, 9.34362333e+06, 8.60134589e+06, 8.58527333e+06, 7.86073947e+06, 7.23650812e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 1.23605202e+07, 7.22962959e+06, ], 'CountWeightedFullL1PrefireNom' : [ 9.34368909e+06, 9.34479231e+06, 9.34495573e+06, ], 'CountWeightedFullL1Prefire' : [ 9.34368909e+06, 9.26223111e+06, 9.42340202e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 1.23455910e+07, 1.13012571e+07, 1.04010671e+07, 1.02066641e+07, 9.34362333e+06, 8.60134589e+06, 8.58527333e+06, 7.86073947e+06, 7.23650812e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 1.23605202e+07, 7.22962959e+06, ], }), ("nof_tree_events", 9698473), ("nof_db_events", 9698473), ("fsize_local", 82112381771), # 82.11GB, avg file size 4.11GB ("fsize_db", 591860866458), # 591.86GB, avg file size 3.00GB ("use_it", False), ("xsection", 0.8854), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/TTZJets_LO"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/ttZJets_TuneCP5_13TeV_madgraphMLM_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14_ext1-v3/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "TTZ"), ("process_name_specific", "TTZJets_LO_ext1"), ("nof_files", 18), ("nof_db_files", 199), ("nof_events", { 'Count' : [ 8536618, ], 'CountWeighted' : [ 8.51896468e+06, 8.52057816e+06, 8.51942353e+06, ], 'CountWeightedLHEWeightScale' : [ 1.12645338e+07, 1.03039805e+07, 9.47700499e+06, 9.31213241e+06, 8.51896468e+06, 7.83658495e+06, 7.83229904e+06, 7.16588616e+06, 6.59265232e+06, ], 'CountWeightedLHEEnvelope' : [ 1.12780148e+07, 6.58642502e+06, ], 'CountWeightedFull' : [ 8.51896468e+06, 8.52057816e+06, 8.51942353e+06, ], 'CountWeightedFullLHEWeightScale' : [ 1.12645338e+07, 1.03039805e+07, 9.47700499e+06, 9.31213241e+06, 8.51896468e+06, 7.83658495e+06, 7.83229904e+06, 7.16588616e+06, 6.59265232e+06, ], 'CountWeightedFullLHEEnvelope' : [ 1.12780148e+07, 6.58642502e+06, ], 'CountWeightedL1PrefireNom' : [ 8.22479831e+06, 8.22534893e+06, 8.22546021e+06, ], 'CountWeightedL1Prefire' : [ 8.22479831e+06, 8.15303316e+06, 8.29492324e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 1.08656542e+07, 9.94725575e+06, 9.15539354e+06, 8.98322105e+06, 8.22479831e+06, 7.57129445e+06, 7.55624429e+06, 6.91902220e+06, 6.36992246e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 1.08789385e+07, 6.36376807e+06, ], 'CountWeightedFullL1PrefireNom' : [ 8.22479831e+06, 8.22534893e+06, 8.22546021e+06, ], 'CountWeightedFullL1Prefire' : [ 8.22479831e+06, 8.15303316e+06, 8.29492324e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 1.08656542e+07, 9.94725575e+06, 9.15539354e+06, 8.98322105e+06, 8.22479831e+06, 7.57129445e+06, 7.55624429e+06, 6.91902220e+06, 6.36992246e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 1.08789385e+07, 6.36376807e+06, ], }), ("nof_tree_events", 8536618), ("nof_db_events", 8536618), ("fsize_local", 72269580989), # 72.27GB, avg file size 4.01GB ("fsize_db", 522473916483), # 522.47GB, avg file size 2.63GB ("use_it", False), ("xsection", 0.8854), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/TTZJets_LO_ext1"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/TTWJetsToLNu_TuneCP5_13TeV-amcatnloFXFX-madspin-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v2/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "TTW"), ("process_name_specific", "TTWJetsToLNu"), ("nof_files", 21), ("nof_db_files", 95), ("nof_events", { 'Count' : [ 4994543, ], 'CountWeighted' : [ 2.71506754e+06, 2.71494798e+06, 2.71537745e+06, ], 'CountWeightedLHEWeightScale' : [ 3.04502525e+06, 3.00280797e+06, 2.97598268e+06, 2.77587296e+06, 2.71500473e+06, 2.66735939e+06, 2.49234072e+06, 2.42535806e+06, 2.36999309e+06, ], 'CountWeightedLHEEnvelope' : [ 3.24811608e+06, 2.23508500e+06, ], 'CountWeightedFull' : [ 1.71046230e+06, 1.71042663e+06, 1.71066085e+06, ], 'CountWeightedFullLHEWeightScale' : [ 1.91840850e+06, 1.89181039e+06, 1.87491089e+06, 1.74884045e+06, 1.71043929e+06, 1.68047552e+06, 1.57021062e+06, 1.52800865e+06, 1.49312814e+06, ], 'CountWeightedFullLHEEnvelope' : [ 2.04635823e+06, 1.40813461e+06, ], 'CountWeightedL1PrefireNom' : [ 2.58909858e+06, 2.58884431e+06, 2.58958147e+06, ], 'CountWeightedL1Prefire' : [ 2.58909858e+06, 2.55939948e+06, 2.61842578e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 2.89957702e+06, 2.86080605e+06, 2.83657415e+06, 2.64543211e+06, 2.58904895e+06, 2.54512823e+06, 2.37677017e+06, 2.31460571e+06, 2.26325072e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 3.09166455e+06, 2.13551744e+06, ], 'CountWeightedFullL1PrefireNom' : [ 1.63114056e+06, 1.63099146e+06, 1.63143607e+06, ], 'CountWeightedFullL1Prefire' : [ 1.63114056e+06, 1.61242977e+06, 1.64961884e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 1.82677449e+06, 1.80234859e+06, 1.78708213e+06, 1.66665948e+06, 1.63111742e+06, 1.60346792e+06, 1.49740003e+06, 1.45823442e+06, 1.42587992e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 1.94779230e+06, 1.34540586e+06, ], }), ("nof_tree_events", 4994543), ("nof_db_events", 4994543), ("fsize_local", 43367116602), # 43.37GB, avg file size 2.07GB ("fsize_db", 304322832014), # 304.32GB, avg file size 3.20GB ("use_it", True), ("xsection", 0.196), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/TTWJetsToLNu"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/TTWJetsToLNu_TuneCP5_PSweights_13TeV-amcatnloFXFX-madspin-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_new_pmx_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "TTW"), ("process_name_specific", "TTWJetsToLNu_PSweights"), ("nof_files", 10), ("nof_db_files", 122), ("nof_events", { 'Count' : [ 4908905, ], 'CountWeighted' : [ 2.68734703e+06, 2.68695086e+06, 2.68682653e+06, ], 'CountWeightedLHEWeightScale' : [ 3.01552822e+06, 2.97334736e+06, 2.94617395e+06, 2.74771055e+06, 2.68732081e+06, 2.63972433e+06, 2.46665986e+06, 2.40015225e+06, 2.34528838e+06, ], 'CountWeightedLHEEnvelope' : [ 3.21472834e+06, 2.21321302e+06, ], 'CountWeightedPSWeight' : [ 2.71950639e+06, 2.68929064e+06, 3.88952000e+06, 2.64651697e+06, 2.67856492e+06, 1.59460177e+06, ], 'CountWeightedPSWeightOriginalXWGTUP' : [ 3.12178184e+06, 3.09732369e+06, 4.53073788e+06, 3.05588012e+06, 3.08425816e+06, 1.79345325e+06, ], 'CountWeightedFull' : [ 1.69060142e+06, 1.69089347e+06, 1.69058048e+06, ], 'CountWeightedFullLHEWeightScale' : [ 1.89735909e+06, 1.87082731e+06, 1.85372823e+06, 1.72885950e+06, 1.69059062e+06, 1.66091706e+06, 1.55201906e+06, 1.51016984e+06, 1.47565332e+06, ], 'CountWeightedFullLHEEnvelope' : [ 2.02270380e+06, 1.39254650e+06, ], 'CountWeightedFullPSWeight' : [ 1.71107755e+06, 1.69208812e+06, 2.44728256e+06, 1.66514795e+06, 1.68536394e+06, 1.00329821e+06, ], 'CountWeightedFullPSWeightOriginalXWGTUP' : [ 1.96418472e+06, 1.94872423e+06, 2.85057022e+06, 1.92271939e+06, 1.94050586e+06, 1.12841762e+06, ], 'CountWeightedL1PrefireNom' : [ 2.56169773e+06, 2.56142622e+06, 2.56141633e+06, ], 'CountWeightedL1Prefire' : [ 2.56169773e+06, 2.53214892e+06, 2.59088273e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 2.87051645e+06, 2.83182269e+06, 2.80728342e+06, 2.61761956e+06, 2.56166634e+06, 2.51788420e+06, 2.35135245e+06, 2.28967116e+06, 2.23881731e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 3.05894656e+06, 2.11374962e+06, ], 'CountWeightedPSWeightL1PrefireNom' : [ 2.59310906e+06, 2.56230964e+06, 3.70723088e+06, 2.52200784e+06, 2.55552350e+06, 1.52126023e+06, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNom' : [ 2.96710820e+06, 2.94137441e+06, 4.30376588e+06, 2.90248061e+06, 2.93282916e+06, 1.70565712e+06, ], 'CountWeightedFullL1PrefireNom' : [ 1.61168666e+06, 1.61180384e+06, 1.61166464e+06, ], 'CountWeightedFullL1Prefire' : [ 1.61168666e+06, 1.59310942e+06, 1.63005067e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 1.80612155e+06, 1.78178102e+06, 1.76633886e+06, 1.64700633e+06, 1.61166997e+06, 1.58425564e+06, 1.47946770e+06, 1.44065523e+06, 1.40866330e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 1.92468600e+06, 1.32996759e+06, ], 'CountWeightedFullPSWeightL1PrefireNom' : [ 1.63155652e+06, 1.61219595e+06, 2.33258670e+06, 1.58681695e+06, 1.60794473e+06, 9.57157977e+05, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNom' : [ 1.86687481e+06, 1.85062597e+06, 2.70780003e+06, 1.82621019e+06, 1.84525472e+06, 1.07318424e+06, ], }), ("nof_tree_events", 4908905), ("nof_db_events", 4908905), ("fsize_local", 42207931375), # 42.21GB, avg file size 4.22GB ("fsize_db", 301017438722), # 301.02GB, avg file size 2.47GB ("use_it", True), ("xsection", 0.196), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 4), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/TTWJetsToLNu_PSweights"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/TTWJetsToQQ_TuneCP5_13TeV-amcatnloFXFX-madspin-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v2/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "TTW"), ("process_name_specific", "TTWJetsToQQ"), ("nof_files", 1), ("nof_db_files", 18), ("nof_events", { 'Count' : [ 314161, ], 'CountWeighted' : [ 1.71382922e+05, 1.71413062e+05, 1.71358609e+05, ], 'CountWeightedLHEWeightScale' : [ 1.92684125e+05, 1.89772906e+05, 1.87838953e+05, 1.75397531e+05, 1.71382938e+05, 1.68228031e+05, 1.57346359e+05, 1.52989375e+05, 1.49396750e+05, ], 'CountWeightedLHEEnvelope' : [ 2.05297344e+05, 1.40997188e+05, ], 'CountWeightedFull' : [ 2.17458172e+05, 2.17531406e+05, 2.17420531e+05, ], 'CountWeightedFullLHEWeightScale' : [ 2.44505688e+05, 2.40811766e+05, 2.38357250e+05, 2.22569297e+05, 2.17458594e+05, 2.13470891e+05, 1.99663953e+05, 1.94134562e+05, 1.89575453e+05, ], 'CountWeightedFullLHEEnvelope' : [ 2.60511688e+05, 1.78917109e+05, ], 'CountWeightedL1PrefireNom' : [ 1.62832672e+05, 1.62854328e+05, 1.62819469e+05, ], 'CountWeightedL1Prefire' : [ 1.62832672e+05, 1.60814172e+05, 1.64822922e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 1.82769578e+05, 1.80106969e+05, 1.78368938e+05, 1.66526406e+05, 1.62831078e+05, 1.59945031e+05, 1.49497266e+05, 1.45482406e+05, 1.42173828e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 1.94671625e+05, 1.34233266e+05, ], 'CountWeightedFullL1PrefireNom' : [ 2.06618672e+05, 2.06664594e+05, 2.06598391e+05, ], 'CountWeightedFullL1Prefire' : [ 2.06618672e+05, 2.04057562e+05, 2.09143328e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 2.31925094e+05, 2.28545312e+05, 2.26339688e+05, 2.11312609e+05, 2.06616906e+05, 2.02960938e+05, 1.89704266e+05, 1.84608562e+05, 1.80410156e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 2.47027516e+05, 1.70333938e+05, ], }), ("nof_tree_events", 314161), ("nof_db_events", 811306), ("fsize_local", 2872605670), # 2.87GB, avg file size 2.87GB ("fsize_db", 50441060315), # 50.44GB, avg file size 2.80GB ("use_it", False), ("xsection", 0.4049), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/TTWJetsToQQ"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/ttWJets_TuneCP5_13TeV_madgraphMLM_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "TTW"), ("process_name_specific", "TTWJets_LO"), ("nof_files", 13), ("nof_db_files", 132), ("nof_events", { 'Count' : [ 6415920, ], 'CountWeighted' : [ 6.38841622e+06, 6.38735566e+06, 6.38857112e+06, ], 'CountWeightedLHEWeightScale' : [ 8.25465325e+06, 7.84321925e+06, 7.46706641e+06, 6.71345703e+06, 6.38839272e+06, 6.08913359e+06, 5.57000259e+06, 5.30646438e+06, 5.06339628e+06, ], 'CountWeightedLHEEnvelope' : [ 8.27478944e+06, 5.05616675e+06, ], 'CountWeightedFull' : [ 6.38841622e+06, 6.38735566e+06, 6.38857112e+06, ], 'CountWeightedFullLHEWeightScale' : [ 8.25465325e+06, 7.84321925e+06, 7.46706641e+06, 6.71345703e+06, 6.38839272e+06, 6.08913359e+06, 5.57000259e+06, 5.30646438e+06, 5.06339628e+06, ], 'CountWeightedFullLHEEnvelope' : [ 8.27478944e+06, 5.05616675e+06, ], 'CountWeightedL1PrefireNom' : [ 6.09238138e+06, 6.09166222e+06, 6.09263941e+06, ], 'CountWeightedL1Prefire' : [ 6.09238138e+06, 6.02230434e+06, 6.16134922e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 7.85535881e+06, 7.47551012e+06, 7.12648725e+06, 6.39284431e+06, 6.09233266e+06, 5.81464044e+06, 5.30688231e+06, 5.06325838e+06, 4.83742534e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 7.87522244e+06, 4.83025612e+06, ], 'CountWeightedFullL1PrefireNom' : [ 6.09238138e+06, 6.09166222e+06, 6.09263941e+06, ], 'CountWeightedFullL1Prefire' : [ 6.09238138e+06, 6.02230434e+06, 6.16134922e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 7.85535881e+06, 7.47551012e+06, 7.12648725e+06, 6.39284431e+06, 6.09233266e+06, 5.81464044e+06, 5.30688231e+06, 5.06325838e+06, 4.83742534e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 7.87522244e+06, 4.83025612e+06, ], }), ("nof_tree_events", 6415920), ("nof_db_events", 6415920), ("fsize_local", 54775501393), # 54.78GB, avg file size 4.21GB ("fsize_db", 393195148836), # 393.20GB, avg file size 2.98GB ("use_it", False), ("xsection", 0.6008), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/TTWJets_LO"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/ttWJets_TuneCP5_13TeV_madgraphMLM_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14_ext1-v2/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "TTW"), ("process_name_specific", "TTWJets_LO_ext1"), ("nof_files", 20), ("nof_db_files", 280), ("nof_events", { 'Count' : [ 9425384, ], 'CountWeighted' : [ 9.38400534e+06, 9.38539247e+06, 9.38338534e+06, ], 'CountWeightedLHEWeightScale' : [ 1.21281340e+07, 1.15226889e+07, 1.09692358e+07, 9.86307933e+06, 9.38400534e+06, 8.94447413e+06, 8.18269075e+06, 7.79489804e+06, 7.43736418e+06, ], 'CountWeightedLHEEnvelope' : [ 1.21576358e+07, 7.42682540e+06, ], 'CountWeightedFull' : [ 9.38400534e+06, 9.38539247e+06, 9.38338534e+06, ], 'CountWeightedFullLHEWeightScale' : [ 1.21281340e+07, 1.15226889e+07, 1.09692358e+07, 9.86307933e+06, 9.38400534e+06, 8.94447413e+06, 8.18269075e+06, 7.79489804e+06, 7.43736418e+06, ], 'CountWeightedFullLHEEnvelope' : [ 1.21576358e+07, 7.42682540e+06, ], 'CountWeightedL1PrefireNom' : [ 8.94941704e+06, 8.94960443e+06, 8.94943447e+06, ], 'CountWeightedL1Prefire' : [ 8.94941704e+06, 8.84662478e+06, 9.05062283e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 1.15412670e+07, 1.09822545e+07, 1.04687691e+07, 9.39184715e+06, 8.94941704e+06, 8.54112919e+06, 7.79597268e+06, 7.43748928e+06, 7.10531100e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 1.15703602e+07, 7.09486538e+06, ], 'CountWeightedFullL1PrefireNom' : [ 8.94941704e+06, 8.94960443e+06, 8.94943447e+06, ], 'CountWeightedFullL1Prefire' : [ 8.94941704e+06, 8.84662478e+06, 9.05062283e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 1.15412670e+07, 1.09822545e+07, 1.04687691e+07, 9.39184715e+06, 8.94941704e+06, 8.54112919e+06, 7.79597268e+06, 7.43748928e+06, 7.10531100e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 1.15703602e+07, 7.09486538e+06, ], }), ("nof_tree_events", 9425384), ("nof_db_events", 9425384), ("fsize_local", 80472066121), # 80.47GB, avg file size 4.02GB ("fsize_db", 577708152029), # 577.71GB, avg file size 2.06GB ("use_it", False), ("xsection", 0.6008), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/TTWJets_LO_ext1"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/TTWW_TuneCP5_13TeV-madgraph-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_new_pmx_94X_mc2017_realistic_v14_ext1-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "TTWW"), ("process_name_specific", "TTWW_ext1"), ("nof_files", 1), ("nof_db_files", 5), ("nof_events", { 'Count' : [ 200000, ], 'CountWeighted' : [ 1.99050703e+05, 1.99022750e+05, 1.99018047e+05, ], 'CountWeightedLHEWeightScale' : [ 2.60798234e+05, 2.38781234e+05, 2.20023766e+05, 2.17387359e+05, 1.99045109e+05, 1.83375562e+05, 1.84102703e+05, 1.68540281e+05, 1.55280828e+05, ], 'CountWeightedLHEEnvelope' : [ 2.60909719e+05, 1.55227734e+05, ], 'CountWeightedPSWeight' : [ 1.99036050e+06, 1.99036050e+06, 1.99036050e+06, 1.99036050e+06, 1.99036050e+06, 1.99036050e+06, ], 'CountWeightedPSWeightOriginalXWGTUP' : [ 2.00078547e+05, 2.00139219e+05, 2.97796094e+05, 1.99921234e+05, 1.99107828e+05, 1.12086875e+05, ], 'CountWeightedFull' : [ 1.98853125e+05, 1.98825375e+05, 1.98823922e+05, ], 'CountWeightedFullLHEWeightScale' : [ 2.60544125e+05, 2.38546969e+05, 2.19806844e+05, 2.17175312e+05, 1.98847688e+05, 1.83194859e+05, 1.83922984e+05, 1.68374562e+05, 1.55127547e+05, ], 'CountWeightedFullLHEEnvelope' : [ 2.60653406e+05, 1.55076344e+05, ], 'CountWeightedFullPSWeight' : [ 1.98840825e+06, 1.98840825e+06, 1.98840825e+06, 1.98840825e+06, 1.98840825e+06, 1.98840825e+06, ], 'CountWeightedFullPSWeightOriginalXWGTUP' : [ 1.99878734e+05, 1.99931766e+05, 2.97489094e+05, 1.99720641e+05, 1.98903656e+05, 1.11974945e+05, ], 'CountWeightedL1PrefireNom' : [ 1.90389469e+05, 1.90372078e+05, 1.90376438e+05, ], 'CountWeightedL1Prefire' : [ 1.90389469e+05, 1.88318828e+05, 1.92420594e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 2.49264859e+05, 2.28410016e+05, 2.10618234e+05, 2.07771562e+05, 1.90384984e+05, 1.75534625e+05, 1.75957250e+05, 1.61215484e+05, 1.48640141e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 2.49374938e+05, 1.48587406e+05, ], 'CountWeightedPSWeightL1PrefireNom' : [ 1.90382838e+06, 1.90382838e+06, 1.90382838e+06, 1.90382838e+06, 1.90382838e+06, 1.90382838e+06, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNom' : [ 1.91361781e+05, 1.91216906e+05, 2.84581531e+05, 1.90886078e+05, 1.90365953e+05, 1.07146961e+05, ], 'CountWeightedFullL1PrefireNom' : [ 1.90201906e+05, 1.90184734e+05, 1.90190469e+05, ], 'CountWeightedFullL1Prefire' : [ 1.90201906e+05, 1.88133438e+05, 1.92230891e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 2.49021859e+05, 2.28186516e+05, 2.10411172e+05, 2.07568875e+05, 1.90197469e+05, 1.75361969e+05, 1.75785469e+05, 1.61057453e+05, 1.48494062e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 2.49130359e+05, 1.48442703e+05, ], 'CountWeightedFullPSWeightL1PrefireNom' : [ 1.90196425e+06, 1.90196425e+06, 1.90196425e+06, 1.90196425e+06, 1.90196425e+06, 1.90196425e+06, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNom' : [ 1.91171594e+05, 1.91021547e+05, 2.84291938e+05, 1.90695500e+05, 1.90172906e+05, 1.07040391e+05, ], }), ("nof_tree_events", 200000), ("nof_db_events", 200000), ("fsize_local", 1986747659), # 1.99GB, avg file size 1.99GB ("fsize_db", 13174218718), # 13.17GB, avg file size 2.63GB ("use_it", True), ("xsection", 0.006981), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 4), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/TTWW_ext1"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/ST_s-channel_4f_leptonDecays_TuneCP5_13TeV-amcatnlo-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v2/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "TT"), ("process_name_specific", "ST_s-channel_4f_leptonDecays"), ("nof_files", 20), ("nof_db_files", 143), ("nof_events", { 'Count' : [ 9883805, ], 'CountWeighted' : [ 6.16750362e+06, 6.16757834e+06, 6.16705241e+06, ], 'CountWeightedLHEWeightScale' : [ 6.28382500e+06, 6.35225869e+06, 6.41215734e+06, 6.09151630e+06, 6.16750362e+06, 6.23164644e+06, 5.93623142e+06, 6.01833841e+06, 6.08605281e+06, ], 'CountWeightedLHEEnvelope' : [ 6.75898788e+06, 5.62665384e+06, ], 'CountWeightedFull' : [ 3.69711271e+07, 3.69653134e+07, 3.69676328e+07, ], 'CountWeightedFullLHEWeightScale' : [ 3.76626732e+07, 3.80728446e+07, 3.84318471e+07, 3.65100306e+07, 3.69711271e+07, 3.73500142e+07, 3.55792680e+07, 3.60715449e+07, 3.64772921e+07, ], 'CountWeightedFullLHEEnvelope' : [ 4.05106724e+07, 3.37239032e+07, ], 'CountWeightedL1PrefireNom' : [ 6.01180189e+06, 6.01173322e+06, 6.01162705e+06, ], 'CountWeightedL1Prefire' : [ 6.01180189e+06, 5.97280825e+06, 6.04974173e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 6.12356089e+06, 6.19137938e+06, 6.25059047e+06, 5.93652220e+06, 6.01180189e+06, 6.07533983e+06, 5.78548809e+06, 5.86688625e+06, 5.93397623e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 6.58524194e+06, 5.48725639e+06, ], 'CountWeightedFullL1PrefireNom' : [ 3.60356756e+07, 3.60314711e+07, 3.60342866e+07, ], 'CountWeightedFullL1Prefire' : [ 3.60356756e+07, 3.58016178e+07, 3.62632850e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 3.67021232e+07, 3.71086314e+07, 3.74634784e+07, 3.55810341e+07, 3.60356756e+07, 3.64131226e+07, 3.46757239e+07, 3.51637852e+07, 3.55658310e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 3.94693150e+07, 3.28884020e+07, ], }), ("nof_tree_events", 9883805), ("nof_db_events", 9883805), ("fsize_local", 48404052439), # 48.40GB, avg file size 2.42GB ("fsize_db", 456938749955), # 456.94GB, avg file size 3.20GB ("use_it", True), ("xsection", 3.364), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 306000 - 306102 -> NNPDF31_nnlo_hessian_pdfas PDF set, expecting 103 weights (counted 103 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Apr19_woPresel_nom_all_hh_multilepton/ntuples/ST_s-channel_4f_leptonDecays"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/ST_s-channel_4f_leptonDecays_TuneCP5_PSweights_13TeV-amcatnlo-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_new_pmx_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "TT"), ("process_name_specific", "ST_s-channel_4f_leptonDecays_PSweights"), ("nof_files", 20), ("nof_db_files", 147), ("nof_events", { 'Count' : [ 9914948, ], 'CountWeighted' : [ 6.18592606e+06, 6.18582800e+06, 6.18399462e+06, ], 'CountWeightedLHEWeightScale' : [ 6.30241416e+06, 6.37067197e+06, 6.43036653e+06, 6.10931328e+06, 6.18592606e+06, 6.24918094e+06, 5.95335369e+06, 6.03541438e+06, 6.10309794e+06, ], 'CountWeightedLHEEnvelope' : [ 6.77844503e+06, 5.64272991e+06, ], 'CountWeightedPSWeight' : [ 6.18613941e+06, 6.18604547e+06, 8.47552056e+06, 6.18372922e+06, 6.17950681e+06, 4.10449347e+06, ], 'CountWeightedPSWeightOriginalXWGTUP' : [ 5.94295755e+07, 5.89908012e+07, 7.63484778e+07, 5.94095050e+07, 5.45414425e+07, 3.92649475e+07, ], 'CountWeightedFull' : [ 3.70497469e+07, 3.70522032e+07, 3.70513142e+07, ], 'CountWeightedFullLHEWeightScale' : [ 3.77551109e+07, 3.81640738e+07, 3.85214919e+07, 3.65982570e+07, 3.70497469e+07, 3.74362618e+07, 3.56639092e+07, 3.61557848e+07, 3.65609658e+07, ], 'CountWeightedFullLHEEnvelope' : [ 4.06068704e+07, 3.38033854e+07, ], 'CountWeightedFullPSWeight' : [ 3.70581320e+07, 3.70578309e+07, 5.07730810e+07, 3.70435576e+07, 3.70187725e+07, 2.45880442e+07, ], 'CountWeightedFullPSWeightOriginalXWGTUP' : [ 3.56012375e+08, 3.53378539e+08, 4.57359828e+08, 3.55890446e+08, 3.26731945e+08, 2.35216857e+08, ], 'CountWeightedL1PrefireNom' : [ 6.03007041e+06, 6.02970650e+06, 6.02907638e+06, ], 'CountWeightedL1Prefire' : [ 6.03007041e+06, 5.99103747e+06, 6.06799422e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 6.14224775e+06, 6.20990144e+06, 6.26892172e+06, 5.95441666e+06, 6.03007041e+06, 6.09300522e+06, 5.80272594e+06, 5.88410172e+06, 5.95115784e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 6.60484838e+06, 5.50343447e+06, ], 'CountWeightedPSWeightL1PrefireNom' : [ 6.03137822e+06, 6.02859150e+06, 8.26207119e+06, 6.02715706e+06, 6.02704172e+06, 4.00245022e+06, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNom' : [ 5.79382938e+07, 5.74857620e+07, 7.44158152e+07, 5.78989422e+07, 5.31901885e+07, 3.82864575e+07, ], 'CountWeightedFullL1PrefireNom' : [ 3.61187425e+07, 3.61187860e+07, 3.61212982e+07, ], 'CountWeightedFullL1Prefire' : [ 3.61187425e+07, 3.58853236e+07, 3.63458675e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 3.67955935e+07, 3.72009986e+07, 3.75543586e+07, 3.56703709e+07, 3.61187425e+07, 3.65006648e+07, 3.47615961e+07, 3.52492762e+07, 3.56508064e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 3.95669338e+07, 3.29688714e+07, ], 'CountWeightedFullPSWeightL1PrefireNom' : [ 3.61311050e+07, 3.61146138e+07, 4.94944548e+07, 3.61057091e+07, 3.61054760e+07, 2.39767988e+07, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNom' : [ 3.47079986e+08, 3.44363664e+08, 4.45783342e+08, 3.46842062e+08, 3.18636320e+08, 2.29355696e+08, ], }), ("nof_tree_events", 9914948), ("nof_db_events", 9914948), ("fsize_local", 48623034705), # 48.62GB, avg file size 2.43GB ("fsize_db", 458781982765), # 458.78GB, avg file size 3.12GB ("use_it", True), ("xsection", 3.364), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 4), ("LHE_set", "LHA IDs 306000 - 306102 -> NNPDF31_nnlo_hessian_pdfas PDF set, expecting 103 weights (counted 103 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Apr19_woPresel_nom_all_hh_multilepton/ntuples/ST_s-channel_4f_leptonDecays_PSweights"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/ST_t-channel_antitop_4f_inclusiveDecays_TuneCP5_13TeV-powhegV2-madspin-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v2/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "TT"), ("process_name_specific", "ST_t-channel_antitop_4f_inclusiveDecays"), ("nof_files", 8), ("nof_db_files", 69), ("nof_events", { 'Count' : [ 3675910, ], 'CountWeighted' : [ 3.67592347e+06, 3.67563988e+06, 3.67545494e+06, ], 'CountWeightedLHEWeightScale' : [ 3.96214108e+06, 3.94085828e+06, 3.95617098e+06, 3.69484400e+06, 3.67581041e+06, 3.67695866e+06, 3.45363445e+06, 3.43328692e+06, 3.42295822e+06, ], 'CountWeightedLHEEnvelope' : [ 4.20152522e+06, 3.19988584e+06, ], 'CountWeightedFull' : [ 3.67592347e+06, 3.67563988e+06, 3.67545494e+06, ], 'CountWeightedFullLHEWeightScale' : [ 3.96214108e+06, 3.94085828e+06, 3.95617098e+06, 3.69484400e+06, 3.67581041e+06, 3.67695866e+06, 3.45363445e+06, 3.43328692e+06, 3.42295822e+06, ], 'CountWeightedFullLHEEnvelope' : [ 4.20152522e+06, 3.19988584e+06, ], 'CountWeightedL1PrefireNom' : [ 3.58239575e+06, 3.58204477e+06, 3.58223197e+06, ], 'CountWeightedL1Prefire' : [ 3.58239575e+06, 3.55880400e+06, 3.60506230e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 3.85995950e+06, 3.84043344e+06, 3.85630338e+06, 3.59941703e+06, 3.58228331e+06, 3.58445844e+06, 3.36423506e+06, 3.34593538e+06, 3.33705227e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 4.09332328e+06, 3.11956669e+06, ], 'CountWeightedFullL1PrefireNom' : [ 3.58239575e+06, 3.58204477e+06, 3.58223197e+06, ], 'CountWeightedFullL1Prefire' : [ 3.58239575e+06, 3.55880400e+06, 3.60506230e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 3.85995950e+06, 3.84043344e+06, 3.85630338e+06, 3.59941703e+06, 3.58228331e+06, 3.58445844e+06, 3.36423506e+06, 3.34593538e+06, 3.33705227e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 4.09332328e+06, 3.11956669e+06, ], }), ("nof_tree_events", 3675910), ("nof_db_events", 3675910), ("fsize_local", 19148201390), # 19.15GB, avg file size 2.39GB ("fsize_db", 173657703453), # 173.66GB, avg file size 2.52GB ("use_it", True), ("xsection", 80.95), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 306000 - 306102 -> NNPDF31_nnlo_hessian_pdfas PDF set, expecting 103 weights (counted 103 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Apr19_woPresel_nom_all_hh_multilepton/ntuples/ST_t-channel_antitop_4f_inclusiveDecays"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/ST_t-channel_antitop_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "TT"), ("process_name_specific", "ST_t-channel_antitop_4f_inclusiveDecays_PSweights"), ("nof_files", 130), ("nof_db_files", 1288), ("nof_events", { 'Count' : [ 64818800, ], 'CountWeighted' : [ 6.48290443e+07, 6.48190505e+07, 6.48138203e+07, ], 'CountWeightedLHEWeightScale' : [ 6.98589236e+07, 6.94805517e+07, 6.97496969e+07, 6.51536886e+07, 6.48272106e+07, 6.48371642e+07, 6.09059083e+07, 6.05465516e+07, 6.03642232e+07, ], 'CountWeightedLHEEnvelope' : [ 7.40890620e+07, 5.64205011e+07, ], 'CountWeightedPSWeight' : [ 6.48206157e+07, 6.48204395e+07, 8.96944872e+07, 6.48184357e+07, 6.47570170e+07, 4.18126641e+07, ], 'CountWeightedPSWeightOriginalXWGTUP' : [ 6.48206132e+07, 6.48204359e+07, 8.96944823e+07, 6.48184332e+07, 6.47570135e+07, 4.18126614e+07, ], 'CountWeightedFull' : [ 6.47956406e+07, 6.47854532e+07, 6.47802113e+07, ], 'CountWeightedFullLHEWeightScale' : [ 6.98226235e+07, 6.94444467e+07, 6.97134754e+07, 6.51199125e+07, 6.47938081e+07, 6.48035434e+07, 6.08743601e+07, 6.05151742e+07, 6.03329277e+07, ], 'CountWeightedFullLHEEnvelope' : [ 7.40506158e+07, 5.63912019e+07, ], 'CountWeightedFullPSWeight' : [ 6.47871567e+07, 6.47868908e+07, 8.96474027e+07, 6.47848943e+07, 6.47233156e+07, 4.17914229e+07, ], 'CountWeightedFullPSWeightOriginalXWGTUP' : [ 6.47871544e+07, 6.47868869e+07, 8.96473978e+07, 6.47848912e+07, 6.47233114e+07, 4.17914204e+07, ], 'CountWeightedL1PrefireNom' : [ 6.31711956e+07, 6.31625007e+07, 6.31646543e+07, ], 'CountWeightedL1Prefire' : [ 6.31711956e+07, 6.27546128e+07, 6.35722003e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 6.80537512e+07, 6.77064128e+07, 6.79850427e+07, 6.34672691e+07, 6.31693734e+07, 6.32018774e+07, 5.93253959e+07, 5.90020112e+07, 5.88450181e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 7.21761452e+07, 5.50013881e+07, ], 'CountWeightedPSWeightL1PrefireNom' : [ 6.31684738e+07, 6.31471928e+07, 8.73872515e+07, 6.31621190e+07, 6.31371727e+07, 4.07719146e+07, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNom' : [ 6.31684708e+07, 6.31471892e+07, 8.73872465e+07, 6.31621163e+07, 6.31371688e+07, 4.07719120e+07, ], 'CountWeightedFullL1PrefireNom' : [ 6.31386341e+07, 6.31298021e+07, 6.31319871e+07, ], 'CountWeightedFullL1Prefire' : [ 6.31386341e+07, 6.27222734e+07, 6.35394032e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 6.80184765e+07, 6.76713184e+07, 6.79498230e+07, 6.34344456e+07, 6.31368126e+07, 6.31691854e+07, 5.92947399e+07, 5.89715010e+07, 5.88145780e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 7.21387852e+07, 5.49728923e+07, ], 'CountWeightedFullPSWeightL1PrefireNom' : [ 6.31359343e+07, 6.31145789e+07, 8.73414808e+07, 6.31295024e+07, 6.31043858e+07, 4.07512486e+07, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNom' : [ 6.31359311e+07, 6.31145758e+07, 8.73414769e+07, 6.31294997e+07, 6.31043822e+07, 4.07512466e+07, ], }), ("nof_tree_events", 64818800), ("nof_db_events", 64818800), ("fsize_local", 338572487817), # 338.57GB, avg file size 2.60GB ("fsize_db", 3064755155948), # 3.06TB, avg file size 2.38GB ("use_it", True), ("xsection", 80.95), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 4), ("LHE_set", "LHA IDs 306000 - 306102 -> NNPDF31_nnlo_hessian_pdfas PDF set, expecting 103 weights (counted 103 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Apr19_woPresel_nom_all_hh_multilepton/ntuples/ST_t-channel_antitop_4f_inclusiveDecays_PSweights"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/ST_t-channel_top_4f_inclusiveDecays_TuneCP5_13TeV-powhegV2-madspin-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_new_pmx_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "TT"), ("process_name_specific", "ST_t-channel_top_4f_inclusiveDecays"), ("nof_files", 12), ("nof_db_files", 93), ("nof_events", { 'Count' : [ 5982064, ], 'CountWeighted' : [ 5.98201206e+06, 5.98236784e+06, 5.98134147e+06, ], 'CountWeightedLHEWeightScale' : [ 6.44337412e+06, 6.39862700e+06, 6.41877512e+06, 6.01596669e+06, 5.98115941e+06, 5.98253297e+06, 5.63011278e+06, 5.59637203e+06, 5.58071109e+06, ], 'CountWeightedLHEEnvelope' : [ 6.85920756e+06, 5.18975359e+06, ], 'CountWeightedFull' : [ 5.98201206e+06, 5.98236784e+06, 5.98134147e+06, ], 'CountWeightedFullLHEWeightScale' : [ 6.44337412e+06, 6.39862700e+06, 6.41877512e+06, 6.01596669e+06, 5.98115941e+06, 5.98253297e+06, 5.63011278e+06, 5.59637203e+06, 5.58071109e+06, ], 'CountWeightedFullLHEEnvelope' : [ 6.85920756e+06, 5.18975359e+06, ], 'CountWeightedL1PrefireNom' : [ 5.79149697e+06, 5.79139581e+06, 5.79149225e+06, ], 'CountWeightedL1Prefire' : [ 5.79149697e+06, 5.74502419e+06, 5.83666875e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 6.23677616e+06, 6.19547675e+06, 6.21636847e+06, 5.82222775e+06, 5.79064869e+06, 5.79351372e+06, 5.44791472e+06, 5.41757472e+06, 5.40413956e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 6.63827244e+06, 5.02675731e+06, ], 'CountWeightedFullL1PrefireNom' : [ 5.79149697e+06, 5.79139581e+06, 5.79149225e+06, ], 'CountWeightedFullL1Prefire' : [ 5.79149697e+06, 5.74502419e+06, 5.83666875e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 6.23677616e+06, 6.19547675e+06, 6.21636847e+06, 5.82222775e+06, 5.79064869e+06, 5.79351372e+06, 5.44791472e+06, 5.41757472e+06, 5.40413956e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 6.63827244e+06, 5.02675731e+06, ], }), ("nof_tree_events", 5982064), ("nof_db_events", 5982064), ("fsize_local", 31485687127), # 31.49GB, avg file size 2.62GB ("fsize_db", 281605211173), # 281.61GB, avg file size 3.03GB ("use_it", True), ("xsection", 136.02), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 306000 - 306102 -> NNPDF31_nnlo_hessian_pdfas PDF set, expecting 103 weights (counted 103 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Apr19_woPresel_nom_all_hh_multilepton/ntuples/ST_t-channel_top_4f_inclusiveDecays"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/ST_t-channel_top_4f_InclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "TT"), ("process_name_specific", "ST_t-channel_top_4f_inclusiveDecays_PSweights"), ("nof_files", 246), ("nof_db_files", 2354), ("nof_events", { 'Count' : [ 122688200, ], 'CountWeighted' : [ 1.22686205e+08, 1.22690746e+08, 1.22656751e+08, ], 'CountWeightedLHEWeightScale' : [ 1.32161203e+08, 1.31241864e+08, 1.31652712e+08, 1.23385198e+08, 1.22668538e+08, 1.22696982e+08, 1.15469985e+08, 1.14775171e+08, 1.14451663e+08, ], 'CountWeightedLHEEnvelope' : [ 1.40676817e+08, 1.06446486e+08, ], 'CountWeightedPSWeight' : [ 1.22687668e+08, 1.22688642e+08, 1.70496223e+08, 1.22687543e+08, 1.22559598e+08, 7.85074170e+07, ], 'CountWeightedPSWeightOriginalXWGTUP' : [ 1.22687656e+08, 1.22688633e+08, 1.70496208e+08, 1.22687532e+08, 1.22559589e+08, 7.85074111e+07, ], 'CountWeightedFull' : [ 1.22639772e+08, 1.22643897e+08, 1.22610303e+08, ], 'CountWeightedFullLHEWeightScale' : [ 1.32110527e+08, 1.31191483e+08, 1.31602166e+08, 1.23337983e+08, 1.22622110e+08, 1.22649968e+08, 1.15425874e+08, 1.14731274e+08, 1.14407859e+08, ], 'CountWeightedFullLHEEnvelope' : [ 1.40622960e+08, 1.06405663e+08, ], 'CountWeightedFullPSWeight' : [ 1.22641029e+08, 1.22641690e+08, 1.70430366e+08, 1.22640770e+08, 1.22512549e+08, 7.84778392e+07, ], 'CountWeightedFullPSWeightOriginalXWGTUP' : [ 1.22641018e+08, 1.22641681e+08, 1.70430352e+08, 1.22640760e+08, 1.22512540e+08, 7.84778331e+07, ], 'CountWeightedL1PrefireNom' : [ 1.18782140e+08, 1.18777637e+08, 1.18771371e+08, ], 'CountWeightedL1Prefire' : [ 1.18782140e+08, 1.17828351e+08, 1.19708957e+08, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 1.27925858e+08, 1.27076901e+08, 1.27502912e+08, 1.19413588e+08, 1.18764599e+08, 1.18822938e+08, 1.11735911e+08, 1.11111050e+08, 1.10833462e+08, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 1.36149732e+08, 1.03104349e+08, ], 'CountWeightedPSWeightL1PrefireNom' : [ 1.18786050e+08, 1.18737554e+08, 1.65018915e+08, 1.18778419e+08, 1.18733423e+08, 7.60738573e+07, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNom' : [ 1.18786040e+08, 1.18737546e+08, 1.65018902e+08, 1.18778411e+08, 1.18733414e+08, 7.60738519e+07, ], 'CountWeightedFullL1PrefireNom' : [ 1.18736970e+08, 1.18732237e+08, 1.18726201e+08, ], 'CountWeightedFullL1Prefire' : [ 1.18736970e+08, 1.17783505e+08, 1.19663448e+08, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 1.27876849e+08, 1.27028167e+08, 1.27454007e+08, 1.19367936e+08, 1.18719434e+08, 1.18777440e+08, 1.11693265e+08, 1.11068585e+08, 1.10791077e+08, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 1.36097658e+08, 1.03064847e+08, ], 'CountWeightedFullPSWeightL1PrefireNom' : [ 1.18740909e+08, 1.18692154e+08, 1.64955220e+08, 1.18733144e+08, 1.18687872e+08, 7.60452138e+07, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNom' : [ 1.18740900e+08, 1.18692145e+08, 1.64955208e+08, 1.18733137e+08, 1.18687864e+08, 7.60452087e+07, ], }), ("nof_tree_events", 122688200), ("nof_db_events", 122688200), ("fsize_local", 646764276164), # 646.76GB, avg file size 2.63GB ("fsize_db", 5815097338121), # 5.82TB, avg file size 2.47GB ("use_it", True), ("xsection", 136.02), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 4), ("LHE_set", "LHA IDs 306000 - 306102 -> NNPDF31_nnlo_hessian_pdfas PDF set, expecting 103 weights (counted 103 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Apr19_woPresel_nom_all_hh_multilepton/ntuples/ST_t-channel_top_4f_inclusiveDecays_PSweights"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/ST_tW_antitop_5f_inclusiveDecays_TuneCP5_13TeV-powheg-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v2/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "TT"), ("process_name_specific", "ST_tW_antitop_5f_inclusiveDecays"), ("nof_files", 17), ("nof_db_files", 134), ("nof_events", { 'Count' : [ 7977430, ], 'CountWeighted' : [ 7.91684215e+06, 7.91505777e+06, 7.91809372e+06, ], 'CountWeightedLHEWeightScale' : [ 8.13785619e+06, 8.30036154e+06, 8.49288518e+06, 7.69609614e+06, 7.91684215e+06, 8.13342456e+06, 7.28283607e+06, 7.54012088e+06, 7.77097751e+06, ], 'CountWeightedLHEEnvelope' : [ 8.61918970e+06, 7.27949554e+06, ], 'CountWeightedFull' : [ 2.79015809e+08, 2.79001678e+08, 2.78979836e+08, ], 'CountWeightedFullLHEWeightScale' : [ 2.86800820e+08, 2.92535156e+08, 2.99316038e+08, 2.71229905e+08, 2.79015809e+08, 2.86646075e+08, 2.56667017e+08, 2.65733002e+08, 2.73869841e+08, ], 'CountWeightedFullLHEEnvelope' : [ 3.03772935e+08, 2.56547918e+08, ], 'CountWeightedL1PrefireNom' : [ 7.74409289e+06, 7.74273625e+06, 7.74514098e+06, ], 'CountWeightedL1Prefire' : [ 7.74409289e+06, 7.70005109e+06, 7.78626144e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 7.95503635e+06, 8.11599226e+06, 8.30610466e+06, 7.52603493e+06, 7.74409289e+06, 7.95810257e+06, 7.12396431e+06, 7.37799914e+06, 7.60599360e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 8.42618062e+06, 7.12418503e+06, ], 'CountWeightedFullL1PrefireNom' : [ 2.72927161e+08, 2.72907692e+08, 2.72915433e+08, ], 'CountWeightedFullL1Prefire' : [ 2.72927161e+08, 2.71376515e+08, 2.74414860e+08, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 2.80357619e+08, 2.86033885e+08, 2.92733159e+08, 2.65237098e+08, 2.72927161e+08, 2.80466579e+08, 2.51068194e+08, 2.60020016e+08, 2.68055448e+08, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 2.96967776e+08, 2.51075045e+08, ], }), ("nof_tree_events", 7977430), ("nof_db_events", 7977430), ("fsize_local", 49776948240), # 49.78GB, avg file size 2.93GB ("fsize_db", 409038270439), # 409.04GB, avg file size 3.05GB ("use_it", True), ("xsection", 35.85), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Apr19_woPresel_nom_all_hh_multilepton/ntuples/ST_tW_antitop_5f_inclusiveDecays"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/ST_tW_antitop_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v2/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "TT"), ("process_name_specific", "ST_tW_antitop_5f_inclusiveDecays_PSweights"), ("nof_files", 16), ("nof_db_files", 150), ("nof_events", { 'Count' : [ 7745276, ], 'CountWeighted' : [ 7.68619725e+06, 7.68678422e+06, 7.68643584e+06, ], 'CountWeightedLHEWeightScale' : [ 7.90041066e+06, 8.05903788e+06, 8.24663806e+06, 7.47147766e+06, 7.68619725e+06, 7.89747788e+06, 7.07029788e+06, 7.32058528e+06, 7.54528600e+06, ], 'CountWeightedLHEEnvelope' : [ 8.36819388e+06, 7.06782592e+06, ], 'CountWeightedPSWeight' : [ 7.68676081e+06, 7.68645428e+06, 1.09969747e+07, 7.68551175e+06, 7.67731662e+06, 4.72767750e+06, ], 'CountWeightedPSWeightOriginalXWGTUP' : [ 7.74498900e+07, 7.73998510e+07, 7.74499425e+07, 7.74498925e+07, 7.67180200e+07, 7.66678728e+07, ], 'CountWeightedFull' : [ 2.70776188e+08, 2.70792630e+08, 2.70766900e+08, ], 'CountWeightedFullLHEWeightScale' : [ 2.78311994e+08, 2.83908652e+08, 2.90513739e+08, 2.63200148e+08, 2.70776188e+08, 2.78213018e+08, 2.49070558e+08, 2.57887137e+08, 2.65804016e+08, ], 'CountWeightedFullLHEEnvelope' : [ 2.94800329e+08, 2.48983591e+08, ], 'CountWeightedFullPSWeight' : [ 2.70789125e+08, 2.70777874e+08, 3.87399048e+08, 2.70744393e+08, 2.70455546e+08, 1.66547015e+08, ], 'CountWeightedFullPSWeightOriginalXWGTUP' : [ 2.72865405e+09, 2.72688763e+09, 2.72865413e+09, 2.72865405e+09, 2.70285050e+09, 2.70108398e+09, ], 'CountWeightedL1PrefireNom' : [ 7.51845091e+06, 7.51858038e+06, 7.51890650e+06, ], 'CountWeightedL1Prefire' : [ 7.51845091e+06, 7.47572922e+06, 7.55946897e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 7.72288297e+06, 7.87995641e+06, 8.06518856e+06, 7.30628338e+06, 7.51845091e+06, 7.72709681e+06, 6.91592644e+06, 7.16307600e+06, 7.38491627e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 8.18072169e+06, 6.91691811e+06, ], 'CountWeightedPSWeightL1PrefireNom' : [ 7.52000378e+06, 7.51655159e+06, 1.07559831e+07, 7.51654978e+06, 7.51333725e+06, 4.62635989e+06, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNom' : [ 7.57479770e+07, 7.56990895e+07, 7.57480210e+07, 7.57479795e+07, 7.50358255e+07, 7.49868460e+07, ], 'CountWeightedFullL1PrefireNom' : [ 2.64862366e+08, 2.64865138e+08, 2.64872124e+08, ], 'CountWeightedFullL1Prefire' : [ 2.64862366e+08, 2.63357670e+08, 2.66309261e+08, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 2.72058590e+08, 2.77597596e+08, 2.84121786e+08, 2.57381732e+08, 2.64862366e+08, 2.72210828e+08, 2.43633161e+08, 2.52339110e+08, 2.60155009e+08, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 2.88193944e+08, 2.43668187e+08, ], 'CountWeightedFullPSWeightL1PrefireNom' : [ 2.64915131e+08, 2.64793116e+08, 3.78910829e+08, 2.64792624e+08, 2.64679366e+08, 1.62978238e+08, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNom' : [ 2.66859367e+09, 2.66686937e+09, 2.66859372e+09, 2.66859367e+09, 2.64349681e+09, 2.64177194e+09, ], }), ("nof_tree_events", 7745276), ("nof_db_events", 7745276), ("fsize_local", 48409197470), # 48.41GB, avg file size 3.03GB ("fsize_db", 397785712841), # 397.79GB, avg file size 2.65GB ("use_it", True), ("xsection", 35.85), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 4), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Apr19_woPresel_nom_all_hh_multilepton/ntuples/ST_tW_antitop_5f_inclusiveDecays_PSweights"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/ST_tW_top_5f_inclusiveDecays_TuneCP5_13TeV-powheg-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v2/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "TT"), ("process_name_specific", "ST_tW_top_5f_inclusiveDecays"), ("nof_files", 16), ("nof_db_files", 139), ("nof_events", { 'Count' : [ 7794186, ], 'CountWeighted' : [ 7.73542144e+06, 7.73516944e+06, 7.73495884e+06, ], 'CountWeightedLHEWeightScale' : [ 7.95129097e+06, 8.10914625e+06, 8.29687344e+06, 7.51983406e+06, 7.73542144e+06, 7.94627562e+06, 7.11620409e+06, 7.36715947e+06, 7.59244741e+06, ], 'CountWeightedLHEEnvelope' : [ 8.42071966e+06, 7.11278697e+06, ], 'CountWeightedFull' : [ 2.72064998e+08, 2.72146965e+08, 2.72045445e+08, ], 'CountWeightedFullLHEWeightScale' : [ 2.79712236e+08, 2.85276665e+08, 2.91872294e+08, 2.64531735e+08, 2.72064998e+08, 2.79537744e+08, 2.50335139e+08, 2.59153986e+08, 2.67087440e+08, ], 'CountWeightedFullLHEEnvelope' : [ 2.96236505e+08, 2.50209671e+08, ], 'CountWeightedL1PrefireNom' : [ 7.56530594e+06, 7.56490659e+06, 7.56528312e+06, ], 'CountWeightedL1Prefire' : [ 7.56530594e+06, 7.52210762e+06, 7.60680462e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 7.77155722e+06, 7.92792450e+06, 8.11321562e+06, 7.35265819e+06, 7.56530594e+06, 7.77390344e+06, 6.96003981e+06, 7.20779272e+06, 7.43024950e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 8.23102344e+06, 6.96006481e+06, ], 'CountWeightedFullL1PrefireNom' : [ 2.66100402e+08, 2.66144709e+08, 2.66100563e+08, ], 'CountWeightedFullL1Prefire' : [ 2.66100402e+08, 2.64583504e+08, 2.67563431e+08, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 2.73389596e+08, 2.78896787e+08, 2.85411024e+08, 2.58651608e+08, 2.66100402e+08, 2.73473351e+08, 2.44841847e+08, 2.53551477e+08, 2.61381756e+08, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 2.89559853e+08, 2.44839227e+08, ], }), ("nof_tree_events", 7794186), ("nof_db_events", 7794186), ("fsize_local", 48608672054), # 48.61GB, avg file size 3.04GB ("fsize_db", 399638903127), # 399.64GB, avg file size 2.88GB ("use_it", True), ("xsection", 35.85), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Apr19_woPresel_nom_all_hh_multilepton/ntuples/ST_tW_top_5f_inclusiveDecays"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/ST_tW_top_5f_inclusiveDecays_TuneCP5_PSweights_13TeV-powheg-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_new_pmx_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "TT"), ("process_name_specific", "ST_tW_top_5f_inclusiveDecays_PSweights"), ("nof_files", 16), ("nof_db_files", 114), ("nof_events", { 'Count' : [ 7945242, ], 'CountWeighted' : [ 7.88563419e+06, 7.88570016e+06, 7.88384428e+06, ], 'CountWeightedLHEWeightScale' : [ 8.10567519e+06, 8.26653203e+06, 8.45799500e+06, 7.66582822e+06, 7.88563419e+06, 8.10029438e+06, 7.25423678e+06, 7.50990341e+06, 7.73962759e+06, ], 'CountWeightedLHEEnvelope' : [ 8.58439819e+06, 7.25046478e+06, ], 'CountWeightedPSWeight' : [ 7.88457631e+06, 7.88370653e+06, 1.12706317e+07, 7.88436256e+06, 7.87526512e+06, 4.85763881e+06, ], 'CountWeightedPSWeightOriginalXWGTUP' : [ 7.94708865e+07, 7.94206885e+07, 7.94709575e+07, 7.94708855e+07, 7.87212125e+07, 7.86708720e+07, ], 'CountWeightedFull' : [ 2.77215858e+08, 2.77259529e+08, 2.77207634e+08, ], 'CountWeightedFullLHEWeightScale' : [ 2.85019620e+08, 2.90692070e+08, 2.97413316e+08, 2.69552106e+08, 2.77215858e+08, 2.84834280e+08, 2.55081636e+08, 2.64071519e+08, 2.72150099e+08, ], 'CountWeightedFullLHEEnvelope' : [ 3.01865464e+08, 2.54948996e+08, ], 'CountWeightedFullPSWeight' : [ 2.77248082e+08, 2.77217047e+08, 3.96311178e+08, 2.77238629e+08, 2.76920466e+08, 1.70811918e+08, ], 'CountWeightedFullPSWeightOriginalXWGTUP' : [ 2.79356768e+09, 2.79180434e+09, 2.79356768e+09, 2.79356766e+09, 2.76725542e+09, 2.76549198e+09, ], 'CountWeightedL1PrefireNom' : [ 7.71276628e+06, 7.71253262e+06, 7.71170662e+06, ], 'CountWeightedL1Prefire' : [ 7.71276628e+06, 7.66874691e+06, 7.75488947e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 7.92295334e+06, 8.08236244e+06, 8.27139184e+06, 7.49586028e+06, 7.71276628e+06, 7.92512881e+06, 7.09545272e+06, 7.34794225e+06, 7.57479197e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 8.39158231e+06, 7.09525453e+06, ], 'CountWeightedPSWeightL1PrefireNom' : [ 7.71304094e+06, 7.70909250e+06, 1.10230974e+07, 7.71061441e+06, 7.70654588e+06, 4.75321478e+06, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNom' : [ 7.77111460e+07, 7.76621685e+07, 7.77112050e+07, 7.77111450e+07, 7.69819860e+07, 7.69328855e+07, ], 'CountWeightedFullL1PrefireNom' : [ 2.71159528e+08, 2.71179077e+08, 2.71163374e+08, ], 'CountWeightedFullL1Prefire' : [ 2.71159528e+08, 2.69617144e+08, 2.72640485e+08, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 2.78595353e+08, 2.84210598e+08, 2.90852192e+08, 2.63576703e+08, 2.71159528e+08, 2.78675148e+08, 2.49499184e+08, 2.58377257e+08, 2.66354759e+08, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 2.95082290e+08, 2.49492229e+08, ], 'CountWeightedFullPSWeightL1PrefireNom' : [ 2.71217251e+08, 2.71077649e+08, 3.87608412e+08, 2.71130326e+08, 2.70988474e+08, 1.67140289e+08, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNom' : [ 2.73203194e+09, 2.73031018e+09, 2.73203195e+09, 2.73203194e+09, 2.70642168e+09, 2.70470013e+09, ], }), ("nof_tree_events", 7945242), ("nof_db_events", 7945242), ("fsize_local", 49635485765), # 49.64GB, avg file size 3.10GB ("fsize_db", 407830773310), # 407.83GB, avg file size 3.58GB ("use_it", True), ("xsection", 35.85), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 4), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Apr19_woPresel_nom_all_hh_multilepton/ntuples/ST_tW_top_5f_inclusiveDecays_PSweights"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/ST_tWll_5f_LO_TuneCP5_PSweights_13TeV-madgraph-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14_ext1-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "TT"), ("process_name_specific", "ST_tWll_PSweights_ext1"), ("nof_files", 2), ("nof_db_files", 42), ("nof_events", { 'Count' : [ 986000, ], 'CountWeighted' : [ 9.85635375e+05, 9.85763719e+05, 9.85626438e+05, ], 'CountWeightedLHEEnvelope' : [ 9.85635375e+05, 9.85635375e+05, ], 'CountWeightedFull' : [ 9.85635375e+05, 9.85763719e+05, 9.85626438e+05, ], 'CountWeightedFullLHEEnvelope' : [ 9.85635375e+05, 9.85635375e+05, ], 'CountWeightedL1PrefireNom' : [ 9.51415812e+05, 9.51441344e+05, 9.51445000e+05, ], 'CountWeightedL1Prefire' : [ 9.51415812e+05, 9.43229500e+05, 9.59464875e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 9.51415812e+05, 9.51415812e+05, ], 'CountWeightedFullL1PrefireNom' : [ 9.51415812e+05, 9.51441344e+05, 9.51445000e+05, ], 'CountWeightedFullL1Prefire' : [ 9.51415812e+05, 9.43229500e+05, 9.59464875e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 9.51415812e+05, 9.51415812e+05, ], }), ("nof_tree_events", 986000), ("nof_db_events", 986000), ("fsize_local", 8388223804), # 8.39GB, avg file size 4.19GB ("fsize_db", 62041007346), # 62.04GB, avg file size 1.48GB ("use_it", True), ("xsection", 0.01096), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", False), ("nof_PSweights", 1), ("LHE_set", "LHEPdfWeight[nLHEPdfWeight]/F"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Apr19_woPresel_nom_all_hh_multilepton/ntuples/ST_tWll_PSweights_ext1"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/TTTo2L2Nu_TuneCP5_13TeV-powheg-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_new_pmx_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "TT"), ("process_name_specific", "TTTo2L2Nu"), ("nof_files", 19), ("nof_db_files", 153), ("nof_events", { 'Count' : [ 9000000, ], 'CountWeighted' : [ 8.92753607e+06, 8.92587409e+06, 8.92551527e+06, ], 'CountWeightedLHEWeightScale' : [ 1.00590091e+07, 9.88301912e+06, 9.76983053e+06, 9.14700347e+06, 8.92753607e+06, 8.75788964e+06, 8.27650044e+06, 8.03912236e+06, 7.84385094e+06, ], 'CountWeightedLHEEnvelope' : [ 1.08709851e+07, 7.31310938e+06, ], 'CountWeightedPSWeight' : [ 8.92739671e+06, 8.92531538e+06, 1.26358324e+07, 8.92597270e+06, 8.91895112e+06, 5.57863412e+06, ], 'CountWeightedPSWeightOriginalXWGTUP' : [ 8.99910338e+07, 8.99900601e+07, 8.99910523e+07, 8.99910283e+07, 8.99410798e+07, 8.99400622e+07, ], 'CountWeightedFull' : [ 6.48651620e+08, 6.48749113e+08, 6.48776034e+08, ], 'CountWeightedFullLHEWeightScale' : [ 7.30993943e+08, 7.18206555e+08, 7.09979184e+08, 6.64719640e+08, 6.48651620e+08, 6.36443556e+08, 6.01458389e+08, 5.84203254e+08, 5.70017556e+08, ], 'CountWeightedFullLHEEnvelope' : [ 7.89996633e+08, 5.31448983e+08, ], 'CountWeightedFullPSWeight' : [ 6.48757693e+08, 6.48607310e+08, 9.18251292e+08, 6.48652586e+08, 6.48147246e+08, 4.05403495e+08, ], 'CountWeightedFullPSWeightOriginalXWGTUP' : [ 6.54093648e+09, 6.54086426e+09, 6.54093652e+09, 6.54093610e+09, 6.53730358e+09, 6.53723114e+09, ], 'CountWeightedL1PrefireNom' : [ 8.66354264e+06, 8.66221376e+06, 8.66268138e+06, ], 'CountWeightedL1Prefire' : [ 8.66354264e+06, 8.59897415e+06, 8.72654965e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 9.75447089e+06, 9.58725688e+06, 9.48057996e+06, 8.87377337e+06, 8.66354264e+06, 8.50181636e+06, 8.03159940e+06, 7.80383887e+06, 7.61656373e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 1.05445797e+07, 7.09985938e+06, ], 'CountWeightedPSWeightL1PrefireNom' : [ 8.66496091e+06, 8.65913996e+06, 1.22597072e+07, 8.66071816e+06, 8.65948027e+06, 5.41739817e+06, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNom' : [ 8.73163153e+07, 8.73153717e+07, 8.73163258e+07, 8.73163098e+07, 8.72684496e+07, 8.72674789e+07, ], 'CountWeightedFullL1PrefireNom' : [ 6.29518085e+08, 6.29552450e+08, 6.29614506e+08, ], 'CountWeightedFullL1Prefire' : [ 6.29518085e+08, 6.24825551e+08, 6.34089320e+08, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 7.08864268e+08, 6.96715162e+08, 6.88960798e+08, 6.44865063e+08, 6.29518085e+08, 6.17835132e+08, 5.83662110e+08, 5.67108361e+08, 5.53501604e+08, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 7.66279829e+08, 5.15952740e+08, ], 'CountWeightedFullPSWeightL1PrefireNom' : [ 6.29688773e+08, 6.29265664e+08, 8.90921446e+08, 6.29378932e+08, 6.29291902e+08, 3.93687300e+08, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNom' : [ 6.34616541e+09, 6.34609613e+09, 6.34616541e+09, 6.34616499e+09, 6.34268610e+09, 6.34261641e+09, ], 'CountWeightedTOP16011TopPtRwgtSF' : [ 8.93374118e+06, 8.93373561e+06, 8.93362250e+06, ], 'CountWeightedTOP16011TopPtRwgtSFSquared' : [ 8.95233339e+06, 8.95239516e+06, 8.95239094e+06, ], 'CountWeightedLinearTopPtRwgtSF' : [ 8.94001009e+06, 8.94003202e+06, 8.93989914e+06, ], 'CountWeightedLinearTopPtRwgtSFSquared' : [ 8.96306318e+06, 8.96312391e+06, 8.96312574e+06, ], 'CountWeightedQuadraticTopPtRwgtSF' : [ 8.94236197e+06, 8.94241418e+06, 8.94232714e+06, ], 'CountWeightedQuadraticTopPtRwgtSFSquared' : [ 8.97234732e+06, 8.97240698e+06, 8.97239987e+06, ], 'CountWeightedHighPtTopPtRwgtSF' : [ 8.94122391e+06, 8.94124956e+06, 8.94114301e+06, ], 'CountWeightedHighPtTopPtRwgtSFSquared' : [ 8.96548406e+06, 8.96553791e+06, 8.96550259e+06, ], 'CountWeightedLHEWeightScaleTOP16011TopPtRwgtSF' : [ 1.00680171e+07, 9.89308733e+06, 9.78098038e+06, 9.15239063e+06, 8.93374118e+06, 8.76616451e+06, 8.27921055e+06, 8.04363258e+06, 7.84989305e+06, ], 'CountWeightedLHEWeightScaleTOP16011TopPtRwgtSFSquared' : [ 1.00901423e+07, 9.91601842e+06, 9.80477723e+06, 9.16982228e+06, 8.95233339e+06, 8.78586096e+06, 8.29298425e+06, 8.05880784e+06, 7.86625767e+06, ], 'CountWeightedLHEWeightScaleLinearTopPtRwgtSF' : [ 1.00750737e+07, 9.89989759e+06, 9.78757780e+06, 9.15897913e+06, 8.94001009e+06, 8.77218041e+06, 8.28531656e+06, 8.04939773e+06, 7.85536944e+06, ], 'CountWeightedLHEWeightScaleLinearTopPtRwgtSFSquared' : [ 1.01022183e+07, 9.92762728e+06, 9.81603988e+06, 9.18112605e+06, 8.96306318e+06, 8.79615007e+06, 8.30346636e+06, 8.06868164e+06, 7.87562724e+06, ], 'CountWeightedLHEWeightScaleQuadraticTopPtRwgtSF' : [ 1.00784515e+07, 9.90323325e+06, 9.79091640e+06, 9.16123781e+06, 8.94236197e+06, 8.77464990e+06, 8.28681115e+06, 8.05107634e+06, 7.85721206e+06, ], 'CountWeightedLHEWeightScaleQuadraticTopPtRwgtSFSquared' : [ 1.01140253e+07, 9.93933418e+06, 9.82767086e+06, 9.19025614e+06, 8.97234732e+06, 8.80553122e+06, 8.31060848e+06, 8.07610942e+06, 7.88327748e+06, ], 'CountWeightedLHEWeightScaleHighPtTopPtRwgtSF' : [ 1.00768858e+07, 9.90144919e+06, 9.78889269e+06, 9.16041212e+06, 8.94122391e+06, 8.77319793e+06, 8.28652284e+06, 8.05037796e+06, 7.85619133e+06, ], 'CountWeightedLHEWeightScaleHighPtTopPtRwgtSFSquared' : [ 1.01058355e+07, 9.93077880e+06, 9.81871306e+06, 9.18391402e+06, 8.96548406e+06, 8.79816755e+06, 8.30574087e+06, 8.07059223e+06, 7.87722372e+06, ], 'CountWeightedLHEEnvelopeTOP16011TopPtRwgtSF' : [ 1.08768593e+07, 7.32265345e+06, ], 'CountWeightedLHEEnvelopeTOP16011TopPtRwgtSFSquared' : [ 1.08971252e+07, 7.34162265e+06, ], 'CountWeightedLHEEnvelopeLinearTopPtRwgtSF' : [ 1.08847546e+07, 7.32747335e+06, ], 'CountWeightedLHEEnvelopeLinearTopPtRwgtSFSquared' : [ 1.09106663e+07, 7.34981461e+06, ], 'CountWeightedLHEEnvelopeQuadraticTopPtRwgtSF' : [ 1.08875725e+07, 7.32986963e+06, ], 'CountWeightedLHEEnvelopeQuadraticTopPtRwgtSFSquared' : [ 1.09217727e+07, 7.35834312e+06, ], 'CountWeightedLHEEnvelopeHighPtTopPtRwgtSF' : [ 1.08867235e+07, 7.32805550e+06, ], 'CountWeightedLHEEnvelopeHighPtTopPtRwgtSFSquared' : [ 1.09144995e+07, 7.35105295e+06, ], 'CountWeightedPSWeightTOP16011TopPtRwgtSF' : [ 8.93444835e+06, 8.93204999e+06, 1.26418033e+07, 8.93268549e+06, 8.92617286e+06, 5.58612882e+06, ], 'CountWeightedPSWeightTOP16011TopPtRwgtSFSquared' : [ 8.95324388e+06, 8.95050611e+06, 1.26644887e+07, 8.95112248e+06, 8.94511712e+06, 5.60085221e+06, ], 'CountWeightedPSWeightLinearTopPtRwgtSF' : [ 8.94070891e+06, 8.93833374e+06, 1.26510005e+07, 8.93897070e+06, 8.93243543e+06, 5.58978504e+06, ], 'CountWeightedPSWeightLinearTopPtRwgtSFSquared' : [ 8.96395337e+06, 8.96126993e+06, 1.26802957e+07, 8.96188783e+06, 8.95581803e+06, 5.60706766e+06, ], 'CountWeightedPSWeightQuadraticTopPtRwgtSF' : [ 8.94311178e+06, 8.94066580e+06, 1.26538122e+07, 8.94132910e+06, 8.93489456e+06, 5.59174750e+06, ], 'CountWeightedPSWeightQuadraticTopPtRwgtSFSquared' : [ 8.97327666e+06, 8.97045917e+06, 1.26922165e+07, 8.97111162e+06, 8.96523323e+06, 5.61385850e+06, ], 'CountWeightedPSWeightHighPtTopPtRwgtSF' : [ 8.94190878e+06, 8.93955792e+06, 1.26529940e+07, 8.94022245e+06, 8.93364705e+06, 5.59032461e+06, ], 'CountWeightedPSWeightHighPtTopPtRwgtSFSquared' : [ 8.96633018e+06, 8.96368323e+06, 1.26841152e+07, 8.96433677e+06, 8.95818613e+06, 5.60819878e+06, ], 'CountWeightedPSWeightOriginalXWGTUPTOP16011TopPtRwgtSF' : [ 9.00486754e+07, 9.00477097e+07, 9.00486934e+07, 9.00486689e+07, 8.99991636e+07, 8.99981559e+07, ], 'CountWeightedPSWeightOriginalXWGTUPTOP16011TopPtRwgtSFSquared' : [ 9.02176843e+07, 9.02167300e+07, 9.02177023e+07, 9.02176793e+07, 9.01685654e+07, 9.01675677e+07, ], 'CountWeightedPSWeightOriginalXWGTUPLinearTopPtRwgtSF' : [ 9.01143860e+07, 9.01134198e+07, 9.01144040e+07, 9.01143810e+07, 9.00647858e+07, 9.00637791e+07, ], 'CountWeightedPSWeightOriginalXWGTUPLinearTopPtRwgtSFSquared' : [ 9.03300315e+07, 9.03290732e+07, 9.03300495e+07, 9.03300260e+07, 9.02807645e+07, 9.02797647e+07, ], 'CountWeightedPSWeightOriginalXWGTUPQuadraticTopPtRwgtSF' : [ 9.01373662e+07, 9.01364010e+07, 9.01373842e+07, 9.01373602e+07, 9.00878169e+07, 9.00868101e+07, ], 'CountWeightedPSWeightOriginalXWGTUPQuadraticTopPtRwgtSFSquared' : [ 9.04205457e+07, 9.04195889e+07, 9.04205632e+07, 9.04205402e+07, 9.03713424e+07, 9.03703436e+07, ], 'CountWeightedPSWeightOriginalXWGTUPHighPtTopPtRwgtSF' : [ 9.01295137e+07, 9.01285455e+07, 9.01295322e+07, 9.01295082e+07, 9.00798588e+07, 9.00788496e+07, ], 'CountWeightedPSWeightOriginalXWGTUPHighPtTopPtRwgtSFSquared' : [ 9.03586417e+07, 9.03576795e+07, 9.03586592e+07, 9.03586362e+07, 9.03092682e+07, 9.03082634e+07, ], 'CountWeightedFullTOP16011TopPtRwgtSF' : [ 6.49220547e+08, 6.49222469e+08, 6.49220544e+08, ], 'CountWeightedFullTOP16011TopPtRwgtSFSquared' : [ 6.50577074e+08, 6.50576544e+08, 6.50573816e+08, ], 'CountWeightedFullLinearTopPtRwgtSF' : [ 6.49675508e+08, 6.49678695e+08, 6.49675999e+08, ], 'CountWeightedFullLinearTopPtRwgtSFSquared' : [ 6.51357814e+08, 6.51356558e+08, 6.51354096e+08, ], 'CountWeightedFullQuadraticTopPtRwgtSF' : [ 6.49849910e+08, 6.49851049e+08, 6.49849671e+08, ], 'CountWeightedFullQuadraticTopPtRwgtSFSquared' : [ 6.52029410e+08, 6.52030352e+08, 6.52029010e+08, ], 'CountWeightedFullHighPtTopPtRwgtSF' : [ 6.49764520e+08, 6.49766855e+08, 6.49766054e+08, ], 'CountWeightedFullHighPtTopPtRwgtSFSquared' : [ 6.51529731e+08, 6.51531859e+08, 6.51530341e+08, ], 'CountWeightedFullLHEWeightScaleTOP16011TopPtRwgtSF' : [ 7.31648856e+08, 7.18937670e+08, 7.10789599e+08, 6.65109933e+08, 6.49220547e+08, 6.37043655e+08, 6.01658011e+08, 5.84533719e+08, 5.70457722e+08, ], 'CountWeightedFullLHEWeightScaleTOP16011TopPtRwgtSFSquared' : [ 7.33257156e+08, 7.20604049e+08, 7.12519838e+08, 6.66377650e+08, 6.50577074e+08, 6.38474817e+08, 6.02658014e+08, 5.85637582e+08, 5.71646501e+08, ], 'CountWeightedFullLHEWeightScaleLinearTopPtRwgtSF' : [ 7.32161273e+08, 7.19431534e+08, 7.11269566e+08, 6.65588358e+08, 6.49675508e+08, 6.37481218e+08, 6.02100959e+08, 5.84952354e+08, 5.70855612e+08, ], 'CountWeightedFullLHEWeightScaleLinearTopPtRwgtSFSquared' : [ 7.34134248e+08, 7.21447547e+08, 7.13337763e+08, 6.67198554e+08, 6.51357814e+08, 6.39221840e+08, 6.03419652e+08, 5.86354865e+08, 5.72327291e+08, ], 'CountWeightedFullLHEWeightScaleQuadraticTopPtRwgtSF' : [ 7.32406648e+08, 7.19674376e+08, 7.11511738e+08, 6.65753084e+08, 6.49849910e+08, 6.37660324e+08, 6.02208714e+08, 5.85075062e+08, 5.70989152e+08, ], 'CountWeightedFullLHEWeightScaleQuadraticTopPtRwgtSFSquared' : [ 7.34992871e+08, 7.22298501e+08, 7.14183397e+08, 6.67861948e+08, 6.52029410e+08, 6.39904466e+08, 6.03938361e+08, 5.86895318e+08, 5.72884063e+08, ], 'CountWeightedFullLHEWeightScaleHighPtTopPtRwgtSF' : [ 7.32293040e+08, 7.19544484e+08, 7.11365828e+08, 6.65693165e+08, 6.49764520e+08, 6.37555399e+08, 6.02187338e+08, 5.85024862e+08, 5.70915124e+08, ], 'CountWeightedFullLHEWeightScaleHighPtTopPtRwgtSFSquared' : [ 7.34397212e+08, 7.21675760e+08, 7.13532446e+08, 6.67401827e+08, 6.51529731e+08, 6.39369258e+08, 6.03584687e+08, 5.86494812e+08, 5.72443171e+08, ], 'CountWeightedFullLHEEnvelopeTOP16011TopPtRwgtSF' : [ 7.90426244e+08, 5.32142578e+08, ], 'CountWeightedFullLHEEnvelopeTOP16011TopPtRwgtSFSquared' : [ 7.91900106e+08, 5.33520128e+08, ], 'CountWeightedFullLHEEnvelopeLinearTopPtRwgtSF' : [ 7.90999032e+08, 5.32492338e+08, ], 'CountWeightedFullLHEEnvelopeLinearTopPtRwgtSFSquared' : [ 7.92883620e+08, 5.34116149e+08, ], 'CountWeightedFullLHEEnvelopeQuadraticTopPtRwgtSF' : [ 7.91204406e+08, 5.32666315e+08, ], 'CountWeightedFullLHEEnvelopeQuadraticTopPtRwgtSFSquared' : [ 7.93691530e+08, 5.34735531e+08, ], 'CountWeightedFullLHEEnvelopeHighPtTopPtRwgtSF' : [ 7.91142782e+08, 5.32535021e+08, ], 'CountWeightedFullLHEEnvelopeHighPtTopPtRwgtSFSquared' : [ 7.93163559e+08, 5.34206211e+08, ], 'CountWeightedFullPSWeightTOP16011TopPtRwgtSF' : [ 6.49275826e+08, 6.49097428e+08, 9.18687594e+08, 6.49143304e+08, 6.48672330e+08, 4.05948382e+08, ], 'CountWeightedFullPSWeightTOP16011TopPtRwgtSFSquared' : [ 6.50641601e+08, 6.50439140e+08, 9.20336201e+08, 6.50483548e+08, 6.50048681e+08, 4.07018629e+08, ], 'CountWeightedFullPSWeightLinearTopPtRwgtSF' : [ 6.49730177e+08, 6.49553396e+08, 9.19356229e+08, 6.49600947e+08, 6.49127082e+08, 4.06214470e+08, ], 'CountWeightedFullPSWeightLinearTopPtRwgtSFSquared' : [ 6.51420342e+08, 6.51221022e+08, 9.21485244e+08, 6.51266596e+08, 6.50826588e+08, 4.07470656e+08, ], 'CountWeightedFullPSWeightQuadraticTopPtRwgtSF' : [ 6.49905028e+08, 6.49724675e+08, 9.19561458e+08, 6.49771095e+08, 6.49305338e+08, 4.06356679e+08, ], 'CountWeightedFullPSWeightQuadraticTopPtRwgtSFSquared' : [ 6.52096259e+08, 6.51889801e+08, 9.22352692e+08, 6.51936450e+08, 6.51510840e+08, 4.07964181e+08, ], 'CountWeightedFullPSWeightHighPtTopPtRwgtSF' : [ 6.49816808e+08, 6.49643290e+08, 9.19501454e+08, 6.49689496e+08, 6.49214219e+08, 4.06253392e+08, ], 'CountWeightedFullPSWeightHighPtTopPtRwgtSFSquared' : [ 6.51591073e+08, 6.51395692e+08, 9.21763043e+08, 6.51443128e+08, 6.50999155e+08, 4.07552888e+08, ], 'CountWeightedFullPSWeightOriginalXWGTUPTOP16011TopPtRwgtSF' : [ 6.54389107e+09, 6.54381980e+09, 6.54389113e+09, 6.54389068e+09, 6.54029164e+09, 6.54021976e+09, ], 'CountWeightedFullPSWeightOriginalXWGTUPTOP16011TopPtRwgtSFSquared' : [ 6.55617515e+09, 6.55610477e+09, 6.55617518e+09, 6.55617477e+09, 6.55260466e+09, 6.55253351e+09, ], 'CountWeightedFullPSWeightOriginalXWGTUPLinearTopPtRwgtSF' : [ 6.54866935e+09, 6.54859786e+09, 6.54866935e+09, 6.54866897e+09, 6.54506385e+09, 6.54499181e+09, ], 'CountWeightedFullPSWeightOriginalXWGTUPLinearTopPtRwgtSFSquared' : [ 6.56433504e+09, 6.56426393e+09, 6.56433511e+09, 6.56433469e+09, 6.56075332e+09, 6.56068220e+09, ], 'CountWeightedFullPSWeightOriginalXWGTUPQuadraticTopPtRwgtSF' : [ 6.55032383e+09, 6.55025228e+09, 6.55032383e+09, 6.55032345e+09, 6.54672147e+09, 6.54664943e+09, ], 'CountWeightedFullPSWeightOriginalXWGTUPQuadraticTopPtRwgtSFSquared' : [ 6.57092403e+09, 6.57085304e+09, 6.57092403e+09, 6.57092368e+09, 6.56734744e+09, 6.56727607e+09, ], 'CountWeightedFullPSWeightOriginalXWGTUPHighPtTopPtRwgtSF' : [ 6.54973049e+09, 6.54965870e+09, 6.54973052e+09, 6.54973010e+09, 6.54612087e+09, 6.54604883e+09, ], 'CountWeightedFullPSWeightOriginalXWGTUPHighPtTopPtRwgtSFSquared' : [ 6.56640449e+09, 6.56633322e+09, 6.56640449e+09, 6.56640414e+09, 6.56281565e+09, 6.56274406e+09, ], 'CountWeightedL1PrefireNomTOP16011TopPtRwgtSF' : [ 8.67173564e+06, 8.67135878e+06, 8.67202983e+06, ], 'CountWeightedL1PrefireNomTOP16011TopPtRwgtSFSquared' : [ 8.69165176e+06, 8.69131219e+06, 8.69208330e+06, ], 'CountWeightedL1PrefireNomLinearTopPtRwgtSF' : [ 8.67769504e+06, 8.67733255e+06, 8.67799296e+06, ], 'CountWeightedL1PrefireNomLinearTopPtRwgtSFSquared' : [ 8.70181813e+06, 8.70148306e+06, 8.70225041e+06, ], 'CountWeightedL1PrefireNomQuadraticTopPtRwgtSF' : [ 8.68042758e+06, 8.68008354e+06, 8.68077317e+06, ], 'CountWeightedL1PrefireNomQuadraticTopPtRwgtSFSquared' : [ 8.71173613e+06, 8.71139253e+06, 8.71215874e+06, ], 'CountWeightedL1PrefireNomHighPtTopPtRwgtSF' : [ 8.67889139e+06, 8.67852782e+06, 8.67920657e+06, ], 'CountWeightedL1PrefireNomHighPtTopPtRwgtSFSquared' : [ 8.70422480e+06, 8.70388145e+06, 8.70461942e+06, ], 'CountWeightedL1PrefireTOP16011TopPtRwgtSF' : [ 8.67173564e+06, 8.60744131e+06, 8.73443886e+06, ], 'CountWeightedL1PrefireTOP16011TopPtRwgtSFSquared' : [ 8.69165176e+06, 8.62757085e+06, 8.75412438e+06, ], 'CountWeightedL1PrefireLinearTopPtRwgtSF' : [ 8.67769504e+06, 8.61332665e+06, 8.74046251e+06, ], 'CountWeightedL1PrefireLinearTopPtRwgtSFSquared' : [ 8.70181813e+06, 8.63761604e+06, 8.76441476e+06, ], 'CountWeightedL1PrefireQuadraticTopPtRwgtSF' : [ 8.68042758e+06, 8.61613976e+06, 8.74312367e+06, ], 'CountWeightedL1PrefireQuadraticTopPtRwgtSFSquared' : [ 8.71173613e+06, 8.64762885e+06, 8.77421318e+06, ], 'CountWeightedL1PrefireHighPtTopPtRwgtSF' : [ 8.67889139e+06, 8.61452421e+06, 8.74165669e+06, ], 'CountWeightedL1PrefireHighPtTopPtRwgtSFSquared' : [ 8.70422480e+06, 8.64001299e+06, 8.76681279e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNomTOP16011TopPtRwgtSF' : [ 9.76551437e+06, 9.59921242e+06, 9.49347660e+06, 8.88097703e+06, 8.67173564e+06, 8.51163613e+06, 8.03595904e+06, 7.80986422e+06, 7.62397787e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNomTOP16011TopPtRwgtSFSquared' : [ 9.78925588e+06, 9.62363068e+06, 9.51864000e+06, 8.89987507e+06, 8.69165176e+06, 8.53252884e+06, 8.05103728e+06, 7.82622127e+06, 7.64139683e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNomLinearTopPtRwgtSF' : [ 9.77219591e+06, 9.60566854e+06, 9.49974356e+06, 8.88723305e+06, 8.67769504e+06, 8.51735592e+06, 8.04176529e+06, 7.81535121e+06, 7.62919149e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNomLinearTopPtRwgtSFSquared' : [ 9.80065277e+06, 9.63459416e+06, 9.52928475e+06, 8.91057140e+06, 8.70181813e+06, 8.54227671e+06, 8.06098211e+06, 7.83558602e+06, 7.65028917e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNomQuadraticTopPtRwgtSF' : [ 9.77600268e+06, 9.60941411e+06, 9.50346950e+06, 8.88988946e+06, 8.68042758e+06, 8.52018508e+06, 8.04362022e+06, 7.81737254e+06, 7.63135382e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNomQuadraticTopPtRwgtSFSquared' : [ 9.81318087e+06, 9.64698854e+06, 9.54159043e+06, 8.92037668e+06, 8.71173613e+06, 8.55226246e+06, 8.06874976e+06, 7.84360293e+06, 7.65849969e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNomHighPtTopPtRwgtSF' : [ 9.77394662e+06, 9.60718039e+06, 9.50103886e+06, 8.88863341e+06, 8.67889139e+06, 8.51836517e+06, 8.04294953e+06, 7.81632341e+06, 7.63001112e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNomHighPtTopPtRwgtSFSquared' : [ 9.80420243e+06, 9.63770622e+06, 9.53196700e+06, 8.91332684e+06, 8.70422480e+06, 8.54431495e+06, 8.06323818e+06, 7.83751007e+06, 7.65192007e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNomTOP16011TopPtRwgtSF' : [ 1.05526898e+07, 7.11061707e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNomTOP16011TopPtRwgtSFSquared' : [ 1.05747361e+07, 7.13050965e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNomLinearTopPtRwgtSF' : [ 1.05601808e+07, 7.11519309e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNomLinearTopPtRwgtSFSquared' : [ 1.05875380e+07, 7.13826800e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNomQuadraticTopPtRwgtSF' : [ 1.05634747e+07, 7.11788405e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNomQuadraticTopPtRwgtSFSquared' : [ 1.05994511e+07, 7.14729523e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNomHighPtTopPtRwgtSF' : [ 1.05620880e+07, 7.11578342e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNomHighPtTopPtRwgtSFSquared' : [ 1.05913092e+07, 7.13954388e+06, ], 'CountWeightedPSWeightL1PrefireNomTOP16011TopPtRwgtSF' : [ 8.67366994e+06, 8.66756176e+06, 1.22681973e+07, 8.66914270e+06, 8.66834725e+06, 5.42580972e+06, ], 'CountWeightedPSWeightL1PrefireNomTOP16011TopPtRwgtSFSquared' : [ 8.69375514e+06, 8.68734536e+06, 1.22928977e+07, 8.68892662e+06, 8.68858803e+06, 5.44123785e+06, ], 'CountWeightedPSWeightL1PrefireNomLinearTopPtRwgtSF' : [ 8.67961643e+06, 8.67353207e+06, 1.22769469e+07, 8.67511441e+06, 8.67430386e+06, 5.42928664e+06, ], 'CountWeightedPSWeightL1PrefireNomLinearTopPtRwgtSFSquared' : [ 8.70389337e+06, 8.69753063e+06, 1.23078628e+07, 8.69911958e+06, 8.69872621e+06, 5.44712318e+06, ], 'CountWeightedPSWeightL1PrefireNomQuadraticTopPtRwgtSF' : [ 8.68238971e+06, 8.67623554e+06, 1.22803031e+07, 8.67784226e+06, 8.67713091e+06, 5.43146943e+06, ], 'CountWeightedPSWeightL1PrefireNomQuadraticTopPtRwgtSFSquared' : [ 8.71385110e+06, 8.70737133e+06, 1.23207357e+07, 8.70898014e+06, 8.70877459e+06, 5.45428621e+06, ], 'CountWeightedPSWeightL1PrefireNomHighPtTopPtRwgtSF' : [ 8.68080343e+06, 8.67473547e+06, 1.22788953e+07, 8.67633658e+06, 8.67549087e+06, 5.42983212e+06, ], 'CountWeightedPSWeightL1PrefireNomHighPtTopPtRwgtSFSquared' : [ 8.70627501e+06, 8.69993737e+06, 1.23116359e+07, 8.70154788e+06, 8.70109822e+06, 5.44827633e+06, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNomTOP16011TopPtRwgtSF' : [ 8.73878928e+07, 8.73869586e+07, 8.73879028e+07, 8.73878873e+07, 8.73404546e+07, 8.73394964e+07, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNomTOP16011TopPtRwgtSFSquared' : [ 8.75707744e+07, 8.75698497e+07, 8.75707849e+07, 8.75707694e+07, 8.75236928e+07, 8.75227426e+07, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNomLinearTopPtRwgtSF' : [ 8.74503245e+07, 8.74493888e+07, 8.74503345e+07, 8.74503185e+07, 8.74028020e+07, 8.74018403e+07, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNomLinearTopPtRwgtSFSquared' : [ 8.76772781e+07, 8.76763498e+07, 8.76772886e+07, 8.76772731e+07, 8.76300586e+07, 8.76291053e+07, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNomQuadraticTopPtRwgtSF' : [ 8.74771033e+07, 8.74761656e+07, 8.74771138e+07, 8.74770983e+07, 8.74296241e+07, 8.74286584e+07, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNomQuadraticTopPtRwgtSFSquared' : [ 8.77743624e+07, 8.77734366e+07, 8.77743724e+07, 8.77743574e+07, 8.77271971e+07, 8.77262433e+07, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNomHighPtTopPtRwgtSF' : [ 8.74651075e+07, 8.74641698e+07, 8.74651170e+07, 8.74651020e+07, 8.74175302e+07, 8.74165661e+07, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNomHighPtTopPtRwgtSFSquared' : [ 8.77056192e+07, 8.77046875e+07, 8.77056287e+07, 8.77056142e+07, 8.76583030e+07, 8.76573488e+07, ], 'CountWeightedFullL1PrefireNomTOP16011TopPtRwgtSF' : [ 6.30180296e+08, 6.30155442e+08, 6.30211136e+08, ], 'CountWeightedFullL1PrefireNomTOP16011TopPtRwgtSFSquared' : [ 6.31633570e+08, 6.31605071e+08, 6.31659383e+08, ], 'CountWeightedFullL1PrefireNomLinearTopPtRwgtSF' : [ 6.30613555e+08, 6.30588974e+08, 6.30644243e+08, ], 'CountWeightedFullL1PrefireNomLinearTopPtRwgtSFSquared' : [ 6.32372498e+08, 6.32343574e+08, 6.32397955e+08, ], 'CountWeightedFullL1PrefireNomQuadraticTopPtRwgtSF' : [ 6.30814596e+08, 6.30788705e+08, 6.30844543e+08, ], 'CountWeightedFullL1PrefireNomQuadraticTopPtRwgtSFSquared' : [ 6.33091122e+08, 6.33064286e+08, 6.33119322e+08, ], 'CountWeightedFullL1PrefireNomHighPtTopPtRwgtSF' : [ 6.30700956e+08, 6.30675738e+08, 6.30732486e+08, ], 'CountWeightedFullL1PrefireNomHighPtTopPtRwgtSFSquared' : [ 6.32544732e+08, 6.32518493e+08, 6.32573897e+08, ], 'CountWeightedFullL1PrefireTOP16011TopPtRwgtSF' : [ 6.30180296e+08, 6.25508253e+08, 6.34736918e+08, ], 'CountWeightedFullL1PrefireTOP16011TopPtRwgtSFSquared' : [ 6.31633570e+08, 6.26976480e+08, 6.36173548e+08, ], 'CountWeightedFullL1PrefireLinearTopPtRwgtSF' : [ 6.30613555e+08, 6.25936383e+08, 6.35174616e+08, ], 'CountWeightedFullL1PrefireLinearTopPtRwgtSFSquared' : [ 6.32372498e+08, 6.27706575e+08, 6.36921521e+08, ], 'CountWeightedFullL1PrefireQuadraticTopPtRwgtSF' : [ 6.30814596e+08, 6.26142858e+08, 6.35370820e+08, ], 'CountWeightedFullL1PrefireQuadraticTopPtRwgtSFSquared' : [ 6.33091122e+08, 6.28432393e+08, 6.37631253e+08, ], 'CountWeightedFullL1PrefireHighPtTopPtRwgtSF' : [ 6.30700956e+08, 6.26024052e+08, 6.35262267e+08, ], 'CountWeightedFullL1PrefireHighPtTopPtRwgtSFSquared' : [ 6.32544732e+08, 6.27878911e+08, 6.37093376e+08, ], 'CountWeightedFullLHEWeightScaleL1PrefireNomTOP16011TopPtRwgtSF' : [ 7.09667059e+08, 6.97583139e+08, 6.89898148e+08, 6.45388180e+08, 6.30180296e+08, 6.18547594e+08, 5.83981209e+08, 5.67547080e+08, 5.54040301e+08, ], 'CountWeightedFullLHEWeightScaleL1PrefireNomTOP16011TopPtRwgtSFSquared' : [ 7.11392675e+08, 6.99357274e+08, 6.91727729e+08, 6.46761884e+08, 6.31633570e+08, 6.20066206e+08, 5.85076599e+08, 5.68737055e+08, 5.55307421e+08, ], 'CountWeightedFullLHEWeightScaleL1PrefireNomLinearTopPtRwgtSF' : [ 7.10152346e+08, 6.98051382e+08, 6.90353716e+08, 6.45842300e+08, 6.30613555e+08, 6.18963754e+08, 5.84402965e+08, 5.67945265e+08, 5.54419747e+08, ], 'CountWeightedFullLHEWeightScaleL1PrefireNomLinearTopPtRwgtSFSquared' : [ 7.12220382e+08, 7.00154640e+08, 6.92500582e+08, 6.47538548e+08, 6.32372498e+08, 6.20773682e+08, 5.85798956e+08, 5.69417436e+08, 5.55953654e+08, ], 'CountWeightedFullLHEWeightScaleL1PrefireNomQuadraticTopPtRwgtSF' : [ 7.10428294e+08, 6.98324538e+08, 6.90624524e+08, 6.46035665e+08, 6.30814596e+08, 6.19168528e+08, 5.84537086e+08, 5.68093604e+08, 5.54576837e+08, ], 'CountWeightedFullLHEWeightScaleL1PrefireNomQuadraticTopPtRwgtSFSquared' : [ 7.13131489e+08, 7.01054773e+08, 6.93394842e+08, 6.48251074e+08, 6.33091122e+08, 6.21500639e+08, 5.86363355e+08, 5.70000753e+08, 5.56549813e+08, ], 'CountWeightedFullLHEWeightScaleL1PrefireNomHighPtTopPtRwgtSF' : [ 7.10280506e+08, 6.98161964e+08, 6.90447968e+08, 6.45944424e+08, 6.30700956e+08, 6.19037122e+08, 5.84487663e+08, 5.68017400e+08, 5.54479245e+08, ], 'CountWeightedFullLHEWeightScaleL1PrefireNomHighPtTopPtRwgtSFSquared' : [ 7.12478988e+08, 7.00380099e+08, 6.92695345e+08, 6.47739887e+08, 6.32544732e+08, 6.20922846e+08, 5.85963179e+08, 5.69557909e+08, 5.56071124e+08, ], 'CountWeightedFullLHEEnvelopeL1PrefireNomTOP16011TopPtRwgtSF' : [ 7.66870481e+08, 5.16734164e+08, ], 'CountWeightedFullLHEEnvelopeL1PrefireNomTOP16011TopPtRwgtSFSquared' : [ 7.68473546e+08, 5.18179974e+08, ], 'CountWeightedFullLHEEnvelopeL1PrefireNomLinearTopPtRwgtSF' : [ 7.67414168e+08, 5.17066673e+08, ], 'CountWeightedFullLHEEnvelopeL1PrefireNomLinearTopPtRwgtSFSquared' : [ 7.69404249e+08, 5.18743755e+08, ], 'CountWeightedFullLHEEnvelopeL1PrefireNomQuadraticTopPtRwgtSF' : [ 7.67653686e+08, 5.17262120e+08, ], 'CountWeightedFullLHEEnvelopeL1PrefireNomQuadraticTopPtRwgtSFSquared' : [ 7.70269545e+08, 5.19398891e+08, ], 'CountWeightedFullLHEEnvelopeL1PrefireNomHighPtTopPtRwgtSF' : [ 7.67554006e+08, 5.17109963e+08, ], 'CountWeightedFullLHEEnvelopeL1PrefireNomHighPtTopPtRwgtSFSquared' : [ 7.69678612e+08, 5.18836545e+08, ], 'CountWeightedFullPSWeightL1PrefireNomTOP16011TopPtRwgtSF' : [ 6.30325178e+08, 6.29878534e+08, 8.91540422e+08, 6.29992671e+08, 6.29936602e+08, 3.94298733e+08, ], 'CountWeightedFullPSWeightL1PrefireNomTOP16011TopPtRwgtSFSquared' : [ 6.31785043e+08, 6.31316368e+08, 8.93335152e+08, 6.31430824e+08, 6.31408208e+08, 3.95420104e+08, ], 'CountWeightedFullPSWeightL1PrefireNomLinearTopPtRwgtSF' : [ 6.30757459e+08, 6.30310952e+08, 8.92176063e+08, 6.30426565e+08, 6.30369301e+08, 3.94551563e+08, ], 'CountWeightedFullPSWeightL1PrefireNomLinearTopPtRwgtSFSquared' : [ 6.32522647e+08, 6.32056751e+08, 8.94423152e+08, 6.32172118e+08, 6.32144837e+08, 3.95847966e+08, ], 'CountWeightedFullPSWeightL1PrefireNomQuadraticTopPtRwgtSF' : [ 6.30959416e+08, 6.30509658e+08, 8.92420234e+08, 6.30624978e+08, 6.30574263e+08, 3.94709554e+08, ], 'CountWeightedFullPSWeightL1PrefireNomQuadraticTopPtRwgtSFSquared' : [ 6.33244874e+08, 6.32771739e+08, 8.95358866e+08, 6.32888476e+08, 6.32875138e+08, 3.96368638e+08, ], 'CountWeightedFullPSWeightL1PrefireNomHighPtTopPtRwgtSF' : [ 6.30843135e+08, 6.30399505e+08, 8.92317402e+08, 6.30514296e+08, 6.30455038e+08, 3.94590715e+08, ], 'CountWeightedFullPSWeightL1PrefireNomHighPtTopPtRwgtSFSquared' : [ 6.32693936e+08, 6.32230682e+08, 8.94698300e+08, 6.32347350e+08, 6.32317174e+08, 3.95932091e+08, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNomTOP16011TopPtRwgtSF' : [ 6.35052874e+09, 6.35046012e+09, 6.35052877e+09, 6.35052835e+09, 6.34708087e+09, 6.34701162e+09, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNomTOP16011TopPtRwgtSFSquared' : [ 6.36382978e+09, 6.36376206e+09, 6.36382981e+09, 6.36382942e+09, 6.36040851e+09, 6.36034043e+09, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNomLinearTopPtRwgtSF' : [ 6.35506954e+09, 6.35500074e+09, 6.35506954e+09, 6.35506916e+09, 6.35161535e+09, 6.35154613e+09, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNomLinearTopPtRwgtSFSquared' : [ 6.37156553e+09, 6.37149736e+09, 6.37156553e+09, 6.37156518e+09, 6.36813335e+09, 6.36806464e+09, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNomQuadraticTopPtRwgtSF' : [ 6.35700796e+09, 6.35693935e+09, 6.35700803e+09, 6.35700758e+09, 6.35355695e+09, 6.35348786e+09, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNomQuadraticTopPtRwgtSFSquared' : [ 6.37863713e+09, 6.37856912e+09, 6.37863716e+09, 6.37863674e+09, 6.37520972e+09, 6.37514111e+09, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNomHighPtTopPtRwgtSF' : [ 6.35611986e+09, 6.35605093e+09, 6.35611989e+09, 6.35611944e+09, 6.35266181e+09, 6.35259256e+09, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNomHighPtTopPtRwgtSFSquared' : [ 6.37362456e+09, 6.37355623e+09, 6.37362456e+09, 6.37362421e+09, 6.37018601e+09, 6.37011721e+09, ], }), ("nof_tree_events", 9000000), ("nof_db_events", 9000000), ("fsize_local", 58138263470), # 58.14GB, avg file size 3.06GB ("fsize_db", 482042390765), # 482.04GB, avg file size 3.15GB ("use_it", True), ("xsection", 88.4), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 4), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Apr19_woPresel_nom_all_hh_multilepton/ntuples/TTTo2L2Nu"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/TTTo2L2Nu_TuneCP5_PSweights_13TeV-powheg-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_new_pmx_94X_mc2017_realistic_v14-v2/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "TT"), ("process_name_specific", "TTTo2L2Nu_PSweights"), ("nof_files", 139), ("nof_db_files", 1056), ("nof_events", { 'Count' : [ 69155808, ], 'CountWeighted' : [ 6.85979175e+07, 6.85878494e+07, 6.85989456e+07, ], 'CountWeightedLHEWeightScale' : [ 7.72969749e+07, 7.59448753e+07, 7.50755166e+07, 7.02869512e+07, 6.85979175e+07, 6.72977642e+07, 6.35967246e+07, 6.17731067e+07, 6.02726437e+07, ], 'CountWeightedLHEEnvelope' : [ 8.35371461e+07, 5.61944379e+07, ], 'CountWeightedPSWeight' : [ 6.85961630e+07, 6.85928541e+07, 9.70986940e+07, 6.85947880e+07, 6.85220387e+07, 4.28641604e+07, ], 'CountWeightedPSWeightOriginalXWGTUP' : [ 6.91638446e+08, 6.91631410e+08, 6.91638848e+08, 6.91638437e+08, 6.91249910e+08, 6.91242060e+08, ], 'CountWeightedFull' : [ 4.98490159e+09, 4.98573864e+09, 4.98512130e+09, ], 'CountWeightedFullLHEWeightScale' : [ 5.61721866e+09, 5.51898049e+09, 5.45579150e+09, 5.10780679e+09, 4.98490159e+09, 4.89058932e+09, 4.62162091e+09, 4.48907526e+09, 4.38005647e+09, ], 'CountWeightedFullLHEEnvelope' : [ 6.07066803e+09, 4.08370301e+09, ], 'CountWeightedFullPSWeight' : [ 4.98494551e+09, 4.98468577e+09, 7.05622275e+09, 4.98482813e+09, 4.97954388e+09, 3.11497626e+09, ], 'CountWeightedFullPSWeightOriginalXWGTUP' : [ 5.02523311e+10, 5.02517917e+10, 5.02523311e+10, 5.02523307e+10, 5.02241008e+10, 5.02235606e+10, ], 'CountWeightedL1PrefireNom' : [ 6.65744752e+07, 6.65653112e+07, 6.65768443e+07, ], 'CountWeightedL1Prefire' : [ 6.65744752e+07, 6.60784251e+07, 6.70574265e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 7.49603285e+07, 7.36755602e+07, 7.28562732e+07, 6.81907510e+07, 6.65744752e+07, 6.53332549e+07, 6.17180392e+07, 5.99682637e+07, 5.85290558e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 8.10327023e+07, 5.45584518e+07, ], 'CountWeightedPSWeightL1PrefireNom' : [ 6.65828280e+07, 6.65496930e+07, 9.42134576e+07, 6.65598220e+07, 6.65332912e+07, 4.16273855e+07, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNom' : [ 6.71057166e+08, 6.71050376e+08, 6.71057520e+08, 6.71057160e+08, 6.70685272e+08, 6.70677760e+08, ], 'CountWeightedFullL1PrefireNom' : [ 4.83791253e+09, 4.83818391e+09, 4.83825890e+09, ], 'CountWeightedFullL1Prefire' : [ 4.83791253e+09, 4.80186198e+09, 4.87300669e+09, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 5.44742336e+09, 5.35408293e+09, 5.29452846e+09, 4.95548620e+09, 4.83791253e+09, 4.74783301e+09, 4.48510285e+09, 4.35793487e+09, 4.25335690e+09, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 5.88869483e+09, 3.96481939e+09, ], 'CountWeightedFullPSWeightL1PrefireNom' : [ 4.83864406e+09, 4.83621962e+09, 6.84656946e+09, 4.83695250e+09, 4.83502999e+09, 3.02510574e+09, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNom' : [ 4.87604047e+10, 4.87598867e+10, 4.87604049e+10, 4.87604043e+10, 4.87333708e+10, 4.87328510e+10, ], 'CountWeightedTOP16011TopPtRwgtSF' : [ 6.86476741e+07, 6.86475797e+07, 6.86466348e+07, ], 'CountWeightedTOP16011TopPtRwgtSFSquared' : [ 6.87897259e+07, 6.87900451e+07, 6.87899376e+07, ], 'CountWeightedLinearTopPtRwgtSF' : [ 6.86960182e+07, 6.86958716e+07, 6.86948112e+07, ], 'CountWeightedLinearTopPtRwgtSFSquared' : [ 6.88724687e+07, 6.88727589e+07, 6.88725152e+07, ], 'CountWeightedQuadraticTopPtRwgtSF' : [ 6.87139759e+07, 6.87140604e+07, 6.87133448e+07, ], 'CountWeightedQuadraticTopPtRwgtSFSquared' : [ 6.89432832e+07, 6.89436298e+07, 6.89434169e+07, ], 'CountWeightedHighPtTopPtRwgtSF' : [ 6.87052907e+07, 6.87052174e+07, 6.87044833e+07, ], 'CountWeightedHighPtTopPtRwgtSFSquared' : [ 6.88908032e+07, 6.88910377e+07, 6.88906758e+07, ], 'CountWeightedLHEWeightScaleTOP16011TopPtRwgtSF' : [ 7.73652052e+07, 7.60213148e+07, 7.51603812e+07, 7.03272899e+07, 6.86476741e+07, 6.73604989e+07, 6.36166535e+07, 6.18069802e+07, 6.03182231e+07, ], 'CountWeightedLHEWeightScaleTOP16011TopPtRwgtSFSquared' : [ 7.75342195e+07, 7.61966395e+07, 7.53424161e+07, 7.04603712e+07, 6.87897259e+07, 6.75110614e+07, 6.37215834e+07, 6.19227220e+07, 6.04431005e+07, ], 'CountWeightedLHEWeightScaleLinearTopPtRwgtSF' : [ 7.74195012e+07, 7.60736269e+07, 7.52111658e+07, 7.03780486e+07, 6.86960182e+07, 6.74068470e+07, 6.36636270e+07, 6.18513316e+07, 6.03603800e+07, ], 'CountWeightedLHEWeightScaleLinearTopPtRwgtSFSquared' : [ 7.76271431e+07, 7.62860591e+07, 7.54290331e+07, 7.05473851e+07, 6.88724687e+07, 6.75902100e+07, 6.38022518e+07, 6.19987407e+07, 6.05152512e+07, ], 'CountWeightedLHEWeightScaleQuadraticTopPtRwgtSF' : [ 7.74451097e+07, 7.60991120e+07, 7.52366465e+07, 7.03951512e+07, 6.87139759e+07, 6.74256772e+07, 6.36749149e+07, 6.18640923e+07, 6.03743996e+07, ], 'CountWeightedLHEWeightScaleQuadraticTopPtRwgtSFSquared' : [ 7.77172691e+07, 7.63754794e+07, 7.55181725e+07, 7.06170615e+07, 6.89432832e+07, 6.76620402e+07, 6.38567891e+07, 6.20555132e+07, 6.05738388e+07, ], 'CountWeightedLHEWeightScaleHighPtTopPtRwgtSF' : [ 7.74331867e+07, 7.60854924e+07, 7.52212670e+07, 7.03889501e+07, 6.87052907e+07, 6.74146428e+07, 6.36727552e+07, 6.18589409e+07, 6.03667223e+07, ], 'CountWeightedLHEWeightScaleHighPtTopPtRwgtSFSquared' : [ 7.76545184e+07, 7.63099000e+07, 7.54495829e+07, 7.05685938e+07, 6.88908032e+07, 6.76057288e+07, 6.38195636e+07, 6.20133530e+07, 6.05275594e+07, ], 'CountWeightedLHEEnvelopeTOP16011TopPtRwgtSF' : [ 8.35806541e+07, 5.62676466e+07, ], 'CountWeightedLHEEnvelopeTOP16011TopPtRwgtSFSquared' : [ 8.37348037e+07, 5.64131247e+07, ], 'CountWeightedLHEEnvelopeLinearTopPtRwgtSF' : [ 8.36414539e+07, 5.63046466e+07, ], 'CountWeightedLHEEnvelopeLinearTopPtRwgtSFSquared' : [ 8.38391832e+07, 5.64761280e+07, ], 'CountWeightedLHEEnvelopeQuadraticTopPtRwgtSF' : [ 8.36628859e+07, 5.63229131e+07, ], 'CountWeightedLHEEnvelopeQuadraticTopPtRwgtSFSquared' : [ 8.39239692e+07, 5.65413946e+07, ], 'CountWeightedLHEEnvelopeHighPtTopPtRwgtSF' : [ 8.36565309e+07, 5.63090529e+07, ], 'CountWeightedLHEEnvelopeHighPtTopPtRwgtSFSquared' : [ 8.38684859e+07, 5.64854417e+07, ], 'CountWeightedPSWeightTOP16011TopPtRwgtSF' : [ 6.86494944e+07, 6.86430062e+07, 9.71434951e+07, 6.86455168e+07, 6.85778853e+07, 4.29214859e+07, ], 'CountWeightedPSWeightTOP16011TopPtRwgtSFSquared' : [ 6.87930310e+07, 6.87833673e+07, 9.73166754e+07, 6.87862953e+07, 6.87235542e+07, 4.30343576e+07, ], 'CountWeightedPSWeightLinearTopPtRwgtSF' : [ 6.86976931e+07, 6.86915200e+07, 9.72142704e+07, 6.86939505e+07, 6.86258557e+07, 4.29496319e+07, ], 'CountWeightedPSWeightLinearTopPtRwgtSFSquared' : [ 6.88754987e+07, 6.88663848e+07, 9.74382218e+07, 6.88692222e+07, 6.88055754e+07, 4.30821716e+07, ], 'CountWeightedPSWeightQuadraticTopPtRwgtSF' : [ 6.87159050e+07, 6.87093481e+07, 9.72354795e+07, 6.87118105e+07, 6.86443606e+07, 4.29645673e+07, ], 'CountWeightedPSWeightQuadraticTopPtRwgtSFSquared' : [ 6.89467048e+07, 6.89367037e+07, 9.75291469e+07, 6.89396588e+07, 6.88772989e+07, 4.31341669e+07, ], 'CountWeightedPSWeightHighPtTopPtRwgtSF' : [ 6.87068559e+07, 6.87010126e+07, 9.72294039e+07, 6.87034384e+07, 6.86347666e+07, 4.29536650e+07, ], 'CountWeightedPSWeightHighPtTopPtRwgtSFSquared' : [ 6.88935507e+07, 6.88850096e+07, 9.74672664e+07, 6.88878340e+07, 6.88231945e+07, 4.30906779e+07, ], 'CountWeightedPSWeightOriginalXWGTUPTOP16011TopPtRwgtSF' : [ 6.91927892e+08, 6.91920938e+08, 6.91928288e+08, 6.91927884e+08, 6.91543437e+08, 6.91535688e+08, ], 'CountWeightedPSWeightOriginalXWGTUPTOP16011TopPtRwgtSFSquared' : [ 6.93221530e+08, 6.93214648e+08, 6.93221920e+08, 6.93221522e+08, 6.92840160e+08, 6.92832472e+08, ], 'CountWeightedPSWeightOriginalXWGTUPLinearTopPtRwgtSF' : [ 6.92431600e+08, 6.92424636e+08, 6.92431998e+08, 6.92431594e+08, 6.92046495e+08, 6.92038732e+08, ], 'CountWeightedPSWeightOriginalXWGTUPLinearTopPtRwgtSFSquared' : [ 6.94085442e+08, 6.94078534e+08, 6.94085835e+08, 6.94085434e+08, 6.93702907e+08, 6.93695200e+08, ], 'CountWeightedPSWeightOriginalXWGTUPQuadraticTopPtRwgtSF' : [ 6.92607014e+08, 6.92600053e+08, 6.92607410e+08, 6.92607006e+08, 6.92222164e+08, 6.92214398e+08, ], 'CountWeightedPSWeightOriginalXWGTUPQuadraticTopPtRwgtSFSquared' : [ 6.94776320e+08, 6.94769416e+08, 6.94776714e+08, 6.94776312e+08, 6.94394200e+08, 6.94386503e+08, ], 'CountWeightedPSWeightOriginalXWGTUPHighPtTopPtRwgtSF' : [ 6.92547952e+08, 6.92540984e+08, 6.92548353e+08, 6.92547946e+08, 6.92162293e+08, 6.92154514e+08, ], 'CountWeightedPSWeightOriginalXWGTUPHighPtTopPtRwgtSFSquared' : [ 6.94302460e+08, 6.94295531e+08, 6.94302856e+08, 6.94302452e+08, 6.93918964e+08, 6.93911226e+08, ], 'CountWeightedFullTOP16011TopPtRwgtSF' : [ 4.98867517e+09, 4.98867577e+09, 4.98867413e+09, ], 'CountWeightedFullTOP16011TopPtRwgtSFSquared' : [ 4.99904470e+09, 4.99902556e+09, 4.99900073e+09, ], 'CountWeightedFullLinearTopPtRwgtSF' : [ 4.99218129e+09, 4.99218466e+09, 4.99218132e+09, ], 'CountWeightedFullLinearTopPtRwgtSFSquared' : [ 5.00505032e+09, 5.00503331e+09, 5.00500793e+09, ], 'CountWeightedFullQuadraticTopPtRwgtSF' : [ 4.99350508e+09, 4.99349798e+09, 4.99350646e+09, ], 'CountWeightedFullQuadraticTopPtRwgtSFSquared' : [ 5.01018802e+09, 5.01018727e+09, 5.01015984e+09, ], 'CountWeightedFullHighPtTopPtRwgtSF' : [ 4.99285753e+09, 4.99286052e+09, 4.99287385e+09, ], 'CountWeightedFullHighPtTopPtRwgtSFSquared' : [ 5.00635628e+09, 5.00636010e+09, 5.00635514e+09, ], 'CountWeightedFullLHEWeightScaleTOP16011TopPtRwgtSF' : [ 5.62217659e+09, 5.52452430e+09, 5.46195742e+09, 5.11073539e+09, 4.98867517e+09, 4.89514261e+09, 4.62307824e+09, 4.49153825e+09, 4.38337131e+09, ], 'CountWeightedFullLHEWeightScaleTOP16011TopPtRwgtSFSquared' : [ 5.63446432e+09, 5.53726820e+09, 5.47518898e+09, 5.12040759e+09, 4.99904470e+09, 4.90607911e+09, 4.63070121e+09, 4.49995911e+09, 4.39245081e+09, ], 'CountWeightedFullLHEWeightScaleLinearTopPtRwgtSF' : [ 5.62612216e+09, 5.52832690e+09, 5.46564848e+09, 5.11442195e+09, 4.99218129e+09, 4.89850814e+09, 4.62648906e+09, 4.49475917e+09, 4.38643603e+09, ], 'CountWeightedFullLHEWeightScaleLinearTopPtRwgtSFSquared' : [ 5.64121510e+09, 5.54376269e+09, 5.48148426e+09, 5.12673083e+09, 5.00505032e+09, 4.91182979e+09, 4.63656587e+09, 4.50548178e+09, 4.39769242e+09, ], 'CountWeightedFullLHEWeightScaleQuadraticTopPtRwgtSF' : [ 5.62798326e+09, 5.53017837e+09, 5.46750012e+09, 5.11566551e+09, 4.99350508e+09, 4.89987622e+09, 4.62731060e+09, 4.49569197e+09, 4.38745435e+09, ], 'CountWeightedFullLHEWeightScaleQuadraticTopPtRwgtSFSquared' : [ 5.64776825e+09, 5.55026228e+09, 5.48796160e+09, 5.13179390e+09, 5.01018802e+09, 4.91705331e+09, 4.64052755e+09, 4.50961347e+09, 4.40194839e+09, ], 'CountWeightedFullLHEWeightScaleHighPtTopPtRwgtSF' : [ 5.62711837e+09, 5.52918828e+09, 5.46638287e+09, 5.11521748e+09, 4.99285753e+09, 4.89907559e+09, 4.62715630e+09, 4.49531844e+09, 4.38689600e+09, ], 'CountWeightedFullLHEWeightScaleHighPtTopPtRwgtSFSquared' : [ 5.64320319e+09, 5.54549523e+09, 5.48297432e+09, 5.12827314e+09, 5.00635628e+09, 4.91296216e+09, 4.63782399e+09, 4.50654969e+09, 4.39858368e+09, ], 'CountWeightedFullLHEEnvelopeTOP16011TopPtRwgtSF' : [ 6.07383958e+09, 4.08901281e+09, ], 'CountWeightedFullLHEEnvelopeTOP16011TopPtRwgtSFSquared' : [ 6.08506112e+09, 4.09958343e+09, ], 'CountWeightedFullLHEEnvelopeLinearTopPtRwgtSF' : [ 6.07825524e+09, 4.09170008e+09, ], 'CountWeightedFullLHEEnvelopeLinearTopPtRwgtSFSquared' : [ 6.09264118e+09, 4.10415984e+09, ], 'CountWeightedFullLHEEnvelopeQuadraticTopPtRwgtSF' : [ 6.07982038e+09, 4.09302662e+09, ], 'CountWeightedFullLHEEnvelopeQuadraticTopPtRwgtSFSquared' : [ 6.09881049e+09, 4.10889966e+09, ], 'CountWeightedFullLHEEnvelopeHighPtTopPtRwgtSF' : [ 6.07935661e+09, 4.09202190e+09, ], 'CountWeightedFullLHEEnvelopeHighPtTopPtRwgtSFSquared' : [ 6.09477522e+09, 4.10483588e+09, ], 'CountWeightedFullPSWeightTOP16011TopPtRwgtSF' : [ 4.98883402e+09, 4.98833891e+09, 7.05948414e+09, 4.98851363e+09, 4.98360575e+09, 3.11914398e+09, ], 'CountWeightedFullPSWeightTOP16011TopPtRwgtSFSquared' : [ 4.99926495e+09, 4.99854245e+09, 7.07206940e+09, 4.99875098e+09, 4.99419530e+09, 3.12734747e+09, ], 'CountWeightedFullPSWeightLinearTopPtRwgtSF' : [ 4.99233576e+09, 4.99185982e+09, 7.06462748e+09, 4.99203131e+09, 4.98708995e+09, 3.12118928e+09, ], 'CountWeightedFullPSWeightLinearTopPtRwgtSFSquared' : [ 5.00525826e+09, 5.00457167e+09, 7.08090455e+09, 5.00477501e+09, 5.00015525e+09, 3.13082192e+09, ], 'CountWeightedFullPSWeightQuadraticTopPtRwgtSF' : [ 4.99366117e+09, 4.99315652e+09, 7.06616528e+09, 4.99333347e+09, 4.98843771e+09, 3.12227444e+09, ], 'CountWeightedFullPSWeightQuadraticTopPtRwgtSFSquared' : [ 5.01042990e+09, 5.00968357e+09, 7.08750959e+09, 5.00989294e+09, 5.00536843e+09, 3.13460175e+09, ], 'CountWeightedFullPSWeightHighPtTopPtRwgtSF' : [ 4.99299994e+09, 4.99255132e+09, 7.06572544e+09, 4.99272083e+09, 4.98773852e+09, 3.12148188e+09, ], 'CountWeightedFullPSWeightHighPtTopPtRwgtSFSquared' : [ 5.00656530e+09, 5.00592337e+09, 7.08301055e+09, 5.00612626e+09, 5.00143545e+09, 3.13144231e+09, ], 'CountWeightedFullPSWeightOriginalXWGTUPTOP16011TopPtRwgtSF' : [ 5.02828509e+10, 5.02823171e+10, 5.02828510e+10, 5.02828505e+10, 5.02548855e+10, 5.02543510e+10, ], 'CountWeightedFullPSWeightOriginalXWGTUPTOP16011TopPtRwgtSFSquared' : [ 5.03768684e+10, 5.03763395e+10, 5.03768685e+10, 5.03768680e+10, 5.03491266e+10, 5.03485968e+10, ], 'CountWeightedFullPSWeightOriginalXWGTUPLinearTopPtRwgtSF' : [ 5.03195281e+10, 5.03189937e+10, 5.03195283e+10, 5.03195277e+10, 5.02915148e+10, 5.02909791e+10, ], 'CountWeightedFullPSWeightOriginalXWGTUPLinearTopPtRwgtSFSquared' : [ 5.04396192e+10, 5.04390885e+10, 5.04396195e+10, 5.04396188e+10, 5.04117917e+10, 5.04112604e+10, ], 'CountWeightedFullPSWeightOriginalXWGTUPQuadraticTopPtRwgtSF' : [ 5.03320262e+10, 5.03314926e+10, 5.03320263e+10, 5.03320259e+10, 5.03040333e+10, 5.03034986e+10, ], 'CountWeightedFullPSWeightOriginalXWGTUPQuadraticTopPtRwgtSFSquared' : [ 5.04899525e+10, 5.04894228e+10, 5.04899526e+10, 5.04899521e+10, 5.04621574e+10, 5.04616266e+10, ], 'CountWeightedFullPSWeightOriginalXWGTUPHighPtTopPtRwgtSF' : [ 5.03276322e+10, 5.03270965e+10, 5.03276323e+10, 5.03276317e+10, 5.02995787e+10, 5.02990428e+10, ], 'CountWeightedFullPSWeightOriginalXWGTUPHighPtTopPtRwgtSFSquared' : [ 5.04553093e+10, 5.04547774e+10, 5.04553094e+10, 5.04553090e+10, 5.04274131e+10, 5.04268804e+10, ], 'CountWeightedL1PrefireNomTOP16011TopPtRwgtSF' : [ 6.66376960e+07, 6.66347302e+07, 6.66395964e+07, ], 'CountWeightedL1PrefireNomTOP16011TopPtRwgtSFSquared' : [ 6.67899132e+07, 6.67872803e+07, 6.67927491e+07, ], 'CountWeightedL1PrefireNomLinearTopPtRwgtSF' : [ 6.66836243e+07, 6.66806051e+07, 6.66854168e+07, ], 'CountWeightedL1PrefireNomLinearTopPtRwgtSFSquared' : [ 6.68682323e+07, 6.68655950e+07, 6.68709711e+07, ], 'CountWeightedL1PrefireNomQuadraticTopPtRwgtSF' : [ 6.67044669e+07, 6.67016161e+07, 6.67066416e+07, ], 'CountWeightedL1PrefireNomQuadraticTopPtRwgtSFSquared' : [ 6.69439231e+07, 6.69413205e+07, 6.69467350e+07, ], 'CountWeightedL1PrefireNomHighPtTopPtRwgtSF' : [ 6.66927457e+07, 6.66898011e+07, 6.66948474e+07, ], 'CountWeightedL1PrefireNomHighPtTopPtRwgtSFSquared' : [ 6.68865277e+07, 6.68838434e+07, 6.68891270e+07, ], 'CountWeightedL1PrefireTOP16011TopPtRwgtSF' : [ 6.66376960e+07, 6.61441959e+07, 6.71188781e+07, ], 'CountWeightedL1PrefireTOP16011TopPtRwgtSFSquared' : [ 6.67899132e+07, 6.62980151e+07, 6.72693432e+07, ], 'CountWeightedL1PrefireLinearTopPtRwgtSF' : [ 6.66836243e+07, 6.61896025e+07, 6.71653466e+07, ], 'CountWeightedL1PrefireLinearTopPtRwgtSFSquared' : [ 6.68682323e+07, 6.63753933e+07, 6.73486235e+07, ], 'CountWeightedL1PrefireQuadraticTopPtRwgtSF' : [ 6.67044669e+07, 6.62109618e+07, 6.71856261e+07, ], 'CountWeightedL1PrefireQuadraticTopPtRwgtSFSquared' : [ 6.69439231e+07, 6.64518915e+07, 6.74234247e+07, ], 'CountWeightedL1PrefireHighPtTopPtRwgtSF' : [ 6.66927457e+07, 6.61987067e+07, 6.71744934e+07, ], 'CountWeightedL1PrefireHighPtTopPtRwgtSFSquared' : [ 6.68865277e+07, 6.63937050e+07, 6.73668943e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNomTOP16011TopPtRwgtSF' : [ 7.50442029e+07, 7.37665518e+07, 7.29545503e+07, 6.82451624e+07, 6.66376960e+07, 6.54077914e+07, 6.17506558e+07, 6.00137124e+07, 5.85851197e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNomTOP16011TopPtRwgtSFSquared' : [ 7.52256961e+07, 7.39533086e+07, 7.31470646e+07, 6.83894888e+07, 6.67899132e+07, 6.55675496e+07, 6.18656648e+07, 6.01385360e+07, 5.87181775e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNomLinearTopPtRwgtSF' : [ 7.50956231e+07, 7.38161649e+07, 7.30027338e+07, 6.82933391e+07, 6.66836243e+07, 6.54518586e+07, 6.17953247e+07, 6.00559088e+07, 5.86252775e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNomLinearTopPtRwgtSFSquared' : [ 7.53133860e+07, 7.40377618e+07, 7.32289642e+07, 6.84718064e+07, 6.68682323e+07, 6.56425343e+07, 6.19421652e+07, 6.02106567e+07, 5.87866473e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNomQuadraticTopPtRwgtSF' : [ 7.51244696e+07, 7.38447696e+07, 7.30312234e+07, 6.83134683e+07, 6.67044669e+07, 6.54734073e+07, 6.18093786e+07, 6.00713005e+07, 5.86417472e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNomQuadraticTopPtRwgtSFSquared' : [ 7.54090169e+07, 7.41324577e+07, 7.33231712e+07, 6.85466342e+07, 6.69439231e+07, 6.57189832e+07, 6.20014537e+07, 6.02718824e+07, 5.88494302e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNomHighPtTopPtRwgtSF' : [ 7.51088775e+07, 7.38277645e+07, 7.30127072e+07, 6.83040079e+07, 6.66927457e+07, 6.54596115e+07, 6.18042750e+07, 6.00634489e+07, 5.86316094e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNomHighPtTopPtRwgtSFSquared' : [ 7.53402337e+07, 7.40613704e+07, 7.32494920e+07, 6.84927522e+07, 6.68865277e+07, 6.56582137e+07, 6.19593633e+07, 6.02253515e+07, 5.87991813e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNomTOP16011TopPtRwgtSF' : [ 8.10934381e+07, 5.46409264e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNomTOP16011TopPtRwgtSFSquared' : [ 8.12613196e+07, 5.47935449e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNomLinearTopPtRwgtSF' : [ 8.11511349e+07, 5.46760809e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNomLinearTopPtRwgtSFSquared' : [ 8.13600396e+07, 5.48531897e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNomQuadraticTopPtRwgtSF' : [ 8.11761411e+07, 5.46965665e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNomQuadraticTopPtRwgtSFSquared' : [ 8.14508972e+07, 5.49222029e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNomHighPtTopPtRwgtSF' : [ 8.11657706e+07, 5.46805453e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNomHighPtTopPtRwgtSFSquared' : [ 8.13888082e+07, 5.48627805e+07, ], 'CountWeightedPSWeightL1PrefireNomTOP16011TopPtRwgtSF' : [ 6.66488109e+07, 6.66128593e+07, 9.42775176e+07, 6.66236425e+07, 6.66016602e+07, 4.16917515e+07, ], 'CountWeightedPSWeightL1PrefireNomTOP16011TopPtRwgtSFSquared' : [ 6.68022530e+07, 6.67634765e+07, 9.44660429e+07, 6.67747869e+07, 6.67571936e+07, 4.18100115e+07, ], 'CountWeightedPSWeightL1PrefireNomLinearTopPtRwgtSF' : [ 6.66946158e+07, 6.66589127e+07, 9.43447891e+07, 6.66696243e+07, 6.66472819e+07, 4.17184868e+07, ], 'CountWeightedPSWeightL1PrefireNomLinearTopPtRwgtSFSquared' : [ 6.68803738e+07, 6.68420542e+07, 9.45812288e+07, 6.68532838e+07, 6.68349229e+07, 4.18552740e+07, ], 'CountWeightedPSWeightL1PrefireNomQuadraticTopPtRwgtSF' : [ 6.67156820e+07, 6.66795988e+07, 9.43701111e+07, 6.66903741e+07, 6.66685894e+07, 4.17351102e+07, ], 'CountWeightedPSWeightL1PrefireNomQuadraticTopPtRwgtSFSquared' : [ 6.69564254e+07, 6.69172542e+07, 9.46792384e+07, 6.69285757e+07, 6.69114478e+07, 4.19101077e+07, ], 'CountWeightedPSWeightL1PrefireNomHighPtTopPtRwgtSF' : [ 6.67036776e+07, 6.66682569e+07, 9.43595564e+07, 6.66789139e+07, 6.66560738e+07, 4.17225622e+07, ], 'CountWeightedPSWeightL1PrefireNomHighPtTopPtRwgtSFSquared' : [ 6.68984681e+07, 6.68605988e+07, 9.46099267e+07, 6.68717619e+07, 6.68525733e+07, 4.18640067e+07, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNomTOP16011TopPtRwgtSF' : [ 6.71514496e+08, 6.71507779e+08, 6.71514846e+08, 6.71514489e+08, 6.71146252e+08, 6.71138831e+08, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNomTOP16011TopPtRwgtSFSquared' : [ 6.72914792e+08, 6.72908136e+08, 6.72915138e+08, 6.72914786e+08, 6.72549382e+08, 6.72542024e+08, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNomLinearTopPtRwgtSF' : [ 6.71993567e+08, 6.71986839e+08, 6.71993916e+08, 6.71993558e+08, 6.71624712e+08, 6.71617275e+08, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNomLinearTopPtRwgtSFSquared' : [ 6.73733366e+08, 6.73726688e+08, 6.73733715e+08, 6.73733359e+08, 6.73366870e+08, 6.73359487e+08, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNomQuadraticTopPtRwgtSF' : [ 6.72197236e+08, 6.72190510e+08, 6.72197588e+08, 6.72197229e+08, 6.71828599e+08, 6.71821164e+08, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNomQuadraticTopPtRwgtSFSquared' : [ 6.74474848e+08, 6.74468180e+08, 6.74475196e+08, 6.74474842e+08, 6.74108712e+08, 6.74101345e+08, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNomHighPtTopPtRwgtSF' : [ 6.72106772e+08, 6.72100037e+08, 6.72107124e+08, 6.72106765e+08, 6.71737408e+08, 6.71729958e+08, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNomHighPtTopPtRwgtSFSquared' : [ 6.73948659e+08, 6.73941964e+08, 6.73949009e+08, 6.73948652e+08, 6.73581233e+08, 6.73573832e+08, ], 'CountWeightedFullL1PrefireNomTOP16011TopPtRwgtSF' : [ 4.84260903e+09, 4.84240941e+09, 4.84282800e+09, ], 'CountWeightedFullL1PrefireNomTOP16011TopPtRwgtSFSquared' : [ 4.85371287e+09, 4.85349486e+09, 4.85388557e+09, ], 'CountWeightedFullL1PrefireNomLinearTopPtRwgtSF' : [ 4.84594108e+09, 4.84574341e+09, 4.84616204e+09, ], 'CountWeightedFullL1PrefireNomLinearTopPtRwgtSFSquared' : [ 4.85939960e+09, 4.85918141e+09, 4.85957494e+09, ], 'CountWeightedFullL1PrefireNomQuadraticTopPtRwgtSF' : [ 4.84747147e+09, 4.84726484e+09, 4.84768708e+09, ], 'CountWeightedFullL1PrefireNomQuadraticTopPtRwgtSFSquared' : [ 4.86489655e+09, 4.86468857e+09, 4.86507577e+09, ], 'CountWeightedFullL1PrefireNomHighPtTopPtRwgtSF' : [ 4.84660755e+09, 4.84640907e+09, 4.84683923e+09, ], 'CountWeightedFullL1PrefireNomHighPtTopPtRwgtSFSquared' : [ 4.86071010e+09, 4.86050749e+09, 4.86091382e+09, ], 'CountWeightedFullL1PrefireTOP16011TopPtRwgtSF' : [ 4.84260903e+09, 4.80674789e+09, 4.87757685e+09, ], 'CountWeightedFullL1PrefireTOP16011TopPtRwgtSFSquared' : [ 4.85371287e+09, 4.81796676e+09, 4.88855364e+09, ], 'CountWeightedFullL1PrefireLinearTopPtRwgtSF' : [ 4.84594108e+09, 4.81004088e+09, 4.88094776e+09, ], 'CountWeightedFullL1PrefireLinearTopPtRwgtSFSquared' : [ 4.85939960e+09, 4.82358578e+09, 4.89431128e+09, ], 'CountWeightedFullL1PrefireQuadraticTopPtRwgtSF' : [ 4.84747147e+09, 4.81160808e+09, 4.88243862e+09, ], 'CountWeightedFullL1PrefireQuadraticTopPtRwgtSFSquared' : [ 4.86489655e+09, 4.82914115e+09, 4.89974178e+09, ], 'CountWeightedFullL1PrefireHighPtTopPtRwgtSF' : [ 4.84660755e+09, 4.81070719e+09, 4.88161453e+09, ], 'CountWeightedFullL1PrefireHighPtTopPtRwgtSFSquared' : [ 4.86071010e+09, 4.82489719e+09, 4.89561746e+09, ], 'CountWeightedFullLHEWeightScaleL1PrefireNomTOP16011TopPtRwgtSF' : [ 5.45352156e+09, 5.36068424e+09, 5.30167036e+09, 4.95943744e+09, 4.84260903e+09, 4.75324518e+09, 4.48748098e+09, 4.36123526e+09, 4.25743353e+09, ], 'CountWeightedFullLHEWeightScaleL1PrefireNomTOP16011TopPtRwgtSFSquared' : [ 5.46671430e+09, 5.37425565e+09, 5.31566298e+09, 4.96992546e+09, 4.85371287e+09, 4.76485359e+09, 4.49583947e+09, 4.37031203e+09, 4.26710528e+09, ], 'CountWeightedFullLHEWeightScaleL1PrefireNomLinearTopPtRwgtSF' : [ 5.45725788e+09, 5.36428885e+09, 5.30517224e+09, 4.96293889e+09, 4.84594108e+09, 4.75644617e+09, 4.49072592e+09, 4.36429991e+09, 4.26035020e+09, ], 'CountWeightedFullLHEWeightScaleL1PrefireNomLinearTopPtRwgtSFSquared' : [ 5.47308673e+09, 5.38039046e+09, 5.32161510e+09, 4.97590784e+09, 4.85939960e+09, 4.77030287e+09, 4.50140119e+09, 4.37555048e+09, 4.27208092e+09, ], 'CountWeightedFullLHEWeightScaleL1PrefireNomQuadraticTopPtRwgtSF' : [ 5.45935178e+09, 5.36636548e+09, 5.30724196e+09, 4.96439996e+09, 4.84747147e+09, 4.75801265e+09, 4.49174806e+09, 4.36542177e+09, 4.26154726e+09, ], 'CountWeightedFullLHEWeightScaleL1PrefireNomQuadraticTopPtRwgtSFSquared' : [ 5.48003706e+09, 5.38727308e+09, 5.32846086e+09, 4.98134468e+09, 4.86489655e+09, 4.77586130e+09, 4.50570720e+09, 4.38000470e+09, 4.27664144e+09, ], 'CountWeightedFullLHEWeightScaleL1PrefireNomHighPtTopPtRwgtSF' : [ 5.45822352e+09, 5.36512943e+09, 5.30589632e+09, 4.96371264e+09, 4.84660755e+09, 4.75701085e+09, 4.49137903e+09, 4.36485283e+09, 4.26081081e+09, ], 'CountWeightedFullLHEWeightScaleL1PrefireNomHighPtTopPtRwgtSFSquared' : [ 5.47503547e+09, 5.38210504e+09, 5.32310553e+09, 4.97743053e+09, 4.86071010e+09, 4.77144471e+09, 4.50264887e+09, 4.37662336e+09, 4.27298901e+09, ], 'CountWeightedFullLHEEnvelopeL1PrefireNomTOP16011TopPtRwgtSF' : [ 5.89311071e+09, 3.97080615e+09, ], 'CountWeightedFullLHEEnvelopeL1PrefireNomTOP16011TopPtRwgtSFSquared' : [ 5.90532532e+09, 3.98189540e+09, ], 'CountWeightedFullLHEEnvelopeL1PrefireNomLinearTopPtRwgtSF' : [ 5.89730217e+09, 3.97335914e+09, ], 'CountWeightedFullLHEEnvelopeL1PrefireNomLinearTopPtRwgtSFSquared' : [ 5.91249413e+09, 3.98622724e+09, ], 'CountWeightedFullLHEEnvelopeL1PrefireNomQuadraticTopPtRwgtSF' : [ 5.89912256e+09, 3.97484694e+09, ], 'CountWeightedFullLHEEnvelopeL1PrefireNomQuadraticTopPtRwgtSFSquared' : [ 5.91910476e+09, 3.99124066e+09, ], 'CountWeightedFullLHEEnvelopeL1PrefireNomHighPtTopPtRwgtSF' : [ 5.89837115e+09, 3.97368362e+09, ], 'CountWeightedFullLHEEnvelopeL1PrefireNomHighPtTopPtRwgtSFSquared' : [ 5.91458929e+09, 3.98692390e+09, ], 'CountWeightedFullPSWeightL1PrefireNomTOP16011TopPtRwgtSF' : [ 4.84344897e+09, 4.84081686e+09, 6.85123048e+09, 4.84159121e+09, 4.84000233e+09, 3.02978342e+09, ], 'CountWeightedFullPSWeightL1PrefireNomTOP16011TopPtRwgtSFSquared' : [ 4.85460145e+09, 4.85176290e+09, 6.86493266e+09, 4.85258154e+09, 4.85130849e+09, 3.03837970e+09, ], 'CountWeightedFullPSWeightL1PrefireNomLinearTopPtRwgtSF' : [ 4.84677780e+09, 4.84415997e+09, 6.85611930e+09, 4.84493143e+09, 4.84331681e+09, 3.03172692e+09, ], 'CountWeightedFullPSWeightL1PrefireNomLinearTopPtRwgtSFSquared' : [ 4.86027950e+09, 4.85747071e+09, 6.87330003e+09, 4.85828367e+09, 4.85695723e+09, 3.04166903e+09, ], 'CountWeightedFullPSWeightL1PrefireNomQuadraticTopPtRwgtSF' : [ 4.84830940e+09, 4.84566451e+09, 6.85795992e+09, 4.84644174e+09, 4.84486700e+09, 3.03293481e+09, ], 'CountWeightedFullPSWeightL1PrefireNomQuadraticTopPtRwgtSFSquared' : [ 4.86580319e+09, 4.86293680e+09, 6.88042216e+09, 4.86375709e+09, 4.86251844e+09, 3.04565437e+09, ], 'CountWeightedFullPSWeightL1PrefireNomHighPtTopPtRwgtSF' : [ 4.84743445e+09, 4.84483964e+09, 6.85719180e+09, 4.84560810e+09, 4.84395553e+09, 3.03202313e+09, ], 'CountWeightedFullPSWeightL1PrefireNomHighPtTopPtRwgtSFSquared' : [ 4.86158945e+09, 4.85881816e+09, 6.87538515e+09, 4.85962453e+09, 4.85823829e+09, 3.04230363e+09, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNomTOP16011TopPtRwgtSF' : [ 4.87993826e+10, 4.87988697e+10, 4.87993827e+10, 4.87993822e+10, 4.87725988e+10, 4.87720849e+10, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNomTOP16011TopPtRwgtSFSquared' : [ 4.89012490e+10, 4.89007405e+10, 4.89012492e+10, 4.89012487e+10, 4.88746732e+10, 4.88741639e+10, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNomLinearTopPtRwgtSF' : [ 4.88342273e+10, 4.88337126e+10, 4.88342273e+10, 4.88342270e+10, 4.88073968e+10, 4.88068819e+10, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNomLinearTopPtRwgtSFSquared' : [ 4.89606860e+10, 4.89601757e+10, 4.89606861e+10, 4.89606856e+10, 4.89340280e+10, 4.89335176e+10, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNomQuadraticTopPtRwgtSF' : [ 4.88489101e+10, 4.88483970e+10, 4.88489102e+10, 4.88489097e+10, 4.88220997e+10, 4.88215859e+10, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNomQuadraticTopPtRwgtSFSquared' : [ 4.90147016e+10, 4.90141923e+10, 4.90147018e+10, 4.90147013e+10, 4.89880719e+10, 4.89875620e+10, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNomHighPtTopPtRwgtSF' : [ 4.88422212e+10, 4.88417061e+10, 4.88422212e+10, 4.88422208e+10, 4.88153552e+10, 4.88148396e+10, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNomHighPtTopPtRwgtSFSquared' : [ 4.89763157e+10, 4.89758044e+10, 4.89763158e+10, 4.89763154e+10, 4.89495919e+10, 4.89490796e+10, ], }), ("nof_tree_events", 69155808), ("nof_db_events", 69155808), ("fsize_local", 446798230813), # 446.80GB, avg file size 3.21GB ("fsize_db", 3693271643807), # 3.69TB, avg file size 3.50GB ("use_it", True), ("xsection", 88.4), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 4), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Apr19_woPresel_nom_all_hh_multilepton/ntuples/TTTo2L2Nu_PSweights"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/TTToSemiLeptonic_TuneCP5_13TeV-powheg-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_new_pmx_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "TT"), ("process_name_specific", "TTToSemiLeptonic"), ("nof_files", 88), ("nof_db_files", 828), ("nof_events", { 'Count' : [ 43732445, ], 'CountWeighted' : [ 4.33802525e+07, 4.33760685e+07, 4.33736310e+07, ], 'CountWeightedLHEWeightScale' : [ 4.88806096e+07, 4.80253673e+07, 4.74754843e+07, 4.44473127e+07, 4.33802525e+07, 4.25568326e+07, 4.02164623e+07, 3.90630748e+07, 3.81142152e+07, ], 'CountWeightedLHEEnvelope' : [ 5.28270918e+07, 3.55347184e+07, ], 'CountWeightedPSWeight' : [ 4.33796533e+07, 4.33821395e+07, 6.28721439e+07, 4.33781237e+07, 4.32969154e+07, 2.57981732e+07, ], 'CountWeightedPSWeightOriginalXWGTUP' : [ 4.37294839e+08, 4.37295048e+08, 4.37295050e+08, 4.37294844e+08, 4.37293444e+08, 4.37293233e+08, ], 'CountWeightedFull' : [ 1.31550734e+10, 1.31538653e+10, 1.31541553e+10, ], 'CountWeightedFullLHEWeightScale' : [ 1.48226700e+10, 1.45632511e+10, 1.43966028e+10, 1.34782965e+10, 1.31550734e+10, 1.29050642e+10, 1.21953607e+10, 1.18454912e+10, 1.15578608e+10, ], 'CountWeightedFullLHEEnvelope' : [ 1.60192801e+10, 1.07756456e+10, ], 'CountWeightedFullPSWeight' : [ 1.31546498e+10, 1.31553061e+10, 1.90654841e+10, 1.31541160e+10, 1.31294670e+10, 7.82312577e+09, ], 'CountWeightedFullPSWeightOriginalXWGTUP' : [ 1.32619057e+11, 1.32619057e+11, 1.32619057e+11, 1.32619057e+11, 1.32618570e+11, 1.32618569e+11, ], 'CountWeightedL1PrefireNom' : [ 4.20783286e+07, 4.20738809e+07, 4.20754432e+07, ], 'CountWeightedL1Prefire' : [ 4.20783286e+07, 4.17556117e+07, 4.23907843e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 4.73777552e+07, 4.65661093e+07, 4.60486941e+07, 4.30980965e+07, 4.20783286e+07, 4.12932080e+07, 3.90065479e+07, 3.79012258e+07, 3.69922509e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 5.12159731e+07, 3.44823266e+07, ], 'CountWeightedPSWeightL1PrefireNom' : [ 4.20841906e+07, 4.20634295e+07, 6.09752755e+07, 4.20687142e+07, 4.20243266e+07, 2.50402912e+07, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNom' : [ 4.24074455e+08, 4.24074641e+08, 4.24074642e+08, 4.24074456e+08, 4.24073119e+08, 4.24072933e+08, ], 'CountWeightedFullL1PrefireNom' : [ 1.27600425e+10, 1.27588882e+10, 1.27599572e+10, ], 'CountWeightedFullL1Prefire' : [ 1.27600425e+10, 1.26623865e+10, 1.28550149e+10, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 1.43669750e+10, 1.41208160e+10, 1.39639668e+10, 1.30692009e+10, 1.27600425e+10, 1.25219024e+10, 1.18284866e+10, 1.14932312e+10, 1.12176523e+10, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 1.55307823e+10, 1.04565362e+10, ], 'CountWeightedFullPSWeightL1PrefireNom' : [ 1.27618222e+10, 1.27554443e+10, 1.84903263e+10, 1.27570608e+10, 1.27435937e+10, 7.59332059e+09, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNom' : [ 1.28604458e+11, 1.28604458e+11, 1.28604458e+11, 1.28604458e+11, 1.28603997e+11, 1.28603997e+11, ], 'CountWeightedTOP16011TopPtRwgtSF' : [ 4.34115844e+07, 4.34116545e+07, 4.34108028e+07, ], 'CountWeightedTOP16011TopPtRwgtSFSquared' : [ 4.35011717e+07, 4.35016145e+07, 4.35012020e+07, ], 'CountWeightedLinearTopPtRwgtSF' : [ 4.34421634e+07, 4.34422584e+07, 4.34413672e+07, ], 'CountWeightedLinearTopPtRwgtSFSquared' : [ 4.35535643e+07, 4.35539132e+07, 4.35535251e+07, ], 'CountWeightedQuadraticTopPtRwgtSF' : [ 4.34535537e+07, 4.34537515e+07, 4.34530838e+07, ], 'CountWeightedQuadraticTopPtRwgtSFSquared' : [ 4.35983981e+07, 4.35987891e+07, 4.35983805e+07, ], 'CountWeightedHighPtTopPtRwgtSF' : [ 4.34481692e+07, 4.34482437e+07, 4.34475592e+07, ], 'CountWeightedHighPtTopPtRwgtSFSquared' : [ 4.35653759e+07, 4.35656835e+07, 4.35652304e+07, ], 'CountWeightedLHEWeightScaleTOP16011TopPtRwgtSF' : [ 4.89234732e+07, 4.80733145e+07, 4.75286973e+07, 4.44726542e+07, 4.34115844e+07, 4.25961953e+07, 4.02289221e+07, 3.90842570e+07, 3.81427502e+07, ], 'CountWeightedLHEWeightScaleTOP16011TopPtRwgtSFSquared' : [ 4.90301294e+07, 4.81838677e+07, 4.76433862e+07, 4.45566550e+07, 4.35011717e+07, 4.26910738e+07, 4.02951724e+07, 3.91572744e+07, 3.82215082e+07, ], 'CountWeightedLHEWeightScaleLinearTopPtRwgtSF' : [ 4.89578488e+07, 4.81064681e+07, 4.75608757e+07, 4.45047807e+07, 4.34421634e+07, 4.26255264e+07, 4.02586850e+07, 3.91123381e+07, 3.81694557e+07, ], 'CountWeightedLHEWeightScaleLinearTopPtRwgtSFSquared' : [ 4.90889692e+07, 4.82404844e+07, 4.76982473e+07, 4.46117355e+07, 4.35535643e+07, 4.27411927e+07, 4.03462642e+07, 3.92054179e+07, 3.82671949e+07, ], 'CountWeightedLHEWeightScaleQuadraticTopPtRwgtSF' : [ 4.89741060e+07, 4.81225884e+07, 4.75769554e+07, 4.45156547e+07, 4.34535537e+07, 4.26374259e+07, 4.02658555e+07, 3.91204388e+07, 3.81783216e+07, ], 'CountWeightedLHEWeightScaleQuadraticTopPtRwgtSFSquared' : [ 4.91461004e+07, 4.82970878e+07, 4.77545475e+07, 4.46558830e+07, 4.35983981e+07, 4.27866228e+07, 4.03808424e+07, 3.92413782e+07, 3.83042487e+07, ], 'CountWeightedLHEWeightScaleHighPtTopPtRwgtSF' : [ 4.89666790e+07, 4.81140770e+07, 4.75673805e+07, 4.45117892e+07, 4.34481692e+07, 4.26305304e+07, 4.02645564e+07, 3.91172271e+07, 3.81735450e+07, ], 'CountWeightedLHEWeightScaleHighPtTopPtRwgtSFSquared' : [ 4.91066041e+07, 4.82558181e+07, 4.77114728e+07, 4.46253957e+07, 4.35653759e+07, 4.27512017e+07, 4.03573924e+07, 3.92148514e+07, 3.82751416e+07, ], 'CountWeightedLHEEnvelopeTOP16011TopPtRwgtSF' : [ 5.28542658e+07, 3.55807414e+07, ], 'CountWeightedLHEEnvelopeTOP16011TopPtRwgtSFSquared' : [ 5.29514637e+07, 3.56725320e+07, ], 'CountWeightedLHEEnvelopeLinearTopPtRwgtSF' : [ 5.28927547e+07, 3.56041602e+07, ], 'CountWeightedLHEEnvelopeLinearTopPtRwgtSFSquared' : [ 5.30175232e+07, 3.57124353e+07, ], 'CountWeightedLHEEnvelopeQuadraticTopPtRwgtSF' : [ 5.29063500e+07, 3.56157157e+07, ], 'CountWeightedLHEEnvelopeQuadraticTopPtRwgtSFSquared' : [ 5.30712785e+07, 3.57536905e+07, ], 'CountWeightedLHEEnvelopeHighPtTopPtRwgtSF' : [ 5.29024461e+07, 3.56070300e+07, ], 'CountWeightedLHEEnvelopeHighPtTopPtRwgtSFSquared' : [ 5.30363929e+07, 3.57184691e+07, ], 'CountWeightedPSWeightTOP16011TopPtRwgtSF' : [ 4.34131720e+07, 4.34136073e+07, 6.29024318e+07, 4.34099080e+07, 4.33317815e+07, 2.58318055e+07, ], 'CountWeightedPSWeightTOP16011TopPtRwgtSFSquared' : [ 4.35037364e+07, 4.35021606e+07, 6.30158731e+07, 4.34986712e+07, 4.34234602e+07, 2.58988923e+07, ], 'CountWeightedPSWeightLinearTopPtRwgtSF' : [ 4.34436812e+07, 4.34443114e+07, 6.29482083e+07, 4.34405888e+07, 4.33621426e+07, 2.58488235e+07, ], 'CountWeightedPSWeightLinearTopPtRwgtSFSquared' : [ 4.35559545e+07, 4.35547310e+07, 6.30944401e+07, 4.35511915e+07, 4.34753735e+07, 2.59278309e+07, ], 'CountWeightedPSWeightQuadraticTopPtRwgtSF' : [ 4.34552510e+07, 4.34556138e+07, 6.29622178e+07, 4.34518839e+07, 4.33738359e+07, 2.58577001e+07, ], 'CountWeightedPSWeightQuadraticTopPtRwgtSFSquared' : [ 4.36010417e+07, 4.35992715e+07, 6.31539252e+07, 4.35957459e+07, 4.35206724e+07, 2.59588532e+07, ], 'CountWeightedPSWeightHighPtTopPtRwgtSF' : [ 4.34495908e+07, 4.34504605e+07, 6.29580509e+07, 4.34466609e+07, 4.33678696e+07, 2.58513428e+07, ], 'CountWeightedPSWeightHighPtTopPtRwgtSFSquared' : [ 4.35675978e+07, 4.35667597e+07, 6.31134069e+07, 4.35631573e+07, 4.34866749e+07, 2.59330804e+07, ], 'CountWeightedPSWeightOriginalXWGTUPTOP16011TopPtRwgtSF' : [ 4.37556094e+08, 4.37556298e+08, 4.37556300e+08, 4.37556096e+08, 4.37554712e+08, 4.37554504e+08, ], 'CountWeightedPSWeightOriginalXWGTUPTOP16011TopPtRwgtSFSquared' : [ 4.38371774e+08, 4.38371974e+08, 4.38371976e+08, 4.38371777e+08, 4.38370401e+08, 4.38370196e+08, ], 'CountWeightedPSWeightOriginalXWGTUPLinearTopPtRwgtSF' : [ 4.37875550e+08, 4.37875757e+08, 4.37875758e+08, 4.37875554e+08, 4.37874164e+08, 4.37873958e+08, ], 'CountWeightedPSWeightOriginalXWGTUPLinearTopPtRwgtSFSquared' : [ 4.38919027e+08, 4.38919230e+08, 4.38919232e+08, 4.38919032e+08, 4.38917648e+08, 4.38917442e+08, ], 'CountWeightedPSWeightOriginalXWGTUPQuadraticTopPtRwgtSF' : [ 4.37985844e+08, 4.37986052e+08, 4.37986052e+08, 4.37985849e+08, 4.37984456e+08, 4.37984247e+08, ], 'CountWeightedPSWeightOriginalXWGTUPQuadraticTopPtRwgtSFSquared' : [ 4.39356034e+08, 4.39356239e+08, 4.39356240e+08, 4.39356038e+08, 4.39354659e+08, 4.39354454e+08, ], 'CountWeightedPSWeightOriginalXWGTUPHighPtTopPtRwgtSF' : [ 4.37949122e+08, 4.37949324e+08, 4.37949326e+08, 4.37949124e+08, 4.37947732e+08, 4.37947522e+08, ], 'CountWeightedPSWeightOriginalXWGTUPHighPtTopPtRwgtSFSquared' : [ 4.39057958e+08, 4.39058162e+08, 4.39058162e+08, 4.39057962e+08, 4.39056576e+08, 4.39056369e+08, ], 'CountWeightedFullTOP16011TopPtRwgtSF' : [ 1.31644262e+10, 1.31642971e+10, 1.31640614e+10, ], 'CountWeightedFullTOP16011TopPtRwgtSFSquared' : [ 1.31915334e+10, 1.31915543e+10, 1.31913260e+10, ], 'CountWeightedFullLinearTopPtRwgtSF' : [ 1.31737092e+10, 1.31735688e+10, 1.31733125e+10, ], 'CountWeightedFullLinearTopPtRwgtSFSquared' : [ 1.32074149e+10, 1.32074255e+10, 1.32071848e+10, ], 'CountWeightedFullQuadraticTopPtRwgtSF' : [ 1.31771214e+10, 1.31770324e+10, 1.31768271e+10, ], 'CountWeightedFullQuadraticTopPtRwgtSFSquared' : [ 1.32209952e+10, 1.32210193e+10, 1.32208484e+10, ], 'CountWeightedFullHighPtTopPtRwgtSF' : [ 1.31754945e+10, 1.31753662e+10, 1.31751391e+10, ], 'CountWeightedFullHighPtTopPtRwgtSFSquared' : [ 1.32109722e+10, 1.32109819e+10, 1.32108123e+10, ], 'CountWeightedFullLHEWeightScaleTOP16011TopPtRwgtSF' : [ 1.48356844e+10, 1.45778770e+10, 1.44127370e+10, 1.34859848e+10, 1.31644262e+10, 1.29169805e+10, 1.21991526e+10, 1.18519581e+10, 1.15665276e+10, ], 'CountWeightedFullLHEWeightScaleTOP16011TopPtRwgtSFSquared' : [ 1.48680248e+10, 1.46114171e+10, 1.44475274e+10, 1.35114839e+10, 1.31915334e+10, 1.29457669e+10, 1.22192338e+10, 1.18741484e+10, 1.15904124e+10, ], 'CountWeightedFullLHEWeightScaleLinearTopPtRwgtSF' : [ 1.48461085e+10, 1.45879226e+10, 1.44224880e+10, 1.34957231e+10, 1.31737092e+10, 1.29258851e+10, 1.22081720e+10, 1.18604692e+10, 1.15746254e+10, ], 'CountWeightedFullLHEWeightScaleLinearTopPtRwgtSFSquared' : [ 1.48858724e+10, 1.46285780e+10, 1.44641715e+10, 1.35281899e+10, 1.32074149e+10, 1.29609645e+10, 1.22347241e+10, 1.18887291e+10, 1.16042640e+10, ], 'CountWeightedFullLHEWeightScaleQuadraticTopPtRwgtSF' : [ 1.48510324e+10, 1.45928184e+10, 1.44273638e+10, 1.34990351e+10, 1.31771214e+10, 1.29294912e+10, 1.22103502e+10, 1.18629341e+10, 1.15773103e+10, ], 'CountWeightedFullLHEWeightScaleQuadraticTopPtRwgtSFSquared' : [ 1.49031929e+10, 1.46457426e+10, 1.44812340e+10, 1.35415824e+10, 1.32209952e+10, 1.29747409e+10, 1.22452092e+10, 1.18996661e+10, 1.16155003e+10, ], 'CountWeightedFullLHEWeightScaleHighPtTopPtRwgtSF' : [ 1.48487828e+10, 1.45902363e+10, 1.44244486e+10, 1.34978506e+10, 1.31754945e+10, 1.29274036e+10, 1.22099553e+10, 1.18619624e+10, 1.15758553e+10, ], 'CountWeightedFullLHEWeightScaleHighPtTopPtRwgtSFSquared' : [ 1.48912103e+10, 1.46332290e+10, 1.44681603e+10, 1.35323326e+10, 1.32109722e+10, 1.29640025e+10, 1.22381079e+10, 1.18916028e+10, 1.16066677e+10, ], 'CountWeightedFullLHEEnvelopeTOP16011TopPtRwgtSF' : [ 1.60276269e+10, 1.07895939e+10, ], 'CountWeightedFullLHEEnvelopeTOP16011TopPtRwgtSFSquared' : [ 1.60571386e+10, 1.08174188e+10, ], 'CountWeightedFullLHEEnvelopeLinearTopPtRwgtSF' : [ 1.60392986e+10, 1.07967026e+10, ], 'CountWeightedFullLHEEnvelopeLinearTopPtRwgtSFSquared' : [ 1.60771760e+10, 1.08295155e+10, ], 'CountWeightedFullLHEEnvelopeQuadraticTopPtRwgtSF' : [ 1.60434297e+10, 1.08001931e+10, ], 'CountWeightedFullLHEEnvelopeQuadraticTopPtRwgtSFSquared' : [ 1.60934788e+10, 1.08420277e+10, ], 'CountWeightedFullLHEEnvelopeHighPtTopPtRwgtSF' : [ 1.60422392e+10, 1.07975619e+10, ], 'CountWeightedFullLHEEnvelopeHighPtTopPtRwgtSFSquared' : [ 1.60828840e+10, 1.08313480e+10, ], 'CountWeightedFullPSWeightTOP16011TopPtRwgtSF' : [ 1.31648049e+10, 1.31648604e+10, 1.90746968e+10, 1.31637442e+10, 1.31400592e+10, 7.83333048e+09, ], 'CountWeightedFullPSWeightTOP16011TopPtRwgtSFSquared' : [ 1.31922696e+10, 1.31917193e+10, 1.91090969e+10, 1.31906695e+10, 1.31678644e+10, 7.85368178e+09, ], 'CountWeightedFullPSWeightLinearTopPtRwgtSF' : [ 1.31740660e+10, 1.31741659e+10, 1.90885584e+10, 1.31730421e+10, 1.31492611e+10, 7.83849334e+09, ], 'CountWeightedFullPSWeightLinearTopPtRwgtSFSquared' : [ 1.32081013e+10, 1.32076565e+10, 1.91329109e+10, 1.32065905e+10, 1.31836126e+10, 7.86245371e+09, ], 'CountWeightedFullPSWeightQuadraticTopPtRwgtSF' : [ 1.31775637e+10, 1.31776066e+10, 1.90928064e+10, 1.31764728e+10, 1.31528038e+10, 7.84118134e+09, ], 'CountWeightedFullPSWeightQuadraticTopPtRwgtSFSquared' : [ 1.32217692e+10, 1.32211765e+10, 1.91509701e+10, 1.32200978e+10, 1.31973433e+10, 7.87185991e+09, ], 'CountWeightedFullPSWeightHighPtTopPtRwgtSF' : [ 1.31758532e+10, 1.31760318e+10, 1.90915470e+10, 1.31748847e+10, 1.31510004e+10, 7.83925142e+09, ], 'CountWeightedFullPSWeightHighPtTopPtRwgtSFSquared' : [ 1.32116276e+10, 1.32113099e+10, 1.91386632e+10, 1.32102097e+10, 1.31870334e+10, 7.86404603e+09, ], 'CountWeightedFullPSWeightOriginalXWGTUPTOP16011TopPtRwgtSF' : [ 1.32686328e+11, 1.32686328e+11, 1.32686328e+11, 1.32686328e+11, 1.32685849e+11, 1.32685848e+11, ], 'CountWeightedFullPSWeightOriginalXWGTUPTOP16011TopPtRwgtSFSquared' : [ 1.32933262e+11, 1.32933262e+11, 1.32933262e+11, 1.32933262e+11, 1.32932784e+11, 1.32932783e+11, ], 'CountWeightedFullPSWeightOriginalXWGTUPLinearTopPtRwgtSF' : [ 1.32783162e+11, 1.32783162e+11, 1.32783162e+11, 1.32783162e+11, 1.32782679e+11, 1.32782679e+11, ], 'CountWeightedFullPSWeightOriginalXWGTUPLinearTopPtRwgtSFSquared' : [ 1.33099205e+11, 1.33099205e+11, 1.33099205e+11, 1.33099205e+11, 1.33098725e+11, 1.33098724e+11, ], 'CountWeightedFullPSWeightOriginalXWGTUPQuadraticTopPtRwgtSF' : [ 1.32816276e+11, 1.32816276e+11, 1.32816276e+11, 1.32816276e+11, 1.32815793e+11, 1.32815792e+11, ], 'CountWeightedFullPSWeightOriginalXWGTUPQuadraticTopPtRwgtSFSquared' : [ 1.33231835e+11, 1.33231835e+11, 1.33231835e+11, 1.33231835e+11, 1.33231355e+11, 1.33231354e+11, ], 'CountWeightedFullPSWeightOriginalXWGTUPHighPtTopPtRwgtSF' : [ 1.32805055e+11, 1.32805055e+11, 1.32805055e+11, 1.32805055e+11, 1.32804571e+11, 1.32804571e+11, ], 'CountWeightedFullPSWeightOriginalXWGTUPHighPtTopPtRwgtSFSquared' : [ 1.33141149e+11, 1.33141148e+11, 1.33141149e+11, 1.33141149e+11, 1.33140668e+11, 1.33140667e+11, ], 'CountWeightedL1PrefireNomTOP16011TopPtRwgtSF' : [ 4.21199795e+07, 4.21182721e+07, 4.21209439e+07, ], 'CountWeightedL1PrefireNomTOP16011TopPtRwgtSFSquared' : [ 4.22177838e+07, 4.22163883e+07, 4.22193362e+07, ], 'CountWeightedL1PrefireNomLinearTopPtRwgtSF' : [ 4.21489021e+07, 4.21472071e+07, 4.21498504e+07, ], 'CountWeightedL1PrefireNomLinearTopPtRwgtSFSquared' : [ 4.22671214e+07, 4.22656572e+07, 4.22686282e+07, ], 'CountWeightedL1PrefireNomQuadraticTopPtRwgtSF' : [ 4.21625753e+07, 4.21609842e+07, 4.21637535e+07, ], 'CountWeightedL1PrefireNomQuadraticTopPtRwgtSFSquared' : [ 4.23159586e+07, 4.23145342e+07, 4.23175307e+07, ], 'CountWeightedL1PrefireNomHighPtTopPtRwgtSF' : [ 4.21548529e+07, 4.21531688e+07, 4.21559545e+07, ], 'CountWeightedL1PrefireNomHighPtTopPtRwgtSFSquared' : [ 4.22790245e+07, 4.22775351e+07, 4.22804840e+07, ], 'CountWeightedL1PrefireTOP16011TopPtRwgtSF' : [ 4.21199795e+07, 4.17994029e+07, 4.24309609e+07, ], 'CountWeightedL1PrefireTOP16011TopPtRwgtSFSquared' : [ 4.22177838e+07, 4.18985594e+07, 4.25272947e+07, ], 'CountWeightedL1PrefireLinearTopPtRwgtSF' : [ 4.21489021e+07, 4.18279710e+07, 4.24602358e+07, ], 'CountWeightedL1PrefireLinearTopPtRwgtSFSquared' : [ 4.22671214e+07, 4.19472563e+07, 4.25773003e+07, ], 'CountWeightedL1PrefireQuadraticTopPtRwgtSF' : [ 4.21625753e+07, 4.18420894e+07, 4.24734782e+07, ], 'CountWeightedL1PrefireQuadraticTopPtRwgtSFSquared' : [ 4.23159586e+07, 4.19967873e+07, 4.26253694e+07, ], 'CountWeightedL1PrefireHighPtTopPtRwgtSF' : [ 4.21548529e+07, 4.18339414e+07, 4.24662044e+07, ], 'CountWeightedL1PrefireHighPtTopPtRwgtSFSquared' : [ 4.22790245e+07, 4.19591986e+07, 4.25891427e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNomTOP16011TopPtRwgtSF' : [ 4.74326028e+07, 4.66253074e+07, 4.61123834e+07, 4.31342721e+07, 4.21199795e+07, 4.13418260e+07, 3.90288124e+07, 3.79314257e+07, 3.70290563e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNomTOP16011TopPtRwgtSFSquared' : [ 4.75491604e+07, 4.67450108e+07, 4.62356265e+07, 4.32272099e+07, 4.22177838e+07, 4.14442605e+07, 3.91031232e+07, 3.80118083e+07, 3.71145455e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNomLinearTopPtRwgtSF' : [ 4.74650122e+07, 4.66565693e+07, 4.61427629e+07, 4.31646080e+07, 4.21489021e+07, 4.13695804e+07, 3.90569738e+07, 3.79580192e+07, 3.70543618e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNomLinearTopPtRwgtSFSquared' : [ 4.76043732e+07, 4.67982152e+07, 4.62872090e+07, 4.32790528e+07, 4.22671214e+07, 4.14915097e+07, 3.91512998e+07, 3.80572378e+07, 3.71576663e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNomQuadraticTopPtRwgtSF' : [ 4.74838292e+07, 4.66751874e+07, 4.61612588e+07, 4.31778811e+07, 4.21625753e+07, 4.13836720e+07, 3.90663512e+07, 3.79682053e+07, 3.70652147e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNomQuadraticTopPtRwgtSFSquared' : [ 4.76660205e+07, 4.68591818e+07, 4.63477540e+07, 4.33274277e+07, 4.23159586e+07, 4.15407810e+07, 3.91897819e+07, 3.80968670e+07, 3.71982057e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNomHighPtTopPtRwgtSF' : [ 4.74736223e+07, 4.66641056e+07, 4.61492359e+07, 4.31715110e+07, 4.21548529e+07, 4.13746145e+07, 3.90627727e+07, 3.79629104e+07, 3.70584980e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNomHighPtTopPtRwgtSFSquared' : [ 4.76218278e+07, 4.68135569e+07, 4.63005762e+07, 4.32926704e+07, 4.22790245e+07, 4.15017297e+07, 3.91624842e+07, 3.80668245e+07, 3.71658823e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNomTOP16011TopPtRwgtSF' : [ 5.12562752e+07, 3.45357443e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNomTOP16011TopPtRwgtSFSquared' : [ 5.13643172e+07, 3.46335106e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNomLinearTopPtRwgtSF' : [ 5.12926474e+07, 3.45578889e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNomLinearTopPtRwgtSFSquared' : [ 5.14264730e+07, 3.46710485e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNomQuadraticTopPtRwgtSF' : [ 5.13090653e+07, 3.45712404e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNomQuadraticTopPtRwgtSFSquared' : [ 5.14852093e+07, 3.47154720e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNomHighPtTopPtRwgtSF' : [ 5.13021032e+07, 3.45608250e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNomHighPtTopPtRwgtSFSquared' : [ 5.14451737e+07, 3.46773942e+07, ], 'CountWeightedPSWeightL1PrefireNomTOP16011TopPtRwgtSF' : [ 4.21275472e+07, 4.21049600e+07, 6.10207049e+07, 4.21106619e+07, 4.20690345e+07, 2.50792952e+07, ], 'CountWeightedPSWeightL1PrefireNomTOP16011TopPtRwgtSFSquared' : [ 4.22261669e+07, 4.22017564e+07, 6.11466219e+07, 4.22077435e+07, 4.21687906e+07, 2.51507210e+07, ], 'CountWeightedPSWeightL1PrefireNomLinearTopPtRwgtSF' : [ 4.21564241e+07, 4.21339748e+07, 6.10639792e+07, 4.21396393e+07, 4.20977628e+07, 2.50953871e+07, ], 'CountWeightedPSWeightL1PrefireNomLinearTopPtRwgtSFSquared' : [ 4.22753612e+07, 4.22512442e+07, 6.12206569e+07, 4.22571789e+07, 4.22177132e+07, 2.51779583e+07, ], 'CountWeightedPSWeightL1PrefireNomQuadraticTopPtRwgtSF' : [ 4.21702481e+07, 4.21475765e+07, 6.10813698e+07, 4.21532374e+07, 4.21117015e+07, 2.51055567e+07, ], 'CountWeightedPSWeightL1PrefireNomQuadraticTopPtRwgtSFSquared' : [ 4.23244727e+07, 4.22998228e+07, 6.12861004e+07, 4.23057926e+07, 4.22670167e+07, 2.52112717e+07, ], 'CountWeightedPSWeightL1PrefireNomHighPtTopPtRwgtSF' : [ 4.21623162e+07, 4.21400779e+07, 6.10736759e+07, 4.21456544e+07, 4.21034458e+07, 2.50979571e+07, ], 'CountWeightedPSWeightL1PrefireNomHighPtTopPtRwgtSFSquared' : [ 4.22871613e+07, 4.22633864e+07, 6.12396102e+07, 4.22692174e+07, 4.22291511e+07, 2.51834192e+07, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNomTOP16011TopPtRwgtSF' : [ 4.24429372e+08, 4.24429554e+08, 4.24429555e+08, 4.24429374e+08, 4.24428043e+08, 4.24427858e+08, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNomTOP16011TopPtRwgtSFSquared' : [ 4.25331266e+08, 4.25331446e+08, 4.25331448e+08, 4.25331268e+08, 4.25329947e+08, 4.25329765e+08, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNomLinearTopPtRwgtSF' : [ 4.24731476e+08, 4.24731659e+08, 4.24731660e+08, 4.24731478e+08, 4.24730146e+08, 4.24729958e+08, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNomLinearTopPtRwgtSFSquared' : [ 4.25846750e+08, 4.25846931e+08, 4.25846932e+08, 4.25846752e+08, 4.25845430e+08, 4.25845246e+08, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNomQuadraticTopPtRwgtSF' : [ 4.24864740e+08, 4.24864924e+08, 4.24864925e+08, 4.24864742e+08, 4.24863413e+08, 4.24863226e+08, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNomQuadraticTopPtRwgtSFSquared' : [ 4.26325474e+08, 4.26325656e+08, 4.26325656e+08, 4.26325475e+08, 4.26324155e+08, 4.26323970e+08, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNomHighPtTopPtRwgtSF' : [ 4.24803830e+08, 4.24804015e+08, 4.24804016e+08, 4.24803832e+08, 4.24802496e+08, 4.24802310e+08, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNomHighPtTopPtRwgtSFSquared' : [ 4.25985843e+08, 4.25986024e+08, 4.25986026e+08, 4.25985844e+08, 4.25984516e+08, 4.25984331e+08, ], 'CountWeightedFullL1PrefireNomTOP16011TopPtRwgtSF' : [ 1.27727303e+10, 1.27721113e+10, 1.27729521e+10, ], 'CountWeightedFullL1PrefireNomTOP16011TopPtRwgtSFSquared' : [ 1.28023522e+10, 1.28018430e+10, 1.28026729e+10, ], 'CountWeightedFullL1PrefireNomLinearTopPtRwgtSF' : [ 1.27815043e+10, 1.27808751e+10, 1.27817092e+10, ], 'CountWeightedFullL1PrefireNomLinearTopPtRwgtSFSquared' : [ 1.28173094e+10, 1.28167935e+10, 1.28176178e+10, ], 'CountWeightedFullL1PrefireNomQuadraticTopPtRwgtSF' : [ 1.27856233e+10, 1.27850352e+10, 1.27859050e+10, ], 'CountWeightedFullL1PrefireNomQuadraticTopPtRwgtSFSquared' : [ 1.28321117e+10, 1.28316088e+10, 1.28324804e+10, ], 'CountWeightedFullL1PrefireNomHighPtTopPtRwgtSF' : [ 1.27832813e+10, 1.27826660e+10, 1.27835240e+10, ], 'CountWeightedFullL1PrefireNomHighPtTopPtRwgtSFSquared' : [ 1.28208955e+10, 1.28203895e+10, 1.28212732e+10, ], 'CountWeightedFullL1PrefireTOP16011TopPtRwgtSF' : [ 1.27727303e+10, 1.26755227e+10, 1.28670441e+10, ], 'CountWeightedFullL1PrefireTOP16011TopPtRwgtSFSquared' : [ 1.28023522e+10, 1.27055536e+10, 1.28962117e+10, ], 'CountWeightedFullL1PrefireLinearTopPtRwgtSF' : [ 1.27815043e+10, 1.26841902e+10, 1.28759279e+10, ], 'CountWeightedFullL1PrefireLinearTopPtRwgtSFSquared' : [ 1.28173094e+10, 1.27203130e+10, 1.29113691e+10, ], 'CountWeightedFullL1PrefireQuadraticTopPtRwgtSF' : [ 1.27856233e+10, 1.26884393e+10, 1.28799080e+10, ], 'CountWeightedFullL1PrefireQuadraticTopPtRwgtSFSquared' : [ 1.28321117e+10, 1.27353286e+10, 1.29259403e+10, ], 'CountWeightedFullL1PrefireHighPtTopPtRwgtSF' : [ 1.27832813e+10, 1.26859671e+10, 1.28776987e+10, ], 'CountWeightedFullL1PrefireHighPtTopPtRwgtSFSquared' : [ 1.28208955e+10, 1.27239186e+10, 1.29149405e+10, ], 'CountWeightedFullLHEWeightScaleL1PrefireNomTOP16011TopPtRwgtSF' : [ 1.43836138e+10, 1.41388178e+10, 1.39832745e+10, 1.30801628e+10, 1.27727303e+10, 1.25366318e+10, 1.18352437e+10, 1.15024043e+10, 1.12288263e+10, ], 'CountWeightedFullLHEWeightScaleL1PrefireNomTOP16011TopPtRwgtSFSquared' : [ 1.44189643e+10, 1.41751274e+10, 1.40206607e+10, 1.31083667e+10, 1.28023522e+10, 1.25677065e+10, 1.18577772e+10, 1.15268182e+10, 1.12547486e+10, ], 'CountWeightedFullLHEWeightScaleL1PrefireNomLinearTopPtRwgtSF' : [ 1.43934408e+10, 1.41482931e+10, 1.39924817e+10, 1.30893641e+10, 1.27815043e+10, 1.25450519e+10, 1.18437779e+10, 1.15104686e+10, 1.12365015e+10, ], 'CountWeightedFullLHEWeightScaleL1PrefireNomLinearTopPtRwgtSFSquared' : [ 1.44357079e+10, 1.41912491e+10, 1.40363011e+10, 1.31240909e+10, 1.28173094e+10, 1.25820293e+10, 1.18723833e+10, 1.15405793e+10, 1.12678290e+10, ], 'CountWeightedFullLHEWeightScaleL1PrefireNomQuadraticTopPtRwgtSF' : [ 1.43991451e+10, 1.41539434e+10, 1.39980947e+10, 1.30934011e+10, 1.27856233e+10, 1.25493271e+10, 1.18466270e+10, 1.15135629e+10, 1.12397817e+10, ], 'CountWeightedFullLHEWeightScaleL1PrefireNomQuadraticTopPtRwgtSFSquared' : [ 1.44544010e+10, 1.42097417e+10, 1.40546627e+10, 1.31387663e+10, 1.28321117e+10, 1.25969688e+10, 1.18840556e+10, 1.15526218e+10, 1.12801214e+10, ], 'CountWeightedFullLHEWeightScaleL1PrefireNomHighPtTopPtRwgtSF' : [ 1.43960552e+10, 1.41505767e+10, 1.39944408e+10, 1.30914602e+10, 1.27832813e+10, 1.25465816e+10, 1.18455450e+10, 1.15119661e+10, 1.12377446e+10, ], 'CountWeightedFullLHEWeightScaleL1PrefireNomHighPtTopPtRwgtSFSquared' : [ 1.44409882e+10, 1.41959009e+10, 1.40403468e+10, 1.31282247e+10, 1.28208955e+10, 1.25851398e+10, 1.18757791e+10, 1.15434992e+10, 1.12703121e+10, ], 'CountWeightedFullLHEEnvelopeL1PrefireNomTOP16011TopPtRwgtSF' : [ 1.55430838e+10, 1.04727261e+10, ], 'CountWeightedFullLHEEnvelopeL1PrefireNomTOP16011TopPtRwgtSFSquared' : [ 1.55758783e+10, 1.05023621e+10, ], 'CountWeightedFullLHEEnvelopeL1PrefireNomLinearTopPtRwgtSF' : [ 1.55541061e+10, 1.04794479e+10, ], 'CountWeightedFullLHEEnvelopeL1PrefireNomLinearTopPtRwgtSFSquared' : [ 1.55947312e+10, 1.05137482e+10, ], 'CountWeightedFullLHEEnvelopeL1PrefireNomQuadraticTopPtRwgtSF' : [ 1.55591003e+10, 1.04834835e+10, ], 'CountWeightedFullLHEEnvelopeL1PrefireNomQuadraticTopPtRwgtSFSquared' : [ 1.56125477e+10, 1.05272181e+10, ], 'CountWeightedFullLHEEnvelopeL1PrefireNomHighPtTopPtRwgtSF' : [ 1.55569864e+10, 1.04803339e+10, ], 'CountWeightedFullLHEEnvelopeL1PrefireNomHighPtTopPtRwgtSFSquared' : [ 1.56003911e+10, 1.05156724e+10, ], 'CountWeightedFullPSWeightL1PrefireNomTOP16011TopPtRwgtSF' : [ 1.27749668e+10, 1.27680484e+10, 1.85041205e+10, 1.27697745e+10, 1.27571644e+10, 7.60515222e+09, ], 'CountWeightedFullPSWeightL1PrefireNomTOP16011TopPtRwgtSFSquared' : [ 1.28048683e+10, 1.27974112e+10, 1.85423125e+10, 1.27992249e+10, 1.27874196e+10, 7.62681702e+09, ], 'CountWeightedFullPSWeightL1PrefireNomLinearTopPtRwgtSF' : [ 1.27837251e+10, 1.27768449e+10, 1.85172426e+10, 1.27785620e+10, 1.27658720e+10, 7.61003220e+09, ], 'CountWeightedFullPSWeightL1PrefireNomLinearTopPtRwgtSFSquared' : [ 1.28197894e+10, 1.28124095e+10, 1.85647497e+10, 1.28142142e+10, 1.28022580e+10, 7.63507665e+09, ], 'CountWeightedFullPSWeightL1PrefireNomQuadraticTopPtRwgtSF' : [ 1.27879151e+10, 1.27809761e+10, 1.85225073e+10, 1.27826890e+10, 1.27700985e+10, 7.61311588e+09, ], 'CountWeightedFullPSWeightL1PrefireNomQuadraticTopPtRwgtSFSquared' : [ 1.28346767e+10, 1.28271532e+10, 1.85846163e+10, 1.28289467e+10, 1.28172040e+10, 7.64517620e+09, ], 'CountWeightedFullPSWeightL1PrefireNomHighPtTopPtRwgtSF' : [ 1.27855091e+10, 1.27786953e+10, 1.85201799e+10, 1.27803846e+10, 1.27676013e+10, 7.61080865e+09, ], 'CountWeightedFullPSWeightL1PrefireNomHighPtTopPtRwgtSFSquared' : [ 1.28233684e+10, 1.28160941e+10, 1.85704981e+10, 1.28178559e+10, 1.28057223e+10, 7.63673158e+09, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNomTOP16011TopPtRwgtSF' : [ 1.28705628e+11, 1.28705627e+11, 1.28705628e+11, 1.28705628e+11, 1.28705169e+11, 1.28705168e+11, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNomTOP16011TopPtRwgtSFSquared' : [ 1.28978943e+11, 1.28978943e+11, 1.28978943e+11, 1.28978943e+11, 1.28978489e+11, 1.28978489e+11, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNomLinearTopPtRwgtSF' : [ 1.28797210e+11, 1.28797210e+11, 1.28797210e+11, 1.28797210e+11, 1.28796751e+11, 1.28796751e+11, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNomLinearTopPtRwgtSFSquared' : [ 1.29135284e+11, 1.29135283e+11, 1.29135284e+11, 1.29135284e+11, 1.29134829e+11, 1.29134828e+11, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNomQuadraticTopPtRwgtSF' : [ 1.28837426e+11, 1.28837426e+11, 1.28837427e+11, 1.28837426e+11, 1.28836967e+11, 1.28836966e+11, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNomQuadraticTopPtRwgtSFSquared' : [ 1.29280616e+11, 1.29280616e+11, 1.29280616e+11, 1.29280616e+11, 1.29280159e+11, 1.29280158e+11, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNomHighPtTopPtRwgtSF' : [ 1.28818803e+11, 1.28818802e+11, 1.28818803e+11, 1.28818803e+11, 1.28818344e+11, 1.28818344e+11, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNomHighPtTopPtRwgtSFSquared' : [ 1.29177361e+11, 1.29177361e+11, 1.29177361e+11, 1.29177361e+11, 1.29176902e+11, 1.29176902e+11, ], }), ("nof_tree_events", 43732445), ("nof_db_events", 43732445), ("fsize_local", 306328770372), # 306.33GB, avg file size 3.48GB ("fsize_db", 2384692629872), # 2.38TB, avg file size 2.88GB ("use_it", True), ("xsection", 365.52), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 4), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Apr19_woPresel_nom_all_hh_multilepton/ntuples/TTToSemiLeptonic"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/TTToSemiLeptonic_TuneCP5_PSweights_13TeV-powheg-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v2/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "TT"), ("process_name_specific", "TTToSemiLeptonic_PSweights"), ("nof_files", 222), ("nof_db_files", 2178), ("nof_events", { 'Count' : [ 110014744, ], 'CountWeighted' : [ 1.09120132e+08, 1.09110933e+08, 1.09125549e+08, ], 'CountWeightedLHEWeightScale' : [ 1.22960849e+08, 1.20810065e+08, 1.19426910e+08, 1.11811293e+08, 1.09120132e+08, 1.07057096e+08, 1.01170380e+08, 9.82689930e+07, 9.58823992e+07, ], 'CountWeightedLHEEnvelope' : [ 1.32888017e+08, 8.93942091e+07, ], 'CountWeightedPSWeight' : [ 1.09123251e+08, 1.09120936e+08, 1.58153729e+08, 1.09124081e+08, 1.08929321e+08, 6.49041828e+07, ], 'CountWeightedPSWeightOriginalXWGTUP' : [ 1.10026395e+09, 1.10026456e+09, 1.10026457e+09, 1.10026395e+09, 1.10026047e+09, 1.10025982e+09, ], 'CountWeightedFull' : [ 3.30873556e+10, 3.30911288e+10, 3.30881076e+10, ], 'CountWeightedFullLHEWeightScale' : [ 3.72869519e+10, 3.66345559e+10, 3.62153351e+10, 3.39058893e+10, 3.30873556e+10, 3.24643277e+10, 3.06792179e+10, 2.97991436e+10, 2.90756408e+10, ], 'CountWeightedFullLHEEnvelope' : [ 4.02969403e+10, 2.71081633e+10, ], 'CountWeightedFullPSWeight' : [ 3.30909553e+10, 3.30900881e+10, 4.79588316e+10, 3.30910240e+10, 3.30320205e+10, 1.96817643e+10, ], 'CountWeightedFullPSWeightOriginalXWGTUP' : [ 3.33614901e+11, 3.33614899e+11, 3.33614902e+11, 3.33614901e+11, 3.33613659e+11, 3.33613656e+11, ], 'CountWeightedL1PrefireNom' : [ 1.05844847e+08, 1.05836114e+08, 1.05852610e+08, ], 'CountWeightedL1Prefire' : [ 1.05844847e+08, 1.05033438e+08, 1.06632058e+08, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 1.19177867e+08, 1.17136806e+08, 1.15835398e+08, 1.08415007e+08, 1.05844847e+08, 1.03876255e+08, 9.81246793e+07, 9.53443137e+07, 9.30581648e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 1.28832732e+08, 8.67448263e+07, ], 'CountWeightedPSWeightL1PrefireNom' : [ 1.05862354e+08, 1.05802054e+08, 1.53379470e+08, 1.05828031e+08, 1.05725759e+08, 6.29962235e+07, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNom' : [ 1.06689882e+09, 1.06689936e+09, 1.06689937e+09, 1.06689882e+09, 1.06689545e+09, 1.06689489e+09, ], 'CountWeightedFullL1PrefireNom' : [ 3.20955494e+10, 3.20960505e+10, 3.20970177e+10, ], 'CountWeightedFullL1Prefire' : [ 3.20955494e+10, 3.18499535e+10, 3.23345603e+10, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 3.61398550e+10, 3.55208455e+10, 3.51263100e+10, 3.28760905e+10, 3.20955494e+10, 3.14998095e+10, 2.97556846e+10, 2.89123993e+10, 2.82192468e+10, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 3.90673632e+10, 2.63047897e+10, ], 'CountWeightedFullPSWeightL1PrefireNom' : [ 3.21021789e+10, 3.20837378e+10, 4.65112349e+10, 3.20915924e+10, 3.20606251e+10, 1.91032241e+10, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNom' : [ 3.23513218e+11, 3.23513216e+11, 3.23513218e+11, 3.23513218e+11, 3.23512030e+11, 3.23512028e+11, ], 'CountWeightedTOP16011TopPtRwgtSF' : [ 1.09207616e+08, 1.09207621e+08, 1.09205888e+08, ], 'CountWeightedTOP16011TopPtRwgtSFSquared' : [ 1.09433909e+08, 1.09434640e+08, 1.09434370e+08, ], 'CountWeightedLinearTopPtRwgtSF' : [ 1.09284443e+08, 1.09284400e+08, 1.09282630e+08, ], 'CountWeightedLinearTopPtRwgtSFSquared' : [ 1.09565300e+08, 1.09566014e+08, 1.09565794e+08, ], 'CountWeightedQuadraticTopPtRwgtSF' : [ 1.09313083e+08, 1.09313377e+08, 1.09312170e+08, ], 'CountWeightedQuadraticTopPtRwgtSFSquared' : [ 1.09678342e+08, 1.09679005e+08, 1.09678776e+08, ], 'CountWeightedHighPtTopPtRwgtSF' : [ 1.09299233e+08, 1.09299284e+08, 1.09298000e+08, ], 'CountWeightedHighPtTopPtRwgtSFSquared' : [ 1.09594743e+08, 1.09595248e+08, 1.09594719e+08, ], 'CountWeightedLHEWeightScaleTOP16011TopPtRwgtSF' : [ 1.23069889e+08, 1.20932079e+08, 1.19562247e+08, 1.11876055e+08, 1.09207616e+08, 1.07157231e+08, 1.01202606e+08, 9.83232326e+07, 9.59552137e+07, ], 'CountWeightedLHEWeightScaleTOP16011TopPtRwgtSFSquared' : [ 1.23339282e+08, 1.21211417e+08, 1.19852119e+08, 1.12088288e+08, 1.09433909e+08, 1.07397018e+08, 1.01369970e+08, 9.85077798e+07, 9.61541696e+07, ], 'CountWeightedLHEWeightScaleLinearTopPtRwgtSF' : [ 1.23156224e+08, 1.21015284e+08, 1.19642982e+08, 1.11956701e+08, 1.09284443e+08, 1.07230958e+08, 1.01277303e+08, 9.83937418e+07, 9.60222755e+07, ], 'CountWeightedLHEWeightScaleLinearTopPtRwgtSFSquared' : [ 1.23487062e+08, 1.21353545e+08, 1.19989873e+08, 1.12226637e+08, 1.09565300e+08, 1.07522910e+08, 1.01498283e+08, 9.86286093e+07, 9.62689040e+07, ], 'CountWeightedLHEWeightScaleQuadraticTopPtRwgtSF' : [ 1.23197194e+08, 1.21055964e+08, 1.19683605e+08, 1.11984072e+08, 1.09313083e+08, 1.07260940e+08, 1.01295371e+08, 9.84141442e+07, 9.60445851e+07, ], 'CountWeightedLHEWeightScaleQuadraticTopPtRwgtSFSquared' : [ 1.23630819e+08, 1.21496106e+08, 1.20131865e+08, 1.12337714e+08, 1.09678342e+08, 1.07637322e+08, 1.01585263e+08, 9.87191566e+07, 9.63622058e+07, ], 'CountWeightedLHEWeightScaleHighPtTopPtRwgtSF' : [ 1.23178143e+08, 1.21034198e+08, 1.19659121e+08, 1.11974099e+08, 1.09299233e+08, 1.07243396e+08, 1.01291859e+08, 9.84059088e+07, 9.60323451e+07, ], 'CountWeightedLHEWeightScaleHighPtTopPtRwgtSFSquared' : [ 1.23530786e+08, 1.21391614e+08, 1.20022668e+08, 1.12260458e+08, 1.09594743e+08, 1.07547751e+08, 1.01525904e+08, 9.86519832e+07, 9.62885353e+07, ], 'CountWeightedLHEEnvelopeTOP16011TopPtRwgtSF' : [ 1.32957711e+08, 8.95109797e+07, ], 'CountWeightedLHEEnvelopeTOP16011TopPtRwgtSFSquared' : [ 1.33203405e+08, 8.97427439e+07, ], 'CountWeightedLHEEnvelopeLinearTopPtRwgtSF' : [ 1.33054373e+08, 8.95698010e+07, ], 'CountWeightedLHEEnvelopeLinearTopPtRwgtSFSquared' : [ 1.33369296e+08, 8.98429376e+07, ], 'CountWeightedLHEEnvelopeQuadraticTopPtRwgtSF' : [ 1.33088581e+08, 8.95990002e+07, ], 'CountWeightedLHEEnvelopeQuadraticTopPtRwgtSFSquared' : [ 1.33504435e+08, 8.99469686e+07, ], 'CountWeightedLHEEnvelopeHighPtTopPtRwgtSF' : [ 1.33078410e+08, 8.95768762e+07, ], 'CountWeightedLHEEnvelopeHighPtTopPtRwgtSFSquared' : [ 1.33416108e+08, 8.98578742e+07, ], 'CountWeightedPSWeightTOP16011TopPtRwgtSF' : [ 1.09208825e+08, 1.09201396e+08, 1.58232628e+08, 1.09205415e+08, 1.09018859e+08, 6.49892208e+07, ], 'CountWeightedPSWeightTOP16011TopPtRwgtSFSquared' : [ 1.09437596e+08, 1.09425238e+08, 1.58520313e+08, 1.09429743e+08, 1.09251053e+08, 6.51583796e+07, ], 'CountWeightedPSWeightLinearTopPtRwgtSF' : [ 1.09285473e+08, 1.09278459e+08, 1.58347381e+08, 1.09282431e+08, 1.09094995e+08, 6.50319769e+07, ], 'CountWeightedPSWeightLinearTopPtRwgtSFSquared' : [ 1.09568741e+08, 1.09557147e+08, 1.58717334e+08, 1.09561575e+08, 1.09381325e+08, 6.52310766e+07, ], 'CountWeightedPSWeightQuadraticTopPtRwgtSF' : [ 1.09314604e+08, 1.09306922e+08, 1.58382778e+08, 1.09310980e+08, 1.09124583e+08, 6.50543021e+07, ], 'CountWeightedPSWeightQuadraticTopPtRwgtSFSquared' : [ 1.09682255e+08, 1.09669249e+08, 1.58867357e+08, 1.09673879e+08, 1.09495623e+08, 6.53091736e+07, ], 'CountWeightedPSWeightHighPtTopPtRwgtSF' : [ 1.09300088e+08, 1.09293560e+08, 1.58371801e+08, 1.09297605e+08, 1.09109245e+08, 6.50382047e+07, ], 'CountWeightedPSWeightHighPtTopPtRwgtSFSquared' : [ 1.09597554e+08, 1.09586858e+08, 1.58764335e+08, 1.09591407e+08, 1.09409445e+08, 6.52441483e+07, ], 'CountWeightedPSWeightOriginalXWGTUPTOP16011TopPtRwgtSF' : [ 1.10074064e+09, 1.10074124e+09, 1.10074125e+09, 1.10074064e+09, 1.10073722e+09, 1.10073659e+09, ], 'CountWeightedPSWeightOriginalXWGTUPTOP16011TopPtRwgtSFSquared' : [ 1.10280310e+09, 1.10280369e+09, 1.10280370e+09, 1.10280310e+09, 1.10279971e+09, 1.10279909e+09, ], 'CountWeightedPSWeightOriginalXWGTUPLinearTopPtRwgtSF' : [ 1.10154247e+09, 1.10154307e+09, 1.10154308e+09, 1.10154247e+09, 1.10153903e+09, 1.10153840e+09, ], 'CountWeightedPSWeightOriginalXWGTUPLinearTopPtRwgtSFSquared' : [ 1.10417736e+09, 1.10417795e+09, 1.10417796e+09, 1.10417736e+09, 1.10417396e+09, 1.10417333e+09, ], 'CountWeightedPSWeightOriginalXWGTUPQuadraticTopPtRwgtSF' : [ 1.10182159e+09, 1.10182219e+09, 1.10182220e+09, 1.10182159e+09, 1.10181815e+09, 1.10181752e+09, ], 'CountWeightedPSWeightOriginalXWGTUPQuadraticTopPtRwgtSFSquared' : [ 1.10527825e+09, 1.10527884e+09, 1.10527885e+09, 1.10527825e+09, 1.10527485e+09, 1.10527423e+09, ], 'CountWeightedPSWeightOriginalXWGTUPHighPtTopPtRwgtSF' : [ 1.10172680e+09, 1.10172740e+09, 1.10172741e+09, 1.10172680e+09, 1.10172335e+09, 1.10172272e+09, ], 'CountWeightedPSWeightOriginalXWGTUPHighPtTopPtRwgtSFSquared' : [ 1.10452299e+09, 1.10452358e+09, 1.10452359e+09, 1.10452299e+09, 1.10451956e+09, 1.10451894e+09, ], 'CountWeightedFullTOP16011TopPtRwgtSF' : [ 3.31168453e+10, 3.31164236e+10, 3.31159692e+10, ], 'CountWeightedFullTOP16011TopPtRwgtSFSquared' : [ 3.31853409e+10, 3.31852497e+10, 3.31849160e+10, ], 'CountWeightedFullLinearTopPtRwgtSF' : [ 3.31401798e+10, 3.31397304e+10, 3.31392300e+10, ], 'CountWeightedFullLinearTopPtRwgtSFSquared' : [ 3.32252313e+10, 3.32251163e+10, 3.32247435e+10, ], 'CountWeightedFullQuadraticTopPtRwgtSF' : [ 3.31487437e+10, 3.31484913e+10, 3.31480734e+10, ], 'CountWeightedFullQuadraticTopPtRwgtSFSquared' : [ 3.32593947e+10, 3.32593654e+10, 3.32591448e+10, ], 'CountWeightedFullHighPtTopPtRwgtSF' : [ 3.31445639e+10, 3.31442154e+10, 3.31437312e+10, ], 'CountWeightedFullHighPtTopPtRwgtSFSquared' : [ 3.32340107e+10, 3.32339728e+10, 3.32337345e+10, ], 'CountWeightedFullLHEWeightScaleTOP16011TopPtRwgtSF' : [ 3.73200262e+10, 3.66717236e+10, 3.62563526e+10, 3.39255330e+10, 3.31168453e+10, 3.24946509e+10, 3.06890086e+10, 2.98156375e+10, 2.90977338e+10, ], 'CountWeightedFullLHEWeightScaleTOP16011TopPtRwgtSFSquared' : [ 3.74017238e+10, 3.67564704e+10, 3.63442911e+10, 3.39899552e+10, 3.31853409e+10, 3.25673773e+10, 3.07397572e+10, 2.98716944e+10, 2.91580851e+10, ], 'CountWeightedFullLHEWeightScaleLinearTopPtRwgtSF' : [ 3.73462024e+10, 3.66969544e+10, 3.62808405e+10, 3.39499784e+10, 3.31401798e+10, 3.25169923e+10, 3.07116586e+10, 2.98370232e+10, 2.91180713e+10, ], 'CountWeightedFullLHEWeightScaleLinearTopPtRwgtSFSquared' : [ 3.74465312e+10, 3.67995768e+10, 3.63860569e+10, 3.40318959e+10, 3.32252313e+10, 3.26055384e+10, 3.07786615e+10, 2.99083208e+10, 2.91928672e+10, ], 'CountWeightedFullLHEWeightScaleQuadraticTopPtRwgtSF' : [ 3.73586133e+10, 3.67093057e+10, 3.62931706e+10, 3.39583139e+10, 3.31487437e+10, 3.25260968e+10, 3.07171311e+10, 2.98432359e+10, 2.91248361e+10, ], 'CountWeightedFullLHEWeightScaleQuadraticTopPtRwgtSFSquared' : [ 3.74901339e+10, 3.68428157e+10, 3.64291146e+10, 3.40656133e+10, 3.32593947e+10, 3.26402496e+10, 3.08050191e+10, 2.99358464e+10, 2.92211618e+10, ], 'CountWeightedFullLHEWeightScaleHighPtTopPtRwgtSF' : [ 3.73528450e+10, 3.67027148e+10, 3.62857345e+10, 3.39552610e+10, 3.31445639e+10, 3.25207656e+10, 3.07160825e+10, 2.98407258e+10, 2.91211168e+10, ], 'CountWeightedFullLHEWeightScaleHighPtTopPtRwgtSFSquared' : [ 3.74597900e+10, 3.68111370e+10, 3.63959889e+10, 3.40421783e+10, 3.32340107e+10, 3.26130732e+10, 3.07870204e+10, 2.99154510e+10, 2.91988177e+10, ], 'CountWeightedFullLHEEnvelopeTOP16011TopPtRwgtSF' : [ 4.03183404e+10, 2.71435233e+10, ], 'CountWeightedFullLHEEnvelopeTOP16011TopPtRwgtSFSquared' : [ 4.03929268e+10, 2.72137836e+10, ], 'CountWeightedFullLHEEnvelopeLinearTopPtRwgtSF' : [ 4.03476260e+10, 2.71613773e+10, ], 'CountWeightedFullLHEEnvelopeLinearTopPtRwgtSFSquared' : [ 4.04432201e+10, 2.72441628e+10, ], 'CountWeightedFullLHEEnvelopeQuadraticTopPtRwgtSF' : [ 4.03580319e+10, 2.71701971e+10, ], 'CountWeightedFullLHEEnvelopeQuadraticTopPtRwgtSFSquared' : [ 4.04842336e+10, 2.72757278e+10, ], 'CountWeightedFullLHEEnvelopeHighPtTopPtRwgtSF' : [ 4.03549340e+10, 2.71635009e+10, ], 'CountWeightedFullLHEEnvelopeHighPtTopPtRwgtSFSquared' : [ 4.04574205e+10, 2.72486982e+10, ], 'CountWeightedFullPSWeightTOP16011TopPtRwgtSF' : [ 3.31169692e+10, 3.31145024e+10, 4.79828104e+10, 3.31157549e+10, 3.30591836e+10, 1.97075574e+10, ], 'CountWeightedFullPSWeightTOP16011TopPtRwgtSFSquared' : [ 3.31863411e+10, 3.31824092e+10, 4.80700908e+10, 3.31837916e+10, 3.31296253e+10, 1.97588700e+10, ], 'CountWeightedFullPSWeightLinearTopPtRwgtSF' : [ 3.31402111e+10, 3.31378788e+10, 4.80176018e+10, 3.31391031e+10, 3.30822763e+10, 1.97205206e+10, ], 'CountWeightedFullPSWeightLinearTopPtRwgtSFSquared' : [ 3.32261066e+10, 3.32224125e+10, 4.81298242e+10, 3.32237670e+10, 3.31691165e+10, 1.97809058e+10, ], 'CountWeightedFullPSWeightQuadraticTopPtRwgtSF' : [ 3.31490402e+10, 3.31465032e+10, 4.80283328e+10, 3.31477628e+10, 3.30912261e+10, 1.97272977e+10, ], 'CountWeightedFullPSWeightQuadraticTopPtRwgtSFSquared' : [ 3.32605124e+10, 3.32564107e+10, 4.81753383e+10, 3.32578132e+10, 3.32037770e+10, 1.98045954e+10, ], 'CountWeightedFullPSWeightHighPtTopPtRwgtSF' : [ 3.31446422e+10, 3.31424529e+10, 4.80250001e+10, 3.31436930e+10, 3.30865814e+10, 1.97224151e+10, ], 'CountWeightedFullPSWeightHighPtTopPtRwgtSFSquared' : [ 3.32348126e+10, 3.32314084e+10, 4.81440691e+10, 3.32327921e+10, 3.31776477e+10, 1.97848684e+10, ], 'CountWeightedFullPSWeightOriginalXWGTUPTOP16011TopPtRwgtSF' : [ 3.33793007e+11, 3.33793005e+11, 3.33793008e+11, 3.33793007e+11, 3.33791783e+11, 3.33791779e+11, ], 'CountWeightedFullPSWeightOriginalXWGTUPTOP16011TopPtRwgtSFSquared' : [ 3.34417267e+11, 3.34417265e+11, 3.34417267e+11, 3.34417267e+11, 3.34416060e+11, 3.34416057e+11, ], 'CountWeightedFullPSWeightOriginalXWGTUPLinearTopPtRwgtSF' : [ 3.34036255e+11, 3.34036253e+11, 3.34036255e+11, 3.34036255e+11, 3.34035030e+11, 3.34035026e+11, ], 'CountWeightedFullPSWeightOriginalXWGTUPLinearTopPtRwgtSFSquared' : [ 3.34833951e+11, 3.34833949e+11, 3.34833952e+11, 3.34833951e+11, 3.34832739e+11, 3.34832737e+11, ], 'CountWeightedFullPSWeightOriginalXWGTUPQuadraticTopPtRwgtSF' : [ 3.34119829e+11, 3.34119827e+11, 3.34119829e+11, 3.34119829e+11, 3.34118604e+11, 3.34118601e+11, ], 'CountWeightedFullPSWeightOriginalXWGTUPQuadraticTopPtRwgtSFSquared' : [ 3.35167923e+11, 3.35167921e+11, 3.35167924e+11, 3.35167923e+11, 3.35166710e+11, 3.35166707e+11, ], 'CountWeightedFullPSWeightOriginalXWGTUPHighPtTopPtRwgtSF' : [ 3.34090798e+11, 3.34090796e+11, 3.34090799e+11, 3.34090798e+11, 3.34089565e+11, 3.34089562e+11, ], 'CountWeightedFullPSWeightOriginalXWGTUPHighPtTopPtRwgtSFSquared' : [ 3.34938267e+11, 3.34938265e+11, 3.34938268e+11, 3.34938267e+11, 3.34937048e+11, 3.34937045e+11, ], 'CountWeightedL1PrefireNomTOP16011TopPtRwgtSF' : [ 1.05956271e+08, 1.05951590e+08, 1.05959500e+08, ], 'CountWeightedL1PrefireNomTOP16011TopPtRwgtSFSquared' : [ 1.06203197e+08, 1.06199069e+08, 1.06208072e+08, ], 'CountWeightedL1PrefireNomLinearTopPtRwgtSF' : [ 1.06028910e+08, 1.06024170e+08, 1.06032113e+08, ], 'CountWeightedL1PrefireNomLinearTopPtRwgtSFSquared' : [ 1.06326976e+08, 1.06322828e+08, 1.06331833e+08, ], 'CountWeightedL1PrefireNomQuadraticTopPtRwgtSF' : [ 1.06063313e+08, 1.06058857e+08, 1.06067126e+08, ], 'CountWeightedL1PrefireNomQuadraticTopPtRwgtSFSquared' : [ 1.06450049e+08, 1.06445912e+08, 1.06454998e+08, ], 'CountWeightedL1PrefireNomHighPtTopPtRwgtSF' : [ 1.06043614e+08, 1.06038957e+08, 1.06047234e+08, ], 'CountWeightedL1PrefireNomHighPtTopPtRwgtSFSquared' : [ 1.06356612e+08, 1.06352359e+08, 1.06361173e+08, ], 'CountWeightedL1PrefireTOP16011TopPtRwgtSF' : [ 1.05956271e+08, 1.05149436e+08, 1.06739012e+08, ], 'CountWeightedL1PrefireTOP16011TopPtRwgtSFSquared' : [ 1.06203197e+08, 1.05399756e+08, 1.06982243e+08, ], 'CountWeightedL1PrefireLinearTopPtRwgtSF' : [ 1.06028910e+08, 1.05221164e+08, 1.06812572e+08, ], 'CountWeightedL1PrefireLinearTopPtRwgtSFSquared' : [ 1.06326976e+08, 1.05521894e+08, 1.07107686e+08, ], 'CountWeightedL1PrefireQuadraticTopPtRwgtSF' : [ 1.06063313e+08, 1.05256667e+08, 1.06845867e+08, ], 'CountWeightedL1PrefireQuadraticTopPtRwgtSFSquared' : [ 1.06450049e+08, 1.05646714e+08, 1.07228851e+08, ], 'CountWeightedL1PrefireHighPtTopPtRwgtSF' : [ 1.06043614e+08, 1.05235900e+08, 1.06827272e+08, ], 'CountWeightedL1PrefireHighPtTopPtRwgtSFSquared' : [ 1.06356612e+08, 1.05551643e+08, 1.07137211e+08, ], 'CountWeightedLHEWeightScaleL1PrefireNomTOP16011TopPtRwgtSF' : [ 1.19316975e+08, 1.17287016e+08, 1.15997038e+08, 1.08506943e+08, 1.05956271e+08, 1.03999658e+08, 9.81815268e+07, 9.54211915e+07, 9.31517282e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNomTOP16011TopPtRwgtSFSquared' : [ 1.19611173e+08, 1.17589370e+08, 1.16308352e+08, 1.08741626e+08, 1.06203197e+08, 1.04258408e+08, 9.83691341e+07, 9.56242329e+07, 9.33675868e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNomLinearTopPtRwgtSF' : [ 1.19398319e+08, 1.17365533e+08, 1.16073266e+08, 1.08583123e+08, 1.06028910e+08, 1.04069394e+08, 9.82522173e+07, 9.54879863e+07, 9.32152562e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNomLinearTopPtRwgtSFSquared' : [ 1.19749864e+08, 1.17722895e+08, 1.16437908e+08, 1.08871866e+08, 1.06326976e+08, 1.04377035e+08, 9.84901800e+07, 9.57382402e+07, 9.34758603e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNomQuadraticTopPtRwgtSF' : [ 1.19445775e+08, 1.17412452e+08, 1.16120006e+08, 1.08616507e+08, 1.06063313e+08, 1.04104895e+08, 9.82757868e+07, 9.55136406e+07, 9.32425355e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNomQuadraticTopPtRwgtSFSquared' : [ 1.19905027e+08, 1.17876430e+08, 1.16590554e+08, 1.08993550e+08, 1.06450049e+08, 1.04501147e+08, 9.85869473e+07, 9.58380164e+07, 9.35779404e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNomHighPtTopPtRwgtSF' : [ 1.19419738e+08, 1.17384189e+08, 1.16089406e+08, 1.08600249e+08, 1.06043614e+08, 1.04081908e+08, 9.82666008e+07, 9.55001421e+07, 9.32254526e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNomHighPtTopPtRwgtSFSquared' : [ 1.19793150e+08, 1.17761002e+08, 1.16471112e+08, 1.08905596e+08, 1.06356612e+08, 1.04402465e+08, 9.85179157e+07, 9.57620589e+07, 9.34961468e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNomTOP16011TopPtRwgtSF' : [ 1.28935440e+08, 8.68801138e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNomTOP16011TopPtRwgtSFSquared' : [ 1.29208353e+08, 8.71268413e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNomLinearTopPtRwgtSF' : [ 1.29026726e+08, 8.69357034e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNomLinearTopPtRwgtSFSquared' : [ 1.29364452e+08, 8.72211167e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNomQuadraticTopPtRwgtSF' : [ 1.29068057e+08, 8.69694026e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNomQuadraticTopPtRwgtSFSquared' : [ 1.29512109e+08, 8.73330951e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNomHighPtTopPtRwgtSF' : [ 1.29050267e+08, 8.69429826e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNomHighPtTopPtRwgtSFSquared' : [ 1.29410827e+08, 8.72367966e+07, ], 'CountWeightedPSWeightL1PrefireNomTOP16011TopPtRwgtSF' : [ 1.05972604e+08, 1.05907749e+08, 1.53496309e+08, 1.05934798e+08, 1.05839962e+08, 6.30947604e+07, ], 'CountWeightedPSWeightL1PrefireNomTOP16011TopPtRwgtSFSquared' : [ 1.06221598e+08, 1.06152261e+08, 1.53815311e+08, 1.06180053e+08, 1.06092416e+08, 6.32748236e+07, ], 'CountWeightedPSWeightL1PrefireNomLinearTopPtRwgtSF' : [ 1.06045138e+08, 1.05980615e+08, 1.53604869e+08, 1.06007562e+08, 1.05912002e+08, 6.31351740e+07, ], 'CountWeightedPSWeightL1PrefireNomLinearTopPtRwgtSFSquared' : [ 1.06345184e+08, 1.06276457e+08, 1.54000954e+08, 1.06304128e+08, 1.06215179e+08, 6.33432499e+07, ], 'CountWeightedPSWeightL1PrefireNomQuadraticTopPtRwgtSF' : [ 1.06079956e+08, 1.06014794e+08, 1.53648703e+08, 1.06041872e+08, 1.05947226e+08, 6.31607900e+07, ], 'CountWeightedPSWeightL1PrefireNomQuadraticTopPtRwgtSFSquared' : [ 1.06468737e+08, 1.06398695e+08, 1.54165973e+08, 1.06426595e+08, 1.06339516e+08, 6.34271119e+07, ], 'CountWeightedPSWeightL1PrefireNomHighPtTopPtRwgtSF' : [ 1.06059670e+08, 1.05995623e+08, 1.53628879e+08, 1.06022558e+08, 1.05926164e+08, 6.31415331e+07, ], 'CountWeightedPSWeightL1PrefireNomHighPtTopPtRwgtSFSquared' : [ 1.06374359e+08, 1.06306426e+08, 1.54047986e+08, 1.06334131e+08, 1.06243671e+08, 6.33568605e+07, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNomTOP16011TopPtRwgtSF' : [ 1.06769427e+09, 1.06769480e+09, 1.06769480e+09, 1.06769427e+09, 1.06769095e+09, 1.06769039e+09, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNomTOP16011TopPtRwgtSFSquared' : [ 1.06997314e+09, 1.06997366e+09, 1.06997367e+09, 1.06997314e+09, 1.06996987e+09, 1.06996931e+09, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNomLinearTopPtRwgtSF' : [ 1.06845301e+09, 1.06845355e+09, 1.06845355e+09, 1.06845301e+09, 1.06844969e+09, 1.06844912e+09, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNomLinearTopPtRwgtSFSquared' : [ 1.07126769e+09, 1.07126822e+09, 1.07126822e+09, 1.07126769e+09, 1.07126440e+09, 1.07126385e+09, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNomQuadraticTopPtRwgtSF' : [ 1.06878970e+09, 1.06879024e+09, 1.06879024e+09, 1.06878971e+09, 1.06878638e+09, 1.06878582e+09, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNomQuadraticTopPtRwgtSFSquared' : [ 1.07247342e+09, 1.07247395e+09, 1.07247396e+09, 1.07247342e+09, 1.07247013e+09, 1.07246958e+09, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNomHighPtTopPtRwgtSF' : [ 1.06863396e+09, 1.06863450e+09, 1.06863451e+09, 1.06863396e+09, 1.06863063e+09, 1.06863007e+09, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNomHighPtTopPtRwgtSFSquared' : [ 1.07161411e+09, 1.07161464e+09, 1.07161465e+09, 1.07161411e+09, 1.07161080e+09, 1.07161024e+09, ], 'CountWeightedFullL1PrefireNomTOP16011TopPtRwgtSF' : [ 3.21308266e+10, 3.21291197e+10, 3.21316090e+10, ], 'CountWeightedFullL1PrefireNomTOP16011TopPtRwgtSFSquared' : [ 3.22056478e+10, 3.22041725e+10, 3.22067243e+10, ], 'CountWeightedFullL1PrefireNomLinearTopPtRwgtSF' : [ 3.21528728e+10, 3.21511424e+10, 3.21536132e+10, ], 'CountWeightedFullL1PrefireNomLinearTopPtRwgtSFSquared' : [ 3.22432050e+10, 3.22417055e+10, 3.22442448e+10, ], 'CountWeightedFullL1PrefireNomQuadraticTopPtRwgtSF' : [ 3.21632340e+10, 3.21616489e+10, 3.21641846e+10, ], 'CountWeightedFullL1PrefireNomQuadraticTopPtRwgtSFSquared' : [ 3.22804474e+10, 3.22790263e+10, 3.22816643e+10, ], 'CountWeightedFullL1PrefireNomHighPtTopPtRwgtSF' : [ 3.21572512e+10, 3.21556114e+10, 3.21581024e+10, ], 'CountWeightedFullL1PrefireNomHighPtTopPtRwgtSFSquared' : [ 3.22520831e+10, 3.22506571e+10, 3.22533004e+10, ], 'CountWeightedFullL1PrefireTOP16011TopPtRwgtSF' : [ 3.21308266e+10, 3.18861626e+10, 3.23682026e+10, ], 'CountWeightedFullL1PrefireTOP16011TopPtRwgtSFSquared' : [ 3.22056478e+10, 3.19620085e+10, 3.24418869e+10, ], 'CountWeightedFullL1PrefireLinearTopPtRwgtSF' : [ 3.21528728e+10, 3.19079405e+10, 3.23905325e+10, ], 'CountWeightedFullL1PrefireLinearTopPtRwgtSFSquared' : [ 3.22432050e+10, 3.19990740e+10, 3.24799510e+10, ], 'CountWeightedFullL1PrefireQuadraticTopPtRwgtSF' : [ 3.21632340e+10, 3.19186296e+10, 3.24005434e+10, ], 'CountWeightedFullL1PrefireQuadraticTopPtRwgtSFSquared' : [ 3.22804474e+10, 3.20368553e+10, 3.25166134e+10, ], 'CountWeightedFullL1PrefireHighPtTopPtRwgtSF' : [ 3.21572512e+10, 3.19123241e+10, 3.23948965e+10, ], 'CountWeightedFullL1PrefireHighPtTopPtRwgtSFSquared' : [ 3.22520831e+10, 3.20079908e+10, 3.24887846e+10, ], 'CountWeightedFullLHEWeightScaleL1PrefireNomTOP16011TopPtRwgtSF' : [ 3.61820401e+10, 3.55664863e+10, 3.51753073e+10, 3.29039617e+10, 3.21308266e+10, 3.15372029e+10, 2.97729350e+10, 2.89357189e+10, 2.82476402e+10, ], 'CountWeightedFullLHEWeightScaleL1PrefireNomTOP16011TopPtRwgtSFSquared' : [ 3.62712699e+10, 3.56581893e+10, 3.52697438e+10, 3.29751730e+10, 3.22056478e+10, 3.16156812e+10, 2.98298451e+10, 2.89973573e+10, 2.83131207e+10, ], 'CountWeightedFullLHEWeightScaleL1PrefireNomLinearTopPtRwgtSF' : [ 3.62067237e+10, 3.55902918e+10, 3.51984324e+10, 3.29270608e+10, 3.21528728e+10, 3.15583421e+10, 2.97943776e+10, 2.89559756e+10, 2.82669101e+10, ], 'CountWeightedFullLHEWeightScaleL1PrefireNomLinearTopPtRwgtSFSquared' : [ 3.63133280e+10, 3.56986860e+10, 3.53090182e+10, 3.30146471e+10, 3.22432050e+10, 3.16516432e+10, 2.98665403e+10, 2.90319182e+10, 2.83459476e+10, ], 'CountWeightedFullLHEWeightScaleL1PrefireNomQuadraticTopPtRwgtSF' : [ 3.62210913e+10, 3.56045341e+10, 3.52126051e+10, 3.29372152e+10, 3.21632340e+10, 3.15691143e+10, 2.98015209e+10, 2.89637675e+10, 2.82751864e+10, ], 'CountWeightedFullLHEWeightScaleL1PrefireNomQuadraticTopPtRwgtSFSquared' : [ 3.63603848e+10, 3.57452585e+10, 3.53553179e+10, 3.30515869e+10, 3.22804474e+10, 3.16892868e+10, 2.98958637e+10, 2.90622297e+10, 2.83769072e+10, ], 'CountWeightedFullLHEWeightScaleL1PrefireNomHighPtTopPtRwgtSF' : [ 3.62132128e+10, 3.55959746e+10, 3.52033115e+10, 3.29322549e+10, 3.21572512e+10, 3.15621359e+10, 2.97987407e+10, 2.89596756e+10, 2.82700020e+10, ], 'CountWeightedFullLHEWeightScaleL1PrefireNomHighPtTopPtRwgtSFSquared' : [ 3.63264584e+10, 3.57102598e+10, 3.53190895e+10, 3.30249175e+10, 3.22520831e+10, 3.16593591e+10, 2.98749230e+10, 2.90391690e+10, 2.83520963e+10, ], 'CountWeightedFullLHEEnvelopeL1PrefireNomTOP16011TopPtRwgtSF' : [ 3.90987014e+10, 2.63457877e+10, ], 'CountWeightedFullLHEEnvelopeL1PrefireNomTOP16011TopPtRwgtSFSquared' : [ 3.91815374e+10, 2.64205940e+10, ], 'CountWeightedFullLHEEnvelopeL1PrefireNomLinearTopPtRwgtSF' : [ 3.91263715e+10, 2.63626612e+10, ], 'CountWeightedFullLHEEnvelopeL1PrefireNomLinearTopPtRwgtSFSquared' : [ 3.92288685e+10, 2.64491764e+10, ], 'CountWeightedFullLHEEnvelopeL1PrefireNomQuadraticTopPtRwgtSF' : [ 3.91389288e+10, 2.63728604e+10, ], 'CountWeightedFullLHEEnvelopeL1PrefireNomQuadraticTopPtRwgtSFSquared' : [ 3.92736772e+10, 2.64831473e+10, ], 'CountWeightedFullLHEEnvelopeL1PrefireNomHighPtTopPtRwgtSF' : [ 3.91335167e+10, 2.63648505e+10, ], 'CountWeightedFullLHEEnvelopeL1PrefireNomHighPtTopPtRwgtSFSquared' : [ 3.92429464e+10, 2.64539408e+10, ], 'CountWeightedFullPSWeightL1PrefireNomTOP16011TopPtRwgtSF' : [ 3.21356606e+10, 3.21158055e+10, 4.65466931e+10, 3.21240114e+10, 3.20952680e+10, 1.91331100e+10, ], 'CountWeightedFullPSWeightL1PrefireNomTOP16011TopPtRwgtSFSquared' : [ 3.22111520e+10, 3.21899716e+10, 4.66434704e+10, 3.21984047e+10, 3.21718577e+10, 1.91877300e+10, ], 'CountWeightedFullPSWeightL1PrefireNomLinearTopPtRwgtSF' : [ 3.21576392e+10, 3.21378931e+10, 4.65796016e+10, 3.21460733e+10, 3.21171209e+10, 1.91453686e+10, ], 'CountWeightedFullPSWeightL1PrefireNomLinearTopPtRwgtSFSquared' : [ 3.22486246e+10, 3.22276328e+10, 4.66997480e+10, 3.22360297e+10, 3.22090800e+10, 1.92084725e+10, ], 'CountWeightedFullPSWeightL1PrefireNomQuadraticTopPtRwgtSF' : [ 3.21681986e+10, 3.21482612e+10, 4.65928937e+10, 3.21564820e+10, 3.21277951e+10, 1.91531364e+10, ], 'CountWeightedFullPSWeightL1PrefireNomQuadraticTopPtRwgtSFSquared' : [ 3.22860813e+10, 3.22647027e+10, 4.67497921e+10, 3.22731608e+10, 3.22467801e+10, 1.92339093e+10, ], 'CountWeightedFullPSWeightL1PrefireNomHighPtTopPtRwgtSF' : [ 3.21620516e+10, 3.21424405e+10, 4.65868876e+10, 3.21506078e+10, 3.21214076e+10, 1.91473047e+10, ], 'CountWeightedFullPSWeightL1PrefireNomHighPtTopPtRwgtSFSquared' : [ 3.22574544e+10, 3.22367152e+10, 4.67139989e+10, 3.22451047e+10, 3.22177063e+10, 1.92125938e+10, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNomTOP16011TopPtRwgtSF' : [ 3.23771580e+11, 3.23771578e+11, 3.23771581e+11, 3.23771580e+11, 3.23770411e+11, 3.23770408e+11, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNomTOP16011TopPtRwgtSFSquared' : [ 3.24462300e+11, 3.24462299e+11, 3.24462301e+11, 3.24462300e+11, 3.24461148e+11, 3.24461145e+11, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNomLinearTopPtRwgtSF' : [ 3.24001760e+11, 3.24001759e+11, 3.24001761e+11, 3.24001760e+11, 3.24000585e+11, 3.24000583e+11, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNomLinearTopPtRwgtSFSquared' : [ 3.24854832e+11, 3.24854830e+11, 3.24854832e+11, 3.24854832e+11, 3.24853676e+11, 3.24853673e+11, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNomQuadraticTopPtRwgtSF' : [ 3.24103303e+11, 3.24103301e+11, 3.24103303e+11, 3.24103303e+11, 3.24102131e+11, 3.24102129e+11, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNomQuadraticTopPtRwgtSFSquared' : [ 3.25220748e+11, 3.25220746e+11, 3.25220749e+11, 3.25220748e+11, 3.25219589e+11, 3.25219586e+11, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNomHighPtTopPtRwgtSF' : [ 3.24055480e+11, 3.24055478e+11, 3.24055480e+11, 3.24055480e+11, 3.24054305e+11, 3.24054302e+11, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNomHighPtTopPtRwgtSFSquared' : [ 3.24959518e+11, 3.24959516e+11, 3.24959518e+11, 3.24959518e+11, 3.24958351e+11, 3.24958348e+11, ], }), ("nof_tree_events", 110014744), ("nof_db_events", 110195128), ("fsize_local", 770599817467), # 770.60GB, avg file size 3.47GB ("fsize_db", 6010271289488), # 6.01TB, avg file size 2.76GB ("use_it", True), ("xsection", 365.52), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 4), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Apr19_woPresel_nom_all_hh_multilepton/ntuples/TTToSemiLeptonic_PSweights"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/TTToHadronic_TuneCP5_13TeV-powheg-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_new_pmx_94X_mc2017_realistic_v14-v2/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "TT"), ("process_name_specific", "TTToHadronic"), ("nof_files", 84), ("nof_db_files", 665), ("nof_events", { 'Count' : [ 41729120, ], 'CountWeighted' : [ 4.17344189e+07, 4.17248948e+07, 4.17280992e+07, ], 'CountWeightedLHEWeightScale' : [ 4.72971452e+07, 4.63885328e+07, 4.58081465e+07, 4.28005478e+07, 4.17344189e+07, 4.09085615e+07, 3.86196442e+07, 3.74879659e+07, 3.65585873e+07, ], 'CountWeightedLHEEnvelope' : [ 5.10162712e+07, 3.41544853e+07, ], 'CountWeightedFull' : [ 4.17344189e+07, 4.17248948e+07, 4.17280992e+07, ], 'CountWeightedFullLHEWeightScale' : [ 4.72971452e+07, 4.63885328e+07, 4.58081465e+07, 4.28005478e+07, 4.17344189e+07, 4.09085615e+07, 3.86196442e+07, 3.74879659e+07, 3.65585873e+07, ], 'CountWeightedFullLHEEnvelope' : [ 5.10162712e+07, 3.41544853e+07, ], 'CountWeightedL1PrefireNom' : [ 4.04507572e+07, 4.04433505e+07, 4.04488042e+07, ], 'CountWeightedL1Prefire' : [ 4.04507572e+07, 4.01298613e+07, 4.07595195e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 4.58040335e+07, 4.49433046e+07, 4.43981246e+07, 4.14692902e+07, 4.04507572e+07, 3.96665373e+07, 3.74308849e+07, 3.63483306e+07, 3.54595962e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 4.94195180e+07, 3.31211139e+07, ], 'CountWeightedFullL1PrefireNom' : [ 4.04507572e+07, 4.04433505e+07, 4.04488042e+07, ], 'CountWeightedFullL1Prefire' : [ 4.04507572e+07, 4.01298613e+07, 4.07595195e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 4.58040335e+07, 4.49433046e+07, 4.43981246e+07, 4.14692902e+07, 4.04507572e+07, 3.96665373e+07, 3.74308849e+07, 3.63483306e+07, 3.54595962e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 4.94195180e+07, 3.31211139e+07, ], 'CountWeightedTOP16011TopPtRwgtSF' : [ 4.17565396e+07, 4.17564850e+07, 4.17558714e+07, ], 'CountWeightedTOP16011TopPtRwgtSFSquared' : [ 4.18389914e+07, 4.18391815e+07, 4.18391798e+07, ], 'CountWeightedLinearTopPtRwgtSF' : [ 4.17864334e+07, 4.17863531e+07, 4.17857598e+07, ], 'CountWeightedLinearTopPtRwgtSFSquared' : [ 4.18901547e+07, 4.18903202e+07, 4.18903480e+07, ], 'CountWeightedQuadraticTopPtRwgtSF' : [ 4.17971669e+07, 4.17972272e+07, 4.17968465e+07, ], 'CountWeightedQuadraticTopPtRwgtSFSquared' : [ 4.19328336e+07, 4.19330261e+07, 4.19330136e+07, ], 'CountWeightedHighPtTopPtRwgtSF' : [ 4.17927011e+07, 4.17926594e+07, 4.17922377e+07, ], 'CountWeightedHighPtTopPtRwgtSFSquared' : [ 4.19024574e+07, 4.19025932e+07, 4.19024636e+07, ], 'CountWeightedLHEWeightScaleTOP16011TopPtRwgtSF' : [ 4.73255119e+07, 4.64264433e+07, 4.58540819e+07, 4.28183130e+07, 4.17565396e+07, 4.09440808e+07, 3.86284050e+07, 3.75065987e+07, 3.65854976e+07, ], 'CountWeightedLHEWeightScaleTOP16011TopPtRwgtSFSquared' : [ 4.74167043e+07, 4.65254884e+07, 4.59597786e+07, 4.28932127e+07, 4.18389914e+07, 4.10332218e+07, 3.86891318e+07, 3.75751892e+07, 3.66606820e+07, ], 'CountWeightedLHEWeightScaleLinearTopPtRwgtSF' : [ 4.73601179e+07, 4.64593243e+07, 4.58856767e+07, 4.28499784e+07, 4.17864334e+07, 4.09725755e+07, 3.86573462e+07, 3.75337644e+07, 3.66112163e+07, ], 'CountWeightedLHEWeightScaleLinearTopPtRwgtSFSquared' : [ 4.74759673e+07, 4.65817232e+07, 4.60137465e+07, 4.29475152e+07, 4.18901547e+07, 4.10819086e+07, 3.87388779e+07, 3.76217919e+07, 3.67046582e+07, ], 'CountWeightedLHEWeightScaleQuadraticTopPtRwgtSF' : [ 4.73749156e+07, 4.64742178e+07, 4.59006975e+07, 4.28601700e+07, 4.17971669e+07, 4.09838978e+07, 3.86642511e+07, 3.75415969e+07, 3.66197855e+07, ], 'CountWeightedLHEWeightScaleQuadraticTopPtRwgtSFSquared' : [ 4.75291347e+07, 4.66348635e+07, 4.60669435e+07, 4.29893127e+07, 4.19328336e+07, 4.11252656e+07, 3.87719979e+07, 3.76563081e+07, 3.67403390e+07, ], 'CountWeightedLHEWeightScaleHighPtTopPtRwgtSF' : [ 4.73702412e+07, 4.64675925e+07, 4.58924454e+07, 4.28576483e+07, 4.17927011e+07, 4.09776704e+07, 3.86635334e+07, 3.75387695e+07, 3.66152279e+07, ], 'CountWeightedLHEWeightScaleHighPtTopPtRwgtSFSquared' : [ 4.74957286e+07, 4.65980486e+07, 4.60272449e+07, 4.29622826e+07, 4.19024574e+07, 4.10919550e+07, 3.87505077e+07, 3.76313315e+07, 3.67124289e+07, ], 'CountWeightedLHEEnvelopeTOP16011TopPtRwgtSF' : [ 5.10318569e+07, 3.41959220e+07, ], 'CountWeightedLHEEnvelopeTOP16011TopPtRwgtSFSquared' : [ 5.11160132e+07, 3.42816344e+07, ], 'CountWeightedLHEEnvelopeLinearTopPtRwgtSF' : [ 5.10701578e+07, 3.42187378e+07, ], 'CountWeightedLHEEnvelopeLinearTopPtRwgtSFSquared' : [ 5.11817860e+07, 3.43205176e+07, ], 'CountWeightedLHEEnvelopeQuadraticTopPtRwgtSF' : [ 5.10826396e+07, 3.42297081e+07, ], 'CountWeightedLHEEnvelopeQuadraticTopPtRwgtSFSquared' : [ 5.12321133e+07, 3.43598369e+07, ], 'CountWeightedLHEEnvelopeHighPtTopPtRwgtSF' : [ 5.10808418e+07, 3.42218705e+07, ], 'CountWeightedLHEEnvelopeHighPtTopPtRwgtSFSquared' : [ 5.12022502e+07, 3.43269454e+07, ], 'CountWeightedFullTOP16011TopPtRwgtSF' : [ 4.17565396e+07, 4.17564850e+07, 4.17558714e+07, ], 'CountWeightedFullTOP16011TopPtRwgtSFSquared' : [ 4.18389914e+07, 4.18391815e+07, 4.18391798e+07, ], 'CountWeightedFullLinearTopPtRwgtSF' : [ 4.17864334e+07, 4.17863531e+07, 4.17857598e+07, ], 'CountWeightedFullLinearTopPtRwgtSFSquared' : [ 4.18901547e+07, 4.18903202e+07, 4.18903480e+07, ], 'CountWeightedFullQuadraticTopPtRwgtSF' : [ 4.17971669e+07, 4.17972272e+07, 4.17968465e+07, ], 'CountWeightedFullQuadraticTopPtRwgtSFSquared' : [ 4.19328336e+07, 4.19330261e+07, 4.19330136e+07, ], 'CountWeightedFullHighPtTopPtRwgtSF' : [ 4.17927011e+07, 4.17926594e+07, 4.17922377e+07, ], 'CountWeightedFullHighPtTopPtRwgtSFSquared' : [ 4.19024574e+07, 4.19025932e+07, 4.19024636e+07, ], 'CountWeightedFullLHEWeightScaleTOP16011TopPtRwgtSF' : [ 4.73255119e+07, 4.64264433e+07, 4.58540819e+07, 4.28183130e+07, 4.17565396e+07, 4.09440808e+07, 3.86284050e+07, 3.75065987e+07, 3.65854976e+07, ], 'CountWeightedFullLHEWeightScaleTOP16011TopPtRwgtSFSquared' : [ 4.74167043e+07, 4.65254884e+07, 4.59597786e+07, 4.28932127e+07, 4.18389914e+07, 4.10332218e+07, 3.86891318e+07, 3.75751892e+07, 3.66606820e+07, ], 'CountWeightedFullLHEWeightScaleLinearTopPtRwgtSF' : [ 4.73601179e+07, 4.64593243e+07, 4.58856767e+07, 4.28499784e+07, 4.17864334e+07, 4.09725755e+07, 3.86573462e+07, 3.75337644e+07, 3.66112163e+07, ], 'CountWeightedFullLHEWeightScaleLinearTopPtRwgtSFSquared' : [ 4.74759673e+07, 4.65817232e+07, 4.60137465e+07, 4.29475152e+07, 4.18901547e+07, 4.10819086e+07, 3.87388779e+07, 3.76217919e+07, 3.67046582e+07, ], 'CountWeightedFullLHEWeightScaleQuadraticTopPtRwgtSF' : [ 4.73749156e+07, 4.64742178e+07, 4.59006975e+07, 4.28601700e+07, 4.17971669e+07, 4.09838978e+07, 3.86642511e+07, 3.75415969e+07, 3.66197855e+07, ], 'CountWeightedFullLHEWeightScaleQuadraticTopPtRwgtSFSquared' : [ 4.75291347e+07, 4.66348635e+07, 4.60669435e+07, 4.29893127e+07, 4.19328336e+07, 4.11252656e+07, 3.87719979e+07, 3.76563081e+07, 3.67403390e+07, ], 'CountWeightedFullLHEWeightScaleHighPtTopPtRwgtSF' : [ 4.73702412e+07, 4.64675925e+07, 4.58924454e+07, 4.28576483e+07, 4.17927011e+07, 4.09776704e+07, 3.86635334e+07, 3.75387695e+07, 3.66152279e+07, ], 'CountWeightedFullLHEWeightScaleHighPtTopPtRwgtSFSquared' : [ 4.74957286e+07, 4.65980486e+07, 4.60272449e+07, 4.29622826e+07, 4.19024574e+07, 4.10919550e+07, 3.87505077e+07, 3.76313315e+07, 3.67124289e+07, ], 'CountWeightedFullLHEEnvelopeTOP16011TopPtRwgtSF' : [ 5.10318569e+07, 3.41959220e+07, ], 'CountWeightedFullLHEEnvelopeTOP16011TopPtRwgtSFSquared' : [ 5.11160132e+07, 3.42816344e+07, ], 'CountWeightedFullLHEEnvelopeLinearTopPtRwgtSF' : [ 5.10701578e+07, 3.42187378e+07, ], 'CountWeightedFullLHEEnvelopeLinearTopPtRwgtSFSquared' : [ 5.11817860e+07, 3.43205176e+07, ], 'CountWeightedFullLHEEnvelopeQuadraticTopPtRwgtSF' : [ 5.10826396e+07, 3.42297081e+07, ], 'CountWeightedFullLHEEnvelopeQuadraticTopPtRwgtSFSquared' : [ 5.12321133e+07, 3.43598369e+07, ], 'CountWeightedFullLHEEnvelopeHighPtTopPtRwgtSF' : [ 5.10808418e+07, 3.42218705e+07, ], 'CountWeightedFullLHEEnvelopeHighPtTopPtRwgtSFSquared' : [ 5.12022502e+07, 3.43269454e+07, ], 'CountWeightedL1PrefireNomTOP16011TopPtRwgtSF' : [ 4.04865725e+07, 4.04846472e+07, 4.04878879e+07, ], 'CountWeightedL1PrefireNomTOP16011TopPtRwgtSFSquared' : [ 4.05788004e+07, 4.05770663e+07, 4.05806964e+07, ], 'CountWeightedL1PrefireNomLinearTopPtRwgtSF' : [ 4.05147310e+07, 4.05127746e+07, 4.05160172e+07, ], 'CountWeightedL1PrefireNomLinearTopPtRwgtSFSquared' : [ 4.06267396e+07, 4.06249890e+07, 4.06286462e+07, ], 'CountWeightedL1PrefireNomQuadraticTopPtRwgtSF' : [ 4.05281466e+07, 4.05263314e+07, 4.05296541e+07, ], 'CountWeightedL1PrefireNomQuadraticTopPtRwgtSFSquared' : [ 4.06742050e+07, 4.06724981e+07, 4.06761354e+07, ], 'CountWeightedL1PrefireNomHighPtTopPtRwgtSF' : [ 4.05209833e+07, 4.05190698e+07, 4.05224356e+07, ], 'CountWeightedL1PrefireNomHighPtTopPtRwgtSFSquared' : [ 4.06392193e+07, 4.06374710e+07, 4.06410068e+07, ], 'CountWeightedL1PrefireTOP16011TopPtRwgtSF' : [ 4.04865725e+07, 4.01684559e+07, 4.07938770e+07, ], 'CountWeightedL1PrefireTOP16011TopPtRwgtSFSquared' : [ 4.05788004e+07, 4.02622968e+07, 4.08842876e+07, ], 'CountWeightedL1PrefireLinearTopPtRwgtSF' : [ 4.05147310e+07, 4.01962208e+07, 4.08224015e+07, ], 'CountWeightedL1PrefireLinearTopPtRwgtSFSquared' : [ 4.06267396e+07, 4.03095648e+07, 4.09329389e+07, ], 'CountWeightedL1PrefireQuadraticTopPtRwgtSF' : [ 4.05281466e+07, 4.02101438e+07, 4.08352895e+07, ], 'CountWeightedL1PrefireQuadraticTopPtRwgtSFSquared' : [ 4.06742050e+07, 4.03578962e+07, 4.09794581e+07, ], 'CountWeightedL1PrefireHighPtTopPtRwgtSF' : [ 4.05209833e+07, 4.02025108e+07, 4.08286513e+07, ], 'CountWeightedL1PrefireHighPtTopPtRwgtSFSquared' : [ 4.06392193e+07, 4.03221186e+07, 4.09453385e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNomTOP16011TopPtRwgtSF' : [ 4.58465002e+07, 4.49943234e+07, 4.44562950e+07, 4.14995778e+07, 4.04865725e+07, 3.97127625e+07, 3.74508575e+07, 3.63772885e+07, 3.54960018e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNomTOP16011TopPtRwgtSFSquared' : [ 4.59496489e+07, 4.51043922e+07, 4.45722459e+07, 4.15851151e+07, 4.05788004e+07, 3.98108943e+07, 3.75211062e+07, 3.64545627e+07, 3.55791104e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNomLinearTopPtRwgtSF' : [ 4.58789845e+07, 4.50252066e+07, 4.44859913e+07, 4.15293572e+07, 4.05147310e+07, 3.97395979e+07, 3.74781360e+07, 3.64028937e+07, 3.55202523e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNomLinearTopPtRwgtSFSquared' : [ 4.60050381e+07, 4.51569769e+07, 4.46227159e+07, 4.16359896e+07, 4.06267396e+07, 3.98565283e+07, 3.75677736e+07, 3.64982907e+07, 3.56204062e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNomQuadraticTopPtRwgtSF' : [ 4.58968403e+07, 4.50430638e+07, 4.45038689e+07, 4.15423459e+07, 4.05281466e+07, 3.97534743e+07, 3.74875856e+07, 3.64131556e+07, 3.55311082e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNomQuadraticTopPtRwgtSFSquared' : [ 4.60637027e+07, 4.52154097e+07, 4.46810635e+07, 4.16828288e+07, 4.06742050e+07, 3.99044955e+07, 3.76054802e+07, 3.65371579e+07, 3.56602135e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNomHighPtTopPtRwgtSF' : [ 4.58889051e+07, 4.50334355e+07, 4.44927804e+07, 4.15369381e+07, 4.05209833e+07, 3.97447764e+07, 3.74842816e+07, 3.64079437e+07, 3.55243462e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNomHighPtTopPtRwgtSFSquared' : [ 4.60246712e+07, 4.51733862e+07, 4.46365026e+07, 4.16507713e+07, 4.06392193e+07, 3.98669274e+07, 3.75795175e+07, 3.65080991e+07, 3.56285372e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNomTOP16011TopPtRwgtSF' : [ 4.94504285e+07, 3.31711775e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNomTOP16011TopPtRwgtSFSquared' : [ 4.95475342e+07, 3.32640562e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNomLinearTopPtRwgtSF' : [ 4.94864571e+07, 3.31926277e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNomLinearTopPtRwgtSFSquared' : [ 4.96091440e+07, 3.33004491e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNomQuadraticTopPtRwgtSF' : [ 4.95022611e+07, 3.32057079e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNomQuadraticTopPtRwgtSFSquared' : [ 4.96654661e+07, 3.33435624e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNomHighPtTopPtRwgtSF' : [ 4.94969430e+07, 3.31958662e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNomHighPtTopPtRwgtSFSquared' : [ 4.96295121e+07, 3.33072677e+07, ], 'CountWeightedFullL1PrefireNomTOP16011TopPtRwgtSF' : [ 4.04865725e+07, 4.04846472e+07, 4.04878879e+07, ], 'CountWeightedFullL1PrefireNomTOP16011TopPtRwgtSFSquared' : [ 4.05788004e+07, 4.05770663e+07, 4.05806964e+07, ], 'CountWeightedFullL1PrefireNomLinearTopPtRwgtSF' : [ 4.05147310e+07, 4.05127746e+07, 4.05160172e+07, ], 'CountWeightedFullL1PrefireNomLinearTopPtRwgtSFSquared' : [ 4.06267396e+07, 4.06249890e+07, 4.06286462e+07, ], 'CountWeightedFullL1PrefireNomQuadraticTopPtRwgtSF' : [ 4.05281466e+07, 4.05263314e+07, 4.05296541e+07, ], 'CountWeightedFullL1PrefireNomQuadraticTopPtRwgtSFSquared' : [ 4.06742050e+07, 4.06724981e+07, 4.06761354e+07, ], 'CountWeightedFullL1PrefireNomHighPtTopPtRwgtSF' : [ 4.05209833e+07, 4.05190698e+07, 4.05224356e+07, ], 'CountWeightedFullL1PrefireNomHighPtTopPtRwgtSFSquared' : [ 4.06392193e+07, 4.06374710e+07, 4.06410068e+07, ], 'CountWeightedFullL1PrefireTOP16011TopPtRwgtSF' : [ 4.04865725e+07, 4.01684559e+07, 4.07938770e+07, ], 'CountWeightedFullL1PrefireTOP16011TopPtRwgtSFSquared' : [ 4.05788004e+07, 4.02622968e+07, 4.08842876e+07, ], 'CountWeightedFullL1PrefireLinearTopPtRwgtSF' : [ 4.05147310e+07, 4.01962208e+07, 4.08224015e+07, ], 'CountWeightedFullL1PrefireLinearTopPtRwgtSFSquared' : [ 4.06267396e+07, 4.03095648e+07, 4.09329389e+07, ], 'CountWeightedFullL1PrefireQuadraticTopPtRwgtSF' : [ 4.05281466e+07, 4.02101438e+07, 4.08352895e+07, ], 'CountWeightedFullL1PrefireQuadraticTopPtRwgtSFSquared' : [ 4.06742050e+07, 4.03578962e+07, 4.09794581e+07, ], 'CountWeightedFullL1PrefireHighPtTopPtRwgtSF' : [ 4.05209833e+07, 4.02025108e+07, 4.08286513e+07, ], 'CountWeightedFullL1PrefireHighPtTopPtRwgtSFSquared' : [ 4.06392193e+07, 4.03221186e+07, 4.09453385e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNomTOP16011TopPtRwgtSF' : [ 4.58465002e+07, 4.49943234e+07, 4.44562950e+07, 4.14995778e+07, 4.04865725e+07, 3.97127625e+07, 3.74508575e+07, 3.63772885e+07, 3.54960018e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNomTOP16011TopPtRwgtSFSquared' : [ 4.59496489e+07, 4.51043922e+07, 4.45722459e+07, 4.15851151e+07, 4.05788004e+07, 3.98108943e+07, 3.75211062e+07, 3.64545627e+07, 3.55791104e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNomLinearTopPtRwgtSF' : [ 4.58789845e+07, 4.50252066e+07, 4.44859913e+07, 4.15293572e+07, 4.05147310e+07, 3.97395979e+07, 3.74781360e+07, 3.64028937e+07, 3.55202523e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNomLinearTopPtRwgtSFSquared' : [ 4.60050381e+07, 4.51569769e+07, 4.46227159e+07, 4.16359896e+07, 4.06267396e+07, 3.98565283e+07, 3.75677736e+07, 3.64982907e+07, 3.56204062e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNomQuadraticTopPtRwgtSF' : [ 4.58968403e+07, 4.50430638e+07, 4.45038689e+07, 4.15423459e+07, 4.05281466e+07, 3.97534743e+07, 3.74875856e+07, 3.64131556e+07, 3.55311082e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNomQuadraticTopPtRwgtSFSquared' : [ 4.60637027e+07, 4.52154097e+07, 4.46810635e+07, 4.16828288e+07, 4.06742050e+07, 3.99044955e+07, 3.76054802e+07, 3.65371579e+07, 3.56602135e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNomHighPtTopPtRwgtSF' : [ 4.58889051e+07, 4.50334355e+07, 4.44927804e+07, 4.15369381e+07, 4.05209833e+07, 3.97447764e+07, 3.74842816e+07, 3.64079437e+07, 3.55243462e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNomHighPtTopPtRwgtSFSquared' : [ 4.60246712e+07, 4.51733862e+07, 4.46365026e+07, 4.16507713e+07, 4.06392193e+07, 3.98669274e+07, 3.75795175e+07, 3.65080991e+07, 3.56285372e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNomTOP16011TopPtRwgtSF' : [ 4.94504285e+07, 3.31711775e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNomTOP16011TopPtRwgtSFSquared' : [ 4.95475342e+07, 3.32640562e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNomLinearTopPtRwgtSF' : [ 4.94864571e+07, 3.31926277e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNomLinearTopPtRwgtSFSquared' : [ 4.96091440e+07, 3.33004491e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNomQuadraticTopPtRwgtSF' : [ 4.95022611e+07, 3.32057079e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNomQuadraticTopPtRwgtSFSquared' : [ 4.96654661e+07, 3.33435624e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNomHighPtTopPtRwgtSF' : [ 4.94969430e+07, 3.31958662e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNomHighPtTopPtRwgtSFSquared' : [ 4.96295121e+07, 3.33072677e+07, ], }), ("nof_tree_events", 41729120), ("nof_db_events", 41729120), ("fsize_local", 307931198934), # 307.93GB, avg file size 3.67GB ("fsize_db", 2307611725630), # 2.31TB, avg file size 3.47GB ("use_it", True), ("xsection", 377.85), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Apr19_woPresel_nom_all_hh_multilepton/ntuples/TTToHadronic"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/TTToHadronic_TuneCP5_PSweights_13TeV-powheg-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_new_pmx_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "TT"), ("process_name_specific", "TTToHadronic_PSweights"), ("nof_files", 262), ("nof_db_files", 2021), ("nof_events", { 'Count' : [ 130262440, ], 'CountWeighted' : [ 1.29208543e+08, 1.29201097e+08, 1.29215617e+08, ], 'CountWeightedLHEWeightScale' : [ 1.45593065e+08, 1.43046368e+08, 1.41409640e+08, 1.32392244e+08, 1.29208543e+08, 1.26763538e+08, 1.19793404e+08, 1.16358569e+08, 1.13532797e+08, ], 'CountWeightedLHEEnvelope' : [ 1.57351346e+08, 1.05846464e+08, ], 'CountWeightedPSWeight' : [ 1.29209116e+08, 1.29207768e+08, 1.91195854e+08, 1.29211157e+08, 1.28849366e+08, 7.33535025e+07, ], 'CountWeightedPSWeightOriginalXWGTUP' : [ 1.30265974e+09, 1.30266038e+09, 1.30266041e+09, 1.30265973e+09, 1.30265378e+09, 1.30265308e+09, ], 'CountWeightedFull' : [ 4.08675575e+10, 4.08715488e+10, 4.08598544e+10, ], 'CountWeightedFullLHEWeightScale' : [ 4.60576880e+10, 4.52518191e+10, 4.47342905e+10, 4.18816242e+10, 4.08675575e+10, 4.01011731e+10, 3.78960948e+10, 3.68092022e+10, 3.59156083e+10, ], 'CountWeightedFullLHEEnvelope' : [ 4.97771208e+10, 3.34839538e+10, ], 'CountWeightedFullPSWeight' : [ 4.08746844e+10, 4.08742749e+10, 6.04838037e+10, 4.08752234e+10, 4.07609174e+10, 2.32050999e+10, ], 'CountWeightedFullPSWeightOriginalXWGTUP' : [ 4.12077743e+11, 4.12077736e+11, 4.12077744e+11, 4.12077743e+11, 4.12075646e+11, 4.12075638e+11, ], 'CountWeightedL1PrefireNom' : [ 1.25255843e+08, 1.25247098e+08, 1.25265135e+08, ], 'CountWeightedL1Prefire' : [ 1.25255843e+08, 1.24268208e+08, 1.26210282e+08, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 1.41030699e+08, 1.38616846e+08, 1.37079378e+08, 1.28293668e+08, 1.25255843e+08, 1.22927100e+08, 1.16116165e+08, 1.12828821e+08, 1.10125372e+08, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 1.52459482e+08, 1.02651055e+08, ], 'CountWeightedPSWeightL1PrefireNom' : [ 1.25274687e+08, 1.25192970e+08, 1.85326022e+08, 1.25235052e+08, 1.25005492e+08, 7.11552254e+07, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNom' : [ 1.26243687e+09, 1.26243743e+09, 1.26243745e+09, 1.26243687e+09, 1.26243117e+09, 1.26243055e+09, ], 'CountWeightedFullL1PrefireNom' : [ 3.96206138e+10, 3.96212681e+10, 3.96181928e+10, ], 'CountWeightedFullL1Prefire' : [ 3.96206138e+10, 3.93085866e+10, 3.99226593e+10, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 4.46144864e+10, 4.38507425e+10, 4.33645049e+10, 4.05851714e+10, 3.96206138e+10, 3.88875890e+10, 3.67329030e+10, 3.56927539e+10, 3.48377424e+10, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 4.82297781e+10, 3.24731764e+10, ], 'CountWeightedFullPSWeightL1PrefireNom' : [ 3.96302105e+10, 3.96042999e+10, 5.86270682e+10, 3.96175473e+10, 3.95450060e+10, 2.25097265e+10, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNom' : [ 3.99353075e+11, 3.99353067e+11, 3.99353075e+11, 3.99353075e+11, 3.99351083e+11, 3.99351075e+11, ], 'CountWeightedTOP16011TopPtRwgtSF' : [ 1.29309258e+08, 1.29309468e+08, 1.29306983e+08, ], 'CountWeightedTOP16011TopPtRwgtSFSquared' : [ 1.29576954e+08, 1.29578051e+08, 1.29577276e+08, ], 'CountWeightedLinearTopPtRwgtSF' : [ 1.29400336e+08, 1.29400491e+08, 1.29398053e+08, ], 'CountWeightedLinearTopPtRwgtSFSquared' : [ 1.29732939e+08, 1.29734075e+08, 1.29733052e+08, ], 'CountWeightedQuadraticTopPtRwgtSF' : [ 1.29434200e+08, 1.29434896e+08, 1.29432986e+08, ], 'CountWeightedQuadraticTopPtRwgtSFSquared' : [ 1.29866679e+08, 1.29867611e+08, 1.29866698e+08, ], 'CountWeightedHighPtTopPtRwgtSF' : [ 1.29417830e+08, 1.29418113e+08, 1.29416119e+08, ], 'CountWeightedHighPtTopPtRwgtSFSquared' : [ 1.29767594e+08, 1.29768465e+08, 1.29767223e+08, ], 'CountWeightedLHEWeightScaleTOP16011TopPtRwgtSF' : [ 1.45722008e+08, 1.43190471e+08, 1.41569407e+08, 1.32468707e+08, 1.29309258e+08, 1.26881770e+08, 1.19831420e+08, 1.16422534e+08, 1.13618645e+08, ], 'CountWeightedLHEWeightScaleTOP16011TopPtRwgtSFSquared' : [ 1.46040813e+08, 1.43520944e+08, 1.41912269e+08, 1.32719829e+08, 1.29576954e+08, 1.27165322e+08, 1.20029422e+08, 1.16640782e+08, 1.13853967e+08, ], 'CountWeightedLHEWeightScaleLinearTopPtRwgtSF' : [ 1.45824374e+08, 1.43289099e+08, 1.41665172e+08, 1.32564374e+08, 1.29400336e+08, 1.26969125e+08, 1.19919939e+08, 1.16506164e+08, 1.13698194e+08, ], 'CountWeightedLHEWeightScaleLinearTopPtRwgtSFSquared' : [ 1.46216057e+08, 1.43689440e+08, 1.42075612e+08, 1.32883856e+08, 1.29732939e+08, 1.27314572e+08, 1.20181508e+08, 1.16784070e+08, 1.13989982e+08, ], 'CountWeightedLHEWeightScaleQuadraticTopPtRwgtSF' : [ 1.45872795e+08, 1.43337203e+08, 1.41713264e+08, 1.32596694e+08, 1.29434200e+08, 1.27004648e+08, 1.19941298e+08, 1.16530254e+08, 1.13724600e+08, ], 'CountWeightedLHEWeightScaleQuadraticTopPtRwgtSFSquared' : [ 1.46386164e+08, 1.43858177e+08, 1.42243655e+08, 1.33015309e+08, 1.29866679e+08, 1.27450012e+08, 1.20284433e+08, 1.16891221e+08, 1.14100442e+08, ], 'CountWeightedLHEWeightScaleHighPtTopPtRwgtSF' : [ 1.45850223e+08, 1.43311452e+08, 1.41684306e+08, 1.32584894e+08, 1.29417830e+08, 1.26983853e+08, 1.19937120e+08, 1.16520500e+08, 1.13710110e+08, ], 'CountWeightedLHEWeightScaleHighPtTopPtRwgtSFSquared' : [ 1.46267637e+08, 1.43734475e+08, 1.42114467e+08, 1.32923753e+08, 1.29767594e+08, 1.27343961e+08, 1.20214017e+08, 1.16811662e+08, 1.14013232e+08, ], 'CountWeightedLHEEnvelopeTOP16011TopPtRwgtSF' : [ 1.57433460e+08, 1.05984544e+08, ], 'CountWeightedLHEEnvelopeTOP16011TopPtRwgtSFSquared' : [ 1.57724036e+08, 1.06258866e+08, ], 'CountWeightedLHEEnvelopeLinearTopPtRwgtSF' : [ 1.57548110e+08, 1.06054311e+08, ], 'CountWeightedLHEEnvelopeLinearTopPtRwgtSFSquared' : [ 1.57920803e+08, 1.06377589e+08, ], 'CountWeightedLHEEnvelopeQuadraticTopPtRwgtSF' : [ 1.57588583e+08, 1.06088776e+08, ], 'CountWeightedLHEEnvelopeQuadraticTopPtRwgtSFSquared' : [ 1.58080762e+08, 1.06500695e+08, ], 'CountWeightedLHEEnvelopeHighPtTopPtRwgtSF' : [ 1.57576550e+08, 1.06062594e+08, ], 'CountWeightedLHEEnvelopeHighPtTopPtRwgtSFSquared' : [ 1.57976084e+08, 1.06395161e+08, ], 'CountWeightedPSWeightTOP16011TopPtRwgtSF' : [ 1.29309809e+08, 1.29302712e+08, 1.91295617e+08, 1.29307278e+08, 1.28955351e+08, 7.34475960e+07, ], 'CountWeightedPSWeightTOP16011TopPtRwgtSFSquared' : [ 1.29580302e+08, 1.29567508e+08, 1.91647833e+08, 1.29572875e+08, 1.29230187e+08, 7.36367977e+07, ], 'CountWeightedPSWeightLinearTopPtRwgtSF' : [ 1.29400720e+08, 1.29394107e+08, 1.91434164e+08, 1.29398585e+08, 1.29045463e+08, 7.34961211e+07, ], 'CountWeightedPSWeightLinearTopPtRwgtSFSquared' : [ 1.29735817e+08, 1.29723964e+08, 1.91885579e+08, 1.29729157e+08, 1.29384346e+08, 7.37193333e+07, ], 'CountWeightedPSWeightQuadraticTopPtRwgtSF' : [ 1.29435157e+08, 1.29427894e+08, 1.91477751e+08, 1.29432373e+08, 1.29080415e+08, 7.35209896e+07, ], 'CountWeightedPSWeightQuadraticTopPtRwgtSFSquared' : [ 1.29870121e+08, 1.29856833e+08, 1.92068509e+08, 1.29862105e+08, 1.29519435e+08, 7.38068465e+07, ], 'CountWeightedPSWeightHighPtTopPtRwgtSF' : [ 1.29417981e+08, 1.29412057e+08, 1.91463305e+08, 1.29416479e+08, 1.29062209e+08, 7.35031911e+07, ], 'CountWeightedPSWeightHighPtTopPtRwgtSFSquared' : [ 1.29769884e+08, 1.29759244e+08, 1.91941756e+08, 1.29764337e+08, 1.29417349e+08, 7.37341666e+07, ], 'CountWeightedPSWeightOriginalXWGTUPTOP16011TopPtRwgtSF' : [ 1.30332247e+09, 1.30332311e+09, 1.30332313e+09, 1.30332246e+09, 1.30331662e+09, 1.30331592e+09, ], 'CountWeightedPSWeightOriginalXWGTUPTOP16011TopPtRwgtSFSquared' : [ 1.30576058e+09, 1.30576122e+09, 1.30576124e+09, 1.30576058e+09, 1.30575482e+09, 1.30575413e+09, ], 'CountWeightedPSWeightOriginalXWGTUPLinearTopPtRwgtSF' : [ 1.30427366e+09, 1.30427430e+09, 1.30427432e+09, 1.30427365e+09, 1.30426779e+09, 1.30426708e+09, ], 'CountWeightedPSWeightOriginalXWGTUPLinearTopPtRwgtSFSquared' : [ 1.30739025e+09, 1.30739089e+09, 1.30739091e+09, 1.30739025e+09, 1.30738447e+09, 1.30738377e+09, ], 'CountWeightedPSWeightOriginalXWGTUPQuadraticTopPtRwgtSF' : [ 1.30460391e+09, 1.30460455e+09, 1.30460457e+09, 1.30460390e+09, 1.30459804e+09, 1.30459734e+09, ], 'CountWeightedPSWeightOriginalXWGTUPQuadraticTopPtRwgtSFSquared' : [ 1.30869320e+09, 1.30869383e+09, 1.30869385e+09, 1.30869319e+09, 1.30868742e+09, 1.30868672e+09, ], 'CountWeightedPSWeightOriginalXWGTUPHighPtTopPtRwgtSF' : [ 1.30449104e+09, 1.30449168e+09, 1.30449171e+09, 1.30449104e+09, 1.30448516e+09, 1.30448446e+09, ], 'CountWeightedPSWeightOriginalXWGTUPHighPtTopPtRwgtSFSquared' : [ 1.30779974e+09, 1.30780037e+09, 1.30780040e+09, 1.30779973e+09, 1.30779392e+09, 1.30779322e+09, ], 'CountWeightedFullTOP16011TopPtRwgtSF' : [ 4.09065584e+10, 4.09065901e+10, 4.09057237e+10, ], 'CountWeightedFullTOP16011TopPtRwgtSFSquared' : [ 4.09914696e+10, 4.09914758e+10, 4.09909386e+10, ], 'CountWeightedFullLinearTopPtRwgtSF' : [ 4.09353328e+10, 4.09353877e+10, 4.09344929e+10, ], 'CountWeightedFullLinearTopPtRwgtSFSquared' : [ 4.10407742e+10, 4.10407645e+10, 4.10402241e+10, ], 'CountWeightedFullQuadraticTopPtRwgtSF' : [ 4.09462038e+10, 4.09462385e+10, 4.09454595e+10, ], 'CountWeightedFullQuadraticTopPtRwgtSFSquared' : [ 4.10829845e+10, 4.10830713e+10, 4.10824990e+10, ], 'CountWeightedFullHighPtTopPtRwgtSF' : [ 4.09410498e+10, 4.09409580e+10, 4.09401035e+10, ], 'CountWeightedFullHighPtTopPtRwgtSFSquared' : [ 4.10516997e+10, 4.10516953e+10, 4.10510493e+10, ], 'CountWeightedFullLHEWeightScaleTOP16011TopPtRwgtSF' : [ 4.60985008e+10, 4.52976245e+10, 4.47848685e+10, 4.19058367e+10, 4.09065584e+10, 4.01384870e+10, 3.79081667e+10, 3.68296295e+10, 3.59427898e+10, ], 'CountWeightedFullLHEWeightScaleTOP16011TopPtRwgtSFSquared' : [ 4.61993716e+10, 4.54022057e+10, 4.48933446e+10, 4.19853620e+10, 4.09914696e+10, 4.02282095e+10, 3.79708052e+10, 3.68988090e+10, 3.60172318e+10, ], 'CountWeightedFullLHEWeightScaleLinearTopPtRwgtSF' : [ 4.61308703e+10, 4.53288261e+10, 4.48151550e+10, 4.19360841e+10, 4.09353328e+10, 4.01661244e+10, 3.79361816e+10, 3.68560700e+10, 3.59679574e+10, ], 'CountWeightedFullLHEWeightScaleLinearTopPtRwgtSFSquared' : [ 4.62547867e+10, 4.54555324e+10, 4.49450062e+10, 4.20372258e+10, 4.10407742e+10, 4.02754332e+10, 3.80189246e+10, 3.69441382e+10, 3.60602634e+10, ], 'CountWeightedFullLHEWeightScaleQuadraticTopPtRwgtSF' : [ 4.61462044e+10, 4.53440707e+10, 4.48303721e+10, 4.19463512e+10, 4.09462038e+10, 4.01773685e+10, 3.79429305e+10, 3.68637393e+10, 3.59762967e+10, ], 'CountWeightedFullLHEWeightScaleQuadraticTopPtRwgtSFSquared' : [ 4.63086344e+10, 4.55089080e+10, 4.49981835e+10, 4.20788374e+10, 4.10829845e+10, 4.03182947e+10, 3.80514727e+10, 3.69780507e+10, 3.60952058e+10, ], 'CountWeightedFullLHEWeightScaleHighPtTopPtRwgtSF' : [ 4.61390597e+10, 4.53358984e+10, 4.48211868e+10, 4.19425736e+10, 4.09410498e+10, 4.01707942e+10, 3.79416283e+10, 3.68606097e+10, 3.59717105e+10, ], 'CountWeightedFullLHEWeightScaleHighPtTopPtRwgtSFSquared' : [ 4.62711173e+10, 4.54697842e+10, 4.49572999e+10, 4.20498594e+10, 4.10516997e+10, 4.02847382e+10, 3.80292055e+10, 3.69528571e+10, 3.60675943e+10, ], 'CountWeightedFullLHEEnvelopeTOP16011TopPtRwgtSF' : [ 4.98032854e+10, 3.35276203e+10, ], 'CountWeightedFullLHEEnvelopeTOP16011TopPtRwgtSFSquared' : [ 4.98952929e+10, 3.36144256e+10, ], 'CountWeightedFullLHEEnvelopeLinearTopPtRwgtSF' : [ 4.98395298e+10, 3.35497012e+10, ], 'CountWeightedFullLHEEnvelopeLinearTopPtRwgtSFSquared' : [ 4.99575105e+10, 3.36519928e+10, ], 'CountWeightedFullLHEEnvelopeQuadraticTopPtRwgtSF' : [ 4.98523962e+10, 3.35605896e+10, ], 'CountWeightedFullLHEEnvelopeQuadraticTopPtRwgtSFSquared' : [ 5.00081430e+10, 3.36909621e+10, ], 'CountWeightedFullLHEEnvelopeHighPtTopPtRwgtSF' : [ 4.98485489e+10, 3.35523184e+10, ], 'CountWeightedFullLHEEnvelopeHighPtTopPtRwgtSFSquared' : [ 4.99750294e+10, 3.36575630e+10, ], 'CountWeightedFullPSWeightTOP16011TopPtRwgtSF' : [ 4.09068072e+10, 4.09043216e+10, 6.05154057e+10, 4.09057856e+10, 4.07944728e+10, 2.32348792e+10, ], 'CountWeightedFullPSWeightTOP16011TopPtRwgtSFSquared' : [ 4.09923870e+10, 4.09881059e+10, 6.06268888e+10, 4.09898343e+10, 4.08814265e+10, 2.32947513e+10, ], 'CountWeightedFullPSWeightLinearTopPtRwgtSF' : [ 4.09355605e+10, 4.09332422e+10, 6.05592306e+10, 4.09346683e+10, 4.08229790e+10, 2.32502342e+10, ], 'CountWeightedFullPSWeightLinearTopPtRwgtSFSquared' : [ 4.10415804e+10, 4.10376085e+10, 6.07020816e+10, 4.10392807e+10, 4.09302019e+10, 2.33208609e+10, ], 'CountWeightedFullPSWeightQuadraticTopPtRwgtSF' : [ 4.09464626e+10, 4.09439266e+10, 6.05730239e+10, 4.09453709e+10, 4.08340301e+10, 2.32580991e+10, ], 'CountWeightedFullPSWeightQuadraticTopPtRwgtSFSquared' : [ 4.10840422e+10, 4.10796498e+10, 6.07599837e+10, 4.10813208e+10, 4.09729372e+10, 2.33485432e+10, ], 'CountWeightedFullPSWeightHighPtTopPtRwgtSF' : [ 4.09410366e+10, 4.09389138e+10, 6.05684455e+10, 4.09403357e+10, 4.08282686e+10, 2.32524736e+10, ], 'CountWeightedFullPSWeightHighPtTopPtRwgtSFSquared' : [ 4.10523341e+10, 4.10487550e+10, 6.07198542e+10, 4.10503829e+10, 4.09406455e+10, 2.33255468e+10, ], 'CountWeightedFullPSWeightOriginalXWGTUPTOP16011TopPtRwgtSF' : [ 4.12302052e+11, 4.12302045e+11, 4.12302053e+11, 4.12302052e+11, 4.12299991e+11, 4.12299983e+11, ], 'CountWeightedFullPSWeightOriginalXWGTUPTOP16011TopPtRwgtSFSquared' : [ 4.13071549e+11, 4.13071541e+11, 4.13071549e+11, 4.13071549e+11, 4.13069518e+11, 4.13069509e+11, ], 'CountWeightedFullPSWeightOriginalXWGTUPLinearTopPtRwgtSF' : [ 4.12603303e+11, 4.12603295e+11, 4.12603303e+11, 4.12603303e+11, 4.12601240e+11, 4.12601233e+11, ], 'CountWeightedFullPSWeightOriginalXWGTUPLinearTopPtRwgtSFSquared' : [ 4.13586180e+11, 4.13586172e+11, 4.13586180e+11, 4.13586180e+11, 4.13584140e+11, 4.13584132e+11, ], 'CountWeightedFullPSWeightOriginalXWGTUPQuadraticTopPtRwgtSF' : [ 4.12705857e+11, 4.12705849e+11, 4.12705858e+11, 4.12705857e+11, 4.12703794e+11, 4.12703786e+11, ], 'CountWeightedFullPSWeightOriginalXWGTUPQuadraticTopPtRwgtSFSquared' : [ 4.13999844e+11, 4.13999836e+11, 4.13999844e+11, 4.13999844e+11, 4.13997810e+11, 4.13997802e+11, ], 'CountWeightedFullPSWeightOriginalXWGTUPHighPtTopPtRwgtSF' : [ 4.12670439e+11, 4.12670431e+11, 4.12670440e+11, 4.12670439e+11, 4.12668371e+11, 4.12668362e+11, ], 'CountWeightedFullPSWeightOriginalXWGTUPHighPtTopPtRwgtSFSquared' : [ 4.13716437e+11, 4.13716429e+11, 4.13716437e+11, 4.13716437e+11, 4.13714387e+11, 4.13714379e+11, ], 'CountWeightedL1PrefireNomTOP16011TopPtRwgtSF' : [ 1.25391513e+08, 1.25386101e+08, 1.25395262e+08, ], 'CountWeightedL1PrefireNomTOP16011TopPtRwgtSFSquared' : [ 1.25688856e+08, 1.25684157e+08, 1.25694381e+08, ], 'CountWeightedL1PrefireNomLinearTopPtRwgtSF' : [ 1.25477234e+08, 1.25471771e+08, 1.25480925e+08, ], 'CountWeightedL1PrefireNomLinearTopPtRwgtSFSquared' : [ 1.25834932e+08, 1.25830239e+08, 1.25840321e+08, ], 'CountWeightedL1PrefireNomQuadraticTopPtRwgtSF' : [ 1.25519305e+08, 1.25514260e+08, 1.25523748e+08, ], 'CountWeightedL1PrefireNomQuadraticTopPtRwgtSFSquared' : [ 1.25983296e+08, 1.25978531e+08, 1.25988734e+08, ], 'CountWeightedL1PrefireNomHighPtTopPtRwgtSF' : [ 1.25494779e+08, 1.25489427e+08, 1.25498885e+08, ], 'CountWeightedL1PrefireNomHighPtTopPtRwgtSFSquared' : [ 1.25870252e+08, 1.25865408e+08, 1.25875413e+08, ], 'CountWeightedL1PrefireTOP16011TopPtRwgtSF' : [ 1.25391513e+08, 1.24409841e+08, 1.26339632e+08, ], 'CountWeightedL1PrefireTOP16011TopPtRwgtSFSquared' : [ 1.25688856e+08, 1.24712091e+08, 1.26631497e+08, ], 'CountWeightedL1PrefireLinearTopPtRwgtSF' : [ 1.25477234e+08, 1.24494402e+08, 1.26426491e+08, ], 'CountWeightedL1PrefireLinearTopPtRwgtSFSquared' : [ 1.25834932e+08, 1.24856049e+08, 1.26779722e+08, ], 'CountWeightedL1PrefireQuadraticTopPtRwgtSF' : [ 1.25519305e+08, 1.24538002e+08, 1.26466935e+08, ], 'CountWeightedL1PrefireQuadraticTopPtRwgtSFSquared' : [ 1.25983296e+08, 1.25007032e+08, 1.26925223e+08, ], 'CountWeightedL1PrefireHighPtTopPtRwgtSF' : [ 1.25494779e+08, 1.24511987e+08, 1.26443983e+08, ], 'CountWeightedL1PrefireHighPtTopPtRwgtSFSquared' : [ 1.25870252e+08, 1.24891641e+08, 1.26814789e+08, ], 'CountWeightedLHEWeightScaleL1PrefireNomTOP16011TopPtRwgtSF' : [ 1.41201326e+08, 1.38800290e+08, 1.37276076e+08, 1.28407944e+08, 1.25391513e+08, 1.23078043e+08, 1.16188428e+08, 1.12924443e+08, 1.10240529e+08, ], 'CountWeightedLHEWeightScaleL1PrefireNomTOP16011TopPtRwgtSFSquared' : [ 1.41555343e+08, 1.39163654e+08, 1.37649863e+08, 1.28691048e+08, 1.25688856e+08, 1.23389064e+08, 1.16415406e+08, 1.13169292e+08, 1.10500313e+08, ], 'CountWeightedLHEWeightScaleL1PrefireNomLinearTopPtRwgtSF' : [ 1.41297317e+08, 1.38892874e+08, 1.37366046e+08, 1.28497853e+08, 1.25477234e+08, 1.23160292e+08, 1.16271826e+08, 1.13003278e+08, 1.10315521e+08, ], 'CountWeightedLHEWeightScaleL1PrefireNomLinearTopPtRwgtSFSquared' : [ 1.41718912e+08, 1.39321106e+08, 1.37802589e+08, 1.28844602e+08, 1.25834932e+08, 1.23528934e+08, 1.16558082e+08, 1.13303772e+08, 1.10628017e+08, ], 'CountWeightedLHEWeightScaleL1PrefireNomQuadraticTopPtRwgtSF' : [ 1.41354942e+08, 1.38949917e+08, 1.37422815e+08, 1.28538761e+08, 1.25519305e+08, 1.23203695e+08, 1.16300993e+08, 1.13034828e+08, 1.10348990e+08, ], 'CountWeightedLHEWeightScaleL1PrefireNomQuadraticTopPtRwgtSFSquared' : [ 1.41905612e+08, 1.39505860e+08, 1.37986254e+08, 1.28991463e+08, 1.25983296e+08, 1.23678490e+08, 1.16675138e+08, 1.13424291e+08, 1.10751221e+08, ], 'CountWeightedLHEWeightScaleL1PrefireNomHighPtTopPtRwgtSF' : [ 1.41322768e+08, 1.38915120e+08, 1.37385314e+08, 1.28518197e+08, 1.25494779e+08, 1.23175253e+08, 1.16288913e+08, 1.13017725e+08, 1.10327714e+08, ], 'CountWeightedLHEWeightScaleL1PrefireNomHighPtTopPtRwgtSFSquared' : [ 1.41770444e+08, 1.39366601e+08, 1.37842414e+08, 1.28884798e+08, 1.25870252e+08, 1.23559463e+08, 1.16591064e+08, 1.13332201e+08, 1.10652389e+08, ], 'CountWeightedLHEEnvelopeL1PrefireNomTOP16011TopPtRwgtSF' : [ 1.52587274e+08, 1.02815437e+08, ], 'CountWeightedLHEEnvelopeL1PrefireNomTOP16011TopPtRwgtSFSquared' : [ 1.52916363e+08, 1.03111626e+08, ], 'CountWeightedLHEEnvelopeL1PrefireNomLinearTopPtRwgtSF' : [ 1.52695070e+08, 1.02881024e+08, ], 'CountWeightedLHEEnvelopeL1PrefireNomLinearTopPtRwgtSFSquared' : [ 1.53100560e+08, 1.03222746e+08, ], 'CountWeightedLHEEnvelopeL1PrefireNomQuadraticTopPtRwgtSF' : [ 1.52745614e+08, 1.02921941e+08, ], 'CountWeightedLHEEnvelopeL1PrefireNomQuadraticTopPtRwgtSFSquared' : [ 1.53278681e+08, 1.03357452e+08, ], 'CountWeightedLHEEnvelopeL1PrefireNomHighPtTopPtRwgtSF' : [ 1.52723021e+08, 1.02889691e+08, ], 'CountWeightedLHEEnvelopeL1PrefireNomHighPtTopPtRwgtSFSquared' : [ 1.53155799e+08, 1.03241538e+08, ], 'CountWeightedPSWeightL1PrefireNomTOP16011TopPtRwgtSF' : [ 1.25410043e+08, 1.25323117e+08, 1.85479461e+08, 1.25366720e+08, 1.25146156e+08, 7.12677066e+07, ], 'CountWeightedPSWeightL1PrefireNomTOP16011TopPtRwgtSFSquared' : [ 1.25709630e+08, 1.25617485e+08, 1.85876974e+08, 1.25662242e+08, 1.25450197e+08, 7.14722990e+07, ], 'CountWeightedPSWeightL1PrefireNomLinearTopPtRwgtSF' : [ 1.25495639e+08, 1.25409069e+08, 1.85609849e+08, 1.25452566e+08, 1.25231014e+08, 7.13133508e+07, ], 'CountWeightedPSWeightL1PrefireNomLinearTopPtRwgtSFSquared' : [ 1.25855415e+08, 1.25763979e+08, 1.86099872e+08, 1.25808548e+08, 1.25594680e+08, 7.15495174e+07, ], 'CountWeightedPSWeightL1PrefireNomQuadraticTopPtRwgtSF' : [ 1.25538220e+08, 1.25451048e+08, 1.85665614e+08, 1.25494541e+08, 1.25274027e+08, 7.13427386e+07, ], 'CountWeightedPSWeightL1PrefireNomQuadraticTopPtRwgtSFSquared' : [ 1.26004331e+08, 1.25911550e+08, 1.86304777e+08, 1.25956231e+08, 1.25744386e+08, 7.16451063e+07, ], 'CountWeightedPSWeightL1PrefireNomHighPtTopPtRwgtSF' : [ 1.25513002e+08, 1.25427087e+08, 1.85638737e+08, 1.25470378e+08, 1.25247787e+08, 7.13206691e+07, ], 'CountWeightedPSWeightL1PrefireNomHighPtTopPtRwgtSFSquared' : [ 1.25890313e+08, 1.25799984e+08, 1.86156555e+08, 1.25844276e+08, 1.25628488e+08, 7.15651828e+07, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNomTOP16011TopPtRwgtSF' : [ 1.26347969e+09, 1.26348024e+09, 1.26348026e+09, 1.26347968e+09, 1.26347407e+09, 1.26347346e+09, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNomTOP16011TopPtRwgtSFSquared' : [ 1.26622727e+09, 1.26622782e+09, 1.26622784e+09, 1.26622727e+09, 1.26622175e+09, 1.26622114e+09, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNomLinearTopPtRwgtSF' : [ 1.26437507e+09, 1.26437562e+09, 1.26437564e+09, 1.26437506e+09, 1.26436945e+09, 1.26436883e+09, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNomLinearTopPtRwgtSFSquared' : [ 1.26775419e+09, 1.26775474e+09, 1.26775476e+09, 1.26775418e+09, 1.26774865e+09, 1.26774804e+09, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNomQuadraticTopPtRwgtSF' : [ 1.26478747e+09, 1.26478802e+09, 1.26478804e+09, 1.26478746e+09, 1.26478186e+09, 1.26478125e+09, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNomQuadraticTopPtRwgtSFSquared' : [ 1.26920922e+09, 1.26920977e+09, 1.26920979e+09, 1.26920921e+09, 1.26920369e+09, 1.26920308e+09, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNomHighPtTopPtRwgtSF' : [ 1.26459000e+09, 1.26459055e+09, 1.26459058e+09, 1.26458999e+09, 1.26458437e+09, 1.26458375e+09, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNomHighPtTopPtRwgtSFSquared' : [ 1.26816812e+09, 1.26816867e+09, 1.26816870e+09, 1.26816812e+09, 1.26816255e+09, 1.26816194e+09, ], 'CountWeightedFullL1PrefireNomTOP16011TopPtRwgtSF' : [ 3.96672826e+10, 3.96655033e+10, 3.96683143e+10, ], 'CountWeightedFullL1PrefireNomTOP16011TopPtRwgtSFSquared' : [ 3.97614787e+10, 3.97597418e+10, 3.97627865e+10, ], 'CountWeightedFullL1PrefireNomLinearTopPtRwgtSF' : [ 3.96943764e+10, 3.96926070e+10, 3.96954135e+10, ], 'CountWeightedFullL1PrefireNomLinearTopPtRwgtSFSquared' : [ 3.98076708e+10, 3.98059209e+10, 3.98089588e+10, ], 'CountWeightedFullL1PrefireNomQuadraticTopPtRwgtSF' : [ 3.97077844e+10, 3.97060255e+10, 3.97089038e+10, ], 'CountWeightedFullL1PrefireNomQuadraticTopPtRwgtSFSquared' : [ 3.98545302e+10, 3.98528630e+10, 3.98558800e+10, ], 'CountWeightedFullL1PrefireNomHighPtTopPtRwgtSF' : [ 3.97000431e+10, 3.96981798e+10, 3.97010057e+10, ], 'CountWeightedFullL1PrefireNomHighPtTopPtRwgtSFSquared' : [ 3.98188113e+10, 3.98170629e+10, 3.98200436e+10, ], 'CountWeightedFullL1PrefireTOP16011TopPtRwgtSF' : [ 3.96672826e+10, 3.93567458e+10, 3.99671947e+10, ], 'CountWeightedFullL1PrefireTOP16011TopPtRwgtSFSquared' : [ 3.97614787e+10, 3.94524916e+10, 4.00596866e+10, ], 'CountWeightedFullL1PrefireLinearTopPtRwgtSF' : [ 3.96943764e+10, 3.93834810e+10, 3.99946577e+10, ], 'CountWeightedFullL1PrefireLinearTopPtRwgtSFSquared' : [ 3.98076708e+10, 3.94980101e+10, 4.01065476e+10, ], 'CountWeightedFullL1PrefireQuadraticTopPtRwgtSF' : [ 3.97077844e+10, 3.93973626e+10, 4.00075483e+10, ], 'CountWeightedFullL1PrefireQuadraticTopPtRwgtSFSquared' : [ 3.98545302e+10, 3.95457063e+10, 4.01525003e+10, ], 'CountWeightedFullL1PrefireHighPtTopPtRwgtSF' : [ 3.97000431e+10, 3.93891666e+10, 4.00003047e+10, ], 'CountWeightedFullL1PrefireHighPtTopPtRwgtSFSquared' : [ 3.98188113e+10, 3.95092406e+10, 4.01175992e+10, ], 'CountWeightedFullLHEWeightScaleL1PrefireNomTOP16011TopPtRwgtSF' : [ 4.46684940e+10, 4.39089124e+10, 4.34267653e+10, 4.06213256e+10, 3.96672826e+10, 3.89352779e+10, 3.67557973e+10, 3.57231110e+10, 3.48741755e+10, ], 'CountWeightedFullLHEWeightScaleL1PrefireNomTOP16011TopPtRwgtSFSquared' : [ 4.47805014e+10, 4.40239048e+10, 4.35450194e+10, 4.07109603e+10, 3.97614787e+10, 3.90336839e+10, 3.68275908e+10, 3.58006731e+10, 3.49563744e+10, ], 'CountWeightedFullLHEWeightScaleL1PrefireNomLinearTopPtRwgtSF' : [ 4.46988601e+10, 4.39381994e+10, 4.34552249e+10, 4.06497713e+10, 3.96943764e+10, 3.89613004e+10, 3.67821987e+10, 3.57480321e+10, 3.48979069e+10, ], 'CountWeightedFullLHEWeightScaleL1PrefireNomLinearTopPtRwgtSFSquared' : [ 4.48322332e+10, 4.40737093e+10, 4.35933455e+10, 4.07595150e+10, 3.98076708e+10, 3.90779408e+10, 3.68727353e+10, 3.58432162e+10, 3.49967816e+10, ], 'CountWeightedFullLHEWeightScaleL1PrefireNomQuadraticTopPtRwgtSF' : [ 4.47170866e+10, 4.39562721e+10, 4.34731886e+10, 4.06627454e+10, 3.97077844e+10, 3.89750241e+10, 3.67914156e+10, 3.57580534e+10, 3.49084987e+10, ], 'CountWeightedFullLHEWeightScaleL1PrefireNomQuadraticTopPtRwgtSFSquared' : [ 4.48913198e+10, 4.41321709e+10, 4.36514447e+10, 4.08059820e+10, 3.98545302e+10, 3.91252647e+10, 3.69097559e+10, 3.58813706e+10, 3.50357536e+10, ], 'CountWeightedFullLHEWeightScaleL1PrefireNomHighPtTopPtRwgtSF' : [ 4.47069027e+10, 4.39452580e+10, 4.34613004e+10, 4.06561981e+10, 3.97000431e+10, 3.89660472e+10, 3.67876069e+10, 3.57526225e+10, 3.49017617e+10, ], 'CountWeightedFullLHEWeightScaleL1PrefireNomHighPtTopPtRwgtSFSquared' : [ 4.48485336e+10, 4.40881235e+10, 4.36059319e+10, 4.07722374e+10, 3.98188113e+10, 3.90875884e+10, 3.68831645e+10, 3.58522046e+10, 3.50044809e+10, ], 'CountWeightedFullLHEEnvelopeL1PrefireNomTOP16011TopPtRwgtSF' : [ 4.82703287e+10, 3.25251662e+10, ], 'CountWeightedFullLHEEnvelopeL1PrefireNomTOP16011TopPtRwgtSFSquared' : [ 4.83745259e+10, 3.26188952e+10, ], 'CountWeightedFullLHEEnvelopeL1PrefireNomLinearTopPtRwgtSF' : [ 4.83044109e+10, 3.25459271e+10, ], 'CountWeightedFullLHEEnvelopeL1PrefireNomLinearTopPtRwgtSFSquared' : [ 4.84327634e+10, 3.26540477e+10, ], 'CountWeightedFullLHEEnvelopeL1PrefireNomQuadraticTopPtRwgtSF' : [ 4.83204489e+10, 3.25588672e+10, ], 'CountWeightedFullLHEEnvelopeL1PrefireNomQuadraticTopPtRwgtSFSquared' : [ 4.84891383e+10, 3.26966854e+10, ], 'CountWeightedFullLHEEnvelopeL1PrefireNomHighPtTopPtRwgtSF' : [ 4.83132924e+10, 3.25486620e+10, ], 'CountWeightedFullLHEEnvelopeL1PrefireNomHighPtTopPtRwgtSFSquared' : [ 4.84502600e+10, 3.26600059e+10, ], 'CountWeightedFullPSWeightL1PrefireNomTOP16011TopPtRwgtSF' : [ 3.96731877e+10, 3.96454771e+10, 5.86756592e+10, 3.96592637e+10, 3.95895274e+10, 2.25453282e+10, ], 'CountWeightedFullPSWeightL1PrefireNomTOP16011TopPtRwgtSFSquared' : [ 3.97679819e+10, 3.97386187e+10, 5.88014670e+10, 3.97527945e+10, 3.96857371e+10, 2.26100567e+10, ], 'CountWeightedFullPSWeightL1PrefireNomLinearTopPtRwgtSF' : [ 3.97002617e+10, 3.96726816e+10, 5.87169081e+10, 3.96864346e+10, 3.96163710e+10, 2.25597649e+10, ], 'CountWeightedFullPSWeightL1PrefireNomLinearTopPtRwgtSFSquared' : [ 3.98140884e+10, 3.97849680e+10, 5.88719515e+10, 3.97990723e+10, 3.97314466e+10, 2.26344919e+10, ], 'CountWeightedFullPSWeightL1PrefireNomQuadraticTopPtRwgtSF' : [ 3.97137309e+10, 3.96859540e+10, 5.87345468e+10, 3.96997206e+10, 3.96299803e+10, 2.25690600e+10, ], 'CountWeightedFullPSWeightL1PrefireNomQuadraticTopPtRwgtSFSquared' : [ 3.98611702e+10, 3.98316586e+10, 5.89368098e+10, 3.98457841e+10, 3.97788035e+10, 2.26647372e+10, ], 'CountWeightedFullPSWeightL1PrefireNomHighPtTopPtRwgtSF' : [ 3.97057700e+10, 3.96783685e+10, 5.87260541e+10, 3.96920730e+10, 3.96216757e+10, 2.25620870e+10, ], 'CountWeightedFullPSWeightL1PrefireNomHighPtTopPtRwgtSFSquared' : [ 3.98251090e+10, 3.97963474e+10, 5.88899087e+10, 3.98103649e+10, 3.97421288e+10, 2.26394380e+10, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNomTOP16011TopPtRwgtSF' : [ 3.99698168e+11, 3.99698159e+11, 3.99698168e+11, 3.99698168e+11, 3.99696211e+11, 3.99696204e+11, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNomTOP16011TopPtRwgtSFSquared' : [ 4.00566313e+11, 4.00566305e+11, 4.00566313e+11, 4.00566313e+11, 4.00564385e+11, 4.00564377e+11, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNomLinearTopPtRwgtSF' : [ 3.99981605e+11, 3.99981598e+11, 3.99981605e+11, 3.99981605e+11, 3.99979643e+11, 3.99979636e+11, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNomLinearTopPtRwgtSFSquared' : [ 4.01048920e+11, 4.01048913e+11, 4.01048921e+11, 4.01048920e+11, 4.01046985e+11, 4.01046977e+11, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNomQuadraticTopPtRwgtSF' : [ 4.00110826e+11, 4.00110819e+11, 4.00110827e+11, 4.00110827e+11, 4.00108867e+11, 4.00108859e+11, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNomQuadraticTopPtRwgtSFSquared' : [ 4.01510090e+11, 4.01510082e+11, 4.01510090e+11, 4.01510090e+11, 4.01508159e+11, 4.01508151e+11, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNomHighPtTopPtRwgtSF' : [ 4.00048454e+11, 4.00048447e+11, 4.00048454e+11, 4.00048454e+11, 4.00046490e+11, 4.00046482e+11, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNomHighPtTopPtRwgtSFSquared' : [ 4.01180161e+11, 4.01180152e+11, 4.01180161e+11, 4.01180161e+11, 4.01178216e+11, 4.01178208e+11, ], }), ("nof_tree_events", 130262440), ("nof_db_events", 130262440), ("fsize_local", 962877581509), # 962.88GB, avg file size 3.68GB ("fsize_db", 7191138172968), # 7.19TB, avg file size 3.56GB ("use_it", True), ("xsection", 377.85), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 4), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Apr19_woPresel_nom_all_hh_multilepton/ntuples/TTToHadronic_PSweights"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/TTJets_DiLept_TuneCP5_13TeV-madgraphMLM-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "TT"), ("process_name_specific", "TTJets_DiLept"), ("nof_files", 58), ("nof_db_files", 602), ("nof_events", { 'Count' : [ 28380110, ], 'CountWeighted' : [ 2.83519235e+07, 2.83464022e+07, 2.83545370e+07, ], 'CountWeightedLHEEnvelope' : [ 2.83519235e+07, 2.83519235e+07, ], 'CountWeightedFull' : [ 2.83519235e+07, 2.83464022e+07, 2.83545370e+07, ], 'CountWeightedFullLHEEnvelope' : [ 2.83519235e+07, 2.83519235e+07, ], 'CountWeightedL1PrefireNom' : [ 2.74923246e+07, 2.74877823e+07, 2.74951121e+07, ], 'CountWeightedL1Prefire' : [ 2.74923246e+07, 2.72831555e+07, 2.76968351e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 2.74923246e+07, 2.74923246e+07, ], 'CountWeightedFullL1PrefireNom' : [ 2.74923246e+07, 2.74877823e+07, 2.74951121e+07, ], 'CountWeightedFullL1Prefire' : [ 2.74923246e+07, 2.72831555e+07, 2.76968351e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 2.74923246e+07, 2.74923246e+07, ], }), ("nof_tree_events", 28380110), ("nof_db_events", 28380110), ("fsize_local", 182773890265), # 182.77GB, avg file size 3.15GB ("fsize_db", 1574497543250), # 1.57TB, avg file size 2.62GB ("use_it", False), ("xsection", 88.4), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", False), ("nof_PSweights", 1), ("LHE_set", "LHEPdfWeight[nLHEPdfWeight]/F"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Apr19_woPresel_nom_all_hh_multilepton/ntuples/TTJets_DiLept"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/TTJets_SingleLeptFromT_TuneCP5_13TeV-madgraphMLM-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "TT"), ("process_name_specific", "TTJets_SingleLeptFromT"), ("nof_files", 124), ("nof_db_files", 1056), ("nof_events", { 'Count' : [ 61761347, ], 'CountWeighted' : [ 6.16898487e+07, 6.17003335e+07, 6.16861280e+07, ], 'CountWeightedLHEEnvelope' : [ 6.16898487e+07, 6.16898487e+07, ], 'CountWeightedFull' : [ 6.16898487e+07, 6.17003335e+07, 6.16861280e+07, ], 'CountWeightedFullLHEEnvelope' : [ 6.16898487e+07, 6.16898487e+07, ], 'CountWeightedL1PrefireNom' : [ 5.97867787e+07, 5.97909276e+07, 5.97875231e+07, ], 'CountWeightedL1Prefire' : [ 5.97867787e+07, 5.93190448e+07, 6.02428315e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 5.97867787e+07, 5.97867787e+07, ], 'CountWeightedFullL1PrefireNom' : [ 5.97867787e+07, 5.97909276e+07, 5.97875231e+07, ], 'CountWeightedFullL1Prefire' : [ 5.97867787e+07, 5.93190448e+07, 6.02428315e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 5.97867787e+07, 5.97867787e+07, ], }), ("nof_tree_events", 61761347), ("nof_db_events", 61947630), ("fsize_local", 429755472328), # 429.76GB, avg file size 3.47GB ("fsize_db", 3422466502202), # 3.42TB, avg file size 3.24GB ("use_it", False), ("xsection", 182.76), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", False), ("nof_PSweights", 1), ("LHE_set", "LHEPdfWeight[nLHEPdfWeight]/F"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Apr19_woPresel_nom_all_hh_multilepton/ntuples/TTJets_SingleLeptFromT"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/TTJets_SingleLeptFromTbar_TuneCP5_13TeV-madgraphMLM-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "TT"), ("process_name_specific", "TTJets_SingleLeptFromTbar"), ("nof_files", 115), ("nof_db_files", 1306), ("nof_events", { 'Count' : [ 56705550, ], 'CountWeighted' : [ 5.66406921e+07, 5.66441058e+07, 5.66551076e+07, ], 'CountWeightedLHEEnvelope' : [ 5.66406921e+07, 5.66406921e+07, ], 'CountWeightedFull' : [ 5.66406921e+07, 5.66441058e+07, 5.66551076e+07, ], 'CountWeightedFullLHEEnvelope' : [ 5.66406921e+07, 5.66406921e+07, ], 'CountWeightedL1PrefireNom' : [ 5.48923477e+07, 5.48921478e+07, 5.49034922e+07, ], 'CountWeightedL1Prefire' : [ 5.48923477e+07, 5.44625115e+07, 5.53109855e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 5.48923477e+07, 5.48923477e+07, ], 'CountWeightedFullL1PrefireNom' : [ 5.48923477e+07, 5.48921478e+07, 5.49034922e+07, ], 'CountWeightedFullL1Prefire' : [ 5.48923477e+07, 5.44625115e+07, 5.53109855e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 5.48923477e+07, 5.48923477e+07, ], }), ("nof_tree_events", 56705550), ("nof_db_events", 56705550), ("fsize_local", 395903635570), # 395.90GB, avg file size 3.44GB ("fsize_db", 3215810423559), # 3.22TB, avg file size 2.46GB ("use_it", False), ("xsection", 182.76), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", False), ("nof_PSweights", 1), ("LHE_set", "LHEPdfWeight[nLHEPdfWeight]/F"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Apr19_woPresel_nom_all_hh_multilepton/ntuples/TTJets_SingleLeptFromTbar"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/TTJets_TuneCP5_13TeV-madgraphMLM-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "TT"), ("process_name_specific", "TTJets_madgraphMLM"), ("nof_files", 17), ("nof_db_files", 260), ("nof_events", { 'Count' : [ 8026103, ], 'CountWeighted' : [ 8.01760377e+06, 8.01538398e+06, 8.01632396e+06, ], 'CountWeightedLHEEnvelope' : [ 8.01760377e+06, 8.01760377e+06, ], 'CountWeightedFull' : [ 8.01760377e+06, 8.01538398e+06, 8.01632396e+06, ], 'CountWeightedFullLHEEnvelope' : [ 8.01760377e+06, 8.01760377e+06, ], 'CountWeightedL1PrefireNom' : [ 7.76743916e+06, 7.76578739e+06, 7.76709503e+06, ], 'CountWeightedL1Prefire' : [ 7.76743916e+06, 7.70571798e+06, 7.82727698e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 7.76743916e+06, 7.76743916e+06, ], 'CountWeightedFullL1PrefireNom' : [ 7.76743916e+06, 7.76578739e+06, 7.76709503e+06, ], 'CountWeightedFullL1Prefire' : [ 7.76743916e+06, 7.70571798e+06, 7.82727698e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 7.76743916e+06, 7.76743916e+06, ], }), ("nof_tree_events", 8026103), ("nof_db_events", 8026103), ("fsize_local", 57348621563), # 57.35GB, avg file size 3.37GB ("fsize_db", 448684514040), # 448.68GB, avg file size 1.73GB ("use_it", False), ("xsection", 831.76), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", False), ("nof_PSweights", 1), ("LHE_set", "LHEPdfWeight[nLHEPdfWeight]/F"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Apr19_woPresel_nom_all_hh_multilepton/ntuples/TTJets_madgraphMLM"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/TTWH_TuneCP5_13TeV-madgraph-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_new_pmx_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "TTWH"), ("process_name_specific", "TTWH"), ("nof_files", 1), ("nof_db_files", 5), ("nof_events", { 'Count' : [ 200000, ], 'CountWeighted' : [ 1.98995641e+05, 1.99000375e+05, 1.99013906e+05, ], 'CountWeightedLHEWeightScale' : [ 2.48026281e+05, 2.36363562e+05, 2.25583812e+05, 2.08829719e+05, 1.98989359e+05, 1.89899547e+05, 1.78333156e+05, 1.69916312e+05, 1.62144219e+05, ], 'CountWeightedLHEEnvelope' : [ 2.48052609e+05, 1.62141594e+05, ], 'CountWeightedPSWeight' : [ 1.98991000e+06, 1.98991000e+06, 1.98991000e+06, 1.98991000e+06, 1.98991000e+06, 1.98991000e+06, ], 'CountWeightedPSWeightOriginalXWGTUP' : [ 2.00014266e+05, 1.99793234e+05, 2.96657875e+05, 1.99968375e+05, 1.99947969e+05, 1.12693523e+05, ], 'CountWeightedFull' : [ 1.98851891e+05, 1.98857031e+05, 1.98871484e+05, ], 'CountWeightedFullLHEWeightScale' : [ 2.47849047e+05, 2.36194281e+05, 2.25422703e+05, 2.08680391e+05, 1.98846016e+05, 1.89763828e+05, 1.78205578e+05, 1.69794844e+05, 1.62028406e+05, ], 'CountWeightedFullLHEEnvelope' : [ 2.47875344e+05, 1.62025766e+05, ], 'CountWeightedFullPSWeight' : [ 1.98848250e+06, 1.98848250e+06, 1.98848250e+06, 1.98848250e+06, 1.98848250e+06, 1.98848250e+06, ], 'CountWeightedFullPSWeightOriginalXWGTUP' : [ 1.99867688e+05, 1.99642734e+05, 2.96436188e+05, 1.99821672e+05, 1.99799984e+05, 1.12610789e+05, ], 'CountWeightedL1PrefireNom' : [ 1.91582047e+05, 1.91577469e+05, 1.91600203e+05, ], 'CountWeightedL1Prefire' : [ 1.91582047e+05, 1.89775094e+05, 1.93348156e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 2.38656719e+05, 2.27565016e+05, 2.17303578e+05, 2.00935688e+05, 1.91577031e+05, 1.82925406e+05, 1.71589438e+05, 1.63586656e+05, 1.56186859e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 2.38684797e+05, 1.56182688e+05, ], 'CountWeightedPSWeightL1PrefireNom' : [ 1.91580400e+06, 1.91580400e+06, 1.91580400e+06, 1.91580400e+06, 1.91580400e+06, 1.91580400e+06, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNom' : [ 1.92419297e+05, 1.92119062e+05, 2.85349469e+05, 1.92259984e+05, 1.92367781e+05, 1.08372664e+05, ], 'CountWeightedFullL1PrefireNom' : [ 1.91444375e+05, 1.91439766e+05, 1.91463234e+05, ], 'CountWeightedFullL1Prefire' : [ 1.91444375e+05, 1.89638812e+05, 1.93209078e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 2.38486188e+05, 2.27402078e+05, 2.17148641e+05, 2.00792016e+05, 1.91439562e+05, 1.82794719e+05, 1.71466562e+05, 1.63469562e+05, 1.56075281e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 2.38514281e+05, 1.56071094e+05, ], 'CountWeightedFullPSWeightL1PrefireNom' : [ 1.91443212e+06, 1.91443212e+06, 1.91443212e+06, 1.91443212e+06, 1.91443212e+06, 1.91443212e+06, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNom' : [ 1.92279031e+05, 1.91975984e+05, 2.85137875e+05, 1.92119641e+05, 1.92226047e+05, 1.08293422e+05, ], }), ("nof_tree_events", 200000), ("nof_db_events", 200000), ("fsize_local", 1989886888), # 1.99GB, avg file size 1.99GB ("fsize_db", 13473888441), # 13.47GB, avg file size 2.69GB ("use_it", True), ("xsection", 0.001582), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 4), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/TTWH"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/TTZH_TuneCP5_13TeV-madgraph-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_new_pmx_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "TTZH"), ("process_name_specific", "TTZH"), ("nof_files", 1), ("nof_db_files", 7), ("nof_events", { 'Count' : [ 200000, ], 'CountWeighted' : [ 1.99297078e+05, 1.99307750e+05, 1.99238594e+05, ], 'CountWeightedLHEWeightScale' : [ 2.59771406e+05, 2.37798734e+05, 2.19093719e+05, 2.17669719e+05, 1.99296891e+05, 1.83638891e+05, 1.85149000e+05, 1.69528391e+05, 1.56236750e+05, ], 'CountWeightedLHEEnvelope' : [ 2.59854406e+05, 1.56195688e+05, ], 'CountWeightedPSWeight' : [ 1.99247088e+06, 1.99247088e+06, 1.99247088e+06, 1.99247088e+06, 1.99247088e+06, 1.99247088e+06, ], 'CountWeightedPSWeightOriginalXWGTUP' : [ 1.99997703e+05, 1.99781672e+05, 3.01188625e+05, 1.99979031e+05, 1.99567781e+05, 1.09335969e+05, ], 'CountWeightedFull' : [ 1.99208000e+05, 1.99214500e+05, 1.99150312e+05, ], 'CountWeightedFullLHEWeightScale' : [ 2.59654391e+05, 2.37690312e+05, 2.18992844e+05, 2.17571531e+05, 1.99207766e+05, 1.83554312e+05, 1.85065469e+05, 1.69451359e+05, 1.56165219e+05, ], 'CountWeightedFullLHEEnvelope' : [ 2.59736859e+05, 1.56124484e+05, ], 'CountWeightedFullPSWeight' : [ 1.99158725e+06, 1.99158725e+06, 1.99158725e+06, 1.99158725e+06, 1.99158725e+06, 1.99158725e+06, ], 'CountWeightedFullPSWeightOriginalXWGTUP' : [ 1.99900781e+05, 1.99675094e+05, 3.01027250e+05, 1.99880656e+05, 1.99458688e+05, 1.09282562e+05, ], 'CountWeightedL1PrefireNom' : [ 1.92377266e+05, 1.92375625e+05, 1.92351781e+05, ], 'CountWeightedL1Prefire' : [ 1.92377266e+05, 1.90693641e+05, 1.94020219e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 2.50584156e+05, 2.29544156e+05, 2.11618312e+05, 2.09972875e+05, 1.92376234e+05, 1.77374234e+05, 1.78604812e+05, 1.63648562e+05, 1.50909031e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 2.50665703e+05, 1.50868766e+05, ], 'CountWeightedPSWeightL1PrefireNom' : [ 1.92349912e+06, 1.92349912e+06, 1.92349912e+06, 1.92349912e+06, 1.92349912e+06, 1.92349912e+06, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNom' : [ 1.93073000e+05, 1.92628359e+05, 2.90468812e+05, 1.92713000e+05, 1.92597703e+05, 1.05513344e+05, ], 'CountWeightedFullL1PrefireNom' : [ 1.92288281e+05, 1.92284062e+05, 1.92263078e+05, ], 'CountWeightedFullL1Prefire' : [ 1.92288281e+05, 1.90604812e+05, 1.93930594e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 2.50467812e+05, 2.29436562e+05, 2.11518438e+05, 2.09875031e+05, 1.92287203e+05, 1.77290406e+05, 1.78521984e+05, 1.63571812e+05, 1.50838188e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 2.50548922e+05, 1.50798156e+05, ], 'CountWeightedFullPSWeightL1PrefireNom' : [ 1.92260775e+06, 1.92260775e+06, 1.92260775e+06, 1.92260775e+06, 1.92260775e+06, 1.92260775e+06, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNom' : [ 1.92980172e+05, 1.92529156e+05, 2.90320156e+05, 1.92618719e+05, 1.92497938e+05, 1.05462188e+05, ], }), ("nof_tree_events", 200000), ("nof_db_events", 200000), ("fsize_local", 2056104487), # 2.06GB, avg file size 2.06GB ("fsize_db", 13762563086), # 13.76GB, avg file size 1.97GB ("use_it", True), ("xsection", 0.001535), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 4), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/TTZH"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/WWW_4F_TuneCP5_13TeV-amcatnlo-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v2/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "Rares"), ("process_name_specific", "WWW"), ("nof_files", 1), ("nof_db_files", 21), ("nof_events", { 'Count' : [ 232300, ], 'CountWeighted' : [ 2.03184484e+05, 2.03236219e+05, 2.03152812e+05, ], 'CountWeightedLHEWeightScale' : [ 2.14490422e+05, 2.11420156e+05, 2.09035516e+05, 2.06028406e+05, 2.03182906e+05, 2.00923516e+05, 1.99088328e+05, 1.96447016e+05, 1.94277266e+05, ], 'CountWeightedLHEEnvelope' : [ 2.26750781e+05, 1.82820391e+05, ], 'CountWeightedFull' : [ 4.98832266e+04, 4.99016055e+04, 4.98753516e+04, ], 'CountWeightedFullLHEWeightScale' : [ 5.26613359e+04, 5.19076523e+04, 5.13217500e+04, 5.05835781e+04, 4.98825664e+04, 4.93302617e+04, 4.88795039e+04, 4.82319375e+04, 4.76980508e+04, ], 'CountWeightedFullLHEEnvelope' : [ 5.56715859e+04, 4.48853867e+04, ], 'CountWeightedL1PrefireNom' : [ 1.95156297e+05, 1.95192234e+05, 1.95130984e+05, ], 'CountWeightedL1Prefire' : [ 1.95156297e+05, 1.93214781e+05, 1.97053641e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 2.05890109e+05, 2.03022656e+05, 2.00800719e+05, 1.97798000e+05, 1.95154453e+05, 1.93050031e+05, 1.91162578e+05, 1.88713766e+05, 1.86699500e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 2.17624453e+05, 1.75731750e+05, ], 'CountWeightedFullL1PrefireNom' : [ 4.79130625e+04, 4.79247070e+04, 4.79068906e+04, ], 'CountWeightedFullL1Prefire' : [ 4.79130625e+04, 4.74376680e+04, 4.83793633e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 5.05497305e+04, 4.98458945e+04, 4.93001602e+04, 4.85629062e+04, 4.79124961e+04, 4.73972852e+04, 4.69340859e+04, 4.63327617e+04, 4.58377383e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 5.34306094e+04, 4.31450430e+04, ], }), ("nof_tree_events", 232300), ("nof_db_events", 232300), ("fsize_local", 1526199815), # 1.53GB, avg file size 1.53GB ("fsize_db", 11979015983), # 11.98GB, avg file size 570.43MB ("use_it", True), ("xsection", 0.2086), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 306000 - 306102 -> NNPDF31_nnlo_hessian_pdfas PDF set, expecting 103 weights (counted 103 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/WWW"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/WWZ_4F_TuneCP5_13TeV-amcatnlo-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v2/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "Rares"), ("process_name_specific", "WWZ"), ("nof_files", 1), ("nof_db_files", 24), ("nof_events", { 'Count' : [ 250000, ], 'CountWeighted' : [ 2.19930266e+05, 2.19916453e+05, 2.19974125e+05, ], 'CountWeightedLHEWeightScale' : [ 2.34172828e+05, 2.29510594e+05, 2.25810641e+05, 2.24351375e+05, 2.19927641e+05, 2.16357953e+05, 2.16277406e+05, 2.12067688e+05, 2.08592062e+05, ], 'CountWeightedLHEEnvelope' : [ 2.46734062e+05, 1.96876484e+05, ], 'CountWeightedFull' : [ 4.18336289e+04, 4.18262539e+04, 4.18356758e+04, ], 'CountWeightedFullLHEWeightScale' : [ 4.45409297e+04, 4.36544727e+04, 4.29507031e+04, 4.26730039e+04, 4.18328203e+04, 4.11525391e+04, 4.11372188e+04, 4.03366484e+04, 3.96753867e+04, ], 'CountWeightedFullLHEEnvelope' : [ 4.69301445e+04, 3.74469844e+04, ], 'CountWeightedL1PrefireNom' : [ 2.10778906e+05, 2.10776531e+05, 2.10804781e+05, ], 'CountWeightedL1Prefire' : [ 2.10778906e+05, 2.08616922e+05, 2.12906531e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 2.24294906e+05, 2.19924344e+05, 2.16460125e+05, 2.14916531e+05, 2.10776094e+05, 2.07434469e+05, 2.07207859e+05, 2.03270609e+05, 2.00019891e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 2.36270688e+05, 1.88847781e+05, ], 'CountWeightedFullL1PrefireNom' : [ 4.00925547e+04, 4.00893789e+04, 4.00932031e+04, ], 'CountWeightedFullL1Prefire' : [ 4.00925547e+04, 3.96812500e+04, 4.04968320e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 4.26623242e+04, 4.18310586e+04, 4.11719180e+04, 4.08784961e+04, 4.00918750e+04, 3.94551523e+04, 3.94120625e+04, 3.86631875e+04, 3.80449219e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 4.49404297e+04, 3.59199961e+04, ], }), ("nof_tree_events", 250000), ("nof_db_events", 250000), ("fsize_local", 1732887102), # 1.73GB, avg file size 1.73GB ("fsize_db", 13265189749), # 13.27GB, avg file size 552.72MB ("use_it", True), ("xsection", 0.1676), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 306000 - 306102 -> NNPDF31_nnlo_hessian_pdfas PDF set, expecting 103 weights (counted 103 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/WWZ"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/WZZ_TuneCP5_13TeV-amcatnlo-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "Rares"), ("process_name_specific", "WZZ"), ("nof_files", 1), ("nof_db_files", 7), ("nof_events", { 'Count' : [ 250000, ], 'CountWeighted' : [ 2.19652375e+05, 2.19755219e+05, 2.19556359e+05, ], 'CountWeightedLHEWeightScale' : [ 2.34230812e+05, 2.29280375e+05, 2.25178281e+05, 2.24274812e+05, 2.19652625e+05, 2.15779219e+05, 2.15952734e+05, 2.11619625e+05, 2.07926859e+05, ], 'CountWeightedLHEEnvelope' : [ 2.46070469e+05, 1.96830906e+05, ], 'CountWeightedFull' : [ 1.39463887e+04, 1.39523389e+04, 1.39384043e+04, ], 'CountWeightedFullLHEWeightScale' : [ 1.48706475e+04, 1.45563711e+04, 1.42960264e+04, 1.42384941e+04, 1.39464277e+04, 1.36991348e+04, 1.37100605e+04, 1.34350938e+04, 1.32006289e+04, ], 'CountWeightedFullLHEEnvelope' : [ 1.56223594e+04, 1.24961650e+04, ], 'CountWeightedL1PrefireNom' : [ 2.10531828e+05, 2.10626984e+05, 2.10438875e+05, ], 'CountWeightedL1Prefire' : [ 2.10531828e+05, 2.08367469e+05, 2.12658594e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 2.24336000e+05, 2.19716406e+05, 2.15891703e+05, 2.14835438e+05, 2.10531406e+05, 2.06920047e+05, 2.06894328e+05, 2.02862672e+05, 1.99425828e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 2.35675281e+05, 1.88795641e+05, ], 'CountWeightedFullL1PrefireNom' : [ 1.33666152e+04, 1.33724971e+04, 1.33598545e+04, ], 'CountWeightedFullL1Prefire' : [ 1.33666152e+04, 1.32289600e+04, 1.35016406e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 1.42424385e+04, 1.39491494e+04, 1.37064834e+04, 1.36392676e+04, 1.33666123e+04, 1.31367646e+04, 1.31350547e+04, 1.28791982e+04, 1.26608350e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 1.49623213e+04, 1.19860000e+04, ], }), ("nof_tree_events", 250000), ("nof_db_events", 305200), ("fsize_local", 1712033507), # 1.71GB, avg file size 1.71GB ("fsize_db", 15294686519), # 15.29GB, avg file size 2.18GB ("use_it", True), ("xsection", 0.05701), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 292201 - 292302 -> NNPDF30_nlo_nf_5_pdfas PDF set, expecting 103 weights (counted 102 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/WZZ"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/ZZZ_TuneCP5_13TeV-amcatnlo-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v2/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "Rares"), ("process_name_specific", "ZZZ"), ("nof_files", 1), ("nof_db_files", 22), ("nof_events", { 'Count' : [ 250000, ], 'CountWeighted' : [ 2.14300000e+05, 2.14306344e+05, 2.14245703e+05, ], 'CountWeightedLHEWeightScale' : [ 2.20164875e+05, 2.19211750e+05, 2.18932500e+05, 2.15196594e+05, 2.14299969e+05, 2.13903266e+05, 2.11045078e+05, 2.10163312e+05, 2.09709094e+05, ], 'CountWeightedLHEEnvelope' : [ 2.35607781e+05, 1.95214672e+05, ], 'CountWeightedFull' : [ 3.68467773e+03, 3.68558789e+03, 3.68413599e+03, ], 'CountWeightedFullLHEWeightScale' : [ 3.78572876e+03, 3.76936206e+03, 3.76451025e+03, 3.70031934e+03, 3.68467798e+03, 3.67805322e+03, 3.62890210e+03, 3.61374194e+03, 3.60592529e+03, ], 'CountWeightedFullLHEEnvelope' : [ 4.05127222e+03, 3.35670459e+03, ], 'CountWeightedL1PrefireNom' : [ 2.07316906e+05, 2.07319469e+05, 2.07292906e+05, ], 'CountWeightedL1Prefire' : [ 2.07316906e+05, 2.05609328e+05, 2.08980953e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 2.12948547e+05, 2.12064891e+05, 2.11823891e+05, 2.08147656e+05, 2.07316922e+05, 2.06977297e+05, 2.04136922e+05, 2.03333688e+05, 2.02934859e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 2.27800078e+05, 1.88992016e+05, ], 'CountWeightedFullL1PrefireNom' : [ 3.56473779e+03, 3.56515381e+03, 3.56446338e+03, ], 'CountWeightedFullL1Prefire' : [ 3.56473779e+03, 3.53536475e+03, 3.59331372e+03, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 3.66163525e+03, 3.64646191e+03, 3.64228320e+03, 3.57910913e+03, 3.56473730e+03, 3.55896045e+03, 3.51012671e+03, 3.49631787e+03, 3.48944824e+03, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 3.91701807e+03, 3.24971533e+03, ], }), ("nof_tree_events", 250000), ("nof_db_events", 250000), ("fsize_local", 1526012444), # 1.53GB, avg file size 1.53GB ("fsize_db", 12871064949), # 12.87GB, avg file size 585.05MB ("use_it", True), ("xsection", 0.01473), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/ZZZ"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/WZG_TuneCP5_13TeV-amcatnlo-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "Rares"), ("process_name_specific", "WZG"), ("nof_files", 3), ("nof_db_files", 20), ("nof_events", { 'Count' : [ 1000000, ], 'CountWeighted' : [ 8.40313646e+05, 8.40313505e+05, 8.40352379e+05, ], 'CountWeightedLHEWeightScale' : [ 9.05043624e+05, 8.93442399e+05, 8.81597821e+05, 8.49819091e+05, 8.40276016e+05, 8.30145568e+05, 8.04932402e+05, 7.97068044e+05, 7.88344253e+05, ], 'CountWeightedLHEEnvelope' : [ 9.43129795e+05, 7.52666209e+05, ], 'CountWeightedFull' : [ 4.34858707e+04, 4.34951029e+04, 4.34826585e+04, ], 'CountWeightedFullLHEWeightScale' : [ 4.68411714e+04, 4.62411320e+04, 4.56278521e+04, 4.39831211e+04, 4.34846493e+04, 4.29648098e+04, 4.16598908e+04, 4.12525913e+04, 4.08015052e+04, ], 'CountWeightedFullLHEEnvelope' : [ 4.88123909e+04, 3.89549815e+04, ], 'CountWeightedL1PrefireNom' : [ 8.06485878e+05, 8.06507466e+05, 8.06533344e+05, ], 'CountWeightedL1Prefire' : [ 8.06485878e+05, 7.98380090e+05, 8.14511658e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 8.68129858e+05, 8.57394078e+05, 8.46339283e+05, 8.15226439e+05, 8.06461339e+05, 7.97053702e+05, 7.72234011e+05, 7.65075198e+05, 7.57017638e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 9.04692330e+05, 7.22757276e+05, ], 'CountWeightedFullL1PrefireNom' : [ 4.17374881e+04, 4.17435961e+04, 4.17368055e+04, ], 'CountWeightedFullL1Prefire' : [ 4.17374881e+04, 4.13179901e+04, 4.21523199e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 4.49306748e+04, 4.43754448e+04, 4.38029793e+04, 4.21928304e+04, 4.17364931e+04, 4.12522280e+04, 3.99676432e+04, 3.95969222e+04, 3.91801033e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 4.68229559e+04, 3.74069805e+04, ], }), ("nof_tree_events", 1000000), ("nof_db_events", 1000000), ("fsize_local", 6204220987), # 6.20GB, avg file size 2.07GB ("fsize_db", 50788326431), # 50.79GB, avg file size 2.54GB ("use_it", True), ("xsection", 0.04345), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 306000 - 306102 -> NNPDF31_nnlo_hessian_pdfas PDF set, expecting 103 weights (counted 103 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/WZG"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/WGToLNuG_TuneCP5_13TeV-madgraphMLM-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "Rares"), ("process_name_specific", "WGToLNuG"), ("nof_files", 13), ("nof_db_files", 134), ("nof_events", { 'Count' : [ 6183622, ], 'CountWeighted' : [ 6.18225269e+06, 6.18364916e+06, 6.18266759e+06, ], 'CountWeightedLHEWeightScale' : [ 5.54660456e+06, 6.24582205e+06, 6.87513419e+06, 5.48423364e+06, 6.18225269e+06, 6.81105677e+06, 5.43530250e+06, 6.13252834e+06, 6.76078234e+06, ], 'CountWeightedLHEEnvelope' : [ 6.88355188e+06, 5.43095975e+06, ], 'CountWeightedFull' : [ 6.18225269e+06, 6.18364916e+06, 6.18266759e+06, ], 'CountWeightedFullLHEWeightScale' : [ 5.54660456e+06, 6.24582205e+06, 6.87513419e+06, 5.48423364e+06, 6.18225269e+06, 6.81105677e+06, 5.43530250e+06, 6.13252834e+06, 6.76078234e+06, ], 'CountWeightedFullLHEEnvelope' : [ 6.88355188e+06, 5.43095975e+06, ], 'CountWeightedL1PrefireNom' : [ 6.13833897e+06, 6.13932967e+06, 6.13886233e+06, ], 'CountWeightedL1Prefire' : [ 6.13833897e+06, 6.12550423e+06, 6.15045417e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 5.50393797e+06, 6.20049372e+06, 6.82724508e+06, 5.44299011e+06, 6.13833897e+06, 6.76453147e+06, 5.39516156e+06, 6.08967552e+06, 6.71531670e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 6.83478594e+06, 5.39151617e+06, ], 'CountWeightedFullL1PrefireNom' : [ 6.13833897e+06, 6.13932967e+06, 6.13886233e+06, ], 'CountWeightedFullL1Prefire' : [ 6.13833897e+06, 6.12550423e+06, 6.15045417e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 5.50393797e+06, 6.20049372e+06, 6.82724508e+06, 5.44299011e+06, 6.13833897e+06, 6.76453147e+06, 5.39516156e+06, 6.08967552e+06, 6.71531670e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 6.83478594e+06, 5.39151617e+06, ], }), ("nof_tree_events", 6183622), ("nof_db_events", 6283083), ("fsize_local", 19827675441), # 19.83GB, avg file size 1.53GB ("fsize_db", 259323657535), # 259.32GB, avg file size 1.94GB ("use_it", False), ("xsection", 464.8), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 306000 - 306102 -> NNPDF31_nnlo_hessian_pdfas PDF set, expecting 103 weights (counted 103 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Apr19_woPresel_nom_all_hh_multilepton/ntuples/WGToLNuG"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/WGToLNuG_01J_5f_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v3/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "Rares"), ("process_name_specific", "WGToLNuG_01J"), ("nof_files", 96), ("nof_db_files", 418), ("nof_events", { 'Count' : [ 23688640, ], 'CountWeighted' : [ 1.42491776e+07, 1.42477486e+07, 1.42489988e+07, ], 'CountWeightedLHEWeightScale' : [ 1.44578486e+07, 1.49589922e+07, 1.52915105e+07, 1.36586227e+07, 1.42491776e+07, 1.46512550e+07, 1.30228023e+07, 1.36785367e+07, 1.41388665e+07, ], 'CountWeightedLHEEnvelope' : [ 1.66050218e+07, 1.20056058e+07, ], 'CountWeightedFull' : [ 8.45488587e+09, 8.45521055e+09, 8.45511119e+09, ], 'CountWeightedFullLHEWeightScale' : [ 8.57908638e+09, 8.87642751e+09, 9.07377034e+09, 8.10483917e+09, 8.45488587e+09, 8.69384496e+09, 7.72755715e+09, 8.11662844e+09, 8.38980577e+09, ], 'CountWeightedFullLHEEnvelope' : [ 9.85319147e+09, 7.12395988e+09, ], 'CountWeightedL1PrefireNom' : [ 1.40176391e+07, 1.40160412e+07, 1.40180015e+07, ], 'CountWeightedL1Prefire' : [ 1.40176391e+07, 1.39554198e+07, 1.40777306e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 1.42120848e+07, 1.47089250e+07, 1.50380874e+07, 1.34324479e+07, 1.40176391e+07, 1.44160647e+07, 1.28121067e+07, 1.34620038e+07, 1.39181701e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 1.63288718e+07, 1.18131173e+07, ], 'CountWeightedFullL1PrefireNom' : [ 8.31761004e+09, 8.31752078e+09, 8.31807683e+09, ], 'CountWeightedFullL1Prefire' : [ 8.31761004e+09, 8.28069518e+09, 8.35327818e+09, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 8.43325634e+09, 8.72804198e+09, 8.92339318e+09, 7.97063092e+09, 8.31761004e+09, 8.55428646e+09, 7.60253162e+09, 7.98814724e+09, 8.25884962e+09, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 9.68932672e+09, 7.00974066e+09, ], }), ("nof_tree_events", 23688640), ("nof_db_events", 25918966), ("fsize_local", 84901562230), # 84.90GB, avg file size 884.39MB ("fsize_db", 1050306523358), # 1.05TB, avg file size 2.51GB ("use_it", True), ("xsection", 191.6), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHEPdfWeight[nLHEPdfWeight]/F"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Apr19_woPresel_nom_all_hh_multilepton/ntuples/WGToLNuG_01J"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/ZGToLLG_01J_5f_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v3/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "Rares"), ("process_name_specific", "ZGTo2LG_01J"), ("nof_files", 62), ("nof_db_files", 526), ("nof_events", { 'Count' : [ 30490034, ], 'CountWeighted' : [ 1.92834776e+07, 1.92806928e+07, 1.92814126e+07, ], 'CountWeightedLHEWeightScale' : [ 1.94638646e+07, 1.99781858e+07, 2.02730689e+07, 1.86074975e+07, 1.92834776e+07, 1.97102321e+07, 1.79325189e+07, 1.87279352e+07, 1.92608572e+07, ], 'CountWeightedLHEEnvelope' : [ 2.22871801e+07, 1.64050887e+07, ], 'CountWeightedFull' : [ 3.31314615e+09, 3.31305289e+09, 3.31342423e+09, ], 'CountWeightedFullLHEWeightScale' : [ 3.34430774e+09, 3.43265374e+09, 3.48334327e+09, 3.19716600e+09, 3.31314615e+09, 3.38663749e+09, 3.08118437e+09, 3.21784766e+09, 3.30942740e+09, ], 'CountWeightedFullLHEEnvelope' : [ 3.82940209e+09, 2.81872218e+09, ], 'CountWeightedL1PrefireNom' : [ 1.88493085e+07, 1.88467249e+07, 1.88484496e+07, ], 'CountWeightedL1Prefire' : [ 1.88493085e+07, 1.87339572e+07, 1.89619805e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 1.90157387e+07, 1.95202757e+07, 1.98085518e+07, 1.81857609e+07, 1.88493085e+07, 1.92677853e+07, 1.75314466e+07, 1.83126724e+07, 1.88357934e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 2.17772911e+07, 1.60397847e+07, ], 'CountWeightedFullL1PrefireNom' : [ 3.23860252e+09, 3.23842765e+09, 3.23887832e+09, ], 'CountWeightedFullL1Prefire' : [ 3.23860252e+09, 3.21878696e+09, 3.25795558e+09, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 3.26730901e+09, 3.35398043e+09, 3.40352855e+09, 3.12469997e+09, 3.23860252e+09, 3.31061580e+09, 3.01227157e+09, 3.14649817e+09, 3.23639299e+09, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 3.74179428e+09, 2.75595818e+09, ], }), ("nof_tree_events", 30490034), ("nof_db_events", 30490034), ("fsize_local", 124505199815), # 124.51GB, avg file size 2.01GB ("fsize_db", 1312540069447), # 1.31TB, avg file size 2.50GB ("use_it", True), ("xsection", 55.59), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHEPdfWeight[nLHEPdfWeight]/F"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Apr19_woPresel_nom_all_hh_multilepton/ntuples/ZGTo2LG_01J"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/TGJets_leptonDecays_TuneCP5_PSweights_13TeV-amcatnlo-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "Rares"), ("process_name_specific", "TGJets_PSweights"), ("nof_files", 14), ("nof_db_files", 110), ("nof_events", { 'Count' : [ 6649547, ], 'CountWeighted' : [ 1.28516329e+06, 1.28450422e+06, 1.28580950e+06, ], 'CountWeightedLHEWeightScale' : [ 1.32110703e+06, 1.31988973e+06, 1.33644435e+06, 1.29776827e+06, 1.28516329e+06, 1.28437516e+06, 1.25172777e+06, 1.23217049e+06, 1.22115621e+06, ], 'CountWeightedLHEEnvelope' : [ 1.55449381e+06, 1.03671845e+06, ], 'CountWeightedPSWeight' : [ 1.28490519e+06, 1.28433986e+06, 1.76431294e+06, 1.28540743e+06, 1.28673877e+06, 8.53077230e+05, ], 'CountWeightedPSWeightOriginalXWGTUP' : [ 3.52114526e+07, 3.50730871e+07, 4.63694325e+07, 3.52174306e+07, 3.27932992e+07, 2.27999071e+07, ], 'CountWeightedFull' : [ 6.80216597e+06, 6.79857891e+06, 6.80528633e+06, ], 'CountWeightedFullLHEWeightScale' : [ 6.99238111e+06, 6.98595917e+06, 7.07357433e+06, 6.86887261e+06, 6.80216597e+06, 6.79798105e+06, 6.62518759e+06, 6.52168855e+06, 6.46338847e+06, ], 'CountWeightedFullLHEEnvelope' : [ 8.22768678e+06, 5.48717298e+06, ], 'CountWeightedFullPSWeight' : [ 6.80071253e+06, 6.79779347e+06, 9.33813884e+06, 6.80337869e+06, 6.81044400e+06, 4.51516842e+06, ], 'CountWeightedFullPSWeightOriginalXWGTUP' : [ 1.86366894e+08, 1.85632535e+08, 2.45421140e+08, 1.86398076e+08, 1.73566996e+08, 1.20675834e+08, ], 'CountWeightedL1PrefireNom' : [ 1.22588141e+06, 1.22510049e+06, 1.22664415e+06, ], 'CountWeightedL1Prefire' : [ 1.22588141e+06, 1.21183911e+06, 1.23975596e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 1.25958929e+06, 1.25853897e+06, 1.27454861e+06, 1.23752872e+06, 1.22588141e+06, 1.22550197e+06, 1.19365590e+06, 1.17553948e+06, 1.16550737e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 1.48283204e+06, 9.89079949e+05, ], 'CountWeightedPSWeightL1PrefireNom' : [ 1.22571030e+06, 1.22463669e+06, 1.68237167e+06, 1.22602867e+06, 1.22818490e+06, 8.14532445e+05, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNom' : [ 3.35693860e+07, 3.34242922e+07, 4.41866704e+07, 3.35688776e+07, 3.12918485e+07, 2.17659942e+07, ], 'CountWeightedFullL1PrefireNom' : [ 6.48841925e+06, 6.48425630e+06, 6.49231780e+06, ], 'CountWeightedFullL1Prefire' : [ 6.48841925e+06, 6.41410212e+06, 6.56183464e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 6.66682541e+06, 6.66127753e+06, 6.74601328e+06, 6.55006769e+06, 6.48841925e+06, 6.48641566e+06, 6.31785991e+06, 6.22197472e+06, 6.16887488e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 7.84844150e+06, 5.23505986e+06, ], 'CountWeightedFullPSWeightL1PrefireNom' : [ 6.48742841e+06, 6.48182361e+06, 8.90450553e+06, 6.48911375e+06, 6.50059625e+06, 4.31117381e+06, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNom' : [ 1.77676570e+08, 1.76906286e+08, 2.33868706e+08, 1.77673606e+08, 1.65620661e+08, 1.15203775e+08, ], }), ("nof_tree_events", 6649547), ("nof_db_events", 6649547), ("fsize_local", 38838329497), # 38.84GB, avg file size 2.77GB ("fsize_db", 332620767606), # 332.62GB, avg file size 3.02GB ("use_it", True), ("xsection", 1.018), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 4), ("LHE_set", "LHA IDs 306000 - 306102 -> NNPDF31_nnlo_hessian_pdfas PDF set, expecting 103 weights (counted 103 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Apr19_woPresel_nom_all_hh_multilepton/ntuples/TGJets_PSweights"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/TTGJets_TuneCP5_13TeV-amcatnloFXFX-madspin-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_new_pmx_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "Rares"), ("process_name_specific", "TTGJets"), ("nof_files", 15), ("nof_db_files", 310), ("nof_events", { 'Count' : [ 7349100, ], 'CountWeighted' : [ 2.85232480e+06, 2.85269698e+06, 2.85200072e+06, ], 'CountWeightedLHEWeightScale' : [ 3.26880284e+06, 3.24282459e+06, 3.22715206e+06, 2.92225112e+06, 2.85232480e+06, 2.79442131e+06, 2.56591505e+06, 2.47899736e+06, 2.40513509e+06, ], 'CountWeightedLHEEnvelope' : [ 3.58939794e+06, 2.20132703e+06, ], 'CountWeightedFull' : [ 5.23412568e+07, 5.23468320e+07, 5.23447530e+07, ], 'CountWeightedFullLHEWeightScale' : [ 5.99884938e+07, 5.95118665e+07, 5.92241658e+07, 5.36286372e+07, 5.23412568e+07, 5.12827460e+07, 4.70892042e+07, 4.54940255e+07, 4.41386095e+07, ], 'CountWeightedFullLHEEnvelope' : [ 6.58720360e+07, 4.03983608e+07, ], 'CountWeightedL1PrefireNom' : [ 2.71994941e+06, 2.72013802e+06, 2.71988806e+06, ], 'CountWeightedL1Prefire' : [ 2.71994941e+06, 2.68848536e+06, 2.75095673e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 3.11220361e+06, 3.08935241e+06, 3.07622673e+06, 2.78495131e+06, 2.71994941e+06, 2.66632000e+06, 2.44695981e+06, 2.36561473e+06, 2.29646821e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 3.41827838e+06, 2.10193997e+06, ], 'CountWeightedFullL1PrefireNom' : [ 4.99138700e+07, 4.99172595e+07, 4.99176118e+07, ], 'CountWeightedFullL1Prefire' : [ 4.99138700e+07, 4.93368700e+07, 5.04830150e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 5.71146435e+07, 5.66952822e+07, 5.64543580e+07, 5.11089230e+07, 4.99138700e+07, 4.89318408e+07, 4.49061498e+07, 4.34132915e+07, 4.21443695e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 6.27316790e+07, 3.85744105e+07, ], }), ("nof_tree_events", 7349100), ("nof_db_events", 12008540), ("fsize_local", 61735825943), # 61.74GB, avg file size 4.12GB ("fsize_db", 721586862695), # 721.59GB, avg file size 2.33GB ("use_it", True), ("xsection", 4.215), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Apr19_woPresel_nom_all_hh_multilepton/ntuples/TTGJets"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/TTGJets_TuneCP5_13TeV-amcatnloFXFX-madspin-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14_ext1-v2/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "Rares"), ("process_name_specific", "TTGJets_ext1"), ("nof_files", 18), ("nof_db_files", 240), ("nof_events", { 'Count' : [ 8729288, ], 'CountWeighted' : [ 3.39933464e+06, 3.39866473e+06, 3.39946034e+06, ], 'CountWeightedLHEWeightScale' : [ 3.89971033e+06, 3.86731595e+06, 3.84749711e+06, 3.48355525e+06, 3.39933464e+06, 3.32941359e+06, 3.05746564e+06, 2.95334175e+06, 2.86463531e+06, ], 'CountWeightedLHEEnvelope' : [ 4.28031344e+06, 2.62257472e+06, ], 'CountWeightedFull' : [ 6.23790452e+07, 6.23753896e+07, 6.23855145e+07, ], 'CountWeightedFullLHEWeightScale' : [ 7.15668015e+07, 7.09723162e+07, 7.06085775e+07, 6.39295810e+07, 6.23790452e+07, 6.11008118e+07, 5.61101659e+07, 5.41991800e+07, 5.25712961e+07, ], 'CountWeightedFullLHEEnvelope' : [ 7.85515322e+07, 4.81290501e+07, ], 'CountWeightedL1PrefireNom' : [ 3.24089166e+06, 3.24024690e+06, 3.24121986e+06, ], 'CountWeightedL1Prefire' : [ 3.24089166e+06, 3.20326701e+06, 3.27797919e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 3.71180655e+06, 3.68323217e+06, 3.66654178e+06, 3.31921425e+06, 3.24089166e+06, 3.17615361e+06, 2.91530602e+06, 2.81784953e+06, 2.73480740e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 4.07498895e+06, 2.50394962e+06, ], 'CountWeightedFullL1PrefireNom' : [ 5.94739368e+07, 5.94665472e+07, 5.94824690e+07, ], 'CountWeightedFullL1Prefire' : [ 5.94739368e+07, 5.87836296e+07, 6.01545374e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 6.81184672e+07, 6.75941268e+07, 6.72877458e+07, 6.09136055e+07, 5.94739368e+07, 5.82882348e+07, 5.35011932e+07, 5.17126830e+07, 5.01887088e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 7.47835010e+07, 4.59520032e+07, ], }), ("nof_tree_events", 8729288), ("nof_db_events", 8783747), ("fsize_local", 73250924987), # 73.25GB, avg file size 4.07GB ("fsize_db", 528701934879), # 528.70GB, avg file size 2.20GB ("use_it", True), ("xsection", 4.215), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Apr19_woPresel_nom_all_hh_multilepton/ntuples/TTGJets_ext1"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/tZq_ll_4f_ckm_NLO_TuneCP5_PSweights_13TeV-amcatnlo-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_new_pmx_94X_mc2017_realistic_v14-v2/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "Rares"), ("process_name_specific", "tZq_ll_4f_PSweights"), ("nof_files", 27), ("nof_db_files", 211), ("nof_events", { 'Count' : [ 13276146, ], 'CountWeighted' : [ 3.46798894e+06, 3.46768598e+06, 3.46839745e+06, ], 'CountWeightedLHEWeightScale' : [ 3.75987561e+06, 3.70745252e+06, 3.67283495e+06, 3.54721817e+06, 3.46791612e+06, 3.40674225e+06, 3.34810567e+06, 3.25224964e+06, 3.17443619e+06, ], 'CountWeightedLHEEnvelope' : [ 4.03236427e+06, 2.97058616e+06, ], 'CountWeightedPSWeight' : [ 3.46843624e+06, 3.46942791e+06, 4.89441195e+06, 3.46776830e+06, 3.46057088e+06, 2.17850700e+06, ], 'CountWeightedPSWeightOriginalXWGTUP' : [ 3.79155352e+06, 3.79109230e+06, 5.41943778e+06, 3.79157079e+06, 3.79188934e+06, 2.32636306e+06, ], 'CountWeightedFull' : [ 9.89582104e+05, 9.89486441e+05, 9.89717605e+05, ], 'CountWeightedFullLHEWeightScale' : [ 1.07286820e+06, 1.05790704e+06, 1.04803250e+06, 1.01218531e+06, 9.89574332e+05, 9.72101682e+05, 9.55368145e+05, 9.28015492e+05, 9.05811662e+05, ], 'CountWeightedFullLHEEnvelope' : [ 1.15062216e+06, 8.47644633e+05, ], 'CountWeightedFullPSWeight' : [ 9.89671621e+05, 9.89987062e+05, 1.39659648e+06, 9.89476242e+05, 9.87459186e+05, 6.21608221e+05, ], 'CountWeightedFullPSWeightOriginalXWGTUP' : [ 1.08186492e+06, 1.08168899e+06, 1.54629704e+06, 1.08186909e+06, 1.08191961e+06, 6.63795000e+05, ], 'CountWeightedL1PrefireNom' : [ 3.21494138e+06, 3.21424484e+06, 3.21569501e+06, ], 'CountWeightedL1Prefire' : [ 3.21494138e+06, 3.15809629e+06, 3.27170663e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 3.48295196e+06, 3.43621268e+06, 3.40593280e+06, 3.28640530e+06, 3.21487420e+06, 3.15995860e+06, 3.10220055e+06, 3.01537056e+06, 2.94502536e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 3.73612208e+06, 2.75554039e+06, ], 'CountWeightedPSWeightL1PrefireNom' : [ 3.21589502e+06, 3.21458541e+06, 4.53598489e+06, 3.21397225e+06, 3.21117656e+06, 2.02181557e+06, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNom' : [ 3.51343337e+06, 3.51025331e+06, 5.01784350e+06, 3.51205084e+06, 3.51646541e+06, 2.15904434e+06, ], 'CountWeightedFullL1PrefireNom' : [ 9.17370004e+05, 9.17176084e+05, 9.17596602e+05, ], 'CountWeightedFullL1Prefire' : [ 9.17370004e+05, 9.01154283e+05, 9.33570191e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 9.93846941e+05, 9.80511371e+05, 9.71871488e+05, 9.37762963e+05, 9.17356566e+05, 9.01682262e+05, 8.85199719e+05, 8.60424004e+05, 8.40349766e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 1.06608883e+06, 7.86281701e+05, ], 'CountWeightedFullPSWeightL1PrefireNom' : [ 9.17616971e+05, 9.17268402e+05, 1.29432158e+06, 9.17063992e+05, 9.16296822e+05, 5.76901208e+05, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNom' : [ 1.00251403e+06, 1.00156726e+06, 1.43172306e+06, 1.00211740e+06, 1.00334196e+06, 6.16056437e+05, ], }), ("nof_tree_events", 13276146), ("nof_db_events", 13276146), ("fsize_local", 101222299962), # 101.22GB, avg file size 3.75GB ("fsize_db", 748393512503), # 748.39GB, avg file size 3.55GB ("use_it", True), ("xsection", 0.07358), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 4), ("LHE_set", "LHA IDs 306000 - 306102 -> NNPDF31_nnlo_hessian_pdfas PDF set, expecting 103 weights (counted 103 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/tZq_ll_4f_PSweights"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/WpWpJJ_EWK-QCD_TuneCP5_13TeV-madgraph-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "Rares"), ("process_name_specific", "WpWpJJ_EWK_QCD"), ("nof_files", 1), ("nof_db_files", 21), ("nof_events", { 'Count' : [ 149000, ], 'CountWeighted' : [ 1.48423422e+05, 1.48404453e+05, 1.48418625e+05, ], 'CountWeightedLHEWeightScale' : [ 1.83701625e+05, 1.74801938e+05, 1.66777984e+05, 1.56175344e+05, 1.48423422e+05, 1.41457312e+05, 1.36036094e+05, 1.29122375e+05, 1.22937266e+05, ], 'CountWeightedLHEEnvelope' : [ 1.84241828e+05, 1.22627547e+05, ], 'CountWeightedFull' : [ 1.48423422e+05, 1.48404453e+05, 1.48418625e+05, ], 'CountWeightedFullLHEWeightScale' : [ 1.83701625e+05, 1.74801938e+05, 1.66777984e+05, 1.56175344e+05, 1.48423422e+05, 1.41457312e+05, 1.36036094e+05, 1.29122375e+05, 1.22937266e+05, ], 'CountWeightedFullLHEEnvelope' : [ 1.84241828e+05, 1.22627547e+05, ], 'CountWeightedL1PrefireNom' : [ 1.36384844e+05, 1.36348000e+05, 1.36411562e+05, ], 'CountWeightedL1Prefire' : [ 1.36384844e+05, 1.33752297e+05, 1.39030781e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 1.68522750e+05, 1.60737438e+05, 1.53668109e+05, 1.43167172e+05, 1.36384844e+05, 1.30251812e+05, 1.24615828e+05, 1.18570867e+05, 1.13124625e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 1.69049672e+05, 1.12822266e+05, ], 'CountWeightedFullL1PrefireNom' : [ 1.36384844e+05, 1.36348000e+05, 1.36411562e+05, ], 'CountWeightedFullL1Prefire' : [ 1.36384844e+05, 1.33752297e+05, 1.39030781e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 1.68522750e+05, 1.60737438e+05, 1.53668109e+05, 1.43167172e+05, 1.36384844e+05, 1.30251812e+05, 1.24615828e+05, 1.18570867e+05, 1.13124625e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 1.69049672e+05, 1.12822266e+05, ], }), ("nof_tree_events", 149000), ("nof_db_events", 149000), ("fsize_local", 1020662928), # 1.02GB, avg file size 1.02GB ("fsize_db", 8401827223), # 8.40GB, avg file size 400.09MB ("use_it", True), ("xsection", 0.04926), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/WpWpJJ_EWK_QCD"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/WWTo2L2Nu_DoubleScattering_13TeV-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v2/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "Rares"), ("process_name_specific", "WWTo2L2Nu_DoubleScattering"), ("nof_files", 2), ("nof_db_files", 31), ("nof_events", { 'Count' : [ 968000, ], 'CountWeighted' : [ 9.68050750e+05, 9.68099562e+05, 9.67943125e+05, ], 'CountWeightedFull' : [ 9.68050750e+05, 9.68099562e+05, 9.67943125e+05, ], 'CountWeightedL1PrefireNom' : [ 9.52874938e+05, 9.52889562e+05, 9.52807875e+05, ], 'CountWeightedL1Prefire' : [ 9.52874938e+05, 9.48610188e+05, 9.56984906e+05, ], 'CountWeightedFullL1PrefireNom' : [ 9.52874938e+05, 9.52889562e+05, 9.52807875e+05, ], 'CountWeightedFullL1Prefire' : [ 9.52874938e+05, 9.48610188e+05, 9.56984906e+05, ], }), ("nof_tree_events", 968000), ("nof_db_events", 968000), ("fsize_local", 3099047194), # 3.10GB, avg file size 1.55GB ("fsize_db", 37369750968), # 37.37GB, avg file size 1.21GB ("use_it", True), ("xsection", 0.2232), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", False), ("nof_PSweights", 1), ("LHE_set", ""), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/WWTo2L2Nu_DoubleScattering"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/TTTT_TuneCP5_13TeV-amcatnlo-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v2/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "Rares"), ("process_name_specific", "TTTT"), ("nof_files", 2), ("nof_db_files", 31), ("nof_events", { 'Count' : [ 445626, ], 'CountWeighted' : [ 1.66391117e+05, 1.66405773e+05, 1.66426844e+05, ], 'CountWeightedLHEWeightScale' : [ 2.16437781e+05, 2.04832445e+05, 1.94610945e+05, 1.78930672e+05, 1.66388234e+05, 1.55707523e+05, 1.46367578e+05, 1.34519238e+05, 1.24584820e+05, ], 'CountWeightedLHEEnvelope' : [ 2.21667141e+05, 1.22484324e+05, ], 'CountWeightedFull' : [ 3.65610266e+03, 3.65622949e+03, 3.65672632e+03, ], 'CountWeightedFullLHEWeightScale' : [ 4.75568750e+03, 4.50068176e+03, 4.27609888e+03, 3.93156311e+03, 3.65603979e+03, 3.42128638e+03, 3.21607202e+03, 2.95572949e+03, 2.73744861e+03, ], 'CountWeightedFullLHEEnvelope' : [ 4.87058960e+03, 2.69129395e+03, ], 'CountWeightedL1PrefireNom' : [ 1.57054188e+05, 1.57036867e+05, 1.57110117e+05, ], 'CountWeightedL1Prefire' : [ 1.57054188e+05, 1.54868008e+05, 1.59210883e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 2.03945547e+05, 1.93177906e+05, 1.83687297e+05, 1.68747273e+05, 1.57051828e+05, 1.47085914e+05, 1.38107090e+05, 1.27037891e+05, 1.17748961e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 2.08917375e+05, 1.15733023e+05, ], 'CountWeightedFullL1PrefireNom' : [ 3.45090833e+03, 3.45044348e+03, 3.45204285e+03, ], 'CountWeightedFullL1Prefire' : [ 3.45090833e+03, 3.40286755e+03, 3.49830566e+03, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 4.48119995e+03, 4.24461377e+03, 4.03607776e+03, 3.70780603e+03, 3.45085571e+03, 3.23185303e+03, 3.03456226e+03, 2.79135303e+03, 2.58723755e+03, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 4.59044397e+03, 2.54294202e+03, ], }), ("nof_tree_events", 445626), ("nof_db_events", 1000000), ("fsize_local", 5622913605), # 5.62GB, avg file size 2.81GB ("fsize_db", 78458590319), # 78.46GB, avg file size 2.53GB ("use_it", True), ("xsection", 0.008213), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/TTTT"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/TTTT_TuneCP5_PSweights_13TeV-amcatnlo-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "Rares"), ("process_name_specific", "TTTT_PSweights"), ("nof_files", 9), ("nof_db_files", 71), ("nof_events", { 'Count' : [ 2074260, ], 'CountWeighted' : [ 7.75648488e+05, 7.75717207e+05, 7.75550152e+05, ], 'CountWeightedLHEWeightScale' : [ 1.00813260e+06, 9.54150172e+05, 9.06563664e+05, 8.34128561e+05, 7.75638750e+05, 7.25833744e+05, 6.82599561e+05, 6.27353467e+05, 5.81008627e+05, ], 'CountWeightedLHEEnvelope' : [ 1.03351345e+06, 5.70363059e+05, ], 'CountWeightedPSWeight' : [ 7.75714766e+05, 7.74287320e+05, 1.22015426e+06, 7.75687375e+05, 7.70136865e+05, 3.81229789e+05, ], 'CountWeightedPSWeightOriginalXWGTUP' : [ 4.55820304e+04, 4.55481204e+04, 7.28858347e+04, 4.55687327e+04, 4.56247561e+04, 2.17854114e+04, ], 'CountWeightedFull' : [ 1.70157519e+04, 1.70166443e+04, 1.70132902e+04, ], 'CountWeightedFullLHEWeightScale' : [ 2.21151974e+04, 2.09310286e+04, 1.98871443e+04, 1.82980669e+04, 1.70156249e+04, 1.59224602e+04, 1.49740021e+04, 1.37620955e+04, 1.27454531e+04, ], 'CountWeightedFullLHEEnvelope' : [ 2.26720017e+04, 1.25119111e+04, ], 'CountWeightedFullPSWeight' : [ 1.70166479e+04, 1.69853124e+04, 2.67666882e+04, 1.70157045e+04, 1.68947580e+04, 8.36278549e+03, ], 'CountWeightedFullPSWeightOriginalXWGTUP' : [ 9.99904430e+02, 9.99137836e+02, 1.59881866e+03, 9.99596146e+02, 1.00082522e+03, 4.77888996e+02, ], 'CountWeightedL1PrefireNom' : [ 7.32108730e+05, 7.32149598e+05, 7.32060562e+05, ], 'CountWeightedL1Prefire' : [ 7.32108730e+05, 7.21907311e+05, 7.42176336e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 9.49983547e+05, 8.99810320e+05, 8.55566551e+05, 7.86681908e+05, 7.32100266e+05, 6.85590961e+05, 6.44133797e+05, 5.92483545e+05, 5.49122512e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 9.74059141e+05, 5.38958129e+05, ], 'CountWeightedPSWeightL1PrefireNom' : [ 7.33256424e+05, 7.30081104e+05, 1.15172007e+06, 7.30769924e+05, 7.28124346e+05, 3.60109898e+05, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNom' : [ 4.30883748e+04, 4.29544635e+04, 6.87918462e+04, 4.29281321e+04, 4.31210142e+04, 2.05790273e+04, ], 'CountWeightedFullL1PrefireNom' : [ 1.60604166e+04, 1.60609661e+04, 1.60591525e+04, ], 'CountWeightedFullL1Prefire' : [ 1.60604166e+04, 1.58366588e+04, 1.62812520e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 2.08396664e+04, 1.97390222e+04, 1.87684917e+04, 1.72573180e+04, 1.60602642e+04, 1.50397258e+04, 1.41302251e+04, 1.29972183e+04, 1.20460219e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 2.13678162e+04, 1.18230313e+04, ], 'CountWeightedFullPSWeightL1PrefireNom' : [ 1.60853717e+04, 1.60156243e+04, 2.52655621e+04, 1.60305189e+04, 1.59731887e+04, 7.89956180e+03, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNom' : [ 9.45210892e+02, 9.42253994e+02, 1.50902785e+03, 9.41679901e+02, 9.45911022e+02, 4.51429607e+02, ], }), ("nof_tree_events", 2074260), ("nof_db_events", 2273928), ("fsize_local", 26072506208), # 26.07GB, avg file size 2.90GB ("fsize_db", 177857452203), # 177.86GB, avg file size 2.51GB ("use_it", True), ("xsection", 0.008213), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 4), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/TTTT_PSweights"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/TTTW_TuneCP5_13TeV-madgraph-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_new_pmx_94X_mc2017_realistic_v14-v2/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "Rares"), ("process_name_specific", "TTTW"), ("nof_files", 1), ("nof_db_files", 5), ("nof_events", { 'Count' : [ 200000, ], 'CountWeighted' : [ 1.99687766e+05, 1.99723375e+05, 1.99725344e+05, ], 'CountWeightedLHEWeightScale' : [ 2.73947312e+05, 2.65500062e+05, 2.54616750e+05, 2.06119328e+05, 1.99685031e+05, 1.91484141e+05, 1.59136625e+05, 1.54153938e+05, 1.47778234e+05, ], 'CountWeightedLHEEnvelope' : [ 2.74621250e+05, 1.47727000e+05, ], 'CountWeightedPSWeight' : [ 1.99715500e+06, 1.99715500e+06, 1.99715500e+06, 1.99715500e+06, 1.99715500e+06, 1.99715500e+06, ], 'CountWeightedPSWeightOriginalXWGTUP' : [ 2.00090500e+05, 2.00280547e+05, 3.05750719e+05, 1.99939891e+05, 1.98413844e+05, 1.07057188e+05, ], 'CountWeightedFull' : [ 1.99537359e+05, 1.99572438e+05, 1.99572453e+05, ], 'CountWeightedFullLHEWeightScale' : [ 2.73739625e+05, 2.65299250e+05, 2.54424406e+05, 2.05962906e+05, 1.99534734e+05, 1.91339500e+05, 1.59015594e+05, 1.54037125e+05, 1.47666547e+05, ], 'CountWeightedFullLHEEnvelope' : [ 2.74413219e+05, 1.47615312e+05, ], 'CountWeightedFullPSWeight' : [ 1.99563312e+06, 1.99563312e+06, 1.99563312e+06, 1.99563312e+06, 1.99563312e+06, 1.99563312e+06, ], 'CountWeightedFullPSWeightOriginalXWGTUP' : [ 1.99940016e+05, 2.00127984e+05, 3.05519469e+05, 1.99787531e+05, 1.98265641e+05, 1.06976312e+05, ], 'CountWeightedL1PrefireNom' : [ 1.91446281e+05, 1.91453969e+05, 1.91472078e+05, ], 'CountWeightedL1Prefire' : [ 1.91446281e+05, 1.89441953e+05, 1.93404641e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 2.62375438e+05, 2.54523547e+05, 2.44284875e+05, 1.97415656e+05, 1.91443859e+05, 1.83716453e+05, 1.52418562e+05, 1.47784547e+05, 1.41785609e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 2.63038094e+05, 1.41735266e+05, ], 'CountWeightedPSWeightL1PrefireNom' : [ 1.91458675e+06, 1.91458675e+06, 1.91458675e+06, 1.91458675e+06, 1.91458675e+06, 1.91458675e+06, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNom' : [ 1.91958312e+05, 1.91808828e+05, 2.93018438e+05, 1.91363734e+05, 1.90365766e+05, 1.02644969e+05, ], 'CountWeightedFullL1PrefireNom' : [ 1.91302141e+05, 1.91309406e+05, 1.91326609e+05, ], 'CountWeightedFullL1Prefire' : [ 1.91302141e+05, 1.89299344e+05, 1.93258891e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 2.62176875e+05, 2.54331625e+05, 2.44100906e+05, 1.97266203e+05, 1.91299719e+05, 1.83577891e+05, 1.52302984e+05, 1.47672719e+05, 1.41678688e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 2.62839281e+05, 1.41628391e+05, ], 'CountWeightedFullPSWeightL1PrefireNom' : [ 1.91313625e+06, 1.91313625e+06, 1.91313625e+06, 1.91313625e+06, 1.91313625e+06, 1.91313625e+06, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNom' : [ 1.91814234e+05, 1.91662938e+05, 2.92797250e+05, 1.91217969e+05, 1.90223953e+05, 1.02567641e+05, ], }), ("nof_tree_events", 200000), ("nof_db_events", 200000), ("fsize_local", 2205499085), # 2.21GB, avg file size 2.21GB ("fsize_db", 14414668661), # 14.41GB, avg file size 2.88GB ("use_it", True), ("xsection", 0.000732), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 4), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/TTTW"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/TTTJ_TuneCP5_13TeV-madgraph-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_new_pmx_94X_mc2017_realistic_v14-v2/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "Rares"), ("process_name_specific", "TTTJ"), ("nof_files", 1), ("nof_db_files", 5), ("nof_events", { 'Count' : [ 200000, ], 'CountWeighted' : [ 1.98534125e+05, 1.98551578e+05, 1.98504203e+05, ], 'CountWeightedLHEWeightScale' : [ 2.44104781e+05, 2.39381578e+05, 2.33286016e+05, 2.02500609e+05, 1.98532047e+05, 1.93447609e+05, 1.70860484e+05, 1.67485578e+05, 1.63167250e+05, ], 'CountWeightedLHEEnvelope' : [ 2.46754312e+05, 1.62245016e+05, ], 'CountWeightedPSWeight' : [ 1.98558875e+06, 1.98558875e+06, 1.98558875e+06, 1.98558875e+06, 1.98558875e+06, 1.98558875e+06, ], 'CountWeightedPSWeightOriginalXWGTUP' : [ 1.99966594e+05, 1.99848062e+05, 3.01211875e+05, 1.99996734e+05, 1.99516672e+05, 1.09919383e+05, ], 'CountWeightedFull' : [ 1.98382297e+05, 1.98401625e+05, 1.98354578e+05, ], 'CountWeightedFullLHEWeightScale' : [ 2.43921469e+05, 2.39199234e+05, 2.33106656e+05, 2.02348516e+05, 1.98380266e+05, 1.93299031e+05, 1.70732344e+05, 1.67358188e+05, 1.63041562e+05, ], 'CountWeightedFullLHEEnvelope' : [ 2.46568641e+05, 1.62120172e+05, ], 'CountWeightedFullPSWeight' : [ 1.98405200e+06, 1.98405200e+06, 1.98405200e+06, 1.98405200e+06, 1.98405200e+06, 1.98405200e+06, ], 'CountWeightedFullPSWeightOriginalXWGTUP' : [ 1.99799391e+05, 1.99669453e+05, 3.00942219e+05, 1.99829094e+05, 1.99334594e+05, 1.09826117e+05, ], 'CountWeightedL1PrefireNom' : [ 1.87336469e+05, 1.87340266e+05, 1.87338391e+05, ], 'CountWeightedL1Prefire' : [ 1.87336469e+05, 1.84728812e+05, 1.89914688e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 2.30197344e+05, 2.25906359e+05, 2.20302516e+05, 1.90941562e+05, 1.87334203e+05, 1.82657719e+05, 1.61093016e+05, 1.58022312e+05, 1.54051047e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 2.32758422e+05, 1.53153500e+05, ], 'CountWeightedPSWeightL1PrefireNom' : [ 1.87347700e+06, 1.87347700e+06, 1.87347700e+06, 1.87347700e+06, 1.87347700e+06, 1.87347700e+06, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNom' : [ 1.88558047e+05, 1.88233375e+05, 2.83842906e+05, 1.88403875e+05, 1.88218094e+05, 1.03677953e+05, ], 'CountWeightedFullL1PrefireNom' : [ 1.87190297e+05, 1.87195234e+05, 1.87192750e+05, ], 'CountWeightedFullL1Prefire' : [ 1.87190297e+05, 1.84584219e+05, 1.89766984e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 2.30019359e+05, 2.25730125e+05, 2.20129688e+05, 1.90793938e+05, 1.87188062e+05, 1.82514656e+05, 1.60968516e+05, 1.57899031e+05, 1.53929953e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 2.32578375e+05, 1.53033266e+05, ], 'CountWeightedFullPSWeightL1PrefireNom' : [ 1.87200700e+06, 1.87200700e+06, 1.87200700e+06, 1.87200700e+06, 1.87200700e+06, 1.87200700e+06, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNom' : [ 1.88401094e+05, 1.88069203e+05, 2.83595156e+05, 1.88246594e+05, 1.88051188e+05, 1.03590148e+05, ], }), ("nof_tree_events", 200000), ("nof_db_events", 200000), ("fsize_local", 2064418694), # 2.06GB, avg file size 2.06GB ("fsize_db", 13736818051), # 13.74GB, avg file size 2.75GB ("use_it", True), ("xsection", 0.000397), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 4), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/TTTJ"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/TTWZ_TuneCP5_13TeV-madgraph-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_new_pmx_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "Rares"), ("process_name_specific", "TTWZ"), ("nof_files", 1), ("nof_db_files", 5), ("nof_events", { 'Count' : [ 200000, ], 'CountWeighted' : [ 1.98751109e+05, 1.98771469e+05, 1.98800094e+05, ], 'CountWeightedLHEWeightScale' : [ 2.52012641e+05, 2.38259750e+05, 2.25749688e+05, 2.10263281e+05, 1.98749562e+05, 1.88308469e+05, 1.78208297e+05, 1.68443672e+05, 1.59571625e+05, ], 'CountWeightedLHEEnvelope' : [ 2.52060703e+05, 1.59562188e+05, ], 'CountWeightedPSWeight' : [ 1.98785962e+06, 1.98785962e+06, 1.98785962e+06, 1.98785962e+06, 1.98785962e+06, 1.98785962e+06, ], 'CountWeightedPSWeightOriginalXWGTUP' : [ 1.99980891e+05, 2.00499797e+05, 2.92947062e+05, 2.00000781e+05, 1.98283516e+05, 1.14982609e+05, ], 'CountWeightedFull' : [ 1.98621266e+05, 1.98637703e+05, 1.98664750e+05, ], 'CountWeightedFullLHEWeightScale' : [ 2.51848859e+05, 2.38103062e+05, 2.25600312e+05, 2.10126250e+05, 1.98619766e+05, 1.88183125e+05, 1.78092047e+05, 1.68332969e+05, 1.59465375e+05, ], 'CountWeightedFullLHEEnvelope' : [ 2.51895219e+05, 1.59457328e+05, ], 'CountWeightedFullPSWeight' : [ 1.98651850e+06, 1.98651850e+06, 1.98651850e+06, 1.98651850e+06, 1.98651850e+06, 1.98651850e+06, ], 'CountWeightedFullPSWeightOriginalXWGTUP' : [ 1.99840047e+05, 2.00346594e+05, 2.92727000e+05, 1.99859391e+05, 1.98134969e+05, 1.14901688e+05, ], 'CountWeightedL1PrefireNom' : [ 1.89939672e+05, 1.89928062e+05, 1.89991578e+05, ], 'CountWeightedL1Prefire' : [ 1.89939672e+05, 1.87841719e+05, 1.92004797e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 2.40657953e+05, 2.27693141e+05, 2.15880531e+05, 2.00787609e+05, 1.89937484e+05, 1.80075328e+05, 1.70178125e+05, 1.60970359e+05, 1.52592531e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 2.40706250e+05, 1.52582703e+05, ], 'CountWeightedPSWeightL1PrefireNom' : [ 1.89957600e+06, 1.89957600e+06, 1.89957600e+06, 1.89957600e+06, 1.89957600e+06, 1.89957600e+06, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNom' : [ 1.90969078e+05, 1.91357000e+05, 2.79644312e+05, 1.90871656e+05, 1.89342359e+05, 1.09784172e+05, ], 'CountWeightedFullL1PrefireNom' : [ 1.89814219e+05, 1.89800703e+05, 1.89863391e+05, ], 'CountWeightedFullL1Prefire' : [ 1.89814219e+05, 1.87717109e+05, 1.91878125e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 2.40499312e+05, 2.27542594e+05, 2.15736703e+05, 2.00655328e+05, 1.89812000e+05, 1.79954406e+05, 1.70065281e+05, 1.60863375e+05, 1.52490266e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 2.40546422e+05, 1.52481547e+05, ], 'CountWeightedFullPSWeightL1PrefireNom' : [ 1.89829938e+06, 1.89829938e+06, 1.89829938e+06, 1.89829938e+06, 1.89829938e+06, 1.89829938e+06, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNom' : [ 1.90835266e+05, 1.91213625e+05, 2.79438125e+05, 1.90737797e+05, 1.89202844e+05, 1.09707102e+05, ], }), ("nof_tree_events", 200000), ("nof_db_events", 200000), ("fsize_local", 1914427366), # 1.91GB, avg file size 1.91GB ("fsize_db", 13154770289), # 13.15GB, avg file size 2.63GB ("use_it", True), ("xsection", 0.003884), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 4), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/TTWZ"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/TTZZ_TuneCP5_13TeV-madgraph-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_new_pmx_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "Rares"), ("process_name_specific", "TTZZ"), ("nof_files", 1), ("nof_db_files", 5), ("nof_events", { 'Count' : [ 200000, ], 'CountWeighted' : [ 1.99408516e+05, 1.99332578e+05, 1.99365500e+05, ], 'CountWeightedLHEWeightScale' : [ 2.58628469e+05, 2.39087625e+05, 2.22204828e+05, 2.15692547e+05, 1.99408219e+05, 1.85302000e+05, 1.82745016e+05, 1.68919828e+05, 1.56981609e+05, ], 'CountWeightedLHEEnvelope' : [ 2.58773875e+05, 1.56909078e+05, ], 'CountWeightedPSWeight' : [ 1.99363150e+06, 1.99363150e+06, 1.99363150e+06, 1.99363150e+06, 1.99363150e+06, 1.99363150e+06, ], 'CountWeightedPSWeightOriginalXWGTUP' : [ 2.00049344e+05, 2.00150812e+05, 2.96797438e+05, 1.99936203e+05, 1.98956969e+05, 1.12651914e+05, ], 'CountWeightedFull' : [ 1.99324234e+05, 1.99251578e+05, 1.99284047e+05, ], 'CountWeightedFullLHEWeightScale' : [ 2.58520156e+05, 2.38987078e+05, 2.22110641e+05, 2.15601797e+05, 1.99323922e+05, 1.85223531e+05, 1.82668453e+05, 1.68848609e+05, 1.56915188e+05, ], 'CountWeightedFullLHEEnvelope' : [ 2.58665469e+05, 1.56842703e+05, ], 'CountWeightedFullPSWeight' : [ 1.99279462e+06, 1.99279462e+06, 1.99279462e+06, 1.99279462e+06, 1.99279462e+06, 1.99279462e+06, ], 'CountWeightedFullPSWeightOriginalXWGTUP' : [ 1.99959516e+05, 2.00055719e+05, 2.96657281e+05, 1.99844844e+05, 1.98862922e+05, 1.12601289e+05, ], 'CountWeightedL1PrefireNom' : [ 1.92090094e+05, 1.92022312e+05, 1.92088391e+05, ], 'CountWeightedL1Prefire' : [ 1.92090094e+05, 1.90318484e+05, 1.93817953e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 2.48951875e+05, 2.30323609e+05, 2.14211734e+05, 2.07621359e+05, 1.92088719e+05, 1.78633984e+05, 1.75907312e+05, 1.62727266e+05, 1.51332641e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 2.49095750e+05, 1.51260375e+05, ], 'CountWeightedPSWeightL1PrefireNom' : [ 1.92063675e+06, 1.92063675e+06, 1.92063675e+06, 1.92063675e+06, 1.92063675e+06, 1.92063675e+06, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNom' : [ 1.92722938e+05, 1.92591734e+05, 2.85735750e+05, 1.92340562e+05, 1.91715859e+05, 1.08508570e+05, ], 'CountWeightedFullL1PrefireNom' : [ 1.92006562e+05, 1.91940391e+05, 1.92006156e+05, ], 'CountWeightedFullL1Prefire' : [ 1.92006562e+05, 1.90235203e+05, 1.93734062e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 2.48844078e+05, 2.30223422e+05, 2.14117672e+05, 2.07531109e+05, 1.92005188e+05, 1.78556078e+05, 1.75830984e+05, 1.62656375e+05, 1.51266500e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 2.48987875e+05, 1.51194266e+05, ], 'CountWeightedFullPSWeightL1PrefireNom' : [ 1.91980188e+06, 1.91980188e+06, 1.91980188e+06, 1.91980188e+06, 1.91980188e+06, 1.91980188e+06, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNom' : [ 1.92637062e+05, 1.92503438e+05, 2.85605125e+05, 1.92253469e+05, 1.91628719e+05, 1.08460039e+05, ], }), ("nof_tree_events", 200000), ("nof_db_events", 200000), ("fsize_local", 1945328132), # 1.95GB, avg file size 1.95GB ("fsize_db", 13301434140), # 13.30GB, avg file size 2.66GB ("use_it", True), ("xsection", 0.001982), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 4), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/TTZZ"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/VHToNonbb_M125_13TeV_amcatnloFXFX_madspin_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v2/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "VH"), ("process_name_specific", "VHToNonbb_M125"), ("nof_files", 2), ("nof_db_files", 35), ("nof_events", { 'Count' : [ 918508, ], 'CountWeighted' : [ 4.50944922e+05, 4.51181891e+05, 4.50788219e+05, ], 'CountWeightedLHEWeightScale' : [ 4.63921922e+05, 4.69820094e+05, 4.77300750e+05, 4.45592406e+05, 4.50942688e+05, 4.56672219e+05, 4.26531000e+05, 4.31592938e+05, 4.36401859e+05, ], 'CountWeightedLHEEnvelope' : [ 5.16497125e+05, 3.89628266e+05, ], 'CountWeightedFull' : [ 5.36424350e+06, 5.36694150e+06, 5.36238375e+06, ], 'CountWeightedFullLHEWeightScale' : [ 5.51895600e+06, 5.58914750e+06, 5.67808650e+06, 5.30089375e+06, 5.36415975e+06, 5.43269525e+06, 5.07413000e+06, 5.13428625e+06, 5.19156125e+06, ], 'CountWeightedFullLHEEnvelope' : [ 6.14439375e+06, 4.63514225e+06, ], 'CountWeightedL1PrefireNom' : [ 4.39429859e+05, 4.39617703e+05, 4.39302453e+05, ], 'CountWeightedL1Prefire' : [ 4.39429859e+05, 4.36507000e+05, 4.42246625e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 4.51915672e+05, 4.57674016e+05, 4.64968859e+05, 4.34157219e+05, 4.39426375e+05, 4.45057203e+05, 4.15673500e+05, 4.20687953e+05, 4.25445000e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 5.03045578e+05, 3.79894078e+05, ], 'CountWeightedFullL1PrefireNom' : [ 5.22741700e+06, 5.22953100e+06, 5.22585750e+06, ], 'CountWeightedFullL1Prefire' : [ 5.22741700e+06, 5.19266500e+06, 5.26094300e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 5.37611450e+06, 5.44464875e+06, 5.53141950e+06, 5.16486275e+06, 5.22733700e+06, 5.29452300e+06, 4.94497175e+06, 5.00457825e+06, 5.06120425e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 5.98439175e+06, 4.51933075e+06, ], }), ("nof_tree_events", 918508), ("nof_db_events", 918508), ("fsize_local", 4968532904), # 4.97GB, avg file size 2.48GB ("fsize_db", 44015654097), # 44.02GB, avg file size 1.26GB ("use_it", True), ("xsection", 0.9425), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/VHToNonbb_M125"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/ZH_HToBB_ZToLL_M125_13TeV_powheg_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "VH"), ("process_name_specific", "ZH_HToBB_ZToLL"), ("nof_files", 10), ("nof_db_files", 75), ("nof_events", { 'Count' : [ 4816186, ], 'CountWeighted' : [ 4.53287512e+06, 4.53352366e+06, 4.53323375e+06, ], 'CountWeightedLHEWeightScale' : [ 4.55217153e+06, 4.65361459e+06, 4.63155959e+06, 4.28883962e+06, 4.53287512e+06, 4.65484572e+06, 4.08343725e+06, 4.38103519e+06, 4.55117516e+06, ], 'CountWeightedLHEEnvelope' : [ 5.40155388e+06, 3.64799092e+06, ], 'CountWeightedFull' : [ 3.82008877e+05, 3.82005699e+05, 3.81959682e+05, ], 'CountWeightedFullLHEWeightScale' : [ 3.83651195e+05, 3.92201217e+05, 3.90341928e+05, 3.61458463e+05, 3.82008877e+05, 3.92306959e+05, 3.44148400e+05, 3.69228934e+05, 3.83567727e+05, ], 'CountWeightedFullLHEEnvelope' : [ 4.55237814e+05, 3.07450328e+05, ], 'CountWeightedL1PrefireNom' : [ 4.34984797e+06, 4.34996078e+06, 4.35020891e+06, ], 'CountWeightedL1Prefire' : [ 4.34984797e+06, 4.30664003e+06, 4.39270047e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 4.36499138e+06, 4.46259100e+06, 4.43987938e+06, 4.11315853e+06, 4.34984797e+06, 4.46807475e+06, 3.91643075e+06, 4.20505191e+06, 4.37053616e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 5.18043062e+06, 3.50085906e+06, ], 'CountWeightedFullL1PrefireNom' : [ 3.66588002e+05, 3.66571986e+05, 3.66577475e+05, ], 'CountWeightedFullL1Prefire' : [ 3.66588002e+05, 3.62946043e+05, 3.70199887e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 3.67876449e+05, 3.76101416e+05, 3.74187660e+05, 3.46652650e+05, 3.66588002e+05, 3.76564701e+05, 3.30073184e+05, 3.54397523e+05, 3.68343482e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 4.36601498e+05, 2.95049910e+05, ], }), ("nof_tree_events", 4816186), ("nof_db_events", 4816186), ("fsize_local", 26706822571), # 26.71GB, avg file size 2.67GB ("fsize_db", 243231917749), # 243.23GB, avg file size 3.24GB ("use_it", True), ("xsection", 0.05198), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/ZH_HToBB_ZToLL"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/ZHToTauTau_M125_13TeV_powheg_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "VH"), ("process_name_specific", "ZHToTauTau"), ("nof_files", 10), ("nof_db_files", 75), ("nof_events", { 'Count' : [ 4940230, ], 'CountWeighted' : [ 4.65279909e+06, 4.65228325e+06, 4.65275794e+06, ], 'CountWeightedLHEWeightScale' : [ 4.67483550e+06, 4.77945112e+06, 4.75698650e+06, 4.40209403e+06, 4.65279909e+06, 4.77650884e+06, 4.19039616e+06, 4.49548825e+06, 4.66902875e+06, ], 'CountWeightedLHEEnvelope' : [ 5.54224125e+06, 3.74719531e+06, ], 'CountWeightedFull' : [ 3.90132559e+06, 3.90065747e+06, 3.90023619e+06, ], 'CountWeightedFullLHEWeightScale' : [ 3.91951538e+06, 4.00722766e+06, 3.98838912e+06, 3.69083988e+06, 3.90132559e+06, 4.00475772e+06, 3.51334653e+06, 3.76914991e+06, 3.91464525e+06, ], 'CountWeightedFullLHEEnvelope' : [ 4.64678584e+06, 3.14175550e+06, ], 'CountWeightedL1PrefireNom' : [ 4.51829325e+06, 4.51769962e+06, 4.51848397e+06, ], 'CountWeightedL1Prefire' : [ 4.51829325e+06, 4.48504697e+06, 4.55073972e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 4.53689453e+06, 4.63890359e+06, 4.61597284e+06, 4.27280747e+06, 4.51829325e+06, 4.63977997e+06, 4.06759603e+06, 4.36661803e+06, 4.53708769e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 5.38026712e+06, 3.63889284e+06, ], 'CountWeightedFullL1PrefireNom' : [ 3.78850669e+06, 3.78778262e+06, 3.78798397e+06, ], 'CountWeightedFullL1Prefire' : [ 3.78850669e+06, 3.76061816e+06, 3.81571544e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 3.80386556e+06, 3.88938981e+06, 3.87016047e+06, 3.58244019e+06, 3.78850669e+06, 3.89012056e+06, 3.41039106e+06, 3.66110125e+06, 3.80402559e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 4.51097688e+06, 3.05094944e+06, ], }), ("nof_tree_events", 4940230), ("nof_db_events", 4940230), ("fsize_local", 24934454524), # 24.93GB, avg file size 2.49GB ("fsize_db", 231991011973), # 231.99GB, avg file size 3.09GB ("use_it", True), ("xsection", 0.05544), ("genWeight", True), ("triggers", ['1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/ZHToTauTau"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/HZJ_HToWW_M125_13TeV_powheg_jhugen714_pythia8_TuneCP5/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v4/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "VH"), ("process_name_specific", "HZJ_HToWW"), ("nof_files", 1), ("nof_db_files", 29), ("nof_events", { 'Count' : [ 391095, ], 'CountWeighted' : [ 3.68099000e+05, 3.68074531e+05, 3.68009312e+05, ], 'CountWeightedLHEWeightScale' : [ 3.69232562e+05, 3.77505344e+05, 3.75483938e+05, 3.48098375e+05, 3.68099000e+05, 3.77783062e+05, 3.31490938e+05, 3.55779750e+05, 3.69475625e+05, ], 'CountWeightedLHEEnvelope' : [ 4.37967531e+05, 2.96298625e+05, ], 'CountWeightedFull' : [ 3.08554688e+05, 3.08589312e+05, 3.08559781e+05, ], 'CountWeightedFullLHEWeightScale' : [ 3.09575125e+05, 3.16510219e+05, 3.14819031e+05, 2.91854938e+05, 3.08554688e+05, 3.16745344e+05, 2.77930250e+05, 2.98298062e+05, 3.09778312e+05, ], 'CountWeightedFullLHEEnvelope' : [ 3.67203844e+05, 2.48426078e+05, ], 'CountWeightedL1PrefireNom' : [ 3.59179688e+05, 3.59171875e+05, 3.59127562e+05, ], 'CountWeightedL1Prefire' : [ 3.59179688e+05, 3.56890000e+05, 3.61369062e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 3.60085125e+05, 3.68173812e+05, 3.66124156e+05, 3.39513219e+05, 3.59179688e+05, 3.68752125e+05, 3.23329688e+05, 3.47247812e+05, 3.60771312e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 4.27254594e+05, 2.89099719e+05, ], 'CountWeightedFullL1PrefireNom' : [ 3.01103312e+05, 3.01135375e+05, 3.01113406e+05, ], 'CountWeightedFullL1Prefire' : [ 3.01103312e+05, 2.99191750e+05, 3.02944188e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 3.01905469e+05, 3.08685906e+05, 3.06971500e+05, 2.84656906e+05, 3.01103312e+05, 3.09172844e+05, 2.71087188e+05, 2.91142062e+05, 3.02479438e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 3.58222938e+05, 2.42389000e+05, ], }), ("nof_tree_events", 391095), ("nof_db_events", 391095), ("fsize_local", 2151990009), # 2.15GB, avg file size 2.15GB ("fsize_db", 18356331450), # 18.36GB, avg file size 632.98MB ("use_it", False), ("xsection", 0.1889), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 306000 - 306102 -> NNPDF31_nnlo_hessian_pdfas PDF set, expecting 103 weights (counted 103 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/HZJ_HToWW"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "VH"), ("process_name_specific", "WminusH_HToBB_WToLNu"), ("nof_files", 5), ("nof_db_files", 40), ("nof_events", { 'Count' : [ 2382500, ], 'CountWeighted' : [ 2.25698325e+06, 2.25627128e+06, 2.25652134e+06, ], 'CountWeightedLHEWeightScale' : [ 2.27740959e+06, 2.32988781e+06, 2.31580897e+06, 2.12880966e+06, 2.25695462e+06, 2.31992288e+06, 2.02029212e+06, 2.17597397e+06, 2.26518334e+06, ], 'CountWeightedLHEEnvelope' : [ 2.70818688e+06, 1.80617225e+06, ], 'CountWeightedFull' : [ 4.19560836e+05, 4.19597844e+05, 4.19491164e+05, ], 'CountWeightedFullLHEWeightScale' : [ 4.23425125e+05, 4.33182977e+05, 4.30565219e+05, 3.95797051e+05, 4.19546242e+05, 4.31331719e+05, 3.75621156e+05, 4.04566133e+05, 4.21153195e+05, ], 'CountWeightedFullLHEEnvelope' : [ 5.03518719e+05, 3.35810672e+05, ], 'CountWeightedL1PrefireNom' : [ 2.19870975e+06, 2.19811288e+06, 2.19858450e+06, ], 'CountWeightedL1Prefire' : [ 2.19870975e+06, 2.18423656e+06, 2.21281341e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 2.21738097e+06, 2.26879097e+06, 2.25465928e+06, 2.07294706e+06, 2.19866822e+06, 2.26077666e+06, 1.96735731e+06, 2.12029778e+06, 2.20814131e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 2.63774344e+06, 1.75939262e+06, ], 'CountWeightedFullL1PrefireNom' : [ 4.08756109e+05, 4.08749422e+05, 4.08731688e+05, ], 'CountWeightedFullL1Prefire' : [ 4.08756109e+05, 4.06063586e+05, 4.11371328e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 4.12265266e+05, 4.21823320e+05, 4.19195375e+05, 3.85410887e+05, 4.08742914e+05, 4.20334977e+05, 3.65779344e+05, 3.94213984e+05, 4.10547359e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 4.90421422e+05, 3.27113121e+05, ], }), ("nof_tree_events", 2382500), ("nof_db_events", 2382500), ("fsize_local", 11359350023), # 11.36GB, avg file size 2.27GB ("fsize_db", 111033138742), # 111.03GB, avg file size 2.78GB ("use_it", False), ("xsection", 0.1012), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/WminusH_HToBB_WToLNu"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/WplusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_new_pmx_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "VH"), ("process_name_specific", "WplusH_HToBB_WToLNu"), ("nof_files", 5), ("nof_db_files", 74), ("nof_events", { 'Count' : [ 2481200, ], 'CountWeighted' : [ 2.34334350e+06, 2.34329103e+06, 2.34342222e+06, ], 'CountWeightedLHEWeightScale' : [ 2.36236950e+06, 2.42073434e+06, 2.40940622e+06, 2.21249450e+06, 2.34334350e+06, 2.40798950e+06, 2.10171969e+06, 2.25995141e+06, 2.35016884e+06, ], 'CountWeightedLHEEnvelope' : [ 2.81108281e+06, 1.87899103e+06, ], 'CountWeightedFull' : [ 7.00044703e+05, 6.99890375e+05, 6.99997891e+05, ], 'CountWeightedFullLHEWeightScale' : [ 7.05660656e+05, 7.23094875e+05, 7.19712297e+05, 6.60893641e+05, 7.00044703e+05, 7.19296625e+05, 6.27801203e+05, 6.75067695e+05, 7.02017750e+05, ], 'CountWeightedFullLHEEnvelope' : [ 8.39698766e+05, 5.61269430e+05, ], 'CountWeightedL1PrefireNom' : [ 2.27208078e+06, 2.27196881e+06, 2.27220703e+06, ], 'CountWeightedL1Prefire' : [ 2.27208078e+06, 2.25464512e+06, 2.28909541e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 2.28929034e+06, 2.34596362e+06, 2.33432269e+06, 2.14410144e+06, 2.27208078e+06, 2.33532762e+06, 2.03674034e+06, 2.19156403e+06, 2.28004375e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 2.72478475e+06, 1.82164191e+06, ], 'CountWeightedFullL1PrefireNom' : [ 6.78726375e+05, 6.78615578e+05, 6.78730062e+05, ], 'CountWeightedFullL1Prefire' : [ 6.78726375e+05, 6.73521625e+05, 6.83811797e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 6.83832797e+05, 7.00761812e+05, 6.97283328e+05, 6.40462969e+05, 6.78726375e+05, 6.97589359e+05, 6.08391328e+05, 6.54639742e+05, 6.81068859e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 8.13922594e+05, 5.44138133e+05, ], }), ("nof_tree_events", 2481200), ("nof_db_events", 2481200), ("fsize_local", 11996985803), # 12.00GB, avg file size 2.40GB ("fsize_db", 119124102255), # 119.12GB, avg file size 1.61GB ("use_it", False), ("xsection", 0.1595), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/WplusH_HToBB_WToLNu"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/DYJetsToLL_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "EWK"), ("process_name_specific", "DYToLL_0J"), ("nof_files", 178), ("nof_db_files", 1214), ("nof_events", { 'Count' : [ 88230653, ], 'CountWeighted' : [ 7.09049017e+07, 7.09043649e+07, 7.08988543e+07, ], 'CountWeightedLHEWeightScale' : [ 6.85916665e+07, 7.10217240e+07, 7.22918420e+07, 6.79574835e+07, 7.09049017e+07, 7.29761354e+07, 6.74415780e+07, 7.11203156e+07, 7.35560911e+07, ], 'CountWeightedLHEEnvelope' : [ 8.06534242e+07, 6.07436181e+07, ], 'CountWeightedFull' : [ 5.34504160e+11, 5.34573760e+11, 5.34550168e+11, ], 'CountWeightedFullLHEWeightScale' : [ 5.17144109e+11, 5.35451908e+11, 5.45042825e+11, 5.12362605e+11, 5.34504160e+11, 5.50203299e+11, 5.08473099e+11, 5.36208650e+11, 5.54574266e+11, ], 'CountWeightedFullLHEEnvelope' : [ 6.08087388e+11, 4.57972028e+11, ], 'CountWeightedL1PrefireNom' : [ 6.98175176e+07, 6.98162767e+07, 6.98148848e+07, ], 'CountWeightedL1Prefire' : [ 6.98175176e+07, 6.95269031e+07, 7.01008974e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 6.75392308e+07, 6.99290161e+07, 7.11753795e+07, 6.69171400e+07, 6.98175176e+07, 7.18549994e+07, 6.64110475e+07, 7.00335452e+07, 7.24307389e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 7.94146876e+07, 5.98132523e+07, ], 'CountWeightedFullL1PrefireNom' : [ 5.26328227e+11, 5.26369026e+11, 5.26374228e+11, ], 'CountWeightedFullL1Prefire' : [ 5.26328227e+11, 5.24140878e+11, 5.28466016e+11, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 5.09209273e+11, 5.27218038e+11, 5.36625009e+11, 5.04518895e+11, 5.26328227e+11, 5.41750109e+11, 5.00703439e+11, 5.28015521e+11, 5.46089498e+11, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 5.98747196e+11, 4.50957976e+11, ], 'Count_LHENjet0' : [ 75234110, ], 'CountWeighted_LHENjet0' : [ 6.13946212e+07, 6.13983484e+07, 6.13924743e+07, ], 'CountWeightedLHEWeightScale_LHENjet0' : [ 5.90006290e+07, 6.03786692e+07, 6.07681995e+07, 5.93679564e+07, 6.13946212e+07, 6.26573734e+07, 5.96595749e+07, 6.24865397e+07, 6.42086395e+07, ], 'CountWeightedLHEEnvelope_LHENjet0' : [ 6.99604583e+07, 5.22586752e+07, ], 'CountWeightedFull_LHENjet0' : [ 4.62844743e+11, 4.62886242e+11, 4.62877362e+11, ], 'CountWeightedFullLHEWeightScale_LHENjet0' : [ 4.44832889e+11, 4.55216892e+11, 4.58159629e+11, 4.47602383e+11, 4.62844743e+11, 4.72403175e+11, 4.49801061e+11, 4.71123527e+11, 4.84098141e+11, ], 'CountWeightedFullLHEEnvelope_LHENjet0' : [ 5.27464633e+11, 3.94002108e+11, ], 'CountWeightedL1PrefireNom_LHENjet0' : [ 6.04493066e+07, 6.04512117e+07, 6.04495742e+07, ], 'CountWeightedL1Prefire_LHENjet0' : [ 6.04493066e+07, 6.01966879e+07, 6.06962235e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet0' : [ 5.80916907e+07, 5.94441516e+07, 5.98217617e+07, 5.84561550e+07, 6.04493066e+07, 6.16885374e+07, 5.87455287e+07, 6.15280958e+07, 6.32212931e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet0' : [ 6.88800347e+07, 5.14550181e+07, ], 'CountWeightedFullL1PrefireNom_LHENjet0' : [ 4.55728623e+11, 4.55750891e+11, 4.55763501e+11, ], 'CountWeightedFullL1Prefire_LHENjet0' : [ 4.55728623e+11, 4.53826090e+11, 4.57589894e+11, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet0' : [ 4.37979920e+11, 4.48173857e+11, 4.51023793e+11, 4.40727817e+11, 4.55728623e+11, 4.65098559e+11, 4.42909701e+11, 4.63895220e+11, 4.76653936e+11, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet0' : [ 5.19318760e+11, 3.87942945e+11, ], 'Count_LHENjet1' : [ 12996543, ], 'CountWeighted_LHENjet1' : [ 9.50701010e+06, 9.50781231e+06, 9.50671618e+06, ], 'CountWeightedLHEWeightScale_LHENjet1' : [ 9.59108555e+06, 1.06423698e+07, 1.15237260e+07, 8.58955846e+06, 9.50701010e+06, 1.03188973e+07, 7.78204308e+06, 8.63366472e+06, 9.34755244e+06, ], 'CountWeightedLHEEnvelope_LHENjet1' : [ 1.06934841e+07, 8.48479904e+06, ], 'CountWeightedFull_LHENjet1' : [ 7.16791661e+10, 7.16824506e+10, 7.16745844e+10, ], 'CountWeightedFullLHEWeightScale_LHENjet1' : [ 7.23116349e+10, 8.02379691e+10, 8.68826922e+10, 6.47606586e+10, 7.16791661e+10, 7.77989295e+10, 5.86724322e+10, 6.50931473e+10, 7.04755312e+10, ], 'CountWeightedFullLHEEnvelope_LHENjet1' : [ 8.06233311e+10, 6.39708122e+10, ], 'CountWeightedL1PrefireNom_LHENjet1' : [ 9.36581172e+06, 9.36637066e+06, 9.36568090e+06, ], 'CountWeightedL1Prefire_LHENjet1' : [ 9.36581172e+06, 9.32788695e+06, 9.40243850e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet1' : [ 9.44757176e+06, 1.04843358e+07, 1.13536967e+07, 8.46098995e+06, 9.36581172e+06, 1.01665920e+07, 7.66553228e+06, 8.50537798e+06, 9.20954852e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet1' : [ 1.05350340e+07, 8.35811267e+06, ], 'CountWeightedFullL1PrefireNom_LHENjet1' : [ 7.06142819e+10, 7.06163783e+10, 7.06114443e+10, ], 'CountWeightedFullL1Prefire_LHENjet1' : [ 7.06142819e+10, 7.03283104e+10, 7.08904091e+10, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet1' : [ 7.12296174e+10, 7.90464036e+10, 8.56007698e+10, 6.37913195e+10, 7.06142819e+10, 7.66506474e+10, 5.77939991e+10, 6.41259415e+10, 6.94350497e+10, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet1' : [ 7.94286301e+10, 6.30156673e+10, ], }), ("nof_tree_events", 88230653), ("nof_db_events", 88324470), ("fsize_local", 264555152618), # 264.56GB, avg file size 1.49GB ("fsize_db", 3650415551882), # 3.65TB, avg file size 3.01GB ("use_it", False), ("xsection", 4843.6), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Apr19_woPresel_nom_all_hh_multilepton/ntuples/DYToLL_0J"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/DYJetsToLL_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "EWK"), ("process_name_specific", "DYToLL_1J"), ("nof_files", 193), ("nof_db_files", 1494), ("nof_events", { 'Count' : [ 95629091, ], 'CountWeighted' : [ 4.28747490e+07, 4.28717370e+07, 4.28752309e+07, ], 'CountWeightedLHEWeightScale' : [ 4.46655841e+07, 4.58228495e+07, 4.69992190e+07, 4.13797006e+07, 4.28747490e+07, 4.41988477e+07, 3.85155724e+07, 4.02082441e+07, 4.16003826e+07, ], 'CountWeightedLHEEnvelope' : [ 5.20511263e+07, 3.47307934e+07, ], 'CountWeightedFull' : [ 4.45797940e+11, 4.45790155e+11, 4.45864679e+11, ], 'CountWeightedFullLHEWeightScale' : [ 4.64441515e+11, 4.76475549e+11, 4.88707186e+11, 4.30273957e+11, 4.45797940e+11, 4.59588334e+11, 4.00492231e+11, 4.18093408e+11, 4.32569300e+11, ], 'CountWeightedFullLHEEnvelope' : [ 5.41237974e+11, 3.61137527e+11, ], 'CountWeightedL1PrefireNom' : [ 4.17348626e+07, 4.17311628e+07, 4.17365852e+07, ], 'CountWeightedL1Prefire' : [ 4.17348626e+07, 4.14516884e+07, 4.20118629e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 4.34800952e+07, 4.46085955e+07, 4.57532697e+07, 4.02754813e+07, 4.17348626e+07, 4.30262769e+07, 3.74835037e+07, 3.91368984e+07, 4.04958741e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 5.06685768e+07, 3.38060511e+07, ], 'CountWeightedFullL1PrefireNom' : [ 4.33953638e+11, 4.33931546e+11, 4.34010150e+11, ], 'CountWeightedFullL1Prefire' : [ 4.33953638e+11, 4.31008039e+11, 4.36831683e+11, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 4.52114676e+11, 4.63849470e+11, 4.75751598e+11, 4.18792220e+11, 4.33953638e+11, 4.47395683e+11, 3.89760632e+11, 4.06953186e+11, 4.21084330e+11, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 5.26862151e+11, 3.51521903e+11, ], 'Count_LHENjet1' : [ 67914302, ], 'CountWeighted_LHENjet1' : [ 4.28766055e+07, 4.28734193e+07, 4.28775150e+07, ], 'CountWeightedLHEWeightScale_LHENjet1' : [ 4.41859741e+07, 4.56317757e+07, 4.70898664e+07, 4.11556250e+07, 4.28766055e+07, 4.44200328e+07, 3.84202355e+07, 4.02953531e+07, 4.18631410e+07, ], 'CountWeightedLHEEnvelope_LHENjet1' : [ 5.17724926e+07, 3.48646179e+07, ], 'CountWeightedFull_LHENjet1' : [ 4.45817207e+11, 4.45807704e+11, 4.45888530e+11, ], 'CountWeightedFullLHEWeightScale_LHENjet1' : [ 4.59454479e+11, 4.74488513e+11, 4.89649753e+11, 4.27943864e+11, 4.45817207e+11, 4.61888273e+11, 3.99500940e+11, 4.18999189e+11, 4.35301598e+11, ], 'CountWeightedFullLHEEnvelope_LHENjet1' : [ 5.38340483e+11, 3.62529035e+11, ], 'CountWeightedL1PrefireNom_LHENjet1' : [ 4.17121103e+07, 4.17081449e+07, 4.17143777e+07, ], 'CountWeightedL1Prefire_LHENjet1' : [ 4.17121103e+07, 4.14245921e+07, 4.19938692e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet1' : [ 4.29815194e+07, 4.43905645e+07, 4.58096916e+07, 4.00330573e+07, 4.17121103e+07, 4.32171870e+07, 3.73713554e+07, 3.92021553e+07, 4.07322248e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet1' : [ 5.03651400e+07, 3.39168320e+07, ], 'CountWeightedFullL1PrefireNom_LHENjet1' : [ 4.33717075e+11, 4.33692344e+11, 4.33779333e+11, ], 'CountWeightedFullL1Prefire_LHENjet1' : [ 4.33717075e+11, 4.30726262e+11, 4.36644617e+11, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet1' : [ 4.46930500e+11, 4.61582213e+11, 4.76338304e+11, 4.16271340e+11, 4.33717075e+11, 4.49380822e+11, 3.88594556e+11, 4.07631725e+11, 4.23542072e+11, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet1' : [ 5.23706787e+11, 3.52673785e+11, ], 'Count_LHENjet2' : [ 27714789, ], 'CountWeighted_LHENjet2' : [ -1.85652274e+03, -1.68565179e+03, -2.28720092e+03, ], 'CountWeightedLHEWeightScale_LHENjet2' : [ 4.79608728e+05, 1.91086204e+05, -9.06402488e+04, 2.24083286e+05, -1.85652274e+03, -2.21187251e+05, 9.53349835e+04, -8.71127450e+04, -2.62765386e+05, ], 'CountWeightedLHEEnvelope_LHENjet2' : [ 2.78645519e+05, -1.33825392e+05, ], 'CountWeightedFull_LHENjet2' : [ -1.93042022e+07, -1.75281839e+07, -2.37826283e+07, ], 'CountWeightedFullLHEWeightScale_LHENjet2' : [ 4.98706594e+09, 1.98695192e+09, -9.42495366e+08, 2.33006184e+09, -1.93042022e+07, -2.29994829e+09, 9.91312053e+08, -9.05815300e+08, -2.73228650e+09, ], 'CountWeightedFullLHEEnvelope_LHENjet2' : [ 2.89741067e+09, -1.39154212e+09, ], 'CountWeightedL1PrefireNom_LHENjet2' : [ 2.27431960e+04, 2.30119107e+04, 2.22080874e+04, ], 'CountWeightedL1Prefire_LHENjet2' : [ 2.27431960e+04, 2.70921986e+04, 1.79871502e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet2' : [ 4.98573240e+05, 2.18041282e+05, -5.64156731e+04, 2.42434675e+05, 2.27431960e+04, -1.90911667e+05, 1.12142047e+05, -6.52539323e+04, -2.36362962e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet2' : [ 3.03450699e+05, -1.10776976e+05, ], 'CountWeightedFullL1PrefireNom_LHENjet2' : [ 2.36488382e+08, 2.39282165e+08, 2.30923950e+08, ], 'CountWeightedFullL1Prefire_LHENjet2' : [ 2.36488382e+08, 2.81710369e+08, 1.87034215e+08, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet2' : [ 5.18426335e+09, 2.26723612e+09, -5.86621689e+08, 2.52088310e+09, 2.36488382e+08, -1.98513702e+09, 1.16607507e+09, -6.78523272e+08, -2.45774852e+09, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet2' : [ 3.15534026e+09, -1.15188036e+09, ], }), ("nof_tree_events", 95629091), ("nof_db_events", 95629091), ("fsize_local", 382654082988), # 382.65GB, avg file size 1.98GB ("fsize_db", 4307552110393), # 4.31TB, avg file size 2.88GB ("use_it", False), ("xsection", 897.8), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Apr19_woPresel_nom_all_hh_multilepton/ntuples/DYToLL_1J"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/DYJetsToLL_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "EWK"), ("process_name_specific", "DYToLL_2J"), ("nof_files", 110), ("nof_db_files", 869), ("nof_events", { 'Count' : [ 54392766, ], 'CountWeighted' : [ 1.63434137e+07, 1.63449182e+07, 1.63427885e+07, ], 'CountWeightedLHEWeightScale' : [ 1.75603369e+07, 1.76974014e+07, 1.79616488e+07, 1.61700197e+07, 1.63434137e+07, 1.65386093e+07, 1.46036770e+07, 1.47821060e+07, 1.49334008e+07, ], 'CountWeightedLHEEnvelope' : [ 2.04310684e+07, 1.26948371e+07, ], 'CountWeightedFull' : [ 1.41859275e+11, 1.41875046e+11, 1.41857845e+11, ], 'CountWeightedFullLHEWeightScale' : [ 1.52422071e+11, 1.53611683e+11, 1.55905351e+11, 1.40354170e+11, 1.41859275e+11, 1.43553469e+11, 1.26758536e+11, 1.28307174e+11, 1.29620464e+11, ], 'CountWeightedFullLHEEnvelope' : [ 1.77339734e+11, 1.10189913e+11, ], 'CountWeightedL1PrefireNom' : [ 1.56693773e+07, 1.56696375e+07, 1.56696021e+07, ], 'CountWeightedL1Prefire' : [ 1.56693773e+07, 1.55079102e+07, 1.58284321e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 1.68343344e+07, 1.69696443e+07, 1.72262029e+07, 1.54962828e+07, 1.56693773e+07, 1.58611145e+07, 1.39910328e+07, 1.41694625e+07, 1.43203825e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 1.95916955e+07, 1.21692295e+07, ], 'CountWeightedFullL1PrefireNom' : [ 1.36008494e+11, 1.36012321e+11, 1.36012355e+11, ], 'CountWeightedFullL1Prefire' : [ 1.36008494e+11, 1.34606937e+11, 1.37389716e+11, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 1.46120411e+11, 1.47294796e+11, 1.49521754e+11, 1.34506208e+11, 1.36008494e+11, 1.37672890e+11, 1.21440827e+11, 1.22989518e+11, 1.24299485e+11, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 1.70053990e+11, 1.05627669e+11, ], 'Count_LHENjet2' : [ 34734083, ], 'CountWeighted_LHENjet2' : [ 1.88270336e+07, 1.88288749e+07, 1.88263695e+07, ], 'CountWeightedLHEWeightScale_LHENjet2' : [ 2.09124517e+07, 2.11612481e+07, 2.14868476e+07, 1.85790060e+07, 1.88270336e+07, 1.90623886e+07, 1.63935855e+07, 1.66248707e+07, 1.68034316e+07, ], 'CountWeightedLHEEnvelope_LHENjet2' : [ 2.39132316e+07, 1.45208363e+07, ], 'CountWeightedFull_LHENjet2' : [ 1.63424491e+11, 1.63438382e+11, 1.63420330e+11, ], 'CountWeightedFullLHEWeightScale_LHENjet2' : [ 1.81518096e+11, 1.83677539e+11, 1.86503678e+11, 1.61263934e+11, 1.63424491e+11, 1.65459652e+11, 1.42294746e+11, 1.44302219e+11, 1.45852148e+11, ], 'CountWeightedFullLHEEnvelope_LHENjet2' : [ 2.07564569e+11, 1.26039402e+11, ], 'CountWeightedL1PrefireNom_LHENjet2' : [ 1.80641125e+07, 1.80644431e+07, 1.80642964e+07, ], 'CountWeightedL1Prefire_LHENjet2' : [ 1.80641125e+07, 1.78810048e+07, 1.82444415e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet2' : [ 2.00659707e+07, 2.03108633e+07, 2.06281737e+07, 1.78176260e+07, 1.80641125e+07, 1.82956375e+07, 1.57152285e+07, 1.59456140e+07, 1.61236935e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet2' : [ 2.29500718e+07, 1.39295778e+07, ], 'CountWeightedFullL1PrefireNom_LHENjet2' : [ 1.56797442e+11, 1.56801084e+11, 1.56801076e+11, ], 'CountWeightedFullL1Prefire_LHENjet2' : [ 1.56797442e+11, 1.55207451e+11, 1.58363688e+11, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet2' : [ 1.74170678e+11, 1.76296317e+11, 1.79050525e+11, 1.54655216e+11, 1.56797442e+11, 1.58804339e+11, 1.36406627e+11, 1.38406356e+11, 1.39952053e+11, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet2' : [ 1.99204431e+11, 1.20907300e+11, ], 'Count_LHENjet3' : [ 19658683, ], 'CountWeighted_LHENjet3' : [ -2.48393560e+06, -2.48386529e+06, -2.48401945e+06, ], 'CountWeightedLHEWeightScale_LHENjet3' : [ -3.35212261e+06, -3.46384751e+06, -3.52519699e+06, -2.40898922e+06, -2.48393560e+06, -2.52378354e+06, -1.78990733e+06, -1.84276410e+06, -1.87003052e+06, ], 'CountWeightedLHEEnvelope_LHENjet3' : [ -3.48217098e+06, -1.82599934e+06, ], 'CountWeightedFull_LHENjet3' : [ -2.15603344e+10, -2.15594780e+10, -2.15611529e+10, ], 'CountWeightedFullLHEWeightScale_LHENjet3' : [ -2.90960914e+10, -3.00658582e+10, -3.05983698e+10, -2.09097919e+10, -2.15603344e+10, -2.19061989e+10, -1.55362195e+10, -1.59950144e+10, -1.62316826e+10, ], 'CountWeightedFullLHEEnvelope_LHENjet3' : [ -3.02249035e+10, -1.58494971e+10, ], 'CountWeightedL1PrefireNom_LHENjet3' : [ -2.39494071e+06, -2.39488630e+06, -2.39499631e+06, ], 'CountWeightedL1Prefire_LHENjet3' : [ -2.39494071e+06, -2.37329516e+06, -2.41622427e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet3' : [ -3.23163847e+06, -3.34121894e+06, -3.40197272e+06, -2.32134381e+06, -2.39494071e+06, -2.43452601e+06, -1.72419234e+06, -1.77615262e+06, -1.80331040e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet3' : [ -3.35838221e+06, -1.76034555e+06, ], 'CountWeightedFullL1PrefireNom_LHENjet3' : [ -2.07878630e+10, -2.07872395e+10, -2.07884268e+10, ], 'CountWeightedFullL1Prefire_LHENjet3' : [ -2.07878630e+10, -2.05999820e+10, -2.09726088e+10, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet3' : [ -2.80503092e+10, -2.90014524e+10, -2.95288005e+10, -2.01490406e+10, -2.07878630e+10, -2.11314447e+10, -1.49658238e+10, -1.54168332e+10, -1.56525547e+10, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet3' : [ -2.91504309e+10, -1.52796262e+10, ], }), ("nof_tree_events", 54392766), ("nof_db_events", 54592285), ("fsize_local", 289663669962), # 289.66GB, avg file size 2.63GB ("fsize_db", 2476615739180), # 2.48TB, avg file size 2.85GB ("use_it", False), ("xsection", 335.8), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 306000 - 306102 -> NNPDF31_nnlo_hessian_pdfas PDF set, expecting 103 weights (counted 103 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Apr19_woPresel_nom_all_hh_multilepton/ntuples/DYToLL_2J"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/DYJetsToLL_M-10to50_TuneCP5_13TeV-madgraphMLM-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "EWK"), ("process_name_specific", "DYJetsToLL_M-10to50"), ("nof_files", 80), ("nof_db_files", 477), ("nof_events", { 'Count' : [ 39521230, ], 'CountWeighted' : [ 3.94851556e+07, 3.94933008e+07, 3.94858749e+07, ], 'CountWeightedLHEWeightScale' : [ 2.65918969e+07, 3.96644111e+07, 5.46321084e+07, 2.64362956e+07, 3.94851556e+07, 5.44331126e+07, 2.63194009e+07, 3.93506990e+07, 5.42835007e+07, ], 'CountWeightedLHEEnvelope' : [ 5.45229131e+07, 2.63867885e+07, ], 'CountWeightedFull' : [ 3.94851556e+07, 3.94933008e+07, 3.94858749e+07, ], 'CountWeightedFullLHEWeightScale' : [ 2.65918969e+07, 3.96644111e+07, 5.46321084e+07, 2.64362956e+07, 3.94851556e+07, 5.44331126e+07, 2.63194009e+07, 3.93506990e+07, 5.42835007e+07, ], 'CountWeightedFullLHEEnvelope' : [ 5.45229131e+07, 2.63867885e+07, ], 'CountWeightedL1PrefireNom' : [ 3.94541373e+07, 3.94611842e+07, 3.94555981e+07, ], 'CountWeightedL1Prefire' : [ 3.94541373e+07, 3.94429373e+07, 3.94633702e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 2.65658099e+07, 3.96319501e+07, 5.45925109e+07, 2.64115745e+07, 3.94541373e+07, 5.43949548e+07, 2.62957129e+07, 3.93207162e+07, 5.42464357e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 5.44831708e+07, 2.63631959e+07, ], 'CountWeightedFullL1PrefireNom' : [ 3.94541373e+07, 3.94611842e+07, 3.94555981e+07, ], 'CountWeightedFullL1Prefire' : [ 3.94541373e+07, 3.94429373e+07, 3.94633702e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 2.65658099e+07, 3.96319501e+07, 5.45925109e+07, 2.64115745e+07, 3.94541373e+07, 5.43949548e+07, 2.62957129e+07, 3.93207162e+07, 5.42464357e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 5.44831708e+07, 2.63631959e+07, ], 'Count_LHENjet0' : [ 37262596, ], 'CountWeighted_LHENjet0' : [ 3.72282182e+07, 3.72355012e+07, 3.72285656e+07, ], 'CountWeightedLHEWeightScale_LHENjet0' : [ 2.45741225e+07, 3.72282182e+07, 5.18211475e+07, 2.45741225e+07, 3.72282182e+07, 5.18211475e+07, 2.45741225e+07, 3.72282182e+07, 5.18211475e+07, ], 'CountWeightedLHEEnvelope_LHENjet0' : [ 5.18216012e+07, 2.45736804e+07, ], 'CountWeightedFull_LHENjet0' : [ 3.72282182e+07, 3.72355012e+07, 3.72285656e+07, ], 'CountWeightedFullLHEWeightScale_LHENjet0' : [ 2.45741225e+07, 3.72282182e+07, 5.18211475e+07, 2.45741225e+07, 3.72282182e+07, 5.18211475e+07, 2.45741225e+07, 3.72282182e+07, 5.18211475e+07, ], 'CountWeightedFullLHEEnvelope_LHENjet0' : [ 5.18216012e+07, 2.45736804e+07, ], 'CountWeightedL1PrefireNom_LHENjet0' : [ 3.72119844e+07, 3.72183323e+07, 3.72130327e+07, ], 'CountWeightedL1Prefire_LHENjet0' : [ 3.72119844e+07, 3.72052237e+07, 3.72171456e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet0' : [ 2.45631413e+07, 3.72119844e+07, 5.17987149e+07, 2.45631413e+07, 3.72119844e+07, 5.17987149e+07, 2.45631413e+07, 3.72119844e+07, 5.17987149e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet0' : [ 5.17991685e+07, 2.45626999e+07, ], 'CountWeightedFullL1PrefireNom_LHENjet0' : [ 3.72119844e+07, 3.72183323e+07, 3.72130327e+07, ], 'CountWeightedFullL1Prefire_LHENjet0' : [ 3.72119844e+07, 3.72052237e+07, 3.72171456e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet0' : [ 2.45631413e+07, 3.72119844e+07, 5.17987149e+07, 2.45631413e+07, 3.72119844e+07, 5.17987149e+07, 2.45631413e+07, 3.72119844e+07, 5.17987149e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet0' : [ 5.17991685e+07, 2.45626999e+07, ], 'Count_LHENjet1' : [ 1278666, ], 'CountWeighted_LHENjet1' : [ 1.27856432e+06, 1.27855797e+06, 1.27848966e+06, ], 'CountWeightedLHEWeightScale_LHENjet1' : [ 1.04271683e+06, 1.32792162e+06, 1.59506799e+06, 1.00180364e+06, 1.27856432e+06, 1.53795096e+06, 9.69322455e+05, 1.23941383e+06, 1.49267833e+06, ], 'CountWeightedLHEEnvelope_LHENjet1' : [ 1.54221478e+06, 1.00057708e+06, ], 'CountWeightedFull_LHENjet1' : [ 1.27856432e+06, 1.27855797e+06, 1.27848966e+06, ], 'CountWeightedFullLHEWeightScale_LHENjet1' : [ 1.04271683e+06, 1.32792162e+06, 1.59506799e+06, 1.00180364e+06, 1.27856432e+06, 1.53795096e+06, 9.69322455e+05, 1.23941383e+06, 1.49267833e+06, ], 'CountWeightedFullLHEEnvelope_LHENjet1' : [ 1.54221478e+06, 1.00057708e+06, ], 'CountWeightedL1PrefireNom_LHENjet1' : [ 1.27341095e+06, 1.27337725e+06, 1.27336398e+06, ], 'CountWeightedL1Prefire_LHENjet1' : [ 1.27341095e+06, 1.27169857e+06, 1.27492586e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet1' : [ 1.03816702e+06, 1.32257770e+06, 1.58902002e+06, 9.97422167e+05, 1.27341095e+06, 1.53211307e+06, 9.65076887e+05, 1.23441427e+06, 1.48700962e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet1' : [ 1.53632047e+06, 9.96222561e+05, ], 'CountWeightedFullL1PrefireNom_LHENjet1' : [ 1.27341095e+06, 1.27337725e+06, 1.27336398e+06, ], 'CountWeightedFullL1Prefire_LHENjet1' : [ 1.27341095e+06, 1.27169857e+06, 1.27492586e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet1' : [ 1.03816702e+06, 1.32257770e+06, 1.58902002e+06, 9.97422167e+05, 1.27341095e+06, 1.53211307e+06, 9.65076887e+05, 1.23441427e+06, 1.48700962e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet1' : [ 1.53632047e+06, 9.96222561e+05, ], 'Count_LHENjet2' : [ 695650, ], 'CountWeighted_LHENjet2' : [ 6.95213007e+05, 6.95227686e+05, 6.95221577e+05, ], 'CountWeightedLHEWeightScale_LHENjet2' : [ 6.63147301e+05, 7.80724163e+05, 8.78302289e+05, 5.90680130e+05, 6.95213007e+05, 7.81881208e+05, 5.36895354e+05, 6.31843999e+05, 7.10506069e+05, ], 'CountWeightedLHEEnvelope_LHENjet2' : [ 8.19940410e+05, 5.73671730e+05, ], 'CountWeightedFull_LHENjet2' : [ 6.95213007e+05, 6.95227686e+05, 6.95221577e+05, ], 'CountWeightedFullLHEWeightScale_LHENjet2' : [ 6.63147301e+05, 7.80724163e+05, 8.78302289e+05, 5.90680130e+05, 6.95213007e+05, 7.81881208e+05, 5.36895354e+05, 6.31843999e+05, 7.10506069e+05, ], 'CountWeightedFullLHEEnvelope_LHENjet2' : [ 8.19940410e+05, 5.73671730e+05, ], 'CountWeightedL1PrefireNom_LHENjet2' : [ 6.90797224e+05, 6.90794186e+05, 6.90819822e+05, ], 'CountWeightedL1Prefire_LHENjet2' : [ 6.90797224e+05, 6.89440772e+05, 6.92013799e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet2' : [ 6.58719311e+05, 7.75866285e+05, 8.73115798e+05, 5.86656325e+05, 6.90797224e+05, 7.77166224e+05, 5.33181335e+05, 6.27766726e+05, 7.06151451e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet2' : [ 8.14897270e+05, 5.69850393e+05, ], 'CountWeightedFullL1PrefireNom_LHENjet2' : [ 6.90797224e+05, 6.90794186e+05, 6.90819822e+05, ], 'CountWeightedFullL1Prefire_LHENjet2' : [ 6.90797224e+05, 6.89440772e+05, 6.92013799e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet2' : [ 6.58719311e+05, 7.75866285e+05, 8.73115798e+05, 5.86656325e+05, 6.90797224e+05, 7.77166224e+05, 5.33181335e+05, 6.27766726e+05, 7.06151451e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet2' : [ 8.14897270e+05, 5.69850393e+05, ], 'Count_LHENjet3' : [ 197435, ], 'CountWeighted_LHENjet3' : [ 1.97092765e+05, 1.97084524e+05, 1.97137956e+05, ], 'CountWeightedLHEWeightScale_LHENjet3' : [ 2.09832450e+05, 2.26295197e+05, 2.37364599e+05, 1.82736442e+05, 1.97092765e+05, 2.06736356e+05, 1.62985641e+05, 1.75820210e+05, 1.84436479e+05, ], 'CountWeightedLHEEnvelope_LHENjet3' : [ 2.32811681e+05, 1.66865027e+05, ], 'CountWeightedFull_LHENjet3' : [ 1.97092765e+05, 1.97084524e+05, 1.97137956e+05, ], 'CountWeightedFullLHEWeightScale_LHENjet3' : [ 2.09832450e+05, 2.26295197e+05, 2.37364599e+05, 1.82736442e+05, 1.97092765e+05, 2.06736356e+05, 1.62985641e+05, 1.75820210e+05, 1.84436479e+05, ], 'CountWeightedFullLHEEnvelope_LHENjet3' : [ 2.32811681e+05, 1.66865027e+05, ], 'CountWeightedL1PrefireNom_LHENjet3' : [ 1.94398583e+05, 1.94381184e+05, 1.94450251e+05, ], 'CountWeightedL1Prefire_LHENjet3' : [ 1.94398583e+05, 1.93657206e+05, 1.95091146e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet3' : [ 2.06855925e+05, 2.23241987e+05, 2.34282364e+05, 1.80110407e+05, 1.94398583e+05, 2.04016357e+05, 1.60622661e+05, 1.73395313e+05, 1.81987960e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet3' : [ 2.29655426e+05, 1.64549180e+05, ], 'CountWeightedFullL1PrefireNom_LHENjet3' : [ 1.94398583e+05, 1.94381184e+05, 1.94450251e+05, ], 'CountWeightedFullL1Prefire_LHENjet3' : [ 1.94398583e+05, 1.93657206e+05, 1.95091146e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet3' : [ 2.06855925e+05, 2.23241987e+05, 2.34282364e+05, 1.80110407e+05, 1.94398583e+05, 2.04016357e+05, 1.60622661e+05, 1.73395313e+05, 1.81987960e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet3' : [ 2.29655426e+05, 1.64549180e+05, ], 'Count_LHENjet4' : [ 86883, ], 'CountWeighted_LHENjet4' : [ 8.66581625e+04, 8.66902041e+04, 8.66244777e+04, ], 'CountWeightedLHEWeightScale_LHENjet4' : [ 1.02087951e+05, 1.01719121e+05, 1.00189922e+05, 8.69611116e+04, 8.66581625e+04, 8.53613303e+04, 7.60848097e+04, 7.58339788e+04, 7.47078608e+04, ], 'CountWeightedLHEEnvelope_LHENjet4' : [ 1.06295201e+05, 7.20038819e+04, ], 'CountWeightedFull_LHENjet4' : [ 8.66581625e+04, 8.66902041e+04, 8.66244777e+04, ], 'CountWeightedFullLHEWeightScale_LHENjet4' : [ 1.02087951e+05, 1.01719121e+05, 1.00189922e+05, 8.69611116e+04, 8.66581625e+04, 8.53613303e+04, 7.60848097e+04, 7.58339788e+04, 7.47078608e+04, ], 'CountWeightedFullLHEEnvelope_LHENjet4' : [ 1.06295201e+05, 7.20038819e+04, ], 'CountWeightedL1PrefireNom_LHENjet4' : [ 8.40797673e+04, 8.41018252e+04, 8.40580535e+04, ], 'CountWeightedL1Prefire_LHENjet4' : [ 8.40797673e+04, 8.34353282e+04, 8.47012203e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet4' : [ 9.89372184e+04, 9.87206382e+04, 9.73422393e+04, 8.42524451e+04, 8.40797673e+04, 8.29121648e+04, 7.37024462e+04, 7.35655859e+04, 7.25527523e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet4' : [ 1.03085230e+05, 6.98848161e+04, ], 'CountWeightedFullL1PrefireNom_LHENjet4' : [ 8.40797673e+04, 8.41018252e+04, 8.40580535e+04, ], 'CountWeightedFullL1Prefire_LHENjet4' : [ 8.40797673e+04, 8.34353282e+04, 8.47012203e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet4' : [ 9.89372184e+04, 9.87206382e+04, 9.73422393e+04, 8.42524451e+04, 8.40797673e+04, 8.29121648e+04, 7.37024462e+04, 7.35655859e+04, 7.25527523e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet4' : [ 1.03085230e+05, 6.98848161e+04, ], }), ("nof_tree_events", 39521230), ("nof_db_events", 39521230), ("fsize_local", 76227577977), # 76.23GB, avg file size 952.84MB ("fsize_db", 1379092540630), # 1.38TB, avg file size 2.89GB ("use_it", True), ("xsection", 18610.0), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Apr19_woPresel_nom_all_hh_multilepton/ntuples/DYJetsToLL_M-10to50"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/DYJetsToLL_M-10to50_TuneCP5_13TeV-madgraphMLM-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14_ext1-v2/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "EWK"), ("process_name_specific", "DYJetsToLL_M-10to50_ext1"), ("nof_files", 80), ("nof_db_files", 480), ("nof_events", { 'Count' : [ 39536839, ], 'CountWeighted' : [ 3.95055819e+07, 3.95092082e+07, 3.95085581e+07, ], 'CountWeightedLHEWeightScale' : [ 2.66031311e+07, 3.96848352e+07, 5.46524121e+07, 2.64474006e+07, 3.95055819e+07, 5.44533705e+07, 2.63304687e+07, 3.93709231e+07, 5.43038035e+07, ], 'CountWeightedLHEEnvelope' : [ 5.45437375e+07, 2.63974770e+07, ], 'CountWeightedFull' : [ 3.95055819e+07, 3.95092082e+07, 3.95085581e+07, ], 'CountWeightedFullLHEWeightScale' : [ 2.66031311e+07, 3.96848352e+07, 5.46524121e+07, 2.64474006e+07, 3.95055819e+07, 5.44533705e+07, 2.63304687e+07, 3.93709231e+07, 5.43038035e+07, ], 'CountWeightedFullLHEEnvelope' : [ 5.45437375e+07, 2.63974770e+07, ], 'CountWeightedL1PrefireNom' : [ 3.94742480e+07, 3.94770766e+07, 3.94779954e+07, ], 'CountWeightedL1Prefire' : [ 3.94742480e+07, 3.94630408e+07, 3.94834368e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 2.65770054e+07, 3.96520869e+07, 5.46128316e+07, 2.64226475e+07, 3.94742480e+07, 5.44152425e+07, 2.63067576e+07, 3.93406824e+07, 5.42667758e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 5.45040048e+07, 2.63738675e+07, ], 'CountWeightedFullL1PrefireNom' : [ 3.94742480e+07, 3.94770766e+07, 3.94779954e+07, ], 'CountWeightedFullL1Prefire' : [ 3.94742480e+07, 3.94630408e+07, 3.94834368e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 2.65770054e+07, 3.96520869e+07, 5.46128316e+07, 2.64226475e+07, 3.94742480e+07, 5.44152425e+07, 2.63067576e+07, 3.93406824e+07, 5.42667758e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 5.45040048e+07, 2.63738675e+07, ], 'Count_LHENjet0' : [ 37279439, ], 'CountWeighted_LHENjet0' : [ 3.72499205e+07, 3.72531888e+07, 3.72523959e+07, ], 'CountWeightedLHEWeightScale_LHENjet0' : [ 2.45867364e+07, 3.72499205e+07, 5.18447613e+07, 2.45867364e+07, 3.72499205e+07, 5.18447613e+07, 2.45867364e+07, 3.72499205e+07, 5.18447613e+07, ], 'CountWeightedLHEEnvelope_LHENjet0' : [ 5.18452491e+07, 2.45862618e+07, ], 'CountWeightedFull_LHENjet0' : [ 3.72499205e+07, 3.72531888e+07, 3.72523959e+07, ], 'CountWeightedFullLHEWeightScale_LHENjet0' : [ 2.45867364e+07, 3.72499205e+07, 5.18447613e+07, 2.45867364e+07, 3.72499205e+07, 5.18447613e+07, 2.45867364e+07, 3.72499205e+07, 5.18447613e+07, ], 'CountWeightedFullLHEEnvelope_LHENjet0' : [ 5.18452491e+07, 2.45862618e+07, ], 'CountWeightedL1PrefireNom_LHENjet0' : [ 3.72335697e+07, 3.72360962e+07, 3.72367840e+07, ], 'CountWeightedL1Prefire_LHENjet0' : [ 3.72335697e+07, 3.72268230e+07, 3.72386905e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet0' : [ 2.45758076e+07, 3.72335697e+07, 5.18224397e+07, 2.45758076e+07, 3.72335697e+07, 5.18224397e+07, 2.45758076e+07, 3.72335697e+07, 5.18224397e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet0' : [ 5.18229271e+07, 2.45753328e+07, ], 'CountWeightedFullL1PrefireNom_LHENjet0' : [ 3.72335697e+07, 3.72360962e+07, 3.72367840e+07, ], 'CountWeightedFullL1Prefire_LHENjet0' : [ 3.72335697e+07, 3.72268230e+07, 3.72386905e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet0' : [ 2.45758076e+07, 3.72335697e+07, 5.18224397e+07, 2.45758076e+07, 3.72335697e+07, 5.18224397e+07, 2.45758076e+07, 3.72335697e+07, 5.18224397e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet0' : [ 5.18229271e+07, 2.45753328e+07, ], 'Count_LHENjet1' : [ 1275463, ], 'CountWeighted_LHENjet1' : [ 1.27442879e+06, 1.27458545e+06, 1.27440385e+06, ], 'CountWeightedLHEWeightScale_LHENjet1' : [ 1.03935855e+06, 1.32355717e+06, 1.58973400e+06, 9.98636885e+05, 1.27442879e+06, 1.53288534e+06, 9.66308350e+05, 1.23546494e+06, 1.48782559e+06, ], 'CountWeightedLHEEnvelope_LHENjet1' : [ 1.53709815e+06, 9.97424919e+05, ], 'CountWeightedFull_LHENjet1' : [ 1.27442879e+06, 1.27458545e+06, 1.27440385e+06, ], 'CountWeightedFullLHEWeightScale_LHENjet1' : [ 1.03935855e+06, 1.32355717e+06, 1.58973400e+06, 9.98636885e+05, 1.27442879e+06, 1.53288534e+06, 9.66308350e+05, 1.23546494e+06, 1.48782559e+06, ], 'CountWeightedFullLHEEnvelope_LHENjet1' : [ 1.53709815e+06, 9.97424919e+05, ], 'CountWeightedL1PrefireNom_LHENjet1' : [ 1.26931192e+06, 1.26943303e+06, 1.26931937e+06, ], 'CountWeightedL1Prefire_LHENjet1' : [ 1.26931192e+06, 1.26760629e+06, 1.27081943e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet1' : [ 1.03484913e+06, 1.31825199e+06, 1.58372036e+06, 9.94293142e+05, 1.26931192e+06, 1.52707933e+06, 9.62098225e+05, 1.23049921e+06, 1.48218674e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet1' : [ 1.53123896e+06, 9.93106050e+05, ], 'CountWeightedFullL1PrefireNom_LHENjet1' : [ 1.26931192e+06, 1.26943303e+06, 1.26931937e+06, ], 'CountWeightedFullL1Prefire_LHENjet1' : [ 1.26931192e+06, 1.26760629e+06, 1.27081943e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet1' : [ 1.03484913e+06, 1.31825199e+06, 1.58372036e+06, 9.94293142e+05, 1.26931192e+06, 1.52707933e+06, 9.62098225e+05, 1.23049921e+06, 1.48218674e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet1' : [ 1.53123896e+06, 9.93106050e+05, ], 'Count_LHENjet2' : [ 695946, ], 'CountWeighted_LHENjet2' : [ 6.95370102e+05, 6.95269851e+05, 6.95490322e+05, ], 'CountWeightedLHEWeightScale_LHENjet2' : [ 6.63173884e+05, 7.80859660e+05, 8.78511160e+05, 5.90721866e+05, 6.95370102e+05, 7.82118782e+05, 5.36974290e+05, 6.32044690e+05, 7.10794889e+05, ], 'CountWeightedLHEEnvelope_LHENjet2' : [ 8.20236852e+05, 5.73693834e+05, ], 'CountWeightedFull_LHENjet2' : [ 6.95370102e+05, 6.95269851e+05, 6.95490322e+05, ], 'CountWeightedFullLHEWeightScale_LHENjet2' : [ 6.63173884e+05, 7.80859660e+05, 8.78511160e+05, 5.90721866e+05, 6.95370102e+05, 7.82118782e+05, 5.36974290e+05, 6.32044690e+05, 7.10794889e+05, ], 'CountWeightedFullLHEEnvelope_LHENjet2' : [ 8.20236852e+05, 5.73693834e+05, ], 'CountWeightedL1PrefireNom_LHENjet2' : [ 6.90949395e+05, 6.90831414e+05, 6.91086082e+05, ], 'CountWeightedL1Prefire_LHENjet2' : [ 6.90949395e+05, 6.89593166e+05, 6.92164286e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet2' : [ 6.58741624e+05, 7.75998382e+05, 8.73321988e+05, 5.86692609e+05, 6.90949395e+05, 7.77399625e+05, 5.33253836e+05, 6.27961515e+05, 7.06434933e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet2' : [ 8.15189866e+05, 5.69867064e+05, ], 'CountWeightedFullL1PrefireNom_LHENjet2' : [ 6.90949395e+05, 6.90831414e+05, 6.91086082e+05, ], 'CountWeightedFullL1Prefire_LHENjet2' : [ 6.90949395e+05, 6.89593166e+05, 6.92164286e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet2' : [ 6.58741624e+05, 7.75998382e+05, 8.73321988e+05, 5.86692609e+05, 6.90949395e+05, 7.77399625e+05, 5.33253836e+05, 6.27961515e+05, 7.06434933e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet2' : [ 8.15189866e+05, 5.69867064e+05, ], 'Count_LHENjet3' : [ 197921, ], 'CountWeighted_LHENjet3' : [ 1.97530402e+05, 1.97587236e+05, 1.97482723e+05, ], 'CountWeightedLHEWeightScale_LHENjet3' : [ 2.10448915e+05, 2.26897637e+05, 2.37963657e+05, 1.83193869e+05, 1.97530402e+05, 2.07166059e+05, 1.63340695e+05, 1.76153529e+05, 1.84760126e+05, ], 'CountWeightedLHEEnvelope_LHENjet3' : [ 2.33463951e+05, 1.67174155e+05, ], 'CountWeightedFull_LHENjet3' : [ 1.97530402e+05, 1.97587236e+05, 1.97482723e+05, ], 'CountWeightedFullLHEWeightScale_LHENjet3' : [ 2.10448915e+05, 2.26897637e+05, 2.37963657e+05, 1.83193869e+05, 1.97530402e+05, 2.07166059e+05, 1.63340695e+05, 1.76153529e+05, 1.84760126e+05, ], 'CountWeightedFullLHEEnvelope_LHENjet3' : [ 2.33463951e+05, 1.67174155e+05, ], 'CountWeightedL1PrefireNom_LHENjet3' : [ 1.94803497e+05, 1.94858405e+05, 1.94757736e+05, ], 'CountWeightedL1Prefire_LHENjet3' : [ 1.94803497e+05, 1.94055350e+05, 1.95503709e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet3' : [ 2.07440529e+05, 2.23811163e+05, 2.34847111e+05, 1.80536589e+05, 1.94803497e+05, 2.04412263e+05, 1.60946914e+05, 1.73696336e+05, 1.82278236e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet3' : [ 2.30272022e+05, 1.64829271e+05, ], 'CountWeightedFullL1PrefireNom_LHENjet3' : [ 1.94803497e+05, 1.94858405e+05, 1.94757736e+05, ], 'CountWeightedFullL1Prefire_LHENjet3' : [ 1.94803497e+05, 1.94055350e+05, 1.95503709e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet3' : [ 2.07440529e+05, 2.23811163e+05, 2.34847111e+05, 1.80536589e+05, 1.94803497e+05, 2.04412263e+05, 1.60946914e+05, 1.73696336e+05, 1.82278236e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet3' : [ 2.30272022e+05, 1.64829271e+05, ], 'Count_LHENjet4' : [ 88070, ], 'CountWeighted_LHENjet4' : [ 8.77784708e+04, 8.77825092e+04, 8.78148277e+04, ], 'CountWeightedLHEWeightScale_LHENjet4' : [ 1.03415538e+05, 1.03013496e+05, 1.01444408e+05, 8.81123966e+04, 8.77784708e+04, 8.64444495e+04, 7.71099465e+04, 7.68305495e+04, 7.56699161e+04, ], 'CountWeightedLHEEnvelope_LHENjet4' : [ 1.07688262e+05, 7.29214266e+04, ], 'CountWeightedFull_LHENjet4' : [ 8.77784708e+04, 8.77825092e+04, 8.78148277e+04, ], 'CountWeightedFullLHEWeightScale_LHENjet4' : [ 1.03415538e+05, 1.03013496e+05, 1.01444408e+05, 8.81123966e+04, 8.77784708e+04, 8.64444495e+04, 7.71099465e+04, 7.68305495e+04, 7.56699161e+04, ], 'CountWeightedFullLHEEnvelope_LHENjet4' : [ 1.07688262e+05, 7.29214266e+04, ], 'CountWeightedL1PrefireNom_LHENjet4' : [ 8.51170953e+04, 8.51281215e+04, 8.51452021e+04, ], 'CountWeightedL1Prefire_LHENjet4' : [ 8.51170953e+04, 8.44566712e+04, 8.57553329e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet4' : [ 1.00167731e+05, 9.99205717e+04, 9.85058002e+04, 8.53187615e+04, 8.51170953e+04, 8.39151662e+04, 7.46521729e+04, 7.44882149e+04, 7.34431715e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet4' : [ 1.04379152e+05, 7.07319660e+04, ], 'CountWeightedFullL1PrefireNom_LHENjet4' : [ 8.51170953e+04, 8.51281215e+04, 8.51452021e+04, ], 'CountWeightedFullL1Prefire_LHENjet4' : [ 8.51170953e+04, 8.44566712e+04, 8.57553329e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet4' : [ 1.00167731e+05, 9.99205717e+04, 9.85058002e+04, 8.53187615e+04, 8.51170953e+04, 8.39151662e+04, 7.46521729e+04, 7.44882149e+04, 7.34431715e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet4' : [ 1.04379152e+05, 7.07319660e+04, ], }), ("nof_tree_events", 39536839), ("nof_db_events", 39536839), ("fsize_local", 77721232847), # 77.72GB, avg file size 971.52MB ("fsize_db", 1424731750804), # 1.42TB, avg file size 2.97GB ("use_it", True), ("xsection", 18610.0), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Apr19_woPresel_nom_all_hh_multilepton/ntuples/DYJetsToLL_M-10to50_ext1"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/DYJetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8/RunIIFall17MiniAODv2-PU2017RECOSIMstep_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "EWK"), ("process_name_specific", "DYJetsToLL_M-50"), ("nof_files", 98), ("nof_db_files", 553), ("nof_events", { 'Count' : [ 48675378, ], 'CountWeighted' : [ 4.86332524e+07, 4.86303910e+07, 4.86396298e+07, ], 'CountWeightedLHEWeightScale' : [ 4.30851865e+07, 4.88484364e+07, 5.39737746e+07, 4.28788953e+07, 4.86332524e+07, 5.37530504e+07, 4.27098715e+07, 4.84568922e+07, 5.35721935e+07, ], 'CountWeightedLHEEnvelope' : [ 5.40480096e+07, 4.26449464e+07, ], 'CountWeightedFull' : [ 4.86332524e+07, 4.86303910e+07, 4.86396298e+07, ], 'CountWeightedFullLHEWeightScale' : [ 4.30851865e+07, 4.88484364e+07, 5.39737746e+07, 4.28788953e+07, 4.86332524e+07, 5.37530504e+07, 4.27098715e+07, 4.84568922e+07, 5.35721935e+07, ], 'CountWeightedFullLHEEnvelope' : [ 5.40480096e+07, 4.26449464e+07, ], 'CountWeightedL1PrefireNom' : [ 4.77851857e+07, 4.77815832e+07, 4.77909384e+07, ], 'CountWeightedL1Prefire' : [ 4.77851857e+07, 4.75632331e+07, 4.80012652e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 4.23131973e+07, 4.79928630e+07, 5.30456272e+07, 4.21143977e+07, 4.77851857e+07, 5.28323450e+07, 4.19514930e+07, 4.76149619e+07, 5.26575732e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 5.31122012e+07, 4.18932186e+07, ], 'CountWeightedFullL1PrefireNom' : [ 4.77851857e+07, 4.77815832e+07, 4.77909384e+07, ], 'CountWeightedFullL1Prefire' : [ 4.77851857e+07, 4.75632331e+07, 4.80012652e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 4.23131973e+07, 4.79928630e+07, 5.30456272e+07, 4.21143977e+07, 4.77851857e+07, 5.28323450e+07, 4.19514930e+07, 4.76149619e+07, 5.26575732e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 5.31122012e+07, 4.18932186e+07, ], 'Count_LHENjet0_LHEHT0to70' : [ 36320405, ], 'CountWeighted_LHENjet0_LHEHT0to70' : [ 3.62888242e+07, 3.62860746e+07, 3.62928654e+07, ], 'CountWeightedLHEWeightScale_LHENjet0_LHEHT0to70' : [ 3.18974133e+07, 3.62888242e+07, 4.03156688e+07, 3.18974133e+07, 3.62888242e+07, 4.03156688e+07, 3.18974133e+07, 3.62888242e+07, 4.03156688e+07, ], 'CountWeightedLHEEnvelope_LHENjet0_LHEHT0to70' : [ 4.03167732e+07, 3.18963421e+07, ], 'CountWeightedFull_LHENjet0_LHEHT0to70' : [ 3.62888242e+07, 3.62860746e+07, 3.62928654e+07, ], 'CountWeightedFullLHEWeightScale_LHENjet0_LHEHT0to70' : [ 3.18974133e+07, 3.62888242e+07, 4.03156688e+07, 3.18974133e+07, 3.62888242e+07, 4.03156688e+07, 3.18974133e+07, 3.62888242e+07, 4.03156688e+07, ], 'CountWeightedFullLHEEnvelope_LHENjet0_LHEHT0to70' : [ 4.03167732e+07, 3.18963421e+07, ], 'CountWeightedL1PrefireNom_LHENjet0_LHEHT0to70' : [ 3.57471763e+07, 3.57441814e+07, 3.57509064e+07, ], 'CountWeightedL1Prefire_LHENjet0_LHEHT0to70' : [ 3.57471763e+07, 3.56018739e+07, 3.58888997e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet0_LHEHT0to70' : [ 3.14174886e+07, 3.57471763e+07, 3.97177733e+07, 3.14174886e+07, 3.57471763e+07, 3.97177733e+07, 3.14174886e+07, 3.57471763e+07, 3.97177733e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet0_LHEHT0to70' : [ 3.97188638e+07, 3.14164314e+07, ], 'CountWeightedFullL1PrefireNom_LHENjet0_LHEHT0to70' : [ 3.57471763e+07, 3.57441814e+07, 3.57509064e+07, ], 'CountWeightedFullL1Prefire_LHENjet0_LHEHT0to70' : [ 3.57471763e+07, 3.56018739e+07, 3.58888997e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet0_LHEHT0to70' : [ 3.14174886e+07, 3.57471763e+07, 3.97177733e+07, 3.14174886e+07, 3.57471763e+07, 3.97177733e+07, 3.14174886e+07, 3.57471763e+07, 3.97177733e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet0_LHEHT0to70' : [ 3.97188638e+07, 3.14164314e+07, ], 'Count_LHENjet1_LHEHT0to70' : [ 7469011, ], 'CountWeighted_LHENjet1_LHEHT0to70' : [ 7.46444579e+06, 7.46439558e+06, 7.46439830e+06, ], 'CountWeightedLHEWeightScale_LHENjet1_LHEHT0to70' : [ 6.43434327e+06, 7.51764529e+06, 8.43219398e+06, 6.38479402e+06, 7.46444579e+06, 8.37611775e+06, 6.34418605e+06, 7.42085879e+06, 8.33017430e+06, ], 'CountWeightedLHEEnvelope_LHENjet1_LHEHT0to70' : [ 8.40672427e+06, 6.36873989e+06, ], 'CountWeightedFull_LHENjet1_LHEHT0to70' : [ 7.46444579e+06, 7.46439558e+06, 7.46439830e+06, ], 'CountWeightedFullLHEWeightScale_LHENjet1_LHEHT0to70' : [ 6.43434327e+06, 7.51764529e+06, 8.43219398e+06, 6.38479402e+06, 7.46444579e+06, 8.37611775e+06, 6.34418605e+06, 7.42085879e+06, 8.33017430e+06, ], 'CountWeightedFullLHEEnvelope_LHENjet1_LHEHT0to70' : [ 8.40672427e+06, 6.36873989e+06, ], 'CountWeightedL1PrefireNom_LHENjet1_LHEHT0to70' : [ 7.32274544e+06, 7.32249966e+06, 7.32286012e+06, ], 'CountWeightedL1Prefire_LHENjet1_LHEHT0to70' : [ 7.32274544e+06, 7.28594959e+06, 7.35845472e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet1_LHEHT0to70' : [ 6.30997256e+06, 7.37479603e+06, 8.27404214e+06, 6.26150407e+06, 7.32274544e+06, 8.21916890e+06, 6.22178297e+06, 7.28010288e+06, 8.17421230e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet1_LHEHT0to70' : [ 8.24903427e+06, 6.24586131e+06, ], 'CountWeightedFullL1PrefireNom_LHENjet1_LHEHT0to70' : [ 7.32274544e+06, 7.32249966e+06, 7.32286012e+06, ], 'CountWeightedFullL1Prefire_LHENjet1_LHEHT0to70' : [ 7.32274544e+06, 7.28594959e+06, 7.35845472e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet1_LHEHT0to70' : [ 6.30997256e+06, 7.37479603e+06, 8.27404214e+06, 6.26150407e+06, 7.32274544e+06, 8.21916890e+06, 6.22178297e+06, 7.28010288e+06, 8.17421230e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet1_LHEHT0to70' : [ 8.24903427e+06, 6.24586131e+06, ], 'Count_LHENjet1_LHEHT70to100' : [ 348873, ], 'CountWeighted_LHENjet1_LHEHT70to100' : [ 3.48586674e+05, 3.48418453e+05, 3.48744663e+05, ], 'CountWeightedLHEWeightScale_LHENjet1_LHEHT70to100' : [ 3.38302827e+05, 3.56307568e+05, 3.69206443e+05, 3.30828026e+05, 3.48586674e+05, 3.61325447e+05, 3.24630879e+05, 3.42187646e+05, 3.54792236e+05, ], 'CountWeightedLHEEnvelope_LHENjet1_LHEHT70to100' : [ 3.68417926e+05, 3.25811154e+05, ], 'CountWeightedFull_LHENjet1_LHEHT70to100' : [ 3.48586674e+05, 3.48418453e+05, 3.48744663e+05, ], 'CountWeightedFullLHEWeightScale_LHENjet1_LHEHT70to100' : [ 3.38302827e+05, 3.56307568e+05, 3.69206443e+05, 3.30828026e+05, 3.48586674e+05, 3.61325447e+05, 3.24630879e+05, 3.42187646e+05, 3.54792236e+05, ], 'CountWeightedFullLHEEnvelope_LHENjet1_LHEHT70to100' : [ 3.68417926e+05, 3.25811154e+05, ], 'CountWeightedL1PrefireNom_LHENjet1_LHEHT70to100' : [ 3.33938751e+05, 3.33769223e+05, 3.34106225e+05, ], 'CountWeightedL1Prefire_LHENjet1_LHEHT70to100' : [ 3.33938751e+05, 3.30549390e+05, 3.37328154e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet1_LHEHT70to100' : [ 3.23973438e+05, 3.41337248e+05, 3.53804061e+05, 3.16812991e+05, 3.33938751e+05, 3.46250062e+05, 3.10876544e+05, 3.27807036e+05, 3.39988027e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet1_LHEHT70to100' : [ 3.53001295e+05, 3.12049525e+05, ], 'CountWeightedFullL1PrefireNom_LHENjet1_LHEHT70to100' : [ 3.33938751e+05, 3.33769223e+05, 3.34106225e+05, ], 'CountWeightedFullL1Prefire_LHENjet1_LHEHT70to100' : [ 3.33938751e+05, 3.30549390e+05, 3.37328154e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet1_LHEHT70to100' : [ 3.23973438e+05, 3.41337248e+05, 3.53804061e+05, 3.16812991e+05, 3.33938751e+05, 3.46250062e+05, 3.10876544e+05, 3.27807036e+05, 3.39988027e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet1_LHEHT70to100' : [ 3.53001295e+05, 3.12049525e+05, ], 'Count_LHENjet1_LHEHT100to200' : [ 157047, ], 'CountWeighted_LHENjet1_LHEHT100to200' : [ 1.56868693e+05, 1.56903562e+05, 1.56827036e+05, ], 'CountWeightedLHEWeightScale_LHENjet1_LHEHT100to200' : [ 1.58043951e+05, 1.61014937e+05, 1.62399449e+05, 1.53924058e+05, 1.56868693e+05, 1.58258700e+05, 1.50480994e+05, 1.53404877e+05, 1.54798701e+05, ], 'CountWeightedLHEEnvelope_LHENjet1_LHEHT100to200' : [ 1.63990695e+05, 1.49190306e+05, ], 'CountWeightedFull_LHENjet1_LHEHT100to200' : [ 1.56868693e+05, 1.56903562e+05, 1.56827036e+05, ], 'CountWeightedFullLHEWeightScale_LHENjet1_LHEHT100to200' : [ 1.58043951e+05, 1.61014937e+05, 1.62399449e+05, 1.53924058e+05, 1.56868693e+05, 1.58258700e+05, 1.50480994e+05, 1.53404877e+05, 1.54798701e+05, ], 'CountWeightedFullLHEEnvelope_LHENjet1_LHEHT100to200' : [ 1.63990695e+05, 1.49190306e+05, ], 'CountWeightedL1PrefireNom_LHENjet1_LHEHT100to200' : [ 1.47381021e+05, 1.47400980e+05, 1.47354972e+05, ], 'CountWeightedL1Prefire_LHENjet1_LHEHT100to200' : [ 1.47381021e+05, 1.45359406e+05, 1.49432364e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet1_LHEHT100to200' : [ 1.48396805e+05, 1.51285549e+05, 1.52676081e+05, 1.44519435e+05, 1.47381021e+05, 1.48774581e+05, 1.41279154e+05, 1.44119250e+05, 1.45514598e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet1_LHEHT100to200' : [ 1.54089145e+05, 1.40144737e+05, ], 'CountWeightedFullL1PrefireNom_LHENjet1_LHEHT100to200' : [ 1.47381021e+05, 1.47400980e+05, 1.47354972e+05, ], 'CountWeightedFullL1Prefire_LHENjet1_LHEHT100to200' : [ 1.47381021e+05, 1.45359406e+05, 1.49432364e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet1_LHEHT100to200' : [ 1.48396805e+05, 1.51285549e+05, 1.52676081e+05, 1.44519435e+05, 1.47381021e+05, 1.48774581e+05, 1.41279154e+05, 1.44119250e+05, 1.45514598e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet1_LHEHT100to200' : [ 1.54089145e+05, 1.40144737e+05, ], 'Count_LHENjet1_LHEHT200to400' : [ 10036, ], 'CountWeighted_LHENjet1_LHEHT200to400' : [ 9.98695432e+03, 1.00020818e+04, 9.98038139e+03, ], 'CountWeightedLHEWeightScale_LHENjet1_LHEHT200to400' : [ 1.05788471e+04, 1.02774969e+04, 9.95962447e+03, 1.02781969e+04, 9.98695432e+03, 9.67941740e+03, 1.00237029e+04, 9.74110983e+03, 9.44225356e+03, ], 'CountWeightedLHEEnvelope_LHENjet1_LHEHT200to400' : [ 1.06090766e+04, 9.41456734e+03, ], 'CountWeightedFull_LHENjet1_LHEHT200to400' : [ 9.98695432e+03, 1.00020818e+04, 9.98038139e+03, ], 'CountWeightedFullLHEWeightScale_LHENjet1_LHEHT200to400' : [ 1.05788471e+04, 1.02774969e+04, 9.95962447e+03, 1.02781969e+04, 9.98695432e+03, 9.67941740e+03, 1.00237029e+04, 9.74110983e+03, 9.44225356e+03, ], 'CountWeightedFullLHEEnvelope_LHENjet1_LHEHT200to400' : [ 1.06090766e+04, 9.41456734e+03, ], 'CountWeightedL1PrefireNom_LHENjet1_LHEHT200to400' : [ 9.35228917e+03, 9.36715559e+03, 9.34596867e+03, ], 'CountWeightedL1Prefire_LHENjet1_LHEHT200to400' : [ 9.35228917e+03, 9.22581165e+03, 9.48246750e+03, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet1_LHEHT200to400' : [ 9.89647559e+03, 9.62529984e+03, 9.33706712e+03, 9.61419891e+03, 9.35228917e+03, 9.07356756e+03, 9.37526232e+03, 9.12128308e+03, 8.85054844e+03, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet1_LHEHT200to400' : [ 9.92630719e+03, 8.82321835e+03, ], 'CountWeightedFullL1PrefireNom_LHENjet1_LHEHT200to400' : [ 9.35228917e+03, 9.36715559e+03, 9.34596867e+03, ], 'CountWeightedFullL1Prefire_LHENjet1_LHEHT200to400' : [ 9.35228917e+03, 9.22581165e+03, 9.48246750e+03, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet1_LHEHT200to400' : [ 9.89647559e+03, 9.62529984e+03, 9.33706712e+03, 9.61419891e+03, 9.35228917e+03, 9.07356756e+03, 9.37526232e+03, 9.12128308e+03, 8.85054844e+03, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet1_LHEHT200to400' : [ 9.92630719e+03, 8.82321835e+03, ], 'Count_LHENjet1_LHEHT400to600' : [ 295, ], 'CountWeighted_LHENjet1_LHEHT400to600' : [ 2.92189678e+02, 2.91630758e+02, 2.92400198e+02, ], 'CountWeightedLHEWeightScale_LHENjet1_LHEHT400to600' : [ 3.23384622e+02, 3.01440028e+02, 2.81760108e+02, 3.13430032e+02, 2.92189678e+02, 2.73141361e+02, 3.04903204e+02, 2.84269889e+02, 2.65759868e+02, ], 'CountWeightedLHEEnvelope_LHENjet1_LHEHT400to600' : [ 3.23385186e+02, 2.65759868e+02, ], 'CountWeightedFull_LHENjet1_LHEHT400to600' : [ 2.92189678e+02, 2.91630758e+02, 2.92400198e+02, ], 'CountWeightedFullLHEWeightScale_LHENjet1_LHEHT400to600' : [ 3.23384622e+02, 3.01440028e+02, 2.81760108e+02, 3.13430032e+02, 2.92189678e+02, 2.73141361e+02, 3.04903204e+02, 2.84269889e+02, 2.65759868e+02, ], 'CountWeightedFullLHEEnvelope_LHENjet1_LHEHT400to600' : [ 3.23385186e+02, 2.65759868e+02, ], 'CountWeightedL1PrefireNom_LHENjet1_LHEHT400to600' : [ 2.84120771e+02, 2.83884770e+02, 2.84211132e+02, ], 'CountWeightedL1Prefire_LHENjet1_LHEHT400to600' : [ 2.84120771e+02, 2.82420624e+02, 2.85824709e+02, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet1_LHEHT400to600' : [ 3.14198378e+02, 2.93162166e+02, 2.74260180e+02, 3.04474589e+02, 2.84120771e+02, 2.65831341e+02, 2.96145570e+02, 2.76379997e+02, 2.58612626e+02, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet1_LHEHT400to600' : [ 3.14198941e+02, 2.58612626e+02, ], 'CountWeightedFullL1PrefireNom_LHENjet1_LHEHT400to600' : [ 2.84120771e+02, 2.83884770e+02, 2.84211132e+02, ], 'CountWeightedFullL1Prefire_LHENjet1_LHEHT400to600' : [ 2.84120771e+02, 2.82420624e+02, 2.85824709e+02, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet1_LHEHT400to600' : [ 3.14198378e+02, 2.93162166e+02, 2.74260180e+02, 3.04474589e+02, 2.84120771e+02, 2.65831341e+02, 2.96145570e+02, 2.76379997e+02, 2.58612626e+02, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet1_LHEHT400to600' : [ 3.14198941e+02, 2.58612626e+02, ], 'Count_LHENjet1_LHEHT600to800' : [ 28, ], 'CountWeighted_LHENjet1_LHEHT600to800' : [ 2.99359091e+01, 2.99749684e+01, 2.91264781e+01, ], 'CountWeightedLHEWeightScale_LHENjet1_LHEHT600to800' : [ 3.39315318e+01, 3.09135153e+01, 2.83163881e+01, 3.28555921e+01, 2.99359091e+01, 2.74235468e+01, 3.19283455e+01, 2.90938981e+01, 2.66542398e+01, ], 'CountWeightedLHEEnvelope_LHENjet1_LHEHT600to800' : [ 3.39315318e+01, 2.66542398e+01, ], 'CountWeightedFull_LHENjet1_LHEHT600to800' : [ 2.99359091e+01, 2.99749684e+01, 2.91264781e+01, ], 'CountWeightedFullLHEWeightScale_LHENjet1_LHEHT600to800' : [ 3.39315318e+01, 3.09135153e+01, 2.83163881e+01, 3.28555921e+01, 2.99359091e+01, 2.74235468e+01, 3.19283455e+01, 2.90938981e+01, 2.66542398e+01, ], 'CountWeightedFullLHEEnvelope_LHENjet1_LHEHT600to800' : [ 3.39315318e+01, 2.66542398e+01, ], 'CountWeightedL1PrefireNom_LHENjet1_LHEHT600to800' : [ 2.92971817e+01, 2.93058695e+01, 2.85338590e+01, ], 'CountWeightedL1Prefire_LHENjet1_LHEHT600to800' : [ 2.92971817e+01, 2.91667524e+01, 2.94276111e+01, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet1_LHEHT600to800' : [ 3.32123651e+01, 3.02747879e+01, 2.77453546e+01, 3.21364254e+01, 2.92971817e+01, 2.68525134e+01, 3.12091788e+01, 2.84551708e+01, 2.60832063e+01, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet1_LHEHT600to800' : [ 3.32123651e+01, 2.60832063e+01, ], 'CountWeightedFullL1PrefireNom_LHENjet1_LHEHT600to800' : [ 2.92971817e+01, 2.93058695e+01, 2.85338590e+01, ], 'CountWeightedFullL1Prefire_LHENjet1_LHEHT600to800' : [ 2.92971817e+01, 2.91667524e+01, 2.94276111e+01, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet1_LHEHT600to800' : [ 3.32123651e+01, 3.02747879e+01, 2.77453546e+01, 3.21364254e+01, 2.92971817e+01, 2.68525134e+01, 3.12091788e+01, 2.84551708e+01, 2.60832063e+01, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet1_LHEHT600to800' : [ 3.32123651e+01, 2.60832063e+01, ], 'Count_LHENjet1_LHEHT800to1200' : [ 1, ], 'CountWeighted_LHENjet1_LHEHT800to1200' : [ 8.54250431e-01, 9.03660059e-01, 8.90125573e-01, ], 'CountWeightedLHEWeightScale_LHENjet1_LHEHT800to1200' : [ 1.03397465e+00, 9.18486059e-01, 8.21559072e-01, 9.61657405e-01, 8.54250431e-01, 7.64101565e-01, 8.98933828e-01, 7.98539579e-01, 7.14256406e-01, ], 'CountWeightedLHEEnvelope_LHENjet1_LHEHT800to1200' : [ 1.03397465e+00, 7.14256406e-01, ], 'CountWeightedFull_LHENjet1_LHEHT800to1200' : [ 8.54250431e-01, 9.03660059e-01, 8.90125573e-01, ], 'CountWeightedFullLHEWeightScale_LHENjet1_LHEHT800to1200' : [ 1.03397465e+00, 9.18486059e-01, 8.21559072e-01, 9.61657405e-01, 8.54250431e-01, 7.64101565e-01, 8.98933828e-01, 7.98539579e-01, 7.14256406e-01, ], 'CountWeightedFullLHEEnvelope_LHENjet1_LHEHT800to1200' : [ 1.03397465e+00, 7.14256406e-01, ], 'CountWeightedL1PrefireNom_LHENjet1_LHEHT800to1200' : [ 8.54249537e-01, 9.03659165e-01, 8.90124679e-01, ], 'CountWeightedL1Prefire_LHENjet1_LHEHT800to1200' : [ 8.54249537e-01, 8.53411615e-01, 8.54250431e-01, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet1_LHEHT800to1200' : [ 1.03397357e+00, 9.18485105e-01, 8.21558237e-01, 9.61656451e-01, 8.54249537e-01, 7.64100790e-01, 8.98932934e-01, 7.98538744e-01, 7.14255691e-01, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet1_LHEHT800to1200' : [ 1.03397357e+00, 7.14255691e-01, ], 'CountWeightedFullL1PrefireNom_LHENjet1_LHEHT800to1200' : [ 8.54249537e-01, 9.03659165e-01, 8.90124679e-01, ], 'CountWeightedFullL1Prefire_LHENjet1_LHEHT800to1200' : [ 8.54249537e-01, 8.53411615e-01, 8.54250431e-01, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet1_LHEHT800to1200' : [ 1.03397357e+00, 9.18485105e-01, 8.21558237e-01, 9.61656451e-01, 8.54249537e-01, 7.64100790e-01, 8.98932934e-01, 7.98538744e-01, 7.14255691e-01, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet1_LHEHT800to1200' : [ 1.03397357e+00, 7.14255691e-01, ], 'Count_LHENjet1_LHEHT1200to2500' : [ 1, ], 'CountWeighted_LHENjet1_LHEHT1200to2500' : [ 1.13475275e+00, 9.41563368e-01, 1.34254587e+00, ], 'CountWeightedLHEWeightScale_LHENjet1_LHEHT1200to2500' : [ 1.29924476e+00, 1.13475275e+00, 9.99903917e-01, 1.29924476e+00, 1.13475275e+00, 9.99903917e-01, 1.29924476e+00, 1.13475275e+00, 9.99903917e-01, ], 'CountWeightedLHEEnvelope_LHENjet1_LHEHT1200to2500' : [ 1.29924476e+00, 9.99903917e-01, ], 'CountWeightedFull_LHENjet1_LHEHT1200to2500' : [ 1.13475275e+00, 9.41563368e-01, 1.34254587e+00, ], 'CountWeightedFullLHEWeightScale_LHENjet1_LHEHT1200to2500' : [ 1.29924476e+00, 1.13475275e+00, 9.99903917e-01, 1.29924476e+00, 1.13475275e+00, 9.99903917e-01, 1.29924476e+00, 1.13475275e+00, 9.99903917e-01, ], 'CountWeightedFullLHEEnvelope_LHENjet1_LHEHT1200to2500' : [ 1.29924476e+00, 9.99903917e-01, ], 'CountWeightedL1PrefireNom_LHENjet1_LHEHT1200to2500' : [ 1.13475275e+00, 9.41563368e-01, 1.34254587e+00, ], 'CountWeightedL1Prefire_LHENjet1_LHEHT1200to2500' : [ 1.13475275e+00, 1.13475275e+00, 1.13475275e+00, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet1_LHEHT1200to2500' : [ 1.29924476e+00, 1.13475275e+00, 9.99903917e-01, 1.29924476e+00, 1.13475275e+00, 9.99903917e-01, 1.29924476e+00, 1.13475275e+00, 9.99903917e-01, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet1_LHEHT1200to2500' : [ 1.29924476e+00, 9.99903917e-01, ], 'CountWeightedFullL1PrefireNom_LHENjet1_LHEHT1200to2500' : [ 1.13475275e+00, 9.41563368e-01, 1.34254587e+00, ], 'CountWeightedFullL1Prefire_LHENjet1_LHEHT1200to2500' : [ 1.13475275e+00, 1.13475275e+00, 1.13475275e+00, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet1_LHEHT1200to2500' : [ 1.29924476e+00, 1.13475275e+00, 9.99903917e-01, 1.29924476e+00, 1.13475275e+00, 9.99903917e-01, 1.29924476e+00, 1.13475275e+00, 9.99903917e-01, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet1_LHEHT1200to2500' : [ 1.29924476e+00, 9.99903917e-01, ], 'Count_LHENjet2_LHEHT0to70' : [ 1469900, ], 'CountWeighted_LHENjet2_LHEHT0to70' : [ 1.46852717e+06, 1.46852953e+06, 1.46862982e+06, ], 'CountWeightedLHEWeightScale_LHENjet2_LHEHT0to70' : [ 1.31754079e+06, 1.50229424e+06, 1.64073661e+06, 1.28754639e+06, 1.46852717e+06, 1.60420073e+06, 1.26300299e+06, 1.44090721e+06, 1.57431276e+06, ], 'CountWeightedLHEEnvelope_LHENjet2_LHEHT0to70' : [ 1.62704116e+06, 1.27249723e+06, ], 'CountWeightedFull_LHENjet2_LHEHT0to70' : [ 1.46852717e+06, 1.46852953e+06, 1.46862982e+06, ], 'CountWeightedFullLHEWeightScale_LHENjet2_LHEHT0to70' : [ 1.31754079e+06, 1.50229424e+06, 1.64073661e+06, 1.28754639e+06, 1.46852717e+06, 1.60420073e+06, 1.26300299e+06, 1.44090721e+06, 1.57431276e+06, ], 'CountWeightedFullLHEEnvelope_LHENjet2_LHEHT0to70' : [ 1.62704116e+06, 1.27249723e+06, ], 'CountWeightedL1PrefireNom_LHENjet2_LHEHT0to70' : [ 1.44119502e+06, 1.44116895e+06, 1.44133210e+06, ], 'CountWeightedL1Prefire_LHENjet2_LHEHT0to70' : [ 1.44119502e+06, 1.43395626e+06, 1.44813400e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet2_LHEHT0to70' : [ 1.29273678e+06, 1.47432577e+06, 1.61044459e+06, 1.26331390e+06, 1.44119502e+06, 1.57459176e+06, 1.23923856e+06, 1.41409646e+06, 1.54526308e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet2_LHEHT0to70' : [ 1.59695034e+06, 1.24859467e+06, ], 'CountWeightedFullL1PrefireNom_LHENjet2_LHEHT0to70' : [ 1.44119502e+06, 1.44116895e+06, 1.44133210e+06, ], 'CountWeightedFullL1Prefire_LHENjet2_LHEHT0to70' : [ 1.44119502e+06, 1.43395626e+06, 1.44813400e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet2_LHEHT0to70' : [ 1.29273678e+06, 1.47432577e+06, 1.61044459e+06, 1.26331390e+06, 1.44119502e+06, 1.57459176e+06, 1.23923856e+06, 1.41409646e+06, 1.54526308e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet2_LHEHT0to70' : [ 1.59695034e+06, 1.24859467e+06, ], 'Count_LHENjet2_LHEHT70to100' : [ 697717, ], 'CountWeighted_LHENjet2_LHEHT70to100' : [ 6.96949000e+05, 6.96818791e+05, 6.97152825e+05, ], 'CountWeightedLHEWeightScale_LHENjet2_LHEHT70to100' : [ 6.63828876e+05, 7.17041966e+05, 7.53520401e+05, 6.45128958e+05, 6.96949000e+05, 7.32486758e+05, 6.29743042e+05, 6.80422312e+05, 7.15182657e+05, ], 'CountWeightedLHEEnvelope_LHENjet2_LHEHT70to100' : [ 7.51828012e+05, 6.31344274e+05, ], 'CountWeightedFull_LHENjet2_LHEHT70to100' : [ 6.96949000e+05, 6.96818791e+05, 6.97152825e+05, ], 'CountWeightedFullLHEWeightScale_LHENjet2_LHEHT70to100' : [ 6.63828876e+05, 7.17041966e+05, 7.53520401e+05, 6.45128958e+05, 6.96949000e+05, 7.32486758e+05, 6.29743042e+05, 6.80422312e+05, 7.15182657e+05, ], 'CountWeightedFullLHEEnvelope_LHENjet2_LHEHT70to100' : [ 7.51828012e+05, 6.31344274e+05, ], 'CountWeightedL1PrefireNom_LHENjet2_LHEHT70to100' : [ 6.78550121e+05, 6.78413138e+05, 6.78755234e+05, ], 'CountWeightedL1Prefire_LHENjet2_LHEHT70to100' : [ 6.78550121e+05, 6.73855839e+05, 6.83102681e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet2_LHEHT70to100' : [ 6.46128558e+05, 6.98107013e+05, 7.33775208e+05, 6.27932297e+05, 6.78550121e+05, 7.13298389e+05, 6.12961238e+05, 6.62464801e+05, 6.96452879e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet2_LHEHT70to100' : [ 7.32059941e+05, 6.14576510e+05, ], 'CountWeightedFullL1PrefireNom_LHENjet2_LHEHT70to100' : [ 6.78550121e+05, 6.78413138e+05, 6.78755234e+05, ], 'CountWeightedFullL1Prefire_LHENjet2_LHEHT70to100' : [ 6.78550121e+05, 6.73855839e+05, 6.83102681e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet2_LHEHT70to100' : [ 6.46128558e+05, 6.98107013e+05, 7.33775208e+05, 6.27932297e+05, 6.78550121e+05, 7.13298389e+05, 6.12961238e+05, 6.62464801e+05, 6.96452879e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet2_LHEHT70to100' : [ 7.32059941e+05, 6.14576510e+05, ], 'Count_LHENjet2_LHEHT100to200' : [ 540449, ], 'CountWeighted_LHENjet2_LHEHT100to200' : [ 5.39679572e+05, 5.39705745e+05, 5.39723669e+05, ], 'CountWeightedLHEWeightScale_LHENjet2_LHEHT100to200' : [ 5.37482375e+05, 5.57932042e+05, 5.68946084e+05, 5.19852858e+05, 5.39679572e+05, 5.50367505e+05, 5.05268449e+05, 5.24584696e+05, 5.34999735e+05, ], 'CountWeightedLHEEnvelope_LHENjet2_LHEHT100to200' : [ 5.75787075e+05, 4.99572855e+05, ], 'CountWeightedFull_LHENjet2_LHEHT100to200' : [ 5.39679572e+05, 5.39705745e+05, 5.39723669e+05, ], 'CountWeightedFullLHEWeightScale_LHENjet2_LHEHT100to200' : [ 5.37482375e+05, 5.57932042e+05, 5.68946084e+05, 5.19852858e+05, 5.39679572e+05, 5.50367505e+05, 5.05268449e+05, 5.24584696e+05, 5.34999735e+05, ], 'CountWeightedFullLHEEnvelope_LHENjet2_LHEHT100to200' : [ 5.75787075e+05, 4.99572855e+05, ], 'CountWeightedL1PrefireNom_LHENjet2_LHEHT100to200' : [ 5.16521514e+05, 5.16517110e+05, 5.16588482e+05, ], 'CountWeightedL1Prefire_LHENjet2_LHEHT100to200' : [ 5.16521514e+05, 5.11091873e+05, 5.21918923e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet2_LHEHT100to200' : [ 5.14112760e+05, 5.33996378e+05, 5.44809206e+05, 4.97244730e+05, 5.16521514e+05, 5.27013137e+05, 4.83291327e+05, 5.02070823e+05, 5.12293679e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet2_LHEHT100to200' : [ 5.51105764e+05, 4.78067362e+05, ], 'CountWeightedFullL1PrefireNom_LHENjet2_LHEHT100to200' : [ 5.16521514e+05, 5.16517110e+05, 5.16588482e+05, ], 'CountWeightedFullL1Prefire_LHENjet2_LHEHT100to200' : [ 5.16521514e+05, 5.11091873e+05, 5.21918923e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet2_LHEHT100to200' : [ 5.14112760e+05, 5.33996378e+05, 5.44809206e+05, 4.97244730e+05, 5.16521514e+05, 5.27013137e+05, 4.83291327e+05, 5.02070823e+05, 5.12293679e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet2_LHEHT100to200' : [ 5.51105764e+05, 4.78067362e+05, ], 'Count_LHENjet2_LHEHT200to400' : [ 73286, ], 'CountWeighted_LHENjet2_LHEHT200to400' : [ 7.32132220e+04, 7.31795648e+04, 7.32315432e+04, ], 'CountWeightedLHEWeightScale_LHENjet2_LHEHT200to400' : [ 7.84878138e+04, 7.73678876e+04, 7.57524700e+04, 7.42752922e+04, 7.32132220e+04, 7.16809299e+04, 7.08590594e+04, 6.98451440e+04, 6.83797920e+04, ], 'CountWeightedLHEEnvelope_LHENjet2_LHEHT200to400' : [ 7.98588502e+04, 6.72342650e+04, ], 'CountWeightedFull_LHENjet2_LHEHT200to400' : [ 7.32132220e+04, 7.31795648e+04, 7.32315432e+04, ], 'CountWeightedFullLHEWeightScale_LHENjet2_LHEHT200to400' : [ 7.84878138e+04, 7.73678876e+04, 7.57524700e+04, 7.42752922e+04, 7.32132220e+04, 7.16809299e+04, 7.08590594e+04, 6.98451440e+04, 6.83797920e+04, ], 'CountWeightedFullLHEEnvelope_LHENjet2_LHEHT200to400' : [ 7.98588502e+04, 6.72342650e+04, ], 'CountWeightedL1PrefireNom_LHENjet2_LHEHT200to400' : [ 6.81097449e+04, 6.80708380e+04, 6.81328887e+04, ], 'CountWeightedL1Prefire_LHENjet2_LHEHT200to400' : [ 6.81097449e+04, 6.70169936e+04, 6.92172143e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet2_LHEHT200to400' : [ 7.29196080e+04, 7.19667479e+04, 7.05365325e+04, 6.90135685e+04, 6.81097449e+04, 6.67528723e+04, 6.58452239e+04, 6.49823306e+04, 6.36845159e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet2_LHEHT200to400' : [ 7.42336029e+04, 6.25841252e+04, ], 'CountWeightedFullL1PrefireNom_LHENjet2_LHEHT200to400' : [ 6.81097449e+04, 6.80708380e+04, 6.81328887e+04, ], 'CountWeightedFullL1Prefire_LHENjet2_LHEHT200to400' : [ 6.81097449e+04, 6.70169936e+04, 6.92172143e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet2_LHEHT200to400' : [ 7.29196080e+04, 7.19667479e+04, 7.05365325e+04, 6.90135685e+04, 6.81097449e+04, 6.67528723e+04, 6.58452239e+04, 6.49823306e+04, 6.36845159e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet2_LHEHT200to400' : [ 7.42336029e+04, 6.25841252e+04, ], 'Count_LHENjet2_LHEHT400to600' : [ 4295, ], 'CountWeighted_LHENjet2_LHEHT400to600' : [ 4.28742569e+03, 4.30361296e+03, 4.26129510e+03, ], 'CountWeightedLHEWeightScale_LHENjet2_LHEHT400to600' : [ 4.91735804e+03, 4.66912928e+03, 4.43457924e+03, 4.51723024e+03, 4.28742569e+03, 4.07057467e+03, 4.19477916e+03, 3.97997121e+03, 3.77736662e+03, ], 'CountWeightedLHEEnvelope_LHENjet2_LHEHT400to600' : [ 4.93732660e+03, 3.76383164e+03, ], 'CountWeightedFull_LHENjet2_LHEHT400to600' : [ 4.28742569e+03, 4.30361296e+03, 4.26129510e+03, ], 'CountWeightedFullLHEWeightScale_LHENjet2_LHEHT400to600' : [ 4.91735804e+03, 4.66912928e+03, 4.43457924e+03, 4.51723024e+03, 4.28742569e+03, 4.07057467e+03, 4.19477916e+03, 3.97997121e+03, 3.77736662e+03, ], 'CountWeightedFullLHEEnvelope_LHENjet2_LHEHT400to600' : [ 4.93732660e+03, 3.76383164e+03, ], 'CountWeightedL1PrefireNom_LHENjet2_LHEHT400to600' : [ 3.93648438e+03, 3.95202375e+03, 3.91186172e+03, ], 'CountWeightedL1Prefire_LHENjet2_LHEHT400to600' : [ 3.93648438e+03, 3.86413450e+03, 4.01006524e+03, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet2_LHEHT400to600' : [ 4.50239069e+03, 4.28366181e+03, 4.07539688e+03, 4.13936631e+03, 3.93648438e+03, 3.74361014e+03, 3.84678093e+03, 3.65681523e+03, 3.47633519e+03, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet2_LHEHT400to600' : [ 4.52168379e+03, 3.46320934e+03, ], 'CountWeightedFullL1PrefireNom_LHENjet2_LHEHT400to600' : [ 3.93648438e+03, 3.95202375e+03, 3.91186172e+03, ], 'CountWeightedFullL1Prefire_LHENjet2_LHEHT400to600' : [ 3.93648438e+03, 3.86413450e+03, 4.01006524e+03, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet2_LHEHT400to600' : [ 4.50239069e+03, 4.28366181e+03, 4.07539688e+03, 4.13936631e+03, 3.93648438e+03, 3.74361014e+03, 3.84678093e+03, 3.65681523e+03, 3.47633519e+03, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet2_LHEHT400to600' : [ 4.52168379e+03, 3.46320934e+03, ], 'Count_LHENjet2_LHEHT600to800' : [ 637, ], 'CountWeighted_LHENjet2_LHEHT600to800' : [ 6.42237320e+02, 6.39138448e+02, 6.46883256e+02, ], 'CountWeightedLHEWeightScale_LHENjet2_LHEHT600to800' : [ 7.52637108e+02, 7.04588967e+02, 6.61432589e+02, 6.86332048e+02, 6.42237320e+02, 6.02693440e+02, 6.32460507e+02, 5.91603007e+02, 5.54992793e+02, ], 'CountWeightedLHEEnvelope_LHENjet2_LHEHT600to800' : [ 7.54275618e+02, 5.54171956e+02, ], 'CountWeightedFull_LHENjet2_LHEHT600to800' : [ 6.42237320e+02, 6.39138448e+02, 6.46883256e+02, ], 'CountWeightedFullLHEWeightScale_LHENjet2_LHEHT600to800' : [ 7.52637108e+02, 7.04588967e+02, 6.61432589e+02, 6.86332048e+02, 6.42237320e+02, 6.02693440e+02, 6.32460507e+02, 5.91603007e+02, 5.54992793e+02, ], 'CountWeightedFullLHEEnvelope_LHENjet2_LHEHT600to800' : [ 7.54275618e+02, 5.54171956e+02, ], 'CountWeightedL1PrefireNom_LHENjet2_LHEHT600to800' : [ 5.98369315e+02, 5.95497678e+02, 6.03198136e+02, ], 'CountWeightedL1Prefire_LHENjet2_LHEHT600to800' : [ 5.98369315e+02, 5.89590696e+02, 6.07376177e+02, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet2_LHEHT600to800' : [ 6.99491243e+02, 6.56372048e+02, 6.17419416e+02, 6.37959305e+02, 5.98369315e+02, 5.62663873e+02, 5.87969968e+02, 5.51271266e+02, 5.18202700e+02, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet2_LHEHT600to800' : [ 7.01091159e+02, 5.17394627e+02, ], 'CountWeightedFullL1PrefireNom_LHENjet2_LHEHT600to800' : [ 5.98369315e+02, 5.95497678e+02, 6.03198136e+02, ], 'CountWeightedFullL1Prefire_LHENjet2_LHEHT600to800' : [ 5.98369315e+02, 5.89590696e+02, 6.07376177e+02, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet2_LHEHT600to800' : [ 6.99491243e+02, 6.56372048e+02, 6.17419416e+02, 6.37959305e+02, 5.98369315e+02, 5.62663873e+02, 5.87969968e+02, 5.51271266e+02, 5.18202700e+02, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet2_LHEHT600to800' : [ 7.01091159e+02, 5.17394627e+02, ], 'Count_LHENjet2_LHEHT800to1200' : [ 189, ], 'CountWeighted_LHENjet2_LHEHT800to1200' : [ 1.91928803e+02, 1.89599901e+02, 1.92965067e+02, ], 'CountWeightedLHEWeightScale_LHENjet2_LHEHT800to1200' : [ 2.29688534e+02, 2.12186430e+02, 1.96834968e+02, 2.07876023e+02, 1.91928803e+02, 1.77962428e+02, 1.90189944e+02, 1.75512878e+02, 1.62669157e+02, ], 'CountWeightedLHEEnvelope_LHENjet2_LHEHT800to1200' : [ 2.30019501e+02, 1.62583463e+02, ], 'CountWeightedFull_LHENjet2_LHEHT800to1200' : [ 1.91928803e+02, 1.89599901e+02, 1.92965067e+02, ], 'CountWeightedFullLHEWeightScale_LHENjet2_LHEHT800to1200' : [ 2.29688534e+02, 2.12186430e+02, 1.96834968e+02, 2.07876023e+02, 1.91928803e+02, 1.77962428e+02, 1.90189944e+02, 1.75512878e+02, 1.62669157e+02, ], 'CountWeightedFullLHEEnvelope_LHENjet2_LHEHT800to1200' : [ 2.30019501e+02, 1.62583463e+02, ], 'CountWeightedL1PrefireNom_LHENjet2_LHEHT800to1200' : [ 1.84231428e+02, 1.82242842e+02, 1.84817969e+02, ], 'CountWeightedL1Prefire_LHENjet2_LHEHT800to1200' : [ 1.84231428e+02, 1.82528989e+02, 1.85920277e+02, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet2_LHEHT800to1200' : [ 2.20109032e+02, 2.03600517e+02, 1.89086089e+02, 1.99285301e+02, 1.84231428e+02, 1.71017032e+02, 1.82390814e+02, 1.68526660e+02, 1.56367004e+02, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet2_LHEHT800to1200' : [ 2.20437753e+02, 1.56281311e+02, ], 'CountWeightedFullL1PrefireNom_LHENjet2_LHEHT800to1200' : [ 1.84231428e+02, 1.82242842e+02, 1.84817969e+02, ], 'CountWeightedFullL1Prefire_LHENjet2_LHEHT800to1200' : [ 1.84231428e+02, 1.82528989e+02, 1.85920277e+02, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet2_LHEHT800to1200' : [ 2.20109032e+02, 2.03600517e+02, 1.89086089e+02, 1.99285301e+02, 1.84231428e+02, 1.71017032e+02, 1.82390814e+02, 1.68526660e+02, 1.56367004e+02, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet2_LHEHT800to1200' : [ 2.20437753e+02, 1.56281311e+02, ], 'Count_LHENjet2_LHEHT1200to2500' : [ 24, ], 'CountWeighted_LHENjet2_LHEHT1200to2500' : [ 2.48993376e+01, 2.42548281e+01, 2.48186972e+01, ], 'CountWeightedLHEWeightScale_LHENjet2_LHEHT1200to2500' : [ 3.04254389e+01, 2.72267197e+01, 2.45543620e+01, 2.78390944e+01, 2.48993376e+01, 2.24455587e+01, 2.57263086e+01, 2.29987157e+01, 2.07227580e+01, ], 'CountWeightedLHEEnvelope_LHENjet2_LHEHT1200to2500' : [ 3.04254389e+01, 2.07227580e+01, ], 'CountWeightedFull_LHENjet2_LHEHT1200to2500' : [ 2.48993376e+01, 2.42548281e+01, 2.48186972e+01, ], 'CountWeightedFullLHEWeightScale_LHENjet2_LHEHT1200to2500' : [ 3.04254389e+01, 2.72267197e+01, 2.45543620e+01, 2.78390944e+01, 2.48993376e+01, 2.24455587e+01, 2.57263086e+01, 2.29987157e+01, 2.07227580e+01, ], 'CountWeightedFullLHEEnvelope_LHENjet2_LHEHT1200to2500' : [ 3.04254389e+01, 2.07227580e+01, ], 'CountWeightedL1PrefireNom_LHENjet2_LHEHT1200to2500' : [ 2.43610152e+01, 2.37584346e+01, 2.42382592e+01, ], 'CountWeightedL1Prefire_LHENjet2_LHEHT1200to2500' : [ 2.43610152e+01, 2.42376651e+01, 2.44857594e+01, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet2_LHEHT1200to2500' : [ 2.97578115e+01, 2.66535544e+01, 2.40571609e+01, 2.72116381e+01, 2.43610152e+01, 2.19788530e+01, 2.51325464e+01, 2.24895885e+01, 2.02816045e+01, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet2_LHEHT1200to2500' : [ 2.97578115e+01, 2.02816045e+01, ], 'CountWeightedFullL1PrefireNom_LHENjet2_LHEHT1200to2500' : [ 2.43610152e+01, 2.37584346e+01, 2.42382592e+01, ], 'CountWeightedFullL1Prefire_LHENjet2_LHEHT1200to2500' : [ 2.43610152e+01, 2.42376651e+01, 2.44857594e+01, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet2_LHEHT1200to2500' : [ 2.97578115e+01, 2.66535544e+01, 2.40571609e+01, 2.72116381e+01, 2.43610152e+01, 2.19788530e+01, 2.51325464e+01, 2.24895885e+01, 2.02816045e+01, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet2_LHEHT1200to2500' : [ 2.97578115e+01, 2.02816045e+01, ], 'Count_LHENjet3_LHEHT0to70' : [ 75338, ], 'CountWeighted_LHENjet3_LHEHT0to70' : [ 7.52944490e+04, 7.52743672e+04, 7.53166683e+04, ], 'CountWeightedLHEWeightScale_LHENjet3_LHEHT0to70' : [ 7.10719758e+04, 7.80803257e+04, 8.25371473e+04, 6.84931244e+04, 7.52944490e+04, 7.96279209e+04, 6.63851501e+04, 7.30180833e+04, 7.72502950e+04, ], 'CountWeightedLHEEnvelope_LHENjet3_LHEHT0to70' : [ 8.30924337e+04, 6.58607385e+04, ], 'CountWeightedFull_LHENjet3_LHEHT0to70' : [ 7.52944490e+04, 7.52743672e+04, 7.53166683e+04, ], 'CountWeightedFullLHEWeightScale_LHENjet3_LHEHT0to70' : [ 7.10719758e+04, 7.80803257e+04, 8.25371473e+04, 6.84931244e+04, 7.52944490e+04, 7.96279209e+04, 6.63851501e+04, 7.30180833e+04, 7.72502950e+04, ], 'CountWeightedFullLHEEnvelope_LHENjet3_LHEHT0to70' : [ 8.30924337e+04, 6.58607385e+04, ], 'CountWeightedL1PrefireNom_LHENjet3_LHEHT0to70' : [ 7.39267696e+04, 7.39085955e+04, 7.39472579e+04, ], 'CountWeightedL1Prefire_LHENjet3_LHEHT0to70' : [ 7.39267696e+04, 7.35623904e+04, 7.42746296e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet3_LHEHT0to70' : [ 6.97611757e+04, 7.66608630e+04, 8.10514099e+04, 6.72310364e+04, 7.39267696e+04, 7.81956520e+04, 6.51629247e+04, 7.16927648e+04, 7.58617766e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet3_LHEHT0to70' : [ 8.15870920e+04, 6.46561609e+04, ], 'CountWeightedFullL1PrefireNom_LHENjet3_LHEHT0to70' : [ 7.39267696e+04, 7.39085955e+04, 7.39472579e+04, ], 'CountWeightedFullL1Prefire_LHENjet3_LHEHT0to70' : [ 7.39267696e+04, 7.35623904e+04, 7.42746296e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet3_LHEHT0to70' : [ 6.97611757e+04, 7.66608630e+04, 8.10514099e+04, 6.72310364e+04, 7.39267696e+04, 7.81956520e+04, 6.51629247e+04, 7.16927648e+04, 7.58617766e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet3_LHEHT0to70' : [ 8.15870920e+04, 6.46561609e+04, ], 'Count_LHENjet3_LHEHT70to100' : [ 272741, ], 'CountWeighted_LHENjet3_LHEHT70to100' : [ 2.72519826e+05, 2.72412955e+05, 2.72673546e+05, ], 'CountWeightedLHEWeightScale_LHENjet3_LHEHT70to100' : [ 2.65771053e+05, 2.82621028e+05, 2.92163283e+05, 2.56167287e+05, 2.72519826e+05, 2.81805041e+05, 2.48295136e+05, 2.64242458e+05, 2.73315207e+05, ], 'CountWeightedLHEEnvelope_LHENjet3_LHEHT70to100' : [ 2.96657567e+05, 2.44478751e+05, ], 'CountWeightedFull_LHENjet3_LHEHT70to100' : [ 2.72519826e+05, 2.72412955e+05, 2.72673546e+05, ], 'CountWeightedFullLHEWeightScale_LHENjet3_LHEHT70to100' : [ 2.65771053e+05, 2.82621028e+05, 2.92163283e+05, 2.56167287e+05, 2.72519826e+05, 2.81805041e+05, 2.48295136e+05, 2.64242458e+05, 2.73315207e+05, ], 'CountWeightedFullLHEEnvelope_LHENjet3_LHEHT70to100' : [ 2.96657567e+05, 2.44478751e+05, ], 'CountWeightedL1PrefireNom_LHENjet3_LHEHT70to100' : [ 2.66624601e+05, 2.66503931e+05, 2.66792381e+05, ], 'CountWeightedL1Prefire_LHENjet3_LHEHT70to100' : [ 2.66624601e+05, 2.65066220e+05, 2.68110563e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet3_LHEHT70to100' : [ 2.59966363e+05, 2.76507820e+05, 2.85889914e+05, 2.50571916e+05, 2.66624601e+05, 2.75753531e+05, 2.42871515e+05, 2.58526056e+05, 2.67445719e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet3_LHEHT70to100' : [ 2.90243934e+05, 2.39177101e+05, ], 'CountWeightedFullL1PrefireNom_LHENjet3_LHEHT70to100' : [ 2.66624601e+05, 2.66503931e+05, 2.66792381e+05, ], 'CountWeightedFullL1Prefire_LHENjet3_LHEHT70to100' : [ 2.66624601e+05, 2.65066220e+05, 2.68110563e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet3_LHEHT70to100' : [ 2.59966363e+05, 2.76507820e+05, 2.85889914e+05, 2.50571916e+05, 2.66624601e+05, 2.75753531e+05, 2.42871515e+05, 2.58526056e+05, 2.67445719e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet3_LHEHT70to100' : [ 2.90243934e+05, 2.39177101e+05, ], 'Count_LHENjet3_LHEHT100to200' : [ 515575, ], 'CountWeighted_LHENjet3_LHEHT100to200' : [ 5.14806388e+05, 5.14730016e+05, 5.14855922e+05, ], 'CountWeightedLHEWeightScale_LHENjet3_LHEHT100to200' : [ 5.22425066e+05, 5.35018495e+05, 5.38107280e+05, 5.02571929e+05, 5.14806388e+05, 5.17868029e+05, 4.86207709e+05, 4.98150962e+05, 5.01186440e+05, ], 'CountWeightedLHEEnvelope_LHENjet3_LHEHT100to200' : [ 5.56545145e+05, 4.70092300e+05, ], 'CountWeightedFull_LHENjet3_LHEHT100to200' : [ 5.14806388e+05, 5.14730016e+05, 5.14855922e+05, ], 'CountWeightedFullLHEWeightScale_LHENjet3_LHEHT100to200' : [ 5.22425066e+05, 5.35018495e+05, 5.38107280e+05, 5.02571929e+05, 5.14806388e+05, 5.17868029e+05, 4.86207709e+05, 4.98150962e+05, 5.01186440e+05, ], 'CountWeightedFullLHEEnvelope_LHENjet3_LHEHT100to200' : [ 5.56545145e+05, 4.70092300e+05, ], 'CountWeightedL1PrefireNom_LHENjet3_LHEHT100to200' : [ 4.96378808e+05, 4.96293056e+05, 4.96442515e+05, ], 'CountWeightedL1Prefire_LHENjet3_LHEHT100to200' : [ 4.96378808e+05, 4.91845901e+05, 5.00812137e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet3_LHEHT100to200' : [ 5.03454337e+05, 5.15869990e+05, 5.19069094e+05, 4.84319960e+05, 4.96378808e+05, 4.99543290e+05, 4.68549371e+05, 4.80318723e+05, 4.83450947e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet3_LHEHT100to200' : [ 5.36582636e+05, 4.53251500e+05, ], 'CountWeightedFullL1PrefireNom_LHENjet3_LHEHT100to200' : [ 4.96378808e+05, 4.96293056e+05, 4.96442515e+05, ], 'CountWeightedFullL1Prefire_LHENjet3_LHEHT100to200' : [ 4.96378808e+05, 4.91845901e+05, 5.00812137e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet3_LHEHT100to200' : [ 5.03454337e+05, 5.15869990e+05, 5.19069094e+05, 4.84319960e+05, 4.96378808e+05, 4.99543290e+05, 4.68549371e+05, 4.80318723e+05, 4.83450947e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet3_LHEHT100to200' : [ 5.36582636e+05, 4.53251500e+05, ], 'Count_LHENjet3_LHEHT200to400' : [ 131518, ], 'CountWeighted_LHENjet3_LHEHT200to400' : [ 1.31132208e+05, 1.31189920e+05, 1.31063610e+05, ], 'CountWeightedLHEWeightScale_LHENjet3_LHEHT200to400' : [ 1.41741587e+05, 1.38555622e+05, 1.34443230e+05, 1.34134638e+05, 1.31132208e+05, 1.27247066e+05, 1.27959954e+05, 1.25108328e+05, 1.21406476e+05, ], 'CountWeightedLHEEnvelope_LHENjet3_LHEHT200to400' : [ 1.44783294e+05, 1.18814728e+05, ], 'CountWeightedFull_LHENjet3_LHEHT200to400' : [ 1.31132208e+05, 1.31189920e+05, 1.31063610e+05, ], 'CountWeightedFullLHEWeightScale_LHENjet3_LHEHT200to400' : [ 1.41741587e+05, 1.38555622e+05, 1.34443230e+05, 1.34134638e+05, 1.31132208e+05, 1.27247066e+05, 1.27959954e+05, 1.25108328e+05, 1.21406476e+05, ], 'CountWeightedFullLHEEnvelope_LHENjet3_LHEHT200to400' : [ 1.44783294e+05, 1.18814728e+05, ], 'CountWeightedL1PrefireNom_LHENjet3_LHEHT200to400' : [ 1.22598272e+05, 1.22639853e+05, 1.22543074e+05, ], 'CountWeightedL1Prefire_LHENjet3_LHEHT200to400' : [ 1.22598272e+05, 1.20709736e+05, 1.24496755e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet3_LHEHT200to400' : [ 1.32340883e+05, 1.29525608e+05, 1.25808766e+05, 1.25250930e+05, 1.22598272e+05, 1.19086735e+05, 1.19495038e+05, 1.16976110e+05, 1.13630130e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet3_LHEHT200to400' : [ 1.35245719e+05, 1.11150900e+05, ], 'CountWeightedFullL1PrefireNom_LHENjet3_LHEHT200to400' : [ 1.22598272e+05, 1.22639853e+05, 1.22543074e+05, ], 'CountWeightedFullL1Prefire_LHENjet3_LHEHT200to400' : [ 1.22598272e+05, 1.20709736e+05, 1.24496755e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet3_LHEHT200to400' : [ 1.32340883e+05, 1.29525608e+05, 1.25808766e+05, 1.25250930e+05, 1.22598272e+05, 1.19086735e+05, 1.19495038e+05, 1.16976110e+05, 1.13630130e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet3_LHEHT200to400' : [ 1.35245719e+05, 1.11150900e+05, ], 'Count_LHENjet3_LHEHT400to600' : [ 11649, ], 'CountWeighted_LHENjet3_LHEHT400to600' : [ 1.15770156e+04, 1.15564927e+04, 1.16023910e+04, ], 'CountWeightedLHEWeightScale_LHENjet3_LHEHT400to600' : [ 1.34582086e+04, 1.26587633e+04, 1.19109310e+04, 1.23137407e+04, 1.15770156e+04, 1.08888860e+04, 1.13975473e+04, 1.07114634e+04, 1.00710922e+04, ], 'CountWeightedLHEEnvelope_LHENjet3_LHEHT400to600' : [ 1.35378843e+04, 1.00127462e+04, ], 'CountWeightedFull_LHENjet3_LHEHT400to600' : [ 1.15770156e+04, 1.15564927e+04, 1.16023910e+04, ], 'CountWeightedFullLHEWeightScale_LHENjet3_LHEHT400to600' : [ 1.34582086e+04, 1.26587633e+04, 1.19109310e+04, 1.23137407e+04, 1.15770156e+04, 1.08888860e+04, 1.13975473e+04, 1.07114634e+04, 1.00710922e+04, ], 'CountWeightedFullLHEEnvelope_LHENjet3_LHEHT400to600' : [ 1.35378843e+04, 1.00127462e+04, ], 'CountWeightedL1PrefireNom_LHENjet3_LHEHT400to600' : [ 1.06117536e+04, 1.05928065e+04, 1.06368767e+04, ], 'CountWeightedL1Prefire_LHENjet3_LHEHT400to600' : [ 1.06117536e+04, 1.04108737e+04, 1.08158270e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet3_LHEHT400to600' : [ 1.23075867e+04, 1.15964937e+04, 1.09273879e+04, 1.12675928e+04, 1.06117536e+04, 9.99556510e+03, 1.04347151e+04, 9.82353066e+03, 9.24969845e+03, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet3_LHEHT400to600' : [ 1.23828814e+04, 9.19413504e+03, ], 'CountWeightedFullL1PrefireNom_LHENjet3_LHEHT400to600' : [ 1.06117536e+04, 1.05928065e+04, 1.06368767e+04, ], 'CountWeightedFullL1Prefire_LHENjet3_LHEHT400to600' : [ 1.06117536e+04, 1.04108737e+04, 1.08158270e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet3_LHEHT400to600' : [ 1.23075867e+04, 1.15964937e+04, 1.09273879e+04, 1.12675928e+04, 1.06117536e+04, 9.99556510e+03, 1.04347151e+04, 9.82353066e+03, 9.24969845e+03, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet3_LHEHT400to600' : [ 1.23828814e+04, 9.19413504e+03, ], 'Count_LHENjet3_LHEHT600to800' : [ 1993, ], 'CountWeighted_LHENjet3_LHEHT600to800' : [ 1.97615134e+03, 1.98099921e+03, 1.96867681e+03, ], 'CountWeightedLHEWeightScale_LHENjet3_LHEHT600to800' : [ 2.36764155e+03, 2.17905522e+03, 2.01451844e+03, 2.14798014e+03, 1.97615134e+03, 1.82640499e+03, 1.97141871e+03, 1.81312334e+03, 1.67523884e+03, ], 'CountWeightedLHEEnvelope_LHENjet3_LHEHT600to800' : [ 2.37315627e+03, 1.67159960e+03, ], 'CountWeightedFull_LHENjet3_LHEHT600to800' : [ 1.97615134e+03, 1.98099921e+03, 1.96867681e+03, ], 'CountWeightedFullLHEWeightScale_LHENjet3_LHEHT600to800' : [ 2.36764155e+03, 2.17905522e+03, 2.01451844e+03, 2.14798014e+03, 1.97615134e+03, 1.82640499e+03, 1.97141871e+03, 1.81312334e+03, 1.67523884e+03, ], 'CountWeightedFullLHEEnvelope_LHENjet3_LHEHT600to800' : [ 2.37315627e+03, 1.67159960e+03, ], 'CountWeightedL1PrefireNom_LHENjet3_LHEHT600to800' : [ 1.83058090e+03, 1.83272211e+03, 1.82617683e+03, ], 'CountWeightedL1Prefire_LHENjet3_LHEHT600to800' : [ 1.83058090e+03, 1.80061989e+03, 1.86120581e+03, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet3_LHEHT600to800' : [ 2.18673964e+03, 2.01647918e+03, 1.86740426e+03, 1.98597137e+03, 1.83058090e+03, 1.69469743e+03, 1.82449425e+03, 1.68112652e+03, 1.55583032e+03, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet3_LHEHT600to800' : [ 2.19199101e+03, 1.55242828e+03, ], 'CountWeightedFullL1PrefireNom_LHENjet3_LHEHT600to800' : [ 1.83058090e+03, 1.83272211e+03, 1.82617683e+03, ], 'CountWeightedFullL1Prefire_LHENjet3_LHEHT600to800' : [ 1.83058090e+03, 1.80061989e+03, 1.86120581e+03, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet3_LHEHT600to800' : [ 2.18673964e+03, 2.01647918e+03, 1.86740426e+03, 1.98597137e+03, 1.83058090e+03, 1.69469743e+03, 1.82449425e+03, 1.68112652e+03, 1.55583032e+03, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet3_LHEHT600to800' : [ 2.19199101e+03, 1.55242828e+03, ], 'Count_LHENjet3_LHEHT800to1200' : [ 638, ], 'CountWeighted_LHENjet3_LHEHT800to1200' : [ 6.29101813e+02, 6.32286456e+02, 6.26411221e+02, ], 'CountWeightedLHEWeightScale_LHENjet3_LHEHT800to1200' : [ 7.67920386e+02, 6.99821173e+02, 6.41721894e+02, 6.90772696e+02, 6.29101813e+02, 5.76570517e+02, 6.28713142e+02, 5.72256101e+02, 5.24210293e+02, ], 'CountWeightedLHEEnvelope_LHENjet3_LHEHT800to1200' : [ 7.69325781e+02, 5.23394350e+02, ], 'CountWeightedFull_LHENjet3_LHEHT800to1200' : [ 6.29101813e+02, 6.32286456e+02, 6.26411221e+02, ], 'CountWeightedFullLHEWeightScale_LHENjet3_LHEHT800to1200' : [ 7.67920386e+02, 6.99821173e+02, 6.41721894e+02, 6.90772696e+02, 6.29101813e+02, 5.76570517e+02, 6.28713142e+02, 5.72256101e+02, 5.24210293e+02, ], 'CountWeightedFullLHEEnvelope_LHENjet3_LHEHT800to1200' : [ 7.69325781e+02, 5.23394350e+02, ], 'CountWeightedL1PrefireNom_LHENjet3_LHEHT800to1200' : [ 5.93487794e+02, 5.97050204e+02, 5.90056553e+02, ], 'CountWeightedL1Prefire_LHENjet3_LHEHT800to1200' : [ 5.93487794e+02, 5.85787067e+02, 6.01197437e+02, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet3_LHEHT800to1200' : [ 7.22706328e+02, 6.59847264e+02, 6.06029345e+02, 6.50494892e+02, 5.93487794e+02, 5.44768522e+02, 5.92373387e+02, 5.40119676e+02, 4.95512424e+02, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet3_LHEHT800to1200' : [ 7.24088148e+02, 4.94702009e+02, ], 'CountWeightedFullL1PrefireNom_LHENjet3_LHEHT800to1200' : [ 5.93487794e+02, 5.97050204e+02, 5.90056553e+02, ], 'CountWeightedFullL1Prefire_LHENjet3_LHEHT800to1200' : [ 5.93487794e+02, 5.85787067e+02, 6.01197437e+02, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet3_LHEHT800to1200' : [ 7.22706328e+02, 6.59847264e+02, 6.06029345e+02, 6.50494892e+02, 5.93487794e+02, 5.44768522e+02, 5.92373387e+02, 5.40119676e+02, 4.95512424e+02, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet3_LHEHT800to1200' : [ 7.24088148e+02, 4.94702009e+02, ], 'Count_LHENjet3_LHEHT1200to2500' : [ 108, ], 'CountWeighted_LHENjet3_LHEHT1200to2500' : [ 1.05480607e+02, 1.06474697e+02, 1.03799596e+02, ], 'CountWeightedLHEWeightScale_LHENjet3_LHEHT1200to2500' : [ 1.30974150e+02, 1.16938387e+02, 1.05352597e+02, 1.18140473e+02, 1.05480607e+02, 9.50315418e+01, 1.07675318e+02, 9.61379690e+01, 8.66124661e+01, ], 'CountWeightedLHEEnvelope_LHENjet3_LHEHT1200to2500' : [ 1.31015024e+02, 8.66014030e+01, ], 'CountWeightedFull_LHENjet3_LHEHT1200to2500' : [ 1.05480607e+02, 1.06474697e+02, 1.03799596e+02, ], 'CountWeightedFullLHEWeightScale_LHENjet3_LHEHT1200to2500' : [ 1.30974150e+02, 1.16938387e+02, 1.05352597e+02, 1.18140473e+02, 1.05480607e+02, 9.50315418e+01, 1.07675318e+02, 9.61379690e+01, 8.66124661e+01, ], 'CountWeightedFullLHEEnvelope_LHENjet3_LHEHT1200to2500' : [ 1.31015024e+02, 8.66014030e+01, ], 'CountWeightedL1PrefireNom_LHENjet3_LHEHT1200to2500' : [ 1.01524713e+02, 1.02487559e+02, 9.99804802e+01, ], 'CountWeightedL1Prefire_LHENjet3_LHEHT1200to2500' : [ 1.01524713e+02, 1.00658031e+02, 1.02374253e+02, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet3_LHEHT1200to2500' : [ 1.25888364e+02, 1.12490131e+02, 1.01415719e+02, 1.13615805e+02, 1.01524713e+02, 9.15314734e+01, 1.03604404e+02, 9.25799390e+01, 8.34652436e+01, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet3_LHEHT1200to2500' : [ 1.25929238e+02, 8.34541805e+01, ], 'CountWeightedFullL1PrefireNom_LHENjet3_LHEHT1200to2500' : [ 1.01524713e+02, 1.02487559e+02, 9.99804802e+01, ], 'CountWeightedFullL1Prefire_LHENjet3_LHEHT1200to2500' : [ 1.01524713e+02, 1.00658031e+02, 1.02374253e+02, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet3_LHEHT1200to2500' : [ 1.25888364e+02, 1.12490131e+02, 1.01415719e+02, 1.13615805e+02, 1.01524713e+02, 9.15314734e+01, 1.03604404e+02, 9.25799390e+01, 8.34652436e+01, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet3_LHEHT1200to2500' : [ 1.25929238e+02, 8.34541805e+01, ], 'Count_LHENjet3_LHEHT2500toInf' : [ 2, ], 'CountWeighted_LHENjet3_LHEHT2500toInf' : [ 7.09160004e-01, 5.49192173e-01, 9.32272682e-01, ], 'CountWeightedLHEWeightScale_LHENjet3_LHEHT2500toInf' : [ 8.56204595e-01, 7.63409145e-01, 6.85476958e-01, 7.95395351e-01, 7.09160004e-01, 6.36792564e-01, 7.42733854e-01, 6.62235416e-01, 5.94631231e-01, ], 'CountWeightedLHEEnvelope_LHENjet3_LHEHT2500toInf' : [ 8.56204595e-01, 5.94631231e-01, ], 'CountWeightedFull_LHENjet3_LHEHT2500toInf' : [ 7.09160004e-01, 5.49192173e-01, 9.32272682e-01, ], 'CountWeightedFullLHEWeightScale_LHENjet3_LHEHT2500toInf' : [ 8.56204595e-01, 7.63409145e-01, 6.85476958e-01, 7.95395351e-01, 7.09160004e-01, 6.36792564e-01, 7.42733854e-01, 6.62235416e-01, 5.94631231e-01, ], 'CountWeightedFullLHEEnvelope_LHENjet3_LHEHT2500toInf' : [ 8.56204595e-01, 5.94631231e-01, ], 'CountWeightedL1PrefireNom_LHENjet3_LHEHT2500toInf' : [ 7.09160004e-01, 5.49192173e-01, 9.32272682e-01, ], 'CountWeightedL1Prefire_LHENjet3_LHEHT2500toInf' : [ 7.09160004e-01, 7.09160004e-01, 7.09160004e-01, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet3_LHEHT2500toInf' : [ 8.56204595e-01, 7.63409145e-01, 6.85476958e-01, 7.95395351e-01, 7.09160004e-01, 6.36792564e-01, 7.42733854e-01, 6.62235416e-01, 5.94631231e-01, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet3_LHEHT2500toInf' : [ 8.56204595e-01, 5.94631231e-01, ], 'CountWeightedFullL1PrefireNom_LHENjet3_LHEHT2500toInf' : [ 7.09160004e-01, 5.49192173e-01, 9.32272682e-01, ], 'CountWeightedFullL1Prefire_LHENjet3_LHEHT2500toInf' : [ 7.09160004e-01, 7.09160004e-01, 7.09160004e-01, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet3_LHEHT2500toInf' : [ 8.56204595e-01, 7.63409145e-01, 6.85476958e-01, 7.95395351e-01, 7.09160004e-01, 6.36792564e-01, 7.42733854e-01, 6.62235416e-01, 5.94631231e-01, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet3_LHEHT2500toInf' : [ 8.56204595e-01, 5.94631231e-01, ], 'Count_LHENjet4_LHEHT0to70' : [ 379, ], 'CountWeighted_LHENjet4_LHEHT0to70' : [ 3.78279667e+02, 3.84238838e+02, 3.68316796e+02, ], 'CountWeightedLHEWeightScale_LHENjet4_LHEHT0to70' : [ 3.77583804e+02, 3.98885040e+02, 4.08629536e+02, 3.57658576e+02, 3.78279667e+02, 3.87827052e+02, 3.41397921e+02, 3.61471622e+02, 3.70855457e+02, ], 'CountWeightedLHEEnvelope_LHENjet4_LHEHT0to70' : [ 4.22950859e+02, 3.29376285e+02, ], 'CountWeightedFull_LHENjet4_LHEHT0to70' : [ 3.78279667e+02, 3.84238838e+02, 3.68316796e+02, ], 'CountWeightedFullLHEWeightScale_LHENjet4_LHEHT0to70' : [ 3.77583804e+02, 3.98885040e+02, 4.08629536e+02, 3.57658576e+02, 3.78279667e+02, 3.87827052e+02, 3.41397921e+02, 3.61471622e+02, 3.70855457e+02, ], 'CountWeightedFullLHEEnvelope_LHENjet4_LHEHT0to70' : [ 4.22950859e+02, 3.29376285e+02, ], 'CountWeightedL1PrefireNom_LHENjet4_LHEHT0to70' : [ 3.70944889e+02, 3.76908753e+02, 3.61004578e+02, ], 'CountWeightedL1Prefire_LHENjet4_LHEHT0to70' : [ 3.70944889e+02, 3.68973185e+02, 3.72810547e+02, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet4_LHEHT0to70' : [ 3.70064608e+02, 3.91103628e+02, 4.00785871e+02, 3.50581667e+02, 3.70944889e+02, 3.80426753e+02, 3.34680578e+02, 3.54500024e+02, 3.63815993e+02, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet4_LHEHT0to70' : [ 4.14671980e+02, 3.23035658e+02, ], 'CountWeightedFullL1PrefireNom_LHENjet4_LHEHT0to70' : [ 3.70944889e+02, 3.76908753e+02, 3.61004578e+02, ], 'CountWeightedFullL1Prefire_LHENjet4_LHEHT0to70' : [ 3.70944889e+02, 3.68973185e+02, 3.72810547e+02, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet4_LHEHT0to70' : [ 3.70064608e+02, 3.91103628e+02, 4.00785871e+02, 3.50581667e+02, 3.70944889e+02, 3.80426753e+02, 3.34680578e+02, 3.54500024e+02, 3.63815993e+02, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet4_LHEHT0to70' : [ 4.14671980e+02, 3.23035658e+02, ], 'Count_LHENjet4_LHEHT70to100' : [ 19174, ], 'CountWeighted_LHENjet4_LHEHT70to100' : [ 1.91275890e+04, 1.91342810e+04, 1.91232000e+04, ], 'CountWeightedLHEWeightScale_LHENjet4_LHEHT70to100' : [ 1.94283352e+04, 1.99467996e+04, 2.00184196e+04, 1.86242193e+04, 1.91275890e+04, 1.92009341e+04, 1.79668263e+04, 1.84580462e+04, 1.85326268e+04, ], 'CountWeightedLHEEnvelope_LHENjet4_LHEHT70to100' : [ 2.10732364e+04, 1.70278776e+04, ], 'CountWeightedFull_LHENjet4_LHEHT70to100' : [ 1.91275890e+04, 1.91342810e+04, 1.91232000e+04, ], 'CountWeightedFullLHEWeightScale_LHENjet4_LHEHT70to100' : [ 1.94283352e+04, 1.99467996e+04, 2.00184196e+04, 1.86242193e+04, 1.91275890e+04, 1.92009341e+04, 1.79668263e+04, 1.84580462e+04, 1.85326268e+04, ], 'CountWeightedFullLHEEnvelope_LHENjet4_LHEHT70to100' : [ 2.10732364e+04, 1.70278776e+04, ], 'CountWeightedL1PrefireNom_LHENjet4_LHEHT70to100' : [ 1.87185034e+04, 1.87245269e+04, 1.87147216e+04, ], 'CountWeightedL1Prefire_LHENjet4_LHEHT70to100' : [ 1.87185034e+04, 1.86104696e+04, 1.88215710e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet4_LHEHT70to100' : [ 1.90085423e+04, 1.95208258e+04, 1.95945845e+04, 1.82211344e+04, 1.87185034e+04, 1.87938590e+04, 1.75774189e+04, 1.80627801e+04, 1.81392689e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet4_LHEHT70to100' : [ 2.06226840e+04, 1.66625382e+04, ], 'CountWeightedFullL1PrefireNom_LHENjet4_LHEHT70to100' : [ 1.87185034e+04, 1.87245269e+04, 1.87147216e+04, ], 'CountWeightedFullL1Prefire_LHENjet4_LHEHT70to100' : [ 1.87185034e+04, 1.86104696e+04, 1.88215710e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet4_LHEHT70to100' : [ 1.90085423e+04, 1.95208258e+04, 1.95945845e+04, 1.82211344e+04, 1.87185034e+04, 1.87938590e+04, 1.75774189e+04, 1.80627801e+04, 1.81392689e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet4_LHEHT70to100' : [ 2.06226840e+04, 1.66625382e+04, ], 'Count_LHENjet4_LHEHT100to200' : [ 258694, ], 'CountWeighted_LHENjet4_LHEHT100to200' : [ 2.58259471e+05, 2.58385635e+05, 2.58117214e+05, ], 'CountWeightedLHEWeightScale_LHENjet4_LHEHT100to200' : [ 2.72091804e+05, 2.68921664e+05, 2.62630093e+05, 2.61258639e+05, 2.58259471e+05, 2.52249927e+05, 2.52357542e+05, 2.49500685e+05, 2.43720281e+05, ], 'CountWeightedLHEEnvelope_LHENjet4_LHEHT100to200' : [ 2.83828179e+05, 2.33160870e+05, ], 'CountWeightedFull_LHENjet4_LHEHT100to200' : [ 2.58259471e+05, 2.58385635e+05, 2.58117214e+05, ], 'CountWeightedFullLHEWeightScale_LHENjet4_LHEHT100to200' : [ 2.72091804e+05, 2.68921664e+05, 2.62630093e+05, 2.61258639e+05, 2.58259471e+05, 2.52249927e+05, 2.52357542e+05, 2.49500685e+05, 2.43720281e+05, ], 'CountWeightedFullLHEEnvelope_LHENjet4_LHEHT100to200' : [ 2.83828179e+05, 2.33160870e+05, ], 'CountWeightedL1PrefireNom_LHENjet4_LHEHT100to200' : [ 2.49501134e+05, 2.49602874e+05, 2.49374204e+05, ], 'CountWeightedL1Prefire_LHENjet4_LHEHT100to200' : [ 2.49501134e+05, 2.47281245e+05, 2.51646058e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet4_LHEHT100to200' : [ 2.62728525e+05, 2.59811121e+05, 2.53841103e+05, 2.52259227e+05, 2.49501134e+05, 2.43799460e+05, 2.43657531e+05, 2.41032130e+05, 2.35548386e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet4_LHEHT100to200' : [ 2.74155074e+05, 2.25265043e+05, ], 'CountWeightedFullL1PrefireNom_LHENjet4_LHEHT100to200' : [ 2.49501134e+05, 2.49602874e+05, 2.49374204e+05, ], 'CountWeightedFullL1Prefire_LHENjet4_LHEHT100to200' : [ 2.49501134e+05, 2.47281245e+05, 2.51646058e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet4_LHEHT100to200' : [ 2.62728525e+05, 2.59811121e+05, 2.53841103e+05, 2.52259227e+05, 2.49501134e+05, 2.43799460e+05, 2.43657531e+05, 2.41032130e+05, 2.35548386e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet4_LHEHT100to200' : [ 2.74155074e+05, 2.25265043e+05, ], 'Count_LHENjet4_LHEHT200to400' : [ 228358, ], 'CountWeighted_LHENjet4_LHEHT200to400' : [ 2.27386836e+05, 2.27490485e+05, 2.27269959e+05, ], 'CountWeightedLHEWeightScale_LHENjet4_LHEHT200to400' : [ 2.52701886e+05, 2.40176110e+05, 2.27595128e+05, 2.39225173e+05, 2.27386836e+05, 2.15488570e+05, 2.28308989e+05, 2.17029647e+05, 2.05681696e+05, ], 'CountWeightedLHEEnvelope_LHENjet4_LHEHT200to400' : [ 2.56647035e+05, 2.02308209e+05, ], 'CountWeightedFull_LHENjet4_LHEHT200to400' : [ 2.27386836e+05, 2.27490485e+05, 2.27269959e+05, ], 'CountWeightedFullLHEWeightScale_LHENjet4_LHEHT200to400' : [ 2.52701886e+05, 2.40176110e+05, 2.27595128e+05, 2.39225173e+05, 2.27386836e+05, 2.15488570e+05, 2.28308989e+05, 2.17029647e+05, 2.05681696e+05, ], 'CountWeightedFullLHEEnvelope_LHENjet4_LHEHT200to400' : [ 2.56647035e+05, 2.02308209e+05, ], 'CountWeightedL1PrefireNom_LHENjet4_LHEHT200to400' : [ 2.12559036e+05, 2.12652702e+05, 2.12452916e+05, ], 'CountWeightedL1Prefire_LHENjet4_LHEHT200to400' : [ 2.12559036e+05, 2.09171009e+05, 2.15935839e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet4_LHEHT200to400' : [ 2.35897762e+05, 2.24504480e+05, 2.12975396e+05, 2.23325729e+05, 2.12559036e+05, 2.01656248e+05, 2.13140796e+05, 2.02883780e+05, 1.92485818e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet4_LHEHT200to400' : [ 2.39673081e+05, 1.89252542e+05, ], 'CountWeightedFullL1PrefireNom_LHENjet4_LHEHT200to400' : [ 2.12559036e+05, 2.12652702e+05, 2.12452916e+05, ], 'CountWeightedFullL1Prefire_LHENjet4_LHEHT200to400' : [ 2.12559036e+05, 2.09171009e+05, 2.15935839e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet4_LHEHT200to400' : [ 2.35897762e+05, 2.24504480e+05, 2.12975396e+05, 2.23325729e+05, 2.12559036e+05, 2.01656248e+05, 2.13140796e+05, 2.02883780e+05, 1.92485818e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet4_LHEHT200to400' : [ 2.39673081e+05, 1.89252542e+05, ], 'Count_LHENjet4_LHEHT400to600' : [ 46855, ], 'CountWeighted_LHENjet4_LHEHT400to600' : [ 4.64780136e+04, 4.64866614e+04, 4.65036826e+04, ], 'CountWeightedLHEWeightScale_LHENjet4_LHEHT400to600' : [ 5.55234752e+04, 5.10272956e+04, 4.70708344e+04, 5.05875713e+04, 4.64780136e+04, 4.28640794e+04, 4.66706190e+04, 4.28691897e+04, 3.95266163e+04, ], 'CountWeightedLHEEnvelope_LHENjet4_LHEHT400to600' : [ 5.57708795e+04, 3.93502082e+04, ], 'CountWeightedFull_LHENjet4_LHEHT400to600' : [ 4.64780136e+04, 4.64866614e+04, 4.65036826e+04, ], 'CountWeightedFullLHEWeightScale_LHENjet4_LHEHT400to600' : [ 5.55234752e+04, 5.10272956e+04, 4.70708344e+04, 5.05875713e+04, 4.64780136e+04, 4.28640794e+04, 4.66706190e+04, 4.28691897e+04, 3.95266163e+04, ], 'CountWeightedFullLHEEnvelope_LHENjet4_LHEHT400to600' : [ 5.57708795e+04, 3.93502082e+04, ], 'CountWeightedL1PrefireNom_LHENjet4_LHEHT400to600' : [ 4.21294685e+04, 4.21317410e+04, 4.21646665e+04, ], 'CountWeightedL1Prefire_LHENjet4_LHEHT400to600' : [ 4.21294685e+04, 4.12044726e+04, 4.30660542e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet4_LHEHT400to600' : [ 5.02010846e+04, 4.62372896e+04, 4.27307987e+04, 4.57538171e+04, 4.21294685e+04, 3.89252876e+04, 4.22231691e+04, 3.88694872e+04, 3.59048999e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet4_LHEHT400to600' : [ 5.04337306e+04, 3.57383602e+04, ], 'CountWeightedFullL1PrefireNom_LHENjet4_LHEHT400to600' : [ 4.21294685e+04, 4.21317410e+04, 4.21646665e+04, ], 'CountWeightedFullL1Prefire_LHENjet4_LHEHT400to600' : [ 4.21294685e+04, 4.12044726e+04, 4.30660542e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet4_LHEHT400to600' : [ 5.02010846e+04, 4.62372896e+04, 4.27307987e+04, 4.57538171e+04, 4.21294685e+04, 3.89252876e+04, 4.22231691e+04, 3.88694872e+04, 3.59048999e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet4_LHEHT400to600' : [ 5.04337306e+04, 3.57383602e+04, ], 'Count_LHENjet4_LHEHT600to800' : [ 12786, ], 'CountWeighted_LHENjet4_LHEHT600to800' : [ 1.27697511e+04, 1.27714789e+04, 1.27669980e+04, ], 'CountWeightedLHEWeightScale_LHENjet4_LHEHT600to800' : [ 1.57981522e+04, 1.42342948e+04, 1.29177547e+04, 1.41773239e+04, 1.27697511e+04, 1.15857641e+04, 1.28936710e+04, 1.16102562e+04, 1.05310689e+04, ], 'CountWeightedLHEEnvelope_LHENjet4_LHEHT600to800' : [ 1.58324847e+04, 1.05088013e+04, ], 'CountWeightedFull_LHENjet4_LHEHT600to800' : [ 1.27697511e+04, 1.27714789e+04, 1.27669980e+04, ], 'CountWeightedFullLHEWeightScale_LHENjet4_LHEHT600to800' : [ 1.57981522e+04, 1.42342948e+04, 1.29177547e+04, 1.41773239e+04, 1.27697511e+04, 1.15857641e+04, 1.28936710e+04, 1.16102562e+04, 1.05310689e+04, ], 'CountWeightedFullLHEEnvelope_LHENjet4_LHEHT600to800' : [ 1.58324847e+04, 1.05088013e+04, ], 'CountWeightedL1PrefireNom_LHENjet4_LHEHT600to800' : [ 1.15470410e+04, 1.15459186e+04, 1.15507021e+04, ], 'CountWeightedL1Prefire_LHENjet4_LHEHT600to800' : [ 1.15470410e+04, 1.12909761e+04, 1.18070881e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet4_LHEHT600to800' : [ 1.42361775e+04, 1.28627185e+04, 1.17004488e+04, 1.27844087e+04, 1.15470410e+04, 1.05008426e+04, 1.16337194e+04, 1.05045845e+04, 9.55023796e+03, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet4_LHEHT600to800' : [ 1.42684542e+04, 9.52932048e+03, ], 'CountWeightedFullL1PrefireNom_LHENjet4_LHEHT600to800' : [ 1.15470410e+04, 1.15459186e+04, 1.15507021e+04, ], 'CountWeightedFullL1Prefire_LHENjet4_LHEHT600to800' : [ 1.15470410e+04, 1.12909761e+04, 1.18070881e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet4_LHEHT600to800' : [ 1.42361775e+04, 1.28627185e+04, 1.17004488e+04, 1.27844087e+04, 1.15470410e+04, 1.05008426e+04, 1.16337194e+04, 1.05045845e+04, 9.55023796e+03, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet4_LHEHT600to800' : [ 1.42684542e+04, 9.52932048e+03, ], 'Count_LHENjet4_LHEHT800to1200' : [ 5980, ], 'CountWeighted_LHENjet4_LHEHT800to1200' : [ 5.94846638e+03, 5.94736055e+03, 5.94174005e+03, ], 'CountWeightedLHEWeightScale_LHENjet4_LHEHT800to1200' : [ 7.52902094e+03, 6.67501585e+03, 5.97568026e+03, 6.71071603e+03, 5.94846638e+03, 5.32459632e+03, 6.06186468e+03, 5.37245523e+03, 4.80826457e+03, ], 'CountWeightedLHEEnvelope_LHENjet4_LHEHT800to1200' : [ 7.53558364e+03, 4.80458816e+03, ], 'CountWeightedFull_LHENjet4_LHEHT800to1200' : [ 5.94846638e+03, 5.94736055e+03, 5.94174005e+03, ], 'CountWeightedFullLHEWeightScale_LHENjet4_LHEHT800to1200' : [ 7.52902094e+03, 6.67501585e+03, 5.97568026e+03, 6.71071603e+03, 5.94846638e+03, 5.32459632e+03, 6.06186468e+03, 5.37245523e+03, 4.80826457e+03, ], 'CountWeightedFullLHEEnvelope_LHENjet4_LHEHT800to1200' : [ 7.53558364e+03, 4.80458816e+03, ], 'CountWeightedL1PrefireNom_LHENjet4_LHEHT800to1200' : [ 5.48264309e+03, 5.48066384e+03, 5.47581740e+03, ], 'CountWeightedL1Prefire_LHENjet4_LHEHT800to1200' : [ 5.48264309e+03, 5.38486181e+03, 5.58179897e+03, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet4_LHEHT800to1200' : [ 6.92106322e+03, 6.14991531e+03, 5.51616789e+03, 6.17137302e+03, 5.48264309e+03, 4.91695489e+03, 5.57661310e+03, 4.95336301e+03, 4.44153263e+03, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet4_LHEHT800to1200' : [ 6.92740734e+03, 4.43793873e+03, ], 'CountWeightedFullL1PrefireNom_LHENjet4_LHEHT800to1200' : [ 5.48264309e+03, 5.48066384e+03, 5.47581740e+03, ], 'CountWeightedFullL1Prefire_LHENjet4_LHEHT800to1200' : [ 5.48264309e+03, 5.38486181e+03, 5.58179897e+03, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet4_LHEHT800to1200' : [ 6.92106322e+03, 6.14991531e+03, 5.51616789e+03, 6.17137302e+03, 5.48264309e+03, 4.91695489e+03, 5.57661310e+03, 4.95336301e+03, 4.44153263e+03, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet4_LHEHT800to1200' : [ 6.92740734e+03, 4.43793873e+03, ], 'Count_LHENjet4_LHEHT1200to2500' : [ 1371, ], 'CountWeighted_LHENjet4_LHEHT1200to2500' : [ 1.35923861e+03, 1.35750319e+03, 1.36484777e+03, ], 'CountWeightedLHEWeightScale_LHENjet4_LHEHT1200to2500' : [ 1.77054536e+03, 1.53372476e+03, 1.34619572e+03, 1.56941491e+03, 1.35923861e+03, 1.19287836e+03, 1.40947597e+03, 1.22054863e+03, 1.07101256e+03, ], 'CountWeightedLHEEnvelope_LHENjet4_LHEHT1200to2500' : [ 1.77153595e+03, 1.07049231e+03, ], 'CountWeightedFull_LHENjet4_LHEHT1200to2500' : [ 1.35923861e+03, 1.35750319e+03, 1.36484777e+03, ], 'CountWeightedFullLHEWeightScale_LHENjet4_LHEHT1200to2500' : [ 1.77054536e+03, 1.53372476e+03, 1.34619572e+03, 1.56941491e+03, 1.35923861e+03, 1.19287836e+03, 1.40947597e+03, 1.22054863e+03, 1.07101256e+03, ], 'CountWeightedFullLHEEnvelope_LHENjet4_LHEHT1200to2500' : [ 1.77153595e+03, 1.07049231e+03, ], 'CountWeightedL1PrefireNom_LHENjet4_LHEHT1200to2500' : [ 1.28424451e+03, 1.28239825e+03, 1.29032156e+03, ], 'CountWeightedL1Prefire_LHENjet4_LHEHT1200to2500' : [ 1.28424451e+03, 1.26772532e+03, 1.30079703e+03, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet4_LHEHT1200to2500' : [ 1.66970475e+03, 1.44862345e+03, 1.27320196e+03, 1.48054008e+03, 1.28424451e+03, 1.12855984e+03, 1.33009201e+03, 1.15356872e+03, 1.01357323e+03, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet4_LHEHT1200to2500' : [ 1.67062509e+03, 1.01311432e+03, ], 'CountWeightedFullL1PrefireNom_LHENjet4_LHEHT1200to2500' : [ 1.28424451e+03, 1.28239825e+03, 1.29032156e+03, ], 'CountWeightedFullL1Prefire_LHENjet4_LHEHT1200to2500' : [ 1.28424451e+03, 1.26772532e+03, 1.30079703e+03, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet4_LHEHT1200to2500' : [ 1.66970475e+03, 1.44862345e+03, 1.27320196e+03, 1.48054008e+03, 1.28424451e+03, 1.12855984e+03, 1.33009201e+03, 1.15356872e+03, 1.01357323e+03, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet4_LHEHT1200to2500' : [ 1.67062509e+03, 1.01311432e+03, ], 'Count_LHENjet4_LHEHT2500toInf' : [ 25, ], 'CountWeighted_LHENjet4_LHEHT2500toInf' : [ 2.77670777e+01, 2.77272540e+01, 2.71191237e+01, ], 'CountWeightedLHEWeightScale_LHENjet4_LHEHT2500toInf' : [ 3.71573939e+01, 3.09461177e+01, 2.62454456e+01, 3.33248193e+01, 2.77670777e+01, 2.35592575e+01, 3.01972846e+01, 2.51716479e+01, 2.13641674e+01, ], 'CountWeightedLHEEnvelope_LHENjet4_LHEHT2500toInf' : [ 3.71573939e+01, 2.13641674e+01, ], 'CountWeightedFull_LHENjet4_LHEHT2500toInf' : [ 2.77670777e+01, 2.77272540e+01, 2.71191237e+01, ], 'CountWeightedFullLHEWeightScale_LHENjet4_LHEHT2500toInf' : [ 3.71573939e+01, 3.09461177e+01, 2.62454456e+01, 3.33248193e+01, 2.77670777e+01, 2.35592575e+01, 3.01972846e+01, 2.51716479e+01, 2.13641674e+01, ], 'CountWeightedFullLHEEnvelope_LHENjet4_LHEHT2500toInf' : [ 3.71573939e+01, 2.13641674e+01, ], 'CountWeightedL1PrefireNom_LHENjet4_LHEHT2500toInf' : [ 2.70333249e+01, 2.68253139e+01, 2.65870295e+01, ], 'CountWeightedL1Prefire_LHENjet4_LHEHT2500toInf' : [ 2.70333249e+01, 2.68480663e+01, 2.72122931e+01, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet4_LHEHT2500toInf' : [ 3.61730624e+01, 3.01351026e+01, 2.55655081e+01, 3.24337773e+01, 2.70333249e+01, 2.29444076e+01, 2.93835619e+01, 2.45018696e+01, 2.08031949e+01, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet4_LHEHT2500toInf' : [ 3.61730624e+01, 2.08031949e+01, ], 'CountWeightedFullL1PrefireNom_LHENjet4_LHEHT2500toInf' : [ 2.70333249e+01, 2.68253139e+01, 2.65870295e+01, ], 'CountWeightedFullL1Prefire_LHENjet4_LHEHT2500toInf' : [ 2.70333249e+01, 2.68480663e+01, 2.72122931e+01, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet4_LHEHT2500toInf' : [ 3.61730624e+01, 3.01351026e+01, 2.55655081e+01, 3.24337773e+01, 2.70333249e+01, 2.29444076e+01, 2.93835619e+01, 2.45018696e+01, 2.08031949e+01, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet4_LHEHT2500toInf' : [ 3.61730624e+01, 2.08031949e+01, ], }), ("nof_tree_events", 48675378), ("nof_db_events", 48675378), ("fsize_local", 157181301659), # 157.18GB, avg file size 1.60GB ("fsize_db", 1989278749780), # 1.99TB, avg file size 3.60GB ("use_it", False), ("xsection", 6077.22), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Apr19_woPresel_nom_all_hh_multilepton/ntuples/DYJetsToLL_M-50"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/DYJetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8/RunIIFall17MiniAODv2-PU2017RECOSIMstep_12Apr2018_94X_mc2017_realistic_v14_ext1-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "EWK"), ("process_name_specific", "DYJetsToLL_M-50_ext1"), ("nof_files", 99), ("nof_db_files", 591), ("nof_events", { 'Count' : [ 49125561, ], 'CountWeighted' : [ 4.90789431e+07, 4.90807282e+07, 4.90818739e+07, ], 'CountWeightedLHEWeightScale' : [ 4.34818936e+07, 4.92957758e+07, 5.44723676e+07, 4.32740958e+07, 4.90789431e+07, 5.42500135e+07, 4.31038236e+07, 4.89014468e+07, 5.40678195e+07, ], 'CountWeightedLHEEnvelope' : [ 5.45475684e+07, 4.30379656e+07, ], 'CountWeightedFull' : [ 4.90789431e+07, 4.90807282e+07, 4.90818739e+07, ], 'CountWeightedFullLHEWeightScale' : [ 4.34818936e+07, 4.92957758e+07, 5.44723676e+07, 4.32740958e+07, 4.90789431e+07, 5.42500135e+07, 4.31038236e+07, 4.89014468e+07, 5.40678195e+07, ], 'CountWeightedFullLHEEnvelope' : [ 5.45475684e+07, 4.30379656e+07, ], 'CountWeightedL1PrefireNom' : [ 4.82231526e+07, 4.82234493e+07, 4.82263098e+07, ], 'CountWeightedL1Prefire' : [ 4.82231526e+07, 4.79992990e+07, 4.84418785e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 4.27021643e+07, 4.84323712e+07, 5.35349204e+07, 4.25019236e+07, 4.82231526e+07, 5.33200862e+07, 4.23378308e+07, 4.80517951e+07, 5.31440388e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 5.36023471e+07, 4.22787588e+07, ], 'CountWeightedFullL1PrefireNom' : [ 4.82231526e+07, 4.82234493e+07, 4.82263098e+07, ], 'CountWeightedFullL1Prefire' : [ 4.82231526e+07, 4.79992990e+07, 4.84418785e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 4.27021643e+07, 4.84323712e+07, 5.35349204e+07, 4.25019236e+07, 4.82231526e+07, 5.33200862e+07, 4.23378308e+07, 4.80517951e+07, 5.31440388e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 5.36023471e+07, 4.22787588e+07, ], 'Count_LHENjet0_LHEHT0to70' : [ 36661838, ], 'CountWeighted_LHENjet0_LHEHT0to70' : [ 3.66316259e+07, 3.66328378e+07, 3.66311785e+07, ], 'CountWeightedLHEWeightScale_LHENjet0_LHEHT0to70' : [ 3.21980598e+07, 3.66316259e+07, 4.06952675e+07, 3.21980598e+07, 3.66316259e+07, 4.06952675e+07, 3.21980598e+07, 3.66316259e+07, 4.06952675e+07, ], 'CountWeightedLHEEnvelope_LHENjet0_LHEHT0to70' : [ 4.06964302e+07, 3.21969317e+07, ], 'CountWeightedFull_LHENjet0_LHEHT0to70' : [ 3.66316259e+07, 3.66328378e+07, 3.66311785e+07, ], 'CountWeightedFullLHEWeightScale_LHENjet0_LHEHT0to70' : [ 3.21980598e+07, 3.66316259e+07, 4.06952675e+07, 3.21980598e+07, 3.66316259e+07, 4.06952675e+07, 3.21980598e+07, 3.66316259e+07, 4.06952675e+07, ], 'CountWeightedFullLHEEnvelope_LHENjet0_LHEHT0to70' : [ 4.06964302e+07, 3.21969317e+07, ], 'CountWeightedL1PrefireNom_LHENjet0_LHEHT0to70' : [ 3.60845245e+07, 3.60845890e+07, 3.60851260e+07, ], 'CountWeightedL1Prefire_LHENjet0_LHEHT0to70' : [ 3.60845245e+07, 3.59376937e+07, 3.62278385e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet0_LHEHT0to70' : [ 3.17133897e+07, 3.60845245e+07, 4.00914405e+07, 3.17133897e+07, 3.60845245e+07, 4.00914405e+07, 3.17133897e+07, 3.60845245e+07, 4.00914405e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet0_LHEHT0to70' : [ 4.00925889e+07, 3.17122763e+07, ], 'CountWeightedFullL1PrefireNom_LHENjet0_LHEHT0to70' : [ 3.60845245e+07, 3.60845890e+07, 3.60851260e+07, ], 'CountWeightedFullL1Prefire_LHENjet0_LHEHT0to70' : [ 3.60845245e+07, 3.59376937e+07, 3.62278385e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet0_LHEHT0to70' : [ 3.17133897e+07, 3.60845245e+07, 4.00914405e+07, 3.17133897e+07, 3.60845245e+07, 4.00914405e+07, 3.17133897e+07, 3.60845245e+07, 4.00914405e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet0_LHEHT0to70' : [ 4.00925889e+07, 3.17122763e+07, ], 'Count_LHENjet1_LHEHT0to70' : [ 7542112, ], 'CountWeighted_LHENjet1_LHEHT0to70' : [ 7.53626958e+06, 7.53644468e+06, 7.53585096e+06, ], 'CountWeightedLHEWeightScale_LHENjet1_LHEHT0to70' : [ 6.49514331e+06, 7.58912751e+06, 8.51245694e+06, 6.44589550e+06, 7.53626958e+06, 8.45674101e+06, 6.40553138e+06, 7.49294521e+06, 8.41109109e+06, ], 'CountWeightedLHEEnvelope_LHENjet1_LHEHT0to70' : [ 8.48731204e+06, 6.42980493e+06, ], 'CountWeightedFull_LHENjet1_LHEHT0to70' : [ 7.53626958e+06, 7.53644468e+06, 7.53585096e+06, ], 'CountWeightedFullLHEWeightScale_LHENjet1_LHEHT0to70' : [ 6.49514331e+06, 7.58912751e+06, 8.51245694e+06, 6.44589550e+06, 7.53626958e+06, 8.45674101e+06, 6.40553138e+06, 7.49294521e+06, 8.41109109e+06, ], 'CountWeightedFullLHEEnvelope_LHENjet1_LHEHT0to70' : [ 8.48731204e+06, 6.42980493e+06, ], 'CountWeightedL1PrefireNom_LHENjet1_LHEHT0to70' : [ 7.39324190e+06, 7.39328474e+06, 7.39299586e+06, ], 'CountWeightedL1Prefire_LHENjet1_LHEHT0to70' : [ 7.39324190e+06, 7.35610618e+06, 7.42927273e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet1_LHEHT0to70' : [ 6.36966877e+06, 7.44496147e+06, 8.35283882e+06, 6.32149234e+06, 7.39324190e+06, 8.29831545e+06, 6.28200788e+06, 7.35085483e+06, 8.25364334e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet1_LHEHT0to70' : [ 8.32814905e+06, 6.30581137e+06, ], 'CountWeightedFullL1PrefireNom_LHENjet1_LHEHT0to70' : [ 7.39324190e+06, 7.39328474e+06, 7.39299586e+06, ], 'CountWeightedFullL1Prefire_LHENjet1_LHEHT0to70' : [ 7.39324190e+06, 7.35610618e+06, 7.42927273e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet1_LHEHT0to70' : [ 6.36966877e+06, 7.44496147e+06, 8.35283882e+06, 6.32149234e+06, 7.39324190e+06, 8.29831545e+06, 6.28200788e+06, 7.35085483e+06, 8.25364334e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet1_LHEHT0to70' : [ 8.32814905e+06, 6.30581137e+06, ], 'Count_LHENjet1_LHEHT70to100' : [ 351886, ], 'CountWeighted_LHENjet1_LHEHT70to100' : [ 3.51281534e+05, 3.51187029e+05, 3.51445570e+05, ], 'CountWeightedLHEWeightScale_LHENjet1_LHEHT70to100' : [ 3.40858896e+05, 3.58972428e+05, 3.71933016e+05, 3.33410090e+05, 3.51281534e+05, 3.64083581e+05, 3.27234526e+05, 3.44905752e+05, 3.57576586e+05, ], 'CountWeightedLHEEnvelope_LHENjet1_LHEHT70to100' : [ 3.71177206e+05, 3.28382213e+05, ], 'CountWeightedFull_LHENjet1_LHEHT70to100' : [ 3.51281534e+05, 3.51187029e+05, 3.51445570e+05, ], 'CountWeightedFullLHEWeightScale_LHENjet1_LHEHT70to100' : [ 3.40858896e+05, 3.58972428e+05, 3.71933016e+05, 3.33410090e+05, 3.51281534e+05, 3.64083581e+05, 3.27234526e+05, 3.44905752e+05, 3.57576586e+05, ], 'CountWeightedFullLHEEnvelope_LHENjet1_LHEHT70to100' : [ 3.71177206e+05, 3.28382213e+05, ], 'CountWeightedL1PrefireNom_LHENjet1_LHEHT70to100' : [ 3.36616116e+05, 3.36518906e+05, 3.36768419e+05, ], 'CountWeightedL1Prefire_LHENjet1_LHEHT70to100' : [ 3.36616116e+05, 3.33220372e+05, 3.40011502e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet1_LHEHT70to100' : [ 3.26518400e+05, 3.43988903e+05, 3.56516103e+05, 3.19379690e+05, 3.36616116e+05, 3.48989422e+05, 3.13461281e+05, 3.30504098e+05, 3.42750076e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet1_LHEHT70to100' : [ 3.55748436e+05, 3.14599517e+05, ], 'CountWeightedFullL1PrefireNom_LHENjet1_LHEHT70to100' : [ 3.36616116e+05, 3.36518906e+05, 3.36768419e+05, ], 'CountWeightedFullL1Prefire_LHENjet1_LHEHT70to100' : [ 3.36616116e+05, 3.33220372e+05, 3.40011502e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet1_LHEHT70to100' : [ 3.26518400e+05, 3.43988903e+05, 3.56516103e+05, 3.19379690e+05, 3.36616116e+05, 3.48989422e+05, 3.13461281e+05, 3.30504098e+05, 3.42750076e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet1_LHEHT70to100' : [ 3.55748436e+05, 3.14599517e+05, ], 'Count_LHENjet1_LHEHT100to200' : [ 157555, ], 'CountWeighted_LHENjet1_LHEHT100to200' : [ 1.57009301e+05, 1.57243107e+05, 1.56819194e+05, ], 'CountWeightedLHEWeightScale_LHENjet1_LHEHT100to200' : [ 1.58158412e+05, 1.61105162e+05, 1.62465433e+05, 1.54087878e+05, 1.57009301e+05, 1.58374583e+05, 1.50686127e+05, 1.53586656e+05, 1.54956343e+05, ], 'CountWeightedLHEEnvelope_LHENjet1_LHEHT100to200' : [ 1.64090344e+05, 1.49358768e+05, ], 'CountWeightedFull_LHENjet1_LHEHT100to200' : [ 1.57009301e+05, 1.57243107e+05, 1.56819194e+05, ], 'CountWeightedFullLHEWeightScale_LHENjet1_LHEHT100to200' : [ 1.58158412e+05, 1.61105162e+05, 1.62465433e+05, 1.54087878e+05, 1.57009301e+05, 1.58374583e+05, 1.50686127e+05, 1.53586656e+05, 1.54956343e+05, ], 'CountWeightedFullLHEEnvelope_LHENjet1_LHEHT100to200' : [ 1.64090344e+05, 1.49358768e+05, ], 'CountWeightedL1PrefireNom_LHENjet1_LHEHT100to200' : [ 1.47597802e+05, 1.47808121e+05, 1.47427910e+05, ], 'CountWeightedL1Prefire_LHENjet1_LHEHT100to200' : [ 1.47597802e+05, 1.45590518e+05, 1.49635125e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet1_LHEHT100to200' : [ 1.48587586e+05, 1.51453212e+05, 1.52819553e+05, 1.44758201e+05, 1.47597802e+05, 1.48966855e+05, 1.41558073e+05, 1.44376178e+05, 1.45747711e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet1_LHEHT100to200' : [ 1.54267621e+05, 1.40386253e+05, ], 'CountWeightedFullL1PrefireNom_LHENjet1_LHEHT100to200' : [ 1.47597802e+05, 1.47808121e+05, 1.47427910e+05, ], 'CountWeightedFullL1Prefire_LHENjet1_LHEHT100to200' : [ 1.47597802e+05, 1.45590518e+05, 1.49635125e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet1_LHEHT100to200' : [ 1.48587586e+05, 1.51453212e+05, 1.52819553e+05, 1.44758201e+05, 1.47597802e+05, 1.48966855e+05, 1.41558073e+05, 1.44376178e+05, 1.45747711e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet1_LHEHT100to200' : [ 1.54267621e+05, 1.40386253e+05, ], 'Count_LHENjet1_LHEHT200to400' : [ 9936, ], 'CountWeighted_LHENjet1_LHEHT200to400' : [ 9.88842326e+03, 9.90418062e+03, 9.86859384e+03, ], 'CountWeightedLHEWeightScale_LHENjet1_LHEHT200to400' : [ 1.04558347e+04, 1.01696232e+04, 9.86450429e+03, 1.01649721e+04, 9.88842326e+03, 9.59314839e+03, 9.91876392e+03, 9.65040741e+03, 9.36347643e+03, ], 'CountWeightedLHEEnvelope_LHENjet1_LHEHT200to400' : [ 1.04886295e+04, 9.33352877e+03, ], 'CountWeightedFull_LHENjet1_LHEHT200to400' : [ 9.88842326e+03, 9.90418062e+03, 9.86859384e+03, ], 'CountWeightedFullLHEWeightScale_LHENjet1_LHEHT200to400' : [ 1.04558347e+04, 1.01696232e+04, 9.86450429e+03, 1.01649721e+04, 9.88842326e+03, 9.59314839e+03, 9.91876392e+03, 9.65040741e+03, 9.36347643e+03, ], 'CountWeightedFullLHEEnvelope_LHENjet1_LHEHT200to400' : [ 1.04886295e+04, 9.33352877e+03, ], 'CountWeightedL1PrefireNom_LHENjet1_LHEHT200to400' : [ 9.26325066e+03, 9.27837686e+03, 9.24336063e+03, ], 'CountWeightedL1Prefire_LHENjet1_LHEHT200to400' : [ 9.26325066e+03, 9.13843829e+03, 9.39161742e+03, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet1_LHEHT200to400' : [ 9.78539180e+03, 9.52783571e+03, 9.25116085e+03, 9.51196424e+03, 9.26325066e+03, 8.99562208e+03, 9.28052244e+03, 9.03930664e+03, 8.77934511e+03, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet1_LHEHT200to400' : [ 9.81785503e+03, 8.74970084e+03, ], 'CountWeightedFullL1PrefireNom_LHENjet1_LHEHT200to400' : [ 9.26325066e+03, 9.27837686e+03, 9.24336063e+03, ], 'CountWeightedFullL1Prefire_LHENjet1_LHEHT200to400' : [ 9.26325066e+03, 9.13843829e+03, 9.39161742e+03, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet1_LHEHT200to400' : [ 9.78539180e+03, 9.52783571e+03, 9.25116085e+03, 9.51196424e+03, 9.26325066e+03, 8.99562208e+03, 9.28052244e+03, 9.03930664e+03, 8.77934511e+03, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet1_LHEHT200to400' : [ 9.81785503e+03, 8.74970084e+03, ], 'Count_LHENjet1_LHEHT400to600' : [ 270, ], 'CountWeighted_LHENjet1_LHEHT400to600' : [ 2.72192045e+02, 2.70074348e+02, 2.75117179e+02, ], 'CountWeightedLHEWeightScale_LHENjet1_LHEHT400to600' : [ 3.01081977e+02, 2.81001802e+02, 2.62945799e+02, 2.91607307e+02, 2.72192045e+02, 2.54730879e+02, 2.83491441e+02, 2.64646107e+02, 2.47694254e+02, ], 'CountWeightedLHEEnvelope_LHENjet1_LHEHT400to600' : [ 3.01145260e+02, 2.47630970e+02, ], 'CountWeightedFull_LHENjet1_LHEHT400to600' : [ 2.72192045e+02, 2.70074348e+02, 2.75117179e+02, ], 'CountWeightedFullLHEWeightScale_LHENjet1_LHEHT400to600' : [ 3.01081977e+02, 2.81001802e+02, 2.62945799e+02, 2.91607307e+02, 2.72192045e+02, 2.54730879e+02, 2.83491441e+02, 2.64646107e+02, 2.47694254e+02, ], 'CountWeightedFullLHEEnvelope_LHENjet1_LHEHT400to600' : [ 3.01145260e+02, 2.47630970e+02, ], 'CountWeightedL1PrefireNom_LHENjet1_LHEHT400to600' : [ 2.66253626e+02, 2.63869962e+02, 2.69283102e+02, ], 'CountWeightedL1Prefire_LHENjet1_LHEHT400to600' : [ 2.66253626e+02, 2.64990582e+02, 2.67532011e+02, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet1_LHEHT400to600' : [ 2.94362570e+02, 2.74842400e+02, 2.57280198e+02, 2.85130956e+02, 2.66253626e+02, 2.49267033e+02, 2.77224088e+02, 2.58897652e+02, 2.42403841e+02, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet1_LHEHT400to600' : [ 2.94425722e+02, 2.42340689e+02, ], 'CountWeightedFullL1PrefireNom_LHENjet1_LHEHT400to600' : [ 2.66253626e+02, 2.63869962e+02, 2.69283102e+02, ], 'CountWeightedFullL1Prefire_LHENjet1_LHEHT400to600' : [ 2.66253626e+02, 2.64990582e+02, 2.67532011e+02, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet1_LHEHT400to600' : [ 2.94362570e+02, 2.74842400e+02, 2.57280198e+02, 2.85130956e+02, 2.66253626e+02, 2.49267033e+02, 2.77224088e+02, 2.58897652e+02, 2.42403841e+02, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet1_LHEHT400to600' : [ 2.94425722e+02, 2.42340689e+02, ], 'Count_LHENjet1_LHEHT600to800' : [ 19, ], 'CountWeighted_LHENjet1_LHEHT600to800' : [ 1.72901405e+01, 1.74116990e+01, 1.67449395e+01, ], 'CountWeightedLHEWeightScale_LHENjet1_LHEHT600to800' : [ 1.92351295e+01, 1.76902333e+01, 1.63423046e+01, 1.87966259e+01, 1.72901405e+01, 1.59755862e+01, 1.84189566e+01, 1.69455294e+01, 1.56596476e+01, ], 'CountWeightedLHEEnvelope_LHENjet1_LHEHT600to800' : [ 1.92351295e+01, 1.56596476e+01, ], 'CountWeightedFull_LHENjet1_LHEHT600to800' : [ 1.72901405e+01, 1.74116990e+01, 1.67449395e+01, ], 'CountWeightedFullLHEWeightScale_LHENjet1_LHEHT600to800' : [ 1.92351295e+01, 1.76902333e+01, 1.63423046e+01, 1.87966259e+01, 1.72901405e+01, 1.59755862e+01, 1.84189566e+01, 1.69455294e+01, 1.56596476e+01, ], 'CountWeightedFullLHEEnvelope_LHENjet1_LHEHT600to800' : [ 1.92351295e+01, 1.56596476e+01, ], 'CountWeightedL1PrefireNom_LHENjet1_LHEHT600to800' : [ 1.72890720e+01, 1.74076696e+01, 1.67446796e+01, ], 'CountWeightedL1Prefire_LHENjet1_LHEHT600to800' : [ 1.72890720e+01, 1.72888395e+01, 1.72893045e+01, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet1_LHEHT600to800' : [ 1.92338126e+01, 1.76890836e+01, 1.63412930e+01, 1.87954018e+01, 1.72890720e+01, 1.59746459e+01, 1.84178131e+01, 1.69445311e+01, 1.56587692e+01, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet1_LHEHT600to800' : [ 1.92338126e+01, 1.56587692e+01, ], 'CountWeightedFullL1PrefireNom_LHENjet1_LHEHT600to800' : [ 1.72890720e+01, 1.74076696e+01, 1.67446796e+01, ], 'CountWeightedFullL1Prefire_LHENjet1_LHEHT600to800' : [ 1.72890720e+01, 1.72888395e+01, 1.72893045e+01, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet1_LHEHT600to800' : [ 1.92338126e+01, 1.76890836e+01, 1.63412930e+01, 1.87954018e+01, 1.72890720e+01, 1.59746459e+01, 1.84178131e+01, 1.69445311e+01, 1.56587692e+01, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet1_LHEHT600to800' : [ 1.92338126e+01, 1.56587692e+01, ], 'Count_LHENjet1_LHEHT800to1200' : [ 10, ], 'CountWeighted_LHENjet1_LHEHT800to1200' : [ 1.16211772e+01, 1.12247735e+01, 1.17393825e+01, ], 'CountWeightedLHEWeightScale_LHENjet1_LHEHT800to1200' : [ 1.31613937e+01, 1.18395994e+01, 1.07193118e+01, 1.29176523e+01, 1.16211772e+01, 1.05222896e+01, 1.27066506e+01, 1.14320310e+01, 1.03516961e+01, ], 'CountWeightedLHEEnvelope_LHENjet1_LHEHT800to1200' : [ 1.31613937e+01, 1.03516961e+01, ], 'CountWeightedFull_LHENjet1_LHEHT800to1200' : [ 1.16211772e+01, 1.12247735e+01, 1.17393825e+01, ], 'CountWeightedFullLHEWeightScale_LHENjet1_LHEHT800to1200' : [ 1.31613937e+01, 1.18395994e+01, 1.07193118e+01, 1.29176523e+01, 1.16211772e+01, 1.05222896e+01, 1.27066506e+01, 1.14320310e+01, 1.03516961e+01, ], 'CountWeightedFullLHEEnvelope_LHENjet1_LHEHT800to1200' : [ 1.31613937e+01, 1.03516961e+01, ], 'CountWeightedL1PrefireNom_LHENjet1_LHEHT800to1200' : [ 1.16211764e+01, 1.12247729e+01, 1.17393814e+01, ], 'CountWeightedL1Prefire_LHENjet1_LHEHT800to1200' : [ 1.16211764e+01, 1.16203128e+01, 1.16211772e+01, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet1_LHEHT800to1200' : [ 1.31613927e+01, 1.18395985e+01, 1.07193111e+01, 1.29176514e+01, 1.16211764e+01, 1.05222889e+01, 1.27066497e+01, 1.14320302e+01, 1.03516954e+01, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet1_LHEHT800to1200' : [ 1.31613927e+01, 1.03516954e+01, ], 'CountWeightedFullL1PrefireNom_LHENjet1_LHEHT800to1200' : [ 1.16211764e+01, 1.12247729e+01, 1.17393814e+01, ], 'CountWeightedFullL1Prefire_LHENjet1_LHEHT800to1200' : [ 1.16211764e+01, 1.16203128e+01, 1.16211772e+01, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet1_LHEHT800to1200' : [ 1.31613927e+01, 1.18395985e+01, 1.07193111e+01, 1.29176514e+01, 1.16211764e+01, 1.05222889e+01, 1.27066497e+01, 1.14320302e+01, 1.03516954e+01, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet1_LHEHT800to1200' : [ 1.31613927e+01, 1.03516954e+01, ], 'Count_LHENjet2_LHEHT0to70' : [ 1476943, ], 'CountWeighted_LHENjet2_LHEHT0to70' : [ 1.47516051e+06, 1.47528345e+06, 1.47505109e+06, ], 'CountWeightedLHEWeightScale_LHENjet2_LHEHT0to70' : [ 1.32327065e+06, 1.50945416e+06, 1.64893162e+06, 1.29282693e+06, 1.47516051e+06, 1.61180538e+06, 1.26791547e+06, 1.44710429e+06, 1.58143451e+06, ], 'CountWeightedLHEEnvelope_LHENjet2_LHEHT0to70' : [ 1.63468883e+06, 1.27782712e+06, ], 'CountWeightedFull_LHENjet2_LHEHT0to70' : [ 1.47516051e+06, 1.47528345e+06, 1.47505109e+06, ], 'CountWeightedFullLHEWeightScale_LHENjet2_LHEHT0to70' : [ 1.32327065e+06, 1.50945416e+06, 1.64893162e+06, 1.29282693e+06, 1.47516051e+06, 1.61180538e+06, 1.26791547e+06, 1.44710429e+06, 1.58143451e+06, ], 'CountWeightedFullLHEEnvelope_LHENjet2_LHEHT0to70' : [ 1.63468883e+06, 1.27782712e+06, ], 'CountWeightedL1PrefireNom_LHENjet2_LHEHT0to70' : [ 1.44769916e+06, 1.44780012e+06, 1.44760678e+06, ], 'CountWeightedL1Prefire_LHENjet2_LHEHT0to70' : [ 1.44769916e+06, 1.44042826e+06, 1.45466925e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet2_LHEHT0to70' : [ 1.29836016e+06, 1.48134771e+06, 1.61847701e+06, 1.26849564e+06, 1.44769916e+06, 1.58204293e+06, 1.24405854e+06, 1.42017084e+06, 1.55223881e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet2_LHEHT0to70' : [ 1.60444697e+06, 1.25382064e+06, ], 'CountWeightedFullL1PrefireNom_LHENjet2_LHEHT0to70' : [ 1.44769916e+06, 1.44780012e+06, 1.44760678e+06, ], 'CountWeightedFullL1Prefire_LHENjet2_LHEHT0to70' : [ 1.44769916e+06, 1.44042826e+06, 1.45466925e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet2_LHEHT0to70' : [ 1.29836016e+06, 1.48134771e+06, 1.61847701e+06, 1.26849564e+06, 1.44769916e+06, 1.58204293e+06, 1.24405854e+06, 1.42017084e+06, 1.55223881e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet2_LHEHT0to70' : [ 1.60444697e+06, 1.25382064e+06, ], 'Count_LHENjet2_LHEHT70to100' : [ 703415, ], 'CountWeighted_LHENjet2_LHEHT70to100' : [ 7.02640374e+05, 7.02813897e+05, 7.02537971e+05, ], 'CountWeightedLHEWeightScale_LHENjet2_LHEHT70to100' : [ 6.69116038e+05, 7.23014526e+05, 7.59968919e+05, 6.50153533e+05, 7.02640374e+05, 7.38637441e+05, 6.34551149e+05, 6.85877335e+05, 7.21087872e+05, ], 'CountWeightedLHEEnvelope_LHENjet2_LHEHT70to100' : [ 7.58209809e+05, 6.36227340e+05, ], 'CountWeightedFull_LHENjet2_LHEHT70to100' : [ 7.02640374e+05, 7.02813897e+05, 7.02537971e+05, ], 'CountWeightedFullLHEWeightScale_LHENjet2_LHEHT70to100' : [ 6.69116038e+05, 7.23014526e+05, 7.59968919e+05, 6.50153533e+05, 7.02640374e+05, 7.38637441e+05, 6.34551149e+05, 6.85877335e+05, 7.21087872e+05, ], 'CountWeightedFullLHEEnvelope_LHENjet2_LHEHT70to100' : [ 7.58209809e+05, 6.36227340e+05, ], 'CountWeightedL1PrefireNom_LHENjet2_LHEHT70to100' : [ 6.83998679e+05, 6.84146724e+05, 6.83921818e+05, ], 'CountWeightedL1Prefire_LHENjet2_LHEHT70to100' : [ 6.83998679e+05, 6.79244480e+05, 6.88611361e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet2_LHEHT70to100' : [ 6.51194568e+05, 7.03827593e+05, 7.39952042e+05, 6.32744464e+05, 6.83998679e+05, 7.19186917e+05, 6.17564141e+05, 6.67684790e+05, 7.02103815e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet2_LHEHT70to100' : [ 7.38173825e+05, 6.19250368e+05, ], 'CountWeightedFullL1PrefireNom_LHENjet2_LHEHT70to100' : [ 6.83998679e+05, 6.84146724e+05, 6.83921818e+05, ], 'CountWeightedFullL1Prefire_LHENjet2_LHEHT70to100' : [ 6.83998679e+05, 6.79244480e+05, 6.88611361e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet2_LHEHT70to100' : [ 6.51194568e+05, 7.03827593e+05, 7.39952042e+05, 6.32744464e+05, 6.83998679e+05, 7.19186917e+05, 6.17564141e+05, 6.67684790e+05, 7.02103815e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet2_LHEHT70to100' : [ 7.38173825e+05, 6.19250368e+05, ], 'Count_LHENjet2_LHEHT100to200' : [ 543294, ], 'CountWeighted_LHENjet2_LHEHT100to200' : [ 5.42924680e+05, 5.42868180e+05, 5.42936830e+05, ], 'CountWeightedLHEWeightScale_LHENjet2_LHEHT100to200' : [ 5.40692315e+05, 5.61378782e+05, 5.72530911e+05, 5.22868106e+05, 5.42924680e+05, 5.53744153e+05, 5.08120578e+05, 5.27657206e+05, 5.38202255e+05, ], 'CountWeightedLHEEnvelope_LHENjet2_LHEHT100to200' : [ 5.79337226e+05, 5.02467646e+05, ], 'CountWeightedFull_LHENjet2_LHEHT100to200' : [ 5.42924680e+05, 5.42868180e+05, 5.42936830e+05, ], 'CountWeightedFullLHEWeightScale_LHENjet2_LHEHT100to200' : [ 5.40692315e+05, 5.61378782e+05, 5.72530911e+05, 5.22868106e+05, 5.42924680e+05, 5.53744153e+05, 5.08120578e+05, 5.27657206e+05, 5.38202255e+05, ], 'CountWeightedFullLHEEnvelope_LHENjet2_LHEHT100to200' : [ 5.79337226e+05, 5.02467646e+05, ], 'CountWeightedL1PrefireNom_LHENjet2_LHEHT100to200' : [ 5.19606990e+05, 5.19524082e+05, 5.19646254e+05, ], 'CountWeightedL1Prefire_LHENjet2_LHEHT100to200' : [ 5.19606990e+05, 5.14151866e+05, 5.25033789e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet2_LHEHT100to200' : [ 5.17163767e+05, 5.37275401e+05, 5.48221889e+05, 5.00108882e+05, 5.19606990e+05, 5.30225772e+05, 4.85998831e+05, 5.04990453e+05, 5.15338915e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet2_LHEHT100to200' : [ 5.54482124e+05, 4.80818284e+05, ], 'CountWeightedFullL1PrefireNom_LHENjet2_LHEHT100to200' : [ 5.19606990e+05, 5.19524082e+05, 5.19646254e+05, ], 'CountWeightedFullL1Prefire_LHENjet2_LHEHT100to200' : [ 5.19606990e+05, 5.14151866e+05, 5.25033789e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet2_LHEHT100to200' : [ 5.17163767e+05, 5.37275401e+05, 5.48221889e+05, 5.00108882e+05, 5.19606990e+05, 5.30225772e+05, 4.85998831e+05, 5.04990453e+05, 5.15338915e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet2_LHEHT100to200' : [ 5.54482124e+05, 4.80818284e+05, ], 'Count_LHENjet2_LHEHT200to400' : [ 73540, ], 'CountWeighted_LHENjet2_LHEHT200to400' : [ 7.36171151e+04, 7.35727526e+04, 7.36706341e+04, ], 'CountWeightedLHEWeightScale_LHENjet2_LHEHT200to400' : [ 7.89319931e+04, 7.77750524e+04, 7.61239207e+04, 7.47155421e+04, 7.36171151e+04, 7.20488939e+04, 7.12926599e+04, 7.02422103e+04, 6.87417700e+04, ], 'CountWeightedLHEEnvelope_LHENjet2_LHEHT200to400' : [ 8.02973813e+04, 6.76074963e+04, ], 'CountWeightedFull_LHENjet2_LHEHT200to400' : [ 7.36171151e+04, 7.35727526e+04, 7.36706341e+04, ], 'CountWeightedFullLHEWeightScale_LHENjet2_LHEHT200to400' : [ 7.89319931e+04, 7.77750524e+04, 7.61239207e+04, 7.47155421e+04, 7.36171151e+04, 7.20488939e+04, 7.12926599e+04, 7.02422103e+04, 6.87417700e+04, ], 'CountWeightedFullLHEEnvelope_LHENjet2_LHEHT200to400' : [ 8.02973813e+04, 6.76074963e+04, ], 'CountWeightedL1PrefireNom_LHENjet2_LHEHT200to400' : [ 6.84027722e+04, 6.83551777e+04, 6.84551644e+04, ], 'CountWeightedL1Prefire_LHENjet2_LHEHT200to400' : [ 6.84027722e+04, 6.72852503e+04, 6.95345887e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet2_LHEHT200to400' : [ 7.32425090e+04, 7.22615851e+04, 7.08036472e+04, 6.93342078e+04, 6.84027722e+04, 6.70178761e+04, 6.61610513e+04, 6.52702286e+04, 6.39450616e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet2_LHEHT200to400' : [ 7.45501363e+04, 6.28559059e+04, ], 'CountWeightedFullL1PrefireNom_LHENjet2_LHEHT200to400' : [ 6.84027722e+04, 6.83551777e+04, 6.84551644e+04, ], 'CountWeightedFullL1Prefire_LHENjet2_LHEHT200to400' : [ 6.84027722e+04, 6.72852503e+04, 6.95345887e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet2_LHEHT200to400' : [ 7.32425090e+04, 7.22615851e+04, 7.08036472e+04, 6.93342078e+04, 6.84027722e+04, 6.70178761e+04, 6.61610513e+04, 6.52702286e+04, 6.39450616e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet2_LHEHT200to400' : [ 7.45501363e+04, 6.28559059e+04, ], 'Count_LHENjet2_LHEHT400to600' : [ 4586, ], 'CountWeighted_LHENjet2_LHEHT400to600' : [ 4.61816920e+03, 4.61056642e+03, 4.62191811e+03, ], 'CountWeightedLHEWeightScale_LHENjet2_LHEHT400to600' : [ 5.30196648e+03, 5.03829319e+03, 4.78911095e+03, 4.86239992e+03, 4.61816920e+03, 4.38768798e+03, 4.50858227e+03, 4.28009721e+03, 4.06473809e+03, ], 'CountWeightedLHEEnvelope_LHENjet2_LHEHT400to600' : [ 5.32170828e+03, 4.05214566e+03, ], 'CountWeightedFull_LHENjet2_LHEHT400to600' : [ 4.61816920e+03, 4.61056642e+03, 4.62191811e+03, ], 'CountWeightedFullLHEWeightScale_LHENjet2_LHEHT400to600' : [ 5.30196648e+03, 5.03829319e+03, 4.78911095e+03, 4.86239992e+03, 4.61816920e+03, 4.38768798e+03, 4.50858227e+03, 4.28009721e+03, 4.06473809e+03, ], 'CountWeightedFullLHEEnvelope_LHENjet2_LHEHT400to600' : [ 5.32170828e+03, 4.05214566e+03, ], 'CountWeightedL1PrefireNom_LHENjet2_LHEHT400to600' : [ 4.24665058e+03, 4.23951513e+03, 4.25021170e+03, ], 'CountWeightedL1Prefire_LHENjet2_LHEHT400to600' : [ 4.24665058e+03, 4.17026449e+03, 4.32436471e+03, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet2_LHEHT400to600' : [ 4.86406081e+03, 4.63034203e+03, 4.40809210e+03, 4.46341132e+03, 4.24665058e+03, 4.04084677e+03, 4.14088040e+03, 3.93785675e+03, 3.74535476e+03, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet2_LHEHT400to600' : [ 4.88334053e+03, 3.73282685e+03, ], 'CountWeightedFullL1PrefireNom_LHENjet2_LHEHT400to600' : [ 4.24665058e+03, 4.23951513e+03, 4.25021170e+03, ], 'CountWeightedFullL1Prefire_LHENjet2_LHEHT400to600' : [ 4.24665058e+03, 4.17026449e+03, 4.32436471e+03, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet2_LHEHT400to600' : [ 4.86406081e+03, 4.63034203e+03, 4.40809210e+03, 4.46341132e+03, 4.24665058e+03, 4.04084677e+03, 4.14088040e+03, 3.93785675e+03, 3.74535476e+03, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet2_LHEHT400to600' : [ 4.88334053e+03, 3.73282685e+03, ], 'Count_LHENjet2_LHEHT600to800' : [ 682, ], 'CountWeighted_LHENjet2_LHEHT600to800' : [ 7.01981077e+02, 7.04473135e+02, 6.95966673e+02, ], 'CountWeightedLHEWeightScale_LHENjet2_LHEHT600to800' : [ 8.25140714e+02, 7.71281559e+02, 7.23192805e+02, 7.51270333e+02, 7.01981077e+02, 6.58014680e+02, 6.91282704e+02, 6.45712678e+02, 6.05100217e+02, ], 'CountWeightedLHEEnvelope_LHENjet2_LHEHT600to800' : [ 8.26213369e+02, 6.04690789e+02, ], 'CountWeightedFull_LHENjet2_LHEHT600to800' : [ 7.01981077e+02, 7.04473135e+02, 6.95966673e+02, ], 'CountWeightedFullLHEWeightScale_LHENjet2_LHEHT600to800' : [ 8.25140714e+02, 7.71281559e+02, 7.23192805e+02, 7.51270333e+02, 7.01981077e+02, 6.58014680e+02, 6.91282704e+02, 6.45712678e+02, 6.05100217e+02, ], 'CountWeightedFullLHEEnvelope_LHENjet2_LHEHT600to800' : [ 8.26213369e+02, 6.04690789e+02, ], 'CountWeightedL1PrefireNom_LHENjet2_LHEHT600to800' : [ 6.55778829e+02, 6.58634311e+02, 6.49561312e+02, ], 'CountWeightedL1Prefire_LHENjet2_LHEHT600to800' : [ 6.55778829e+02, 6.46497564e+02, 6.65371245e+02, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet2_LHEHT600to800' : [ 7.68683976e+02, 7.19973747e+02, 6.76286794e+02, 7.00442497e+02, 6.55778829e+02, 6.15768920e+02, 6.45008003e+02, 6.03641440e+02, 5.66625783e+02, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet2_LHEHT600to800' : [ 7.69734329e+02, 5.66221351e+02, ], 'CountWeightedFullL1PrefireNom_LHENjet2_LHEHT600to800' : [ 6.55778829e+02, 6.58634311e+02, 6.49561312e+02, ], 'CountWeightedFullL1Prefire_LHENjet2_LHEHT600to800' : [ 6.55778829e+02, 6.46497564e+02, 6.65371245e+02, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet2_LHEHT600to800' : [ 7.68683976e+02, 7.19973747e+02, 6.76286794e+02, 7.00442497e+02, 6.55778829e+02, 6.15768920e+02, 6.45008003e+02, 6.03641440e+02, 5.66625783e+02, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet2_LHEHT600to800' : [ 7.69734329e+02, 5.66221351e+02, ], 'Count_LHENjet2_LHEHT800to1200' : [ 178, ], 'CountWeighted_LHENjet2_LHEHT800to1200' : [ 1.68830233e+02, 1.71022432e+02, 1.67553902e+02, ], 'CountWeightedLHEWeightScale_LHENjet2_LHEHT800to1200' : [ 2.01951283e+02, 1.86679769e+02, 1.73286998e+02, 1.82728330e+02, 1.68830233e+02, 1.56653516e+02, 1.67140197e+02, 1.54358386e+02, 1.43170398e+02, ], 'CountWeightedLHEEnvelope_LHENjet2_LHEHT800to1200' : [ 2.02116936e+02, 1.43132464e+02, ], 'CountWeightedFull_LHENjet2_LHEHT800to1200' : [ 1.68830233e+02, 1.71022432e+02, 1.67553902e+02, ], 'CountWeightedFullLHEWeightScale_LHENjet2_LHEHT800to1200' : [ 2.01951283e+02, 1.86679769e+02, 1.73286998e+02, 1.82728330e+02, 1.68830233e+02, 1.56653516e+02, 1.67140197e+02, 1.54358386e+02, 1.43170398e+02, ], 'CountWeightedFullLHEEnvelope_LHENjet2_LHEHT800to1200' : [ 2.02116936e+02, 1.43132464e+02, ], 'CountWeightedL1PrefireNom_LHENjet2_LHEHT800to1200' : [ 1.56689717e+02, 1.59101633e+02, 1.55220834e+02, ], 'CountWeightedL1Prefire_LHENjet2_LHEHT800to1200' : [ 1.56689717e+02, 1.54114843e+02, 1.59274877e+02, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet2_LHEHT800to1200' : [ 1.87082820e+02, 1.73137944e+02, 1.60888450e+02, 1.69395268e+02, 1.56689717e+02, 1.45540094e+02, 1.55041110e+02, 1.43344319e+02, 1.33090239e+02, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet2_LHEHT800to1200' : [ 1.87248473e+02, 1.33052305e+02, ], 'CountWeightedFullL1PrefireNom_LHENjet2_LHEHT800to1200' : [ 1.56689717e+02, 1.59101633e+02, 1.55220834e+02, ], 'CountWeightedFullL1Prefire_LHENjet2_LHEHT800to1200' : [ 1.56689717e+02, 1.54114843e+02, 1.59274877e+02, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet2_LHEHT800to1200' : [ 1.87082820e+02, 1.73137944e+02, 1.60888450e+02, 1.69395268e+02, 1.56689717e+02, 1.45540094e+02, 1.55041110e+02, 1.43344319e+02, 1.33090239e+02, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet2_LHEHT800to1200' : [ 1.87248473e+02, 1.33052305e+02, ], 'Count_LHENjet2_LHEHT1200to2500' : [ 31, ], 'CountWeighted_LHENjet2_LHEHT1200to2500' : [ 2.93858273e+01, 3.09369763e+01, 2.75083245e+01, ], 'CountWeightedLHEWeightScale_LHENjet2_LHEHT1200to2500' : [ 3.59769777e+01, 3.24782850e+01, 2.95462492e+01, 3.25615741e+01, 2.93858273e+01, 2.67261042e+01, 2.97679501e+01, 2.68557425e+01, 2.44183028e+01, ], 'CountWeightedLHEEnvelope_LHENjet2_LHEHT1200to2500' : [ 3.59769777e+01, 2.44183028e+01, ], 'CountWeightedFull_LHENjet2_LHEHT1200to2500' : [ 2.93858273e+01, 3.09369763e+01, 2.75083245e+01, ], 'CountWeightedFullLHEWeightScale_LHENjet2_LHEHT1200to2500' : [ 3.59769777e+01, 3.24782850e+01, 2.95462492e+01, 3.25615741e+01, 2.93858273e+01, 2.67261042e+01, 2.97679501e+01, 2.68557425e+01, 2.44183028e+01, ], 'CountWeightedFullLHEEnvelope_LHENjet2_LHEHT1200to2500' : [ 3.59769777e+01, 2.44183028e+01, ], 'CountWeightedL1PrefireNom_LHENjet2_LHEHT1200to2500' : [ 2.79934618e+01, 2.94308430e+01, 2.64384187e+01, ], 'CountWeightedL1Prefire_LHENjet2_LHEHT1200to2500' : [ 2.79934618e+01, 2.77567868e+01, 2.82500452e+01, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet2_LHEHT1200to2500' : [ 3.43098252e+01, 3.09683077e+01, 2.81700707e+01, 3.10242594e+01, 2.79934618e+01, 2.54571558e+01, 2.83413552e+01, 2.55636755e+01, 2.32407760e+01, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet2_LHEHT1200to2500' : [ 3.43098252e+01, 2.32407760e+01, ], 'CountWeightedFullL1PrefireNom_LHENjet2_LHEHT1200to2500' : [ 2.79934618e+01, 2.94308430e+01, 2.64384187e+01, ], 'CountWeightedFullL1Prefire_LHENjet2_LHEHT1200to2500' : [ 2.79934618e+01, 2.77567868e+01, 2.82500452e+01, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet2_LHEHT1200to2500' : [ 3.43098252e+01, 3.09683077e+01, 2.81700707e+01, 3.10242594e+01, 2.79934618e+01, 2.54571558e+01, 2.83413552e+01, 2.55636755e+01, 2.32407760e+01, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet2_LHEHT1200to2500' : [ 3.43098252e+01, 2.32407760e+01, ], 'Count_LHENjet3_LHEHT0to70' : [ 76046, ], 'CountWeighted_LHENjet3_LHEHT0to70' : [ 7.59250352e+04, 7.59442130e+04, 7.59134700e+04, ], 'CountWeightedLHEWeightScale_LHENjet3_LHEHT0to70' : [ 7.15972390e+04, 7.87309586e+04, 8.32705076e+04, 6.90005391e+04, 7.59250352e+04, 8.03391765e+04, 6.68782564e+04, 7.36319669e+04, 7.79437876e+04, ], 'CountWeightedLHEEnvelope_LHENjet3_LHEHT0to70' : [ 8.38270013e+04, 6.63554855e+04, ], 'CountWeightedFull_LHENjet3_LHEHT0to70' : [ 7.59250352e+04, 7.59442130e+04, 7.59134700e+04, ], 'CountWeightedFullLHEWeightScale_LHENjet3_LHEHT0to70' : [ 7.15972390e+04, 7.87309586e+04, 8.32705076e+04, 6.90005391e+04, 7.59250352e+04, 8.03391765e+04, 6.68782564e+04, 7.36319669e+04, 7.79437876e+04, ], 'CountWeightedFullLHEEnvelope_LHENjet3_LHEHT0to70' : [ 8.38270013e+04, 6.63554855e+04, ], 'CountWeightedL1PrefireNom_LHENjet3_LHEHT0to70' : [ 7.45079654e+04, 7.45262587e+04, 7.45003958e+04, ], 'CountWeightedL1Prefire_LHENjet3_LHEHT0to70' : [ 7.45079654e+04, 7.41331294e+04, 7.48668666e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet3_LHEHT0to70' : [ 7.02444147e+04, 7.72602766e+04, 8.17279107e+04, 6.76978110e+04, 7.45079654e+04, 7.88521969e+04, 6.56165294e+04, 7.22587748e+04, 7.65023224e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet3_LHEHT0to70' : [ 8.22652480e+04, 6.51115200e+04, ], 'CountWeightedFullL1PrefireNom_LHENjet3_LHEHT0to70' : [ 7.45079654e+04, 7.45262587e+04, 7.45003958e+04, ], 'CountWeightedFullL1Prefire_LHENjet3_LHEHT0to70' : [ 7.45079654e+04, 7.41331294e+04, 7.48668666e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet3_LHEHT0to70' : [ 7.02444147e+04, 7.72602766e+04, 8.17279107e+04, 6.76978110e+04, 7.45079654e+04, 7.88521969e+04, 6.56165294e+04, 7.22587748e+04, 7.65023224e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet3_LHEHT0to70' : [ 8.22652480e+04, 6.51115200e+04, ], 'Count_LHENjet3_LHEHT70to100' : [ 275603, ], 'CountWeighted_LHENjet3_LHEHT70to100' : [ 2.75308047e+05, 2.75244378e+05, 2.75367283e+05, ], 'CountWeightedLHEWeightScale_LHENjet3_LHEHT70to100' : [ 2.68544019e+05, 2.85518610e+05, 2.95136332e+05, 2.58833702e+05, 2.75308047e+05, 2.84665927e+05, 2.50874084e+05, 2.66938784e+05, 2.76083940e+05, ], 'CountWeightedLHEEnvelope_LHENjet3_LHEHT70to100' : [ 2.99753751e+05, 2.46945120e+05, ], 'CountWeightedFull_LHENjet3_LHEHT70to100' : [ 2.75308047e+05, 2.75244378e+05, 2.75367283e+05, ], 'CountWeightedFullLHEWeightScale_LHENjet3_LHEHT70to100' : [ 2.68544019e+05, 2.85518610e+05, 2.95136332e+05, 2.58833702e+05, 2.75308047e+05, 2.84665927e+05, 2.50874084e+05, 2.66938784e+05, 2.76083940e+05, ], 'CountWeightedFullLHEEnvelope_LHENjet3_LHEHT70to100' : [ 2.99753751e+05, 2.46945120e+05, ], 'CountWeightedL1PrefireNom_LHENjet3_LHEHT70to100' : [ 2.69313408e+05, 2.69250800e+05, 2.69371818e+05, ], 'CountWeightedL1Prefire_LHENjet3_LHEHT70to100' : [ 2.69313408e+05, 2.67734010e+05, 2.70821948e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet3_LHEHT70to100' : [ 2.62643793e+05, 2.79301556e+05, 2.88753842e+05, 2.53147061e+05, 2.69313408e+05, 2.78509791e+05, 2.45362708e+05, 2.61126623e+05, 2.70113512e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet3_LHEHT70to100' : [ 2.93230855e+05, 2.41555923e+05, ], 'CountWeightedFullL1PrefireNom_LHENjet3_LHEHT70to100' : [ 2.69313408e+05, 2.69250800e+05, 2.69371818e+05, ], 'CountWeightedFullL1Prefire_LHENjet3_LHEHT70to100' : [ 2.69313408e+05, 2.67734010e+05, 2.70821948e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet3_LHEHT70to100' : [ 2.62643793e+05, 2.79301556e+05, 2.88753842e+05, 2.53147061e+05, 2.69313408e+05, 2.78509791e+05, 2.45362708e+05, 2.61126623e+05, 2.70113512e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet3_LHEHT70to100' : [ 2.93230855e+05, 2.41555923e+05, ], 'Count_LHENjet3_LHEHT100to200' : [ 519760, ], 'CountWeighted_LHENjet3_LHEHT100to200' : [ 5.19142569e+05, 5.19150276e+05, 5.19095210e+05, ], 'CountWeightedLHEWeightScale_LHENjet3_LHEHT100to200' : [ 5.26718456e+05, 5.39605498e+05, 5.42867006e+05, 5.06623026e+05, 5.19142569e+05, 5.22369261e+05, 4.90060307e+05, 5.02277587e+05, 5.05475708e+05, ], 'CountWeightedLHEEnvelope_LHENjet3_LHEHT100to200' : [ 5.61199843e+05, 4.74078930e+05, ], 'CountWeightedFull_LHENjet3_LHEHT100to200' : [ 5.19142569e+05, 5.19150276e+05, 5.19095210e+05, ], 'CountWeightedFullLHEWeightScale_LHENjet3_LHEHT100to200' : [ 5.26718456e+05, 5.39605498e+05, 5.42867006e+05, 5.06623026e+05, 5.19142569e+05, 5.22369261e+05, 4.90060307e+05, 5.02277587e+05, 5.05475708e+05, ], 'CountWeightedFullLHEEnvelope_LHENjet3_LHEHT100to200' : [ 5.61199843e+05, 4.74078930e+05, ], 'CountWeightedL1PrefireNom_LHENjet3_LHEHT100to200' : [ 5.00430306e+05, 5.00410299e+05, 5.00415511e+05, ], 'CountWeightedL1Prefire_LHENjet3_LHEHT100to200' : [ 5.00430306e+05, 4.95833322e+05, 5.04928699e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet3_LHEHT100to200' : [ 5.07459433e+05, 5.20162895e+05, 5.23535333e+05, 4.88091717e+05, 5.00430306e+05, 5.03760556e+05, 4.72129877e+05, 4.84168210e+05, 4.87463897e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet3_LHEHT100to200' : [ 5.40932513e+05, 4.56976199e+05, ], 'CountWeightedFullL1PrefireNom_LHENjet3_LHEHT100to200' : [ 5.00430306e+05, 5.00410299e+05, 5.00415511e+05, ], 'CountWeightedFullL1Prefire_LHENjet3_LHEHT100to200' : [ 5.00430306e+05, 4.95833322e+05, 5.04928699e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet3_LHEHT100to200' : [ 5.07459433e+05, 5.20162895e+05, 5.23535333e+05, 4.88091717e+05, 5.00430306e+05, 5.03760556e+05, 4.72129877e+05, 4.84168210e+05, 4.87463897e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet3_LHEHT100to200' : [ 5.40932513e+05, 4.56976199e+05, ], 'Count_LHENjet3_LHEHT200to400' : [ 133446, ], 'CountWeighted_LHENjet3_LHEHT200to400' : [ 1.32812720e+05, 1.32870056e+05, 1.32787471e+05, ], 'CountWeightedLHEWeightScale_LHENjet3_LHEHT200to400' : [ 1.43580939e+05, 1.40339951e+05, 1.36175490e+05, 1.35866229e+05, 1.32812720e+05, 1.28876935e+05, 1.29607384e+05, 1.26706691e+05, 1.22957056e+05, ], 'CountWeightedLHEEnvelope_LHENjet3_LHEHT200to400' : [ 1.46638996e+05, 1.20359230e+05, ], 'CountWeightedFull_LHENjet3_LHEHT200to400' : [ 1.32812720e+05, 1.32870056e+05, 1.32787471e+05, ], 'CountWeightedFullLHEWeightScale_LHENjet3_LHEHT200to400' : [ 1.43580939e+05, 1.40339951e+05, 1.36175490e+05, 1.35866229e+05, 1.32812720e+05, 1.28876935e+05, 1.29607384e+05, 1.26706691e+05, 1.22957056e+05, ], 'CountWeightedFullLHEEnvelope_LHENjet3_LHEHT200to400' : [ 1.46638996e+05, 1.20359230e+05, ], 'CountWeightedL1PrefireNom_LHENjet3_LHEHT200to400' : [ 1.23987964e+05, 1.24024846e+05, 1.23985413e+05, ], 'CountWeightedL1Prefire_LHENjet3_LHEHT200to400' : [ 1.23987964e+05, 1.22039103e+05, 1.25948308e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet3_LHEHT200to400' : [ 1.33870143e+05, 1.31007582e+05, 1.27247324e+05, 1.26684064e+05, 1.23987964e+05, 1.20434350e+05, 1.20853335e+05, 1.18293010e+05, 1.14907671e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet3_LHEHT200to400' : [ 1.36780048e+05, 1.12432104e+05, ], 'CountWeightedFullL1PrefireNom_LHENjet3_LHEHT200to400' : [ 1.23987964e+05, 1.24024846e+05, 1.23985413e+05, ], 'CountWeightedFullL1Prefire_LHENjet3_LHEHT200to400' : [ 1.23987964e+05, 1.22039103e+05, 1.25948308e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet3_LHEHT200to400' : [ 1.33870143e+05, 1.31007582e+05, 1.27247324e+05, 1.26684064e+05, 1.23987964e+05, 1.20434350e+05, 1.20853335e+05, 1.18293010e+05, 1.14907671e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet3_LHEHT200to400' : [ 1.36780048e+05, 1.12432104e+05, ], 'Count_LHENjet3_LHEHT400to600' : [ 11769, ], 'CountWeighted_LHENjet3_LHEHT400to600' : [ 1.17278703e+04, 1.17216221e+04, 1.17310290e+04, ], 'CountWeightedLHEWeightScale_LHENjet3_LHEHT400to600' : [ 1.36291844e+04, 1.28127310e+04, 1.20511305e+04, 1.24801271e+04, 1.17278703e+04, 1.10268316e+04, 1.15599052e+04, 1.08592611e+04, 1.02068734e+04, ], 'CountWeightedLHEEnvelope_LHENjet3_LHEHT400to600' : [ 1.37071264e+04, 1.01506677e+04, ], 'CountWeightedFull_LHENjet3_LHEHT400to600' : [ 1.17278703e+04, 1.17216221e+04, 1.17310290e+04, ], 'CountWeightedFullLHEWeightScale_LHENjet3_LHEHT400to600' : [ 1.36291844e+04, 1.28127310e+04, 1.20511305e+04, 1.24801271e+04, 1.17278703e+04, 1.10268316e+04, 1.15599052e+04, 1.08592611e+04, 1.02068734e+04, ], 'CountWeightedFullLHEEnvelope_LHENjet3_LHEHT400to600' : [ 1.37071264e+04, 1.01506677e+04, ], 'CountWeightedL1PrefireNom_LHENjet3_LHEHT400to600' : [ 1.07210855e+04, 1.07203555e+04, 1.07183401e+04, ], 'CountWeightedL1Prefire_LHENjet3_LHEHT400to600' : [ 1.07210855e+04, 1.05114033e+04, 1.09342298e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet3_LHEHT400to600' : [ 1.24277875e+04, 1.17059933e+04, 1.10283011e+04, 1.13867699e+04, 1.07210855e+04, 1.00967161e+04, 1.05526813e+04, 9.93215187e+03, 9.35065295e+03, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet3_LHEHT400to600' : [ 1.25015177e+04, 9.29732066e+03, ], 'CountWeightedFullL1PrefireNom_LHENjet3_LHEHT400to600' : [ 1.07210855e+04, 1.07203555e+04, 1.07183401e+04, ], 'CountWeightedFullL1Prefire_LHENjet3_LHEHT400to600' : [ 1.07210855e+04, 1.05114033e+04, 1.09342298e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet3_LHEHT400to600' : [ 1.24277875e+04, 1.17059933e+04, 1.10283011e+04, 1.13867699e+04, 1.07210855e+04, 1.00967161e+04, 1.05526813e+04, 9.93215187e+03, 9.35065295e+03, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet3_LHEHT400to600' : [ 1.25015177e+04, 9.29732066e+03, ], 'Count_LHENjet3_LHEHT600to800' : [ 2033, ], 'CountWeighted_LHENjet3_LHEHT600to800' : [ 2.02306047e+03, 2.02515382e+03, 2.01834181e+03, ], 'CountWeightedLHEWeightScale_LHENjet3_LHEHT600to800' : [ 2.42077831e+03, 2.23267315e+03, 2.06723321e+03, 2.19427241e+03, 2.02306047e+03, 1.87257600e+03, 2.01209708e+03, 1.85447576e+03, 1.71602691e+03, ], 'CountWeightedLHEEnvelope_LHENjet3_LHEHT600to800' : [ 2.43070742e+03, 1.70847104e+03, ], 'CountWeightedFull_LHENjet3_LHEHT600to800' : [ 2.02306047e+03, 2.02515382e+03, 2.01834181e+03, ], 'CountWeightedFullLHEWeightScale_LHENjet3_LHEHT600to800' : [ 2.42077831e+03, 2.23267315e+03, 2.06723321e+03, 2.19427241e+03, 2.02306047e+03, 1.87257600e+03, 2.01209708e+03, 1.85447576e+03, 1.71602691e+03, ], 'CountWeightedFullLHEEnvelope_LHENjet3_LHEHT600to800' : [ 2.43070742e+03, 1.70847104e+03, ], 'CountWeightedL1PrefireNom_LHENjet3_LHEHT600to800' : [ 1.85993390e+03, 1.86113207e+03, 1.85676565e+03, ], 'CountWeightedL1Prefire_LHENjet3_LHEHT600to800' : [ 1.85993390e+03, 1.82666310e+03, 1.89388101e+03, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet3_LHEHT600to800' : [ 2.21992008e+03, 2.05151948e+03, 1.90276297e+03, 2.01342012e+03, 1.85993390e+03, 1.72446230e+03, 1.84725958e+03, 1.70578074e+03, 1.58100820e+03, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet3_LHEHT600to800' : [ 2.22914744e+03, 1.57403039e+03, ], 'CountWeightedFullL1PrefireNom_LHENjet3_LHEHT600to800' : [ 1.85993390e+03, 1.86113207e+03, 1.85676565e+03, ], 'CountWeightedFullL1Prefire_LHENjet3_LHEHT600to800' : [ 1.85993390e+03, 1.82666310e+03, 1.89388101e+03, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet3_LHEHT600to800' : [ 2.21992008e+03, 2.05151948e+03, 1.90276297e+03, 2.01342012e+03, 1.85993390e+03, 1.72446230e+03, 1.84725958e+03, 1.70578074e+03, 1.58100820e+03, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet3_LHEHT600to800' : [ 2.22914744e+03, 1.57403039e+03, ], 'Count_LHENjet3_LHEHT800to1200' : [ 664, ], 'CountWeighted_LHENjet3_LHEHT800to1200' : [ 6.51596645e+02, 6.55402743e+02, 6.47953180e+02, ], 'CountWeightedLHEWeightScale_LHENjet3_LHEHT800to1200' : [ 7.94819269e+02, 7.24163864e+02, 6.63810319e+02, 7.15415700e+02, 6.51596645e+02, 5.97130691e+02, 6.51215837e+02, 5.92931612e+02, 5.43229542e+02, ], 'CountWeightedLHEEnvelope_LHENjet3_LHEHT800to1200' : [ 7.96619218e+02, 5.42107788e+02, ], 'CountWeightedFull_LHENjet3_LHEHT800to1200' : [ 6.51596645e+02, 6.55402743e+02, 6.47953180e+02, ], 'CountWeightedFullLHEWeightScale_LHENjet3_LHEHT800to1200' : [ 7.94819269e+02, 7.24163864e+02, 6.63810319e+02, 7.15415700e+02, 6.51596645e+02, 5.97130691e+02, 6.51215837e+02, 5.92931612e+02, 5.43229542e+02, ], 'CountWeightedFullLHEEnvelope_LHENjet3_LHEHT800to1200' : [ 7.96619218e+02, 5.42107788e+02, ], 'CountWeightedL1PrefireNom_LHENjet3_LHEHT800to1200' : [ 6.12731043e+02, 6.16498190e+02, 6.09293008e+02, ], 'CountWeightedL1Prefire_LHENjet3_LHEHT800to1200' : [ 6.12731043e+02, 6.04436434e+02, 6.21047216e+02, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet3_LHEHT800to1200' : [ 7.45110760e+02, 6.80528114e+02, 6.25056988e+02, 6.71129791e+02, 6.12731043e+02, 5.62620519e+02, 6.11278931e+02, 5.57891468e+02, 5.12122506e+02, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet3_LHEHT800to1200' : [ 7.46845110e+02, 5.11032264e+02, ], 'CountWeightedFullL1PrefireNom_LHENjet3_LHEHT800to1200' : [ 6.12731043e+02, 6.16498190e+02, 6.09293008e+02, ], 'CountWeightedFullL1Prefire_LHENjet3_LHEHT800to1200' : [ 6.12731043e+02, 6.04436434e+02, 6.21047216e+02, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet3_LHEHT800to1200' : [ 7.45110760e+02, 6.80528114e+02, 6.25056988e+02, 6.71129791e+02, 6.12731043e+02, 5.62620519e+02, 6.11278931e+02, 5.57891468e+02, 5.12122506e+02, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet3_LHEHT800to1200' : [ 7.46845110e+02, 5.11032264e+02, ], 'Count_LHENjet3_LHEHT1200to2500' : [ 105, ], 'CountWeighted_LHENjet3_LHEHT1200to2500' : [ 1.09963092e+02, 1.11285506e+02, 1.07929547e+02, ], 'CountWeightedLHEWeightScale_LHENjet3_LHEHT1200to2500' : [ 1.36265872e+02, 1.21364804e+02, 1.09148592e+02, 1.23472423e+02, 1.09963092e+02, 9.88891721e+01, 1.12905838e+02, 1.00547346e+02, 9.04179280e+01, ], 'CountWeightedLHEEnvelope_LHENjet3_LHEHT1200to2500' : [ 1.36294343e+02, 9.04179280e+01, ], 'CountWeightedFull_LHENjet3_LHEHT1200to2500' : [ 1.09963092e+02, 1.11285506e+02, 1.07929547e+02, ], 'CountWeightedFullLHEWeightScale_LHENjet3_LHEHT1200to2500' : [ 1.36265872e+02, 1.21364804e+02, 1.09148592e+02, 1.23472423e+02, 1.09963092e+02, 9.88891721e+01, 1.12905838e+02, 1.00547346e+02, 9.04179280e+01, ], 'CountWeightedFullLHEEnvelope_LHENjet3_LHEHT1200to2500' : [ 1.36294343e+02, 9.04179280e+01, ], 'CountWeightedL1PrefireNom_LHENjet3_LHEHT1200to2500' : [ 1.07053966e+02, 1.08355594e+02, 1.05009044e+02, ], 'CountWeightedL1Prefire_LHENjet3_LHEHT1200to2500' : [ 1.07053966e+02, 1.06383332e+02, 1.07715402e+02, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet3_LHEHT1200to2500' : [ 1.32605078e+02, 1.18182268e+02, 1.06349869e+02, 1.20126431e+02, 1.07053966e+02, 9.63307009e+01, 1.09823815e+02, 9.78675074e+01, 8.80609582e+01, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet3_LHEHT1200to2500' : [ 1.32632838e+02, 8.80609582e+01, ], 'CountWeightedFullL1PrefireNom_LHENjet3_LHEHT1200to2500' : [ 1.07053966e+02, 1.08355594e+02, 1.05009044e+02, ], 'CountWeightedFullL1Prefire_LHENjet3_LHEHT1200to2500' : [ 1.07053966e+02, 1.06383332e+02, 1.07715402e+02, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet3_LHEHT1200to2500' : [ 1.32605078e+02, 1.18182268e+02, 1.06349869e+02, 1.20126431e+02, 1.07053966e+02, 9.63307009e+01, 1.09823815e+02, 9.78675074e+01, 8.80609582e+01, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet3_LHEHT1200to2500' : [ 1.32632838e+02, 8.80609582e+01, ], 'Count_LHENjet3_LHEHT2500toInf' : [ 4, ], 'CountWeighted_LHENjet3_LHEHT2500toInf' : [ 4.28510916e+00, 4.33451855e+00, 4.27617633e+00, ], 'CountWeightedLHEWeightScale_LHENjet3_LHEHT2500toInf' : [ 5.69547045e+00, 4.85255593e+00, 4.18823349e+00, 5.02334851e+00, 4.28510916e+00, 3.70269871e+00, 4.47962481e+00, 3.82579988e+00, 3.30931020e+00, ], 'CountWeightedLHEEnvelope_LHENjet3_LHEHT2500toInf' : [ 5.69547045e+00, 3.30931020e+00, ], 'CountWeightedFull_LHENjet3_LHEHT2500toInf' : [ 4.28510916e+00, 4.33451855e+00, 4.27617633e+00, ], 'CountWeightedFullLHEWeightScale_LHENjet3_LHEHT2500toInf' : [ 5.69547045e+00, 4.85255593e+00, 4.18823349e+00, 5.02334851e+00, 4.28510916e+00, 3.70269871e+00, 4.47962481e+00, 3.82579988e+00, 3.30931020e+00, ], 'CountWeightedFullLHEEnvelope_LHENjet3_LHEHT2500toInf' : [ 5.69547045e+00, 3.30931020e+00, ], 'CountWeightedL1PrefireNom_LHENjet3_LHEHT2500toInf' : [ 4.27835160e+00, 4.32737017e+00, 4.26913500e+00, ], 'CountWeightedL1Prefire_LHENjet3_LHEHT2500toInf' : [ 4.27835160e+00, 4.27643502e+00, 4.28026819e+00, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet3_LHEHT2500toInf' : [ 5.68756384e+00, 4.84527129e+00, 4.18149531e+00, 5.01601392e+00, 4.27835160e+00, 3.69644809e+00, 4.47278392e+00, 3.81949729e+00, 3.30348027e+00, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet3_LHEHT2500toInf' : [ 5.68756384e+00, 3.30348027e+00, ], 'CountWeightedFullL1PrefireNom_LHENjet3_LHEHT2500toInf' : [ 4.27835160e+00, 4.32737017e+00, 4.26913500e+00, ], 'CountWeightedFullL1Prefire_LHENjet3_LHEHT2500toInf' : [ 4.27835160e+00, 4.27643502e+00, 4.28026819e+00, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet3_LHEHT2500toInf' : [ 5.68756384e+00, 4.84527129e+00, 4.18149531e+00, 5.01601392e+00, 4.27835160e+00, 3.69644809e+00, 4.47278392e+00, 3.81949729e+00, 3.30348027e+00, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet3_LHEHT2500toInf' : [ 5.68756384e+00, 3.30348027e+00, ], 'Count_LHENjet4_LHEHT0to70' : [ 397, ], 'CountWeighted_LHENjet4_LHEHT0to70' : [ 4.07256327e+02, 4.04938201e+02, 4.08772971e+02, ], 'CountWeightedLHEWeightScale_LHENjet4_LHEHT0to70' : [ 4.04952141e+02, 4.28227949e+02, 4.38555024e+02, 3.84610847e+02, 4.07256327e+02, 4.17484212e+02, 3.68018365e+02, 3.90150669e+02, 4.00298679e+02, ], 'CountWeightedLHEEnvelope_LHENjet4_LHEHT0to70' : [ 4.52290583e+02, 3.56662529e+02, ], 'CountWeightedFull_LHENjet4_LHEHT0to70' : [ 4.07256327e+02, 4.04938201e+02, 4.08772971e+02, ], 'CountWeightedFullLHEWeightScale_LHENjet4_LHEHT0to70' : [ 4.04952141e+02, 4.28227949e+02, 4.38555024e+02, 3.84610847e+02, 4.07256327e+02, 4.17484212e+02, 3.68018365e+02, 3.90150669e+02, 4.00298679e+02, ], 'CountWeightedFullLHEEnvelope_LHENjet4_LHEHT0to70' : [ 4.52290583e+02, 3.56662529e+02, ], 'CountWeightedL1PrefireNom_LHENjet4_LHEHT0to70' : [ 4.00991980e+02, 3.98985712e+02, 4.02259228e+02, ], 'CountWeightedL1Prefire_LHENjet4_LHEHT0to70' : [ 4.00991980e+02, 3.99324143e+02, 4.02579453e+02, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet4_LHEHT0to70' : [ 3.98683658e+02, 4.21645320e+02, 4.31845361e+02, 3.78651721e+02, 4.00991980e+02, 4.11093957e+02, 3.62313233e+02, 3.84147713e+02, 3.94170689e+02, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet4_LHEHT0to70' : [ 4.45380613e+02, 3.51122094e+02, ], 'CountWeightedFullL1PrefireNom_LHENjet4_LHEHT0to70' : [ 4.00991980e+02, 3.98985712e+02, 4.02259228e+02, ], 'CountWeightedFullL1Prefire_LHENjet4_LHEHT0to70' : [ 4.00991980e+02, 3.99324143e+02, 4.02579453e+02, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet4_LHEHT0to70' : [ 3.98683658e+02, 4.21645320e+02, 4.31845361e+02, 3.78651721e+02, 4.00991980e+02, 4.11093957e+02, 3.62313233e+02, 3.84147713e+02, 3.94170689e+02, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet4_LHEHT0to70' : [ 4.45380613e+02, 3.51122094e+02, ], 'Count_LHENjet4_LHEHT70to100' : [ 19315, ], 'CountWeighted_LHENjet4_LHEHT70to100' : [ 1.92633424e+04, 1.92786364e+04, 1.92602219e+04, ], 'CountWeightedLHEWeightScale_LHENjet4_LHEHT70to100' : [ 1.95836746e+04, 2.00923076e+04, 2.01538637e+04, 1.87705443e+04, 1.92633424e+04, 1.93259113e+04, 1.81061088e+04, 1.85859469e+04, 1.86493328e+04, ], 'CountWeightedLHEEnvelope_LHENjet4_LHEHT70to100' : [ 2.12065212e+04, 1.71708814e+04, ], 'CountWeightedFull_LHENjet4_LHEHT70to100' : [ 1.92633424e+04, 1.92786364e+04, 1.92602219e+04, ], 'CountWeightedFullLHEWeightScale_LHENjet4_LHEHT70to100' : [ 1.95836746e+04, 2.00923076e+04, 2.01538637e+04, 1.87705443e+04, 1.92633424e+04, 1.93259113e+04, 1.81061088e+04, 1.85859469e+04, 1.86493328e+04, ], 'CountWeightedFullLHEEnvelope_LHENjet4_LHEHT70to100' : [ 2.12065212e+04, 1.71708814e+04, ], 'CountWeightedL1PrefireNom_LHENjet4_LHEHT70to100' : [ 1.88754967e+04, 1.88877511e+04, 1.88749647e+04, ], 'CountWeightedL1Prefire_LHENjet4_LHEHT70to100' : [ 1.88754967e+04, 1.87721943e+04, 1.89737363e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet4_LHEHT70to100' : [ 1.91845670e+04, 1.96882280e+04, 1.97523389e+04, 1.83875551e+04, 1.88754967e+04, 1.89404636e+04, 1.77363198e+04, 1.82113955e+04, 1.82770507e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet4_LHEHT70to100' : [ 2.07788183e+04, 1.68246336e+04, ], 'CountWeightedFullL1PrefireNom_LHENjet4_LHEHT70to100' : [ 1.88754967e+04, 1.88877511e+04, 1.88749647e+04, ], 'CountWeightedFullL1Prefire_LHENjet4_LHEHT70to100' : [ 1.88754967e+04, 1.87721943e+04, 1.89737363e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet4_LHEHT70to100' : [ 1.91845670e+04, 1.96882280e+04, 1.97523389e+04, 1.83875551e+04, 1.88754967e+04, 1.89404636e+04, 1.77363198e+04, 1.82113955e+04, 1.82770507e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet4_LHEHT70to100' : [ 2.07788183e+04, 1.68246336e+04, ], 'Count_LHENjet4_LHEHT100to200' : [ 262144, ], 'CountWeighted_LHENjet4_LHEHT100to200' : [ 2.61543830e+05, 2.61651797e+05, 2.61445608e+05, ], 'CountWeightedLHEWeightScale_LHENjet4_LHEHT100to200' : [ 2.75855607e+05, 2.72433130e+05, 2.65887778e+05, 2.64786071e+05, 2.61543830e+05, 2.55288931e+05, 2.55693775e+05, 2.52599431e+05, 2.46582946e+05, ], 'CountWeightedLHEEnvelope_LHENjet4_LHEHT100to200' : [ 2.87634489e+05, 2.36002083e+05, ], 'CountWeightedFull_LHENjet4_LHEHT100to200' : [ 2.61543830e+05, 2.61651797e+05, 2.61445608e+05, ], 'CountWeightedFullLHEWeightScale_LHENjet4_LHEHT100to200' : [ 2.75855607e+05, 2.72433130e+05, 2.65887778e+05, 2.64786071e+05, 2.61543830e+05, 2.55288931e+05, 2.55693775e+05, 2.52599431e+05, 2.46582946e+05, ], 'CountWeightedFullLHEEnvelope_LHENjet4_LHEHT100to200' : [ 2.87634489e+05, 2.36002083e+05, ], 'CountWeightedL1PrefireNom_LHENjet4_LHEHT100to200' : [ 2.52581374e+05, 2.52689353e+05, 2.52482219e+05, ], 'CountWeightedL1Prefire_LHENjet4_LHEHT100to200' : [ 2.52581374e+05, 2.50316161e+05, 2.54771161e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet4_LHEHT100to200' : [ 2.66267983e+05, 2.63107507e+05, 2.56893875e+05, 2.55573070e+05, 2.52581374e+05, 2.46644525e+05, 2.46789039e+05, 2.43935783e+05, 2.38226122e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet4_LHEHT100to200' : [ 2.77725699e+05, 2.27930667e+05, ], 'CountWeightedFullL1PrefireNom_LHENjet4_LHEHT100to200' : [ 2.52581374e+05, 2.52689353e+05, 2.52482219e+05, ], 'CountWeightedFullL1Prefire_LHENjet4_LHEHT100to200' : [ 2.52581374e+05, 2.50316161e+05, 2.54771161e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet4_LHEHT100to200' : [ 2.66267983e+05, 2.63107507e+05, 2.56893875e+05, 2.55573070e+05, 2.52581374e+05, 2.46644525e+05, 2.46789039e+05, 2.43935783e+05, 2.38226122e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet4_LHEHT100to200' : [ 2.77725699e+05, 2.27930667e+05, ], 'Count_LHENjet4_LHEHT200to400' : [ 230712, ], 'CountWeighted_LHENjet4_LHEHT200to400' : [ 2.30255739e+05, 2.30251069e+05, 2.30231438e+05, ], 'CountWeightedLHEWeightScale_LHENjet4_LHEHT200to400' : [ 2.55905363e+05, 2.43256932e+05, 2.30550056e+05, 2.42213381e+05, 2.30255739e+05, 2.18234411e+05, 2.31125115e+05, 2.19726530e+05, 2.08260192e+05, ], 'CountWeightedLHEEnvelope_LHENjet4_LHEHT200to400' : [ 2.59943185e+05, 2.04814248e+05, ], 'CountWeightedFull_LHENjet4_LHEHT200to400' : [ 2.30255739e+05, 2.30251069e+05, 2.30231438e+05, ], 'CountWeightedFullLHEWeightScale_LHENjet4_LHEHT200to400' : [ 2.55905363e+05, 2.43256932e+05, 2.30550056e+05, 2.42213381e+05, 2.30255739e+05, 2.18234411e+05, 2.31125115e+05, 2.19726530e+05, 2.08260192e+05, ], 'CountWeightedFullLHEEnvelope_LHENjet4_LHEHT200to400' : [ 2.59943185e+05, 2.04814248e+05, ], 'CountWeightedL1PrefireNom_LHENjet4_LHEHT200to400' : [ 2.15169741e+05, 2.15150111e+05, 2.15159510e+05, ], 'CountWeightedL1Prefire_LHENjet4_LHEHT200to400' : [ 2.15169741e+05, 2.11730750e+05, 2.18598746e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet4_LHEHT200to400' : [ 2.38800948e+05, 2.27306892e+05, 2.15670749e+05, 2.26034810e+05, 2.15169741e+05, 2.04161825e+05, 2.15694648e+05, 2.05338663e+05, 1.94839428e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet4_LHEHT200to400' : [ 2.42654169e+05, 1.91546279e+05, ], 'CountWeightedFullL1PrefireNom_LHENjet4_LHEHT200to400' : [ 2.15169741e+05, 2.15150111e+05, 2.15159510e+05, ], 'CountWeightedFullL1Prefire_LHENjet4_LHEHT200to400' : [ 2.15169741e+05, 2.11730750e+05, 2.18598746e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet4_LHEHT200to400' : [ 2.38800948e+05, 2.27306892e+05, 2.15670749e+05, 2.26034810e+05, 2.15169741e+05, 2.04161825e+05, 2.15694648e+05, 2.05338663e+05, 1.94839428e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet4_LHEHT200to400' : [ 2.42654169e+05, 1.91546279e+05, ], 'Count_LHENjet4_LHEHT400to600' : [ 46972, ], 'CountWeighted_LHENjet4_LHEHT400to600' : [ 4.68823886e+04, 4.69430095e+04, 4.67932225e+04, ], 'CountWeightedLHEWeightScale_LHENjet4_LHEHT400to600' : [ 5.59933606e+04, 5.14345435e+04, 4.74263419e+04, 5.10508532e+04, 4.68823886e+04, 4.32190301e+04, 4.71257063e+04, 4.32675204e+04, 3.98782384e+04, ], 'CountWeightedLHEEnvelope_LHENjet4_LHEHT400to600' : [ 5.62408087e+04, 3.96988932e+04, ], 'CountWeightedFull_LHENjet4_LHEHT400to600' : [ 4.68823886e+04, 4.69430095e+04, 4.67932225e+04, ], 'CountWeightedFullLHEWeightScale_LHENjet4_LHEHT400to600' : [ 5.59933606e+04, 5.14345435e+04, 4.74263419e+04, 5.10508532e+04, 4.68823886e+04, 4.32190301e+04, 4.71257063e+04, 4.32675204e+04, 3.98782384e+04, ], 'CountWeightedFullLHEEnvelope_LHENjet4_LHEHT400to600' : [ 5.62408087e+04, 3.96988932e+04, ], 'CountWeightedL1PrefireNom_LHENjet4_LHEHT400to600' : [ 4.25343479e+04, 4.25777586e+04, 4.24625700e+04, ], 'CountWeightedL1Prefire_LHENjet4_LHEHT400to600' : [ 4.25343479e+04, 4.16050823e+04, 4.34741822e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet4_LHEHT400to600' : [ 5.06719154e+04, 4.66503272e+04, 4.30957955e+04, 4.62130770e+04, 4.25343479e+04, 3.92843521e+04, 4.26703057e+04, 3.92642930e+04, 3.62564977e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet4_LHEHT400to600' : [ 5.09037344e+04, 3.60882380e+04, ], 'CountWeightedFullL1PrefireNom_LHENjet4_LHEHT400to600' : [ 4.25343479e+04, 4.25777586e+04, 4.24625700e+04, ], 'CountWeightedFullL1Prefire_LHENjet4_LHEHT400to600' : [ 4.25343479e+04, 4.16050823e+04, 4.34741822e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet4_LHEHT400to600' : [ 5.06719154e+04, 4.66503272e+04, 4.30957955e+04, 4.62130770e+04, 4.25343479e+04, 3.92843521e+04, 4.26703057e+04, 3.92642930e+04, 3.62564977e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet4_LHEHT400to600' : [ 5.09037344e+04, 3.60882380e+04, ], 'Count_LHENjet4_LHEHT600to800' : [ 12987, ], 'CountWeighted_LHENjet4_LHEHT600to800' : [ 1.29087317e+04, 1.29310830e+04, 1.28865341e+04, ], 'CountWeightedLHEWeightScale_LHENjet4_LHEHT600to800' : [ 1.59539296e+04, 1.43890104e+04, 1.30682477e+04, 1.43163429e+04, 1.29087317e+04, 1.17212333e+04, 1.30195641e+04, 1.17364972e+04, 1.06545168e+04, ], 'CountWeightedLHEEnvelope_LHENjet4_LHEHT600to800' : [ 1.59904508e+04, 1.06310561e+04, ], 'CountWeightedFull_LHENjet4_LHEHT600to800' : [ 1.29087317e+04, 1.29310830e+04, 1.28865341e+04, ], 'CountWeightedFullLHEWeightScale_LHENjet4_LHEHT600to800' : [ 1.59539296e+04, 1.43890104e+04, 1.30682477e+04, 1.43163429e+04, 1.29087317e+04, 1.17212333e+04, 1.30195641e+04, 1.17364972e+04, 1.06545168e+04, ], 'CountWeightedFullLHEEnvelope_LHENjet4_LHEHT600to800' : [ 1.59904508e+04, 1.06310561e+04, ], 'CountWeightedL1PrefireNom_LHENjet4_LHEHT600to800' : [ 1.16912755e+04, 1.17079533e+04, 1.16781339e+04, ], 'CountWeightedL1Prefire_LHENjet4_LHEHT600to800' : [ 1.16912755e+04, 1.14364057e+04, 1.19499788e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet4_LHEHT600to800' : [ 1.43993668e+04, 1.30215390e+04, 1.18532736e+04, 1.29320677e+04, 1.16912755e+04, 1.06397258e+04, 1.17690671e+04, 1.06369175e+04, 9.67789773e+03, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet4_LHEHT600to800' : [ 1.44334881e+04, 9.65612103e+03, ], 'CountWeightedFullL1PrefireNom_LHENjet4_LHEHT600to800' : [ 1.16912755e+04, 1.17079533e+04, 1.16781339e+04, ], 'CountWeightedFullL1Prefire_LHENjet4_LHEHT600to800' : [ 1.16912755e+04, 1.14364057e+04, 1.19499788e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet4_LHEHT600to800' : [ 1.43993668e+04, 1.30215390e+04, 1.18532736e+04, 1.29320677e+04, 1.16912755e+04, 1.06397258e+04, 1.17690671e+04, 1.06369175e+04, 9.67789773e+03, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet4_LHEHT600to800' : [ 1.44334881e+04, 9.65612103e+03, ], 'Count_LHENjet4_LHEHT800to1200' : [ 5925, ], 'CountWeighted_LHENjet4_LHEHT800to1200' : [ 5.86592276e+03, 5.86198795e+03, 5.86984637e+03, ], 'CountWeightedLHEWeightScale_LHENjet4_LHEHT800to1200' : [ 7.41876346e+03, 6.57558105e+03, 5.88493947e+03, 6.62015733e+03, 5.86592276e+03, 5.24845770e+03, 5.98611097e+03, 5.30253677e+03, 4.74319064e+03, ], 'CountWeightedLHEEnvelope_LHENjet4_LHEHT800to1200' : [ 7.42601919e+03, 4.73934696e+03, ], 'CountWeightedFull_LHENjet4_LHEHT800to1200' : [ 5.86592276e+03, 5.86198795e+03, 5.86984637e+03, ], 'CountWeightedFullLHEWeightScale_LHENjet4_LHEHT800to1200' : [ 7.41876346e+03, 6.57558105e+03, 5.88493947e+03, 6.62015733e+03, 5.86592276e+03, 5.24845770e+03, 5.98611097e+03, 5.30253677e+03, 4.74319064e+03, ], 'CountWeightedFullLHEEnvelope_LHENjet4_LHEHT800to1200' : [ 7.42601919e+03, 4.73934696e+03, ], 'CountWeightedL1PrefireNom_LHENjet4_LHEHT800to1200' : [ 5.41499753e+03, 5.40945794e+03, 5.41930463e+03, ], 'CountWeightedL1Prefire_LHENjet4_LHEHT800to1200' : [ 5.41499753e+03, 5.31970896e+03, 5.51135579e+03, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet4_LHEHT800to1200' : [ 6.82949712e+03, 6.06650659e+03, 5.43966018e+03, 6.09813520e+03, 5.41499753e+03, 4.85407643e+03, 5.51691994e+03, 4.89729991e+03, 4.38880302e+03, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet4_LHEHT800to1200' : [ 6.83661440e+03, 4.38502468e+03, ], 'CountWeightedFullL1PrefireNom_LHENjet4_LHEHT800to1200' : [ 5.41499753e+03, 5.40945794e+03, 5.41930463e+03, ], 'CountWeightedFullL1Prefire_LHENjet4_LHEHT800to1200' : [ 5.41499753e+03, 5.31970896e+03, 5.51135579e+03, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet4_LHEHT800to1200' : [ 6.82949712e+03, 6.06650659e+03, 5.43966018e+03, 6.09813520e+03, 5.41499753e+03, 4.85407643e+03, 5.51691994e+03, 4.89729991e+03, 4.38880302e+03, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet4_LHEHT800to1200' : [ 6.83661440e+03, 4.38502468e+03, ], 'Count_LHENjet4_LHEHT1200to2500' : [ 1363, ], 'CountWeighted_LHENjet4_LHEHT1200to2500' : [ 1.34413645e+03, 1.34349764e+03, 1.34572314e+03, ], 'CountWeightedLHEWeightScale_LHENjet4_LHEHT1200to2500' : [ 1.73731413e+03, 1.51154061e+03, 1.33164328e+03, 1.54490540e+03, 1.34413645e+03, 1.18418775e+03, 1.39094818e+03, 1.21016991e+03, 1.06617026e+03, ], 'CountWeightedLHEEnvelope_LHENjet4_LHEHT1200to2500' : [ 1.73897274e+03, 1.06504367e+03, ], 'CountWeightedFull_LHENjet4_LHEHT1200to2500' : [ 1.34413645e+03, 1.34349764e+03, 1.34572314e+03, ], 'CountWeightedFullLHEWeightScale_LHENjet4_LHEHT1200to2500' : [ 1.73731413e+03, 1.51154061e+03, 1.33164328e+03, 1.54490540e+03, 1.34413645e+03, 1.18418775e+03, 1.39094818e+03, 1.21016991e+03, 1.06617026e+03, ], 'CountWeightedFullLHEEnvelope_LHENjet4_LHEHT1200to2500' : [ 1.73897274e+03, 1.06504367e+03, ], 'CountWeightedL1PrefireNom_LHENjet4_LHEHT1200to2500' : [ 1.26848452e+03, 1.26858184e+03, 1.26923022e+03, ], 'CountWeightedL1Prefire_LHENjet4_LHEHT1200to2500' : [ 1.26848452e+03, 1.25193711e+03, 1.28500601e+03, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet4_LHEHT1200to2500' : [ 1.63612183e+03, 1.42563082e+03, 1.25764335e+03, 1.45579970e+03, 1.26848452e+03, 1.11902036e+03, 1.31140572e+03, 1.14263498e+03, 1.00799250e+03, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet4_LHEHT1200to2500' : [ 1.63772888e+03, 1.00686839e+03, ], 'CountWeightedFullL1PrefireNom_LHENjet4_LHEHT1200to2500' : [ 1.26848452e+03, 1.26858184e+03, 1.26923022e+03, ], 'CountWeightedFullL1Prefire_LHENjet4_LHEHT1200to2500' : [ 1.26848452e+03, 1.25193711e+03, 1.28500601e+03, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet4_LHEHT1200to2500' : [ 1.63612183e+03, 1.42563082e+03, 1.25764335e+03, 1.45579970e+03, 1.26848452e+03, 1.11902036e+03, 1.31140572e+03, 1.14263498e+03, 1.00799250e+03, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet4_LHEHT1200to2500' : [ 1.63772888e+03, 1.00686839e+03, ], 'Count_LHENjet4_LHEHT2500toInf' : [ 21, ], 'CountWeighted_LHENjet4_LHEHT2500toInf' : [ 1.65259162e+01, 1.81366451e+01, 1.52155084e+01, ], 'CountWeightedLHEWeightScale_LHENjet4_LHEHT2500toInf' : [ 2.17659809e+01, 1.80295920e+01, 1.51959810e+01, 1.99629806e+01, 1.65259162e+01, 1.39214382e+01, 1.84681171e+01, 1.52795148e+01, 1.28650332e+01, ], 'CountWeightedLHEEnvelope_LHENjet4_LHEHT2500toInf' : [ 2.17659809e+01, 1.28650332e+01, ], 'CountWeightedFull_LHENjet4_LHEHT2500toInf' : [ 1.65259162e+01, 1.81366451e+01, 1.52155084e+01, ], 'CountWeightedFullLHEWeightScale_LHENjet4_LHEHT2500toInf' : [ 2.17659809e+01, 1.80295920e+01, 1.51959810e+01, 1.99629806e+01, 1.65259162e+01, 1.39214382e+01, 1.84681171e+01, 1.52795148e+01, 1.28650332e+01, ], 'CountWeightedFullLHEEnvelope_LHENjet4_LHEHT2500toInf' : [ 2.17659809e+01, 1.28650332e+01, ], 'CountWeightedL1PrefireNom_LHENjet4_LHEHT2500toInf' : [ 1.56162553e+01, 1.71595324e+01, 1.43790221e+01, ], 'CountWeightedL1Prefire_LHENjet4_LHEHT2500toInf' : [ 1.56162553e+01, 1.54242750e+01, 1.58105541e+01, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet4_LHEHT2500toInf' : [ 2.06032240e+01, 1.70953265e+01, 1.44314090e+01, 1.88304400e+01, 1.56162553e+01, 1.31772401e+01, 1.73613414e+01, 1.43908123e+01, 1.21381802e+01, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet4_LHEHT2500toInf' : [ 2.06032240e+01, 1.21381802e+01, ], 'CountWeightedFullL1PrefireNom_LHENjet4_LHEHT2500toInf' : [ 1.56162553e+01, 1.71595324e+01, 1.43790221e+01, ], 'CountWeightedFullL1Prefire_LHENjet4_LHEHT2500toInf' : [ 1.56162553e+01, 1.54242750e+01, 1.58105541e+01, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet4_LHEHT2500toInf' : [ 2.06032240e+01, 1.70953265e+01, 1.44314090e+01, 1.88304400e+01, 1.56162553e+01, 1.31772401e+01, 1.73613414e+01, 1.43908123e+01, 1.21381802e+01, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet4_LHEHT2500toInf' : [ 2.06032240e+01, 1.21381802e+01, ], }), ("nof_tree_events", 49125561), ("nof_db_events", 49125561), ("fsize_local", 158508097507), # 158.51GB, avg file size 1.60GB ("fsize_db", 2002707381991), # 2.00TB, avg file size 3.39GB ("use_it", False), ("xsection", 6077.22), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Apr19_woPresel_nom_all_hh_multilepton/ntuples/DYJetsToLL_M-50_ext1"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_new_pmx_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "EWK"), ("process_name_specific", "DYJetsToLL_M-50_amcatnloFXFX"), ("nof_files", 56), ("nof_db_files", 324), ("nof_events", { 'Count' : [ 27529915, ], 'CountWeighted' : [ 1.86592734e+07, 1.86596333e+07, 1.86562905e+07, ], 'CountWeightedLHEWeightScale' : [ 1.84099837e+07, 1.89989097e+07, 1.93277985e+07, 1.79093325e+07, 1.86592734e+07, 1.91332585e+07, 1.74654779e+07, 1.83356265e+07, 1.89295835e+07, ], 'CountWeightedLHEEnvelope' : [ 2.16264610e+07, 1.56190122e+07, ], 'CountWeightedFull' : [ 4.91292751e+11, 4.91305074e+11, 4.91287328e+11, ], 'CountWeightedFullLHEWeightScale' : [ 4.84755850e+11, 5.00262373e+11, 5.08925504e+11, 4.71572074e+11, 4.91292751e+11, 5.03804189e+11, 4.59885363e+11, 4.82798631e+11, 4.98439161e+11, ], 'CountWeightedFullLHEEnvelope' : [ 5.69454017e+11, 4.11265361e+11, ], 'CountWeightedL1PrefireNom' : [ 1.83148859e+07, 1.83147945e+07, 1.83133634e+07, ], 'CountWeightedL1Prefire' : [ 1.83148859e+07, 1.82253108e+07, 1.84023344e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 1.80662606e+07, 1.86452037e+07, 1.89674165e+07, 1.75776428e+07, 1.83148859e+07, 1.87810734e+07, 1.71450451e+07, 1.80013928e+07, 1.85855968e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 2.12233974e+07, 1.53336321e+07, ], 'CountWeightedFullL1PrefireNom' : [ 4.82235420e+11, 4.82231383e+11, 4.82244908e+11, ], 'CountWeightedFullL1Prefire' : [ 4.82235420e+11, 4.79883214e+11, 4.84532738e+11, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 4.75704988e+11, 4.90949945e+11, 4.99435544e+11, 4.62838257e+11, 4.82235420e+11, 4.94529832e+11, 4.51448259e+11, 4.73998318e+11, 4.89381445e+11, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 5.58839848e+11, 4.03751092e+11, ], 'Count_LHENjet0' : [ 16634836, ], 'CountWeighted_LHENjet0' : [ 1.44340964e+07, 1.44348538e+07, 1.44326643e+07, ], 'CountWeightedLHEWeightScale_LHENjet0' : [ 1.39632506e+07, 1.44338970e+07, 1.46481804e+07, 1.38247095e+07, 1.44340964e+07, 1.47915152e+07, 1.37122787e+07, 1.44334628e+07, 1.49087042e+07, ], 'CountWeightedLHEEnvelope_LHENjet0' : [ 1.64923225e+07, 1.21998826e+07, ], 'CountWeightedFull_LHENjet0' : [ 3.80053376e+11, 3.80069827e+11, 3.80052176e+11, ], 'CountWeightedFullLHEWeightScale_LHENjet0' : [ 3.67668084e+11, 3.80062055e+11, 3.85704778e+11, 3.64019901e+11, 3.80053376e+11, 3.89479391e+11, 3.61059703e+11, 3.80050759e+11, 3.92564559e+11, ], 'CountWeightedFullLHEEnvelope_LHENjet0' : [ 4.34263979e+11, 3.21236591e+11, ], 'CountWeightedL1PrefireNom_LHENjet0' : [ 1.42127250e+07, 1.42129196e+07, 1.42120043e+07, ], 'CountWeightedL1Prefire_LHENjet0' : [ 1.42127250e+07, 1.41534559e+07, 1.42704874e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet0' : [ 1.37492291e+07, 1.42123306e+07, 1.44225785e+07, 1.36129115e+07, 1.42127250e+07, 1.45643967e+07, 1.35022854e+07, 1.42125271e+07, 1.46803252e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet0' : [ 1.62388625e+07, 1.20131949e+07, ], 'CountWeightedFullL1PrefireNom_LHENjet0' : [ 3.74227388e+11, 3.74231055e+11, 3.74236574e+11, ], 'CountWeightedFullL1Prefire_LHENjet0' : [ 3.74227388e+11, 3.72670487e+11, 3.75746712e+11, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet0' : [ 3.62032693e+11, 3.74228210e+11, 3.79764213e+11, 3.58443016e+11, 3.74227388e+11, 3.83498606e+11, 3.55530608e+11, 3.74233421e+11, 3.86551014e+11, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet0' : [ 4.27589698e+11, 3.16321089e+11, ], 'Count_LHENjet1' : [ 5568645, ], 'CountWeighted_LHENjet1' : [ 3.34126731e+06, 3.34134095e+06, 3.34094779e+06, ], 'CountWeightedLHEWeightScale_LHENjet1' : [ 3.48984588e+06, 3.62748916e+06, 3.75007908e+06, 3.19070702e+06, 3.34126731e+06, 3.46579444e+06, 2.93780318e+06, 3.09321333e+06, 3.21790525e+06, ], 'CountWeightedLHEEnvelope_LHENjet1' : [ 4.02029930e+06, 2.74252457e+06, ], 'CountWeightedFull_LHENjet1' : [ 8.79794828e+10, 8.79831375e+10, 8.79709628e+10, ], 'CountWeightedFullLHEWeightScale_LHENjet1' : [ 9.18918289e+10, 9.55162021e+10, 9.87441082e+10, 8.40151580e+10, 8.79794828e+10, 9.12584941e+10, 7.73559204e+10, 8.14480508e+10, 8.47313330e+10, ], 'CountWeightedFullLHEEnvelope_LHENjet1' : [ 1.05859364e+11, 7.22139728e+10, ], 'CountWeightedL1PrefireNom_LHENjet1' : [ 3.25616274e+06, 3.25616027e+06, 3.25598774e+06, ], 'CountWeightedL1Prefire_LHENjet1' : [ 3.25616274e+06, 3.23498049e+06, 3.27687578e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet1' : [ 3.40033237e+06, 3.53511779e+06, 3.65504376e+06, 3.10874033e+06, 3.25616274e+06, 3.37804690e+06, 2.86222573e+06, 3.01440922e+06, 3.13648355e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet1' : [ 3.91742883e+06, 2.67289702e+06, ], 'CountWeightedFullL1PrefireNom_LHENjet1' : [ 8.57385534e+10, 8.57398189e+10, 8.57340057e+10, ], 'CountWeightedFullL1Prefire_LHENjet1' : [ 8.57385534e+10, 8.51807329e+10, 8.62840066e+10, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet1' : [ 8.95348611e+10, 9.30839496e+10, 9.62417338e+10, 8.18568758e+10, 8.57385534e+10, 8.89479841e+10, 7.53658630e+10, 7.93730244e+10, 8.25873981e+10, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet1' : [ 1.03150669e+11, 7.03806009e+10, ], 'Count_LHENjet2' : [ 4032385, ], 'CountWeighted_LHENjet2' : [ 1.09789729e+06, 1.09764112e+06, 1.09830911e+06, ], 'CountWeightedLHEWeightScale_LHENjet2' : [ 1.25313656e+06, 1.23922494e+06, 1.23322087e+06, 1.10525781e+06, 1.09789729e+06, 1.09208523e+06, 9.71649111e+05, 9.67685255e+05, 9.62452765e+05, ], 'CountWeightedLHEEnvelope_LHENjet2' : [ 1.41993638e+06, 8.32756954e+05, ], 'CountWeightedFull_LHENjet2' : [ 2.89089480e+10, 2.89021317e+10, 2.89195666e+10, ], 'CountWeightedFullLHEWeightScale_LHENjet2' : [ 3.29965847e+10, 3.26302766e+10, 3.24721950e+10, 2.91027659e+10, 2.89089480e+10, 2.87559145e+10, 2.55846866e+10, 2.54803137e+10, 2.53425425e+10, ], 'CountWeightedFullLHEEnvelope_LHENjet2' : [ 3.73886256e+10, 2.19274938e+10, ], 'CountWeightedL1PrefireNom_LHENjet2' : [ 1.05238832e+06, 1.05209784e+06, 1.05280181e+06, ], 'CountWeightedL1Prefire_LHENjet2' : [ 1.05238832e+06, 1.04139435e+06, 1.06319893e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet2' : [ 1.20184022e+06, 1.18839432e+06, 1.18248528e+06, 1.05931931e+06, 1.05238832e+06, 1.04685285e+06, 9.30816113e+05, 9.27251838e+05, 9.22378301e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet2' : [ 1.36184163e+06, 7.97891978e+05, ], 'CountWeightedFullL1PrefireNom_LHENjet2' : [ 2.77106682e+10, 2.77029739e+10, 2.77214283e+10, ], 'CountWeightedFullL1Prefire_LHENjet2' : [ 2.77106682e+10, 2.74211593e+10, 2.79953003e+10, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet2' : [ 3.16458952e+10, 3.12918483e+10, 3.11362711e+10, 2.78931519e+10, 2.77106682e+10, 2.75648936e+10, 2.45095067e+10, 2.44156522e+10, 2.42873298e+10, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet2' : [ 3.58589335e+10, 2.10094503e+10, ], 'Count_LHENjet3' : [ 1294049, ], 'CountWeighted_LHENjet3' : [ -2.14971876e+05, -2.15165467e+05, -2.14877607e+05, ], 'CountWeightedLHEWeightScale_LHENjet3' : [ -2.96246291e+05, -3.01748671e+05, -3.03664967e+05, -2.11353901e+05, -2.14971876e+05, -2.16103063e+05, -1.56261617e+05, -1.58773404e+05, -1.59470531e+05, ], 'CountWeightedLHEEnvelope_LHENjet3' : [ -3.06052414e+05, -1.56176938e+05, ], 'CountWeightedFull_LHENjet3' : [ -5.66046603e+09, -5.66555858e+09, -5.65798572e+09, ], 'CountWeightedFullLHEWeightScale_LHENjet3' : [ -7.80052054e+09, -7.94540510e+09, -7.99586406e+09, -5.56520203e+09, -5.66046603e+09, -5.69025348e+09, -4.11455641e+09, -4.18069475e+09, -4.19905112e+09, ], 'CountWeightedFullLHEEnvelope_LHENjet3' : [ -8.05872725e+09, -4.11232671e+09, ], 'CountWeightedL1PrefireNom_LHENjet3' : [ -2.06982452e+05, -2.07143285e+05, -2.06900808e+05, ], 'CountWeightedL1Prefire_LHENjet3' : [ -2.06982452e+05, -2.05036960e+05, -2.08894537e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet3' : [ -2.85144318e+05, -2.90660388e+05, -2.92683463e+05, -2.03341741e+05, -2.06982452e+05, -2.08200511e+05, -1.50284073e+05, -1.52819850e+05, -1.53587613e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet3' : [ -2.94700820e+05, -1.50374503e+05, ], 'CountWeightedFullL1PrefireNom_LHENjet3' : [ -5.45009556e+09, -5.45432776e+09, -5.44794750e+09, ], 'CountWeightedFullL1Prefire_LHENjet3' : [ -5.45009556e+09, -5.39886843e+09, -5.50044317e+09, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet3' : [ -7.50819256e+09, -7.65343627e+09, -7.70670702e+09, -5.35423201e+09, -5.45009556e+09, -5.48217075e+09, -3.95716005e+09, -4.02393063e+09, -4.04414658e+09, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet3' : [ -7.75982620e+09, -3.95954189e+09, ], }), ("nof_tree_events", 27529915), ("nof_db_events", 27529915), ("fsize_local", 96867122884), # 96.87GB, avg file size 1.73GB ("fsize_db", 1129729744374), # 1.13TB, avg file size 3.49GB ("use_it", True), ("xsection", 6077.22), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Apr19_woPresel_nom_all_hh_multilepton/ntuples/DYJetsToLL_M-50_amcatnloFXFX"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_new_pmx_94X_mc2017_realistic_v14_ext1-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "EWK"), ("process_name_specific", "DYJetsToLL_M-50_amcatnloFXFX_ext1"), ("nof_files", 366), ("nof_db_files", 2005), ("nof_events", { 'Count' : [ 182217609, ], 'CountWeighted' : [ 1.23478066e+08, 1.23493011e+08, 1.23499741e+08, ], 'CountWeightedLHEWeightScale' : [ 1.21875927e+08, 1.25767798e+08, 1.27942608e+08, 1.18535360e+08, 1.23478066e+08, 1.26625912e+08, 1.15575843e+08, 1.21325619e+08, 1.25252814e+08, ], 'CountWeightedLHEEnvelope' : [ 1.43143656e+08, 1.03370330e+08, ], 'CountWeightedFull' : [ 3.25136143e+12, 3.25150211e+12, 3.25127666e+12, ], 'CountWeightedFullLHEWeightScale' : [ 3.20913219e+12, 3.31155923e+12, 3.36889108e+12, 3.12116553e+12, 3.25136143e+12, 3.33422515e+12, 3.04324038e+12, 3.19470357e+12, 3.29806250e+12, ], 'CountWeightedFullLHEEnvelope' : [ 3.76915633e+12, 2.72185471e+12, ], 'CountWeightedL1PrefireNom' : [ 1.21195063e+08, 1.21204652e+08, 1.21215554e+08, ], 'CountWeightedL1Prefire' : [ 1.21195063e+08, 1.20602374e+08, 1.21774856e+08, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 1.19591657e+08, 1.23418406e+08, 1.25550202e+08, 1.16331640e+08, 1.21195063e+08, 1.24288149e+08, 1.13447615e+08, 1.19107141e+08, 1.22969858e+08, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 1.40465973e+08, 1.01475821e+08, ], 'CountWeightedFullL1PrefireNom' : [ 3.19125571e+12, 3.19129543e+12, 3.19126642e+12, ], 'CountWeightedFullL1Prefire' : [ 3.19125571e+12, 3.17563696e+12, 3.20649654e+12, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 3.14898379e+12, 3.24971829e+12, 3.30589413e+12, 3.06313947e+12, 3.19125571e+12, 3.27266578e+12, 2.98720260e+12, 3.13627207e+12, 3.23794757e+12, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 3.69864841e+12, 2.67197022e+12, ], 'Count_LHENjet0' : [ 109825196, ], 'CountWeighted_LHENjet0' : [ 9.52949719e+07, 9.53048082e+07, 9.53114116e+07, ], 'CountWeightedLHEWeightScale_LHENjet0' : [ 9.21945969e+07, 9.53043921e+07, 9.67222848e+07, 9.12775490e+07, 9.52949719e+07, 9.76640402e+07, 9.05331173e+07, 9.52952987e+07, 9.84339275e+07, ], 'CountWeightedLHEEnvelope_LHENjet0' : [ 1.08882490e+08, 8.05605712e+07, ], 'CountWeightedFull_LHENjet0' : [ 2.50931858e+12, 2.50940761e+12, 2.50915892e+12, ], 'CountWeightedFullLHEWeightScale_LHENjet0' : [ 2.42758821e+12, 2.50945161e+12, 2.54681849e+12, 2.40343970e+12, 2.50931858e+12, 2.57162002e+12, 2.38384002e+12, 2.50927301e+12, 2.59188652e+12, ], 'CountWeightedFullLHEEnvelope_LHENjet0' : [ 2.86701606e+12, 2.12125035e+12, ], 'CountWeightedL1PrefireNom_LHENjet0' : [ 9.38358176e+07, 9.38408180e+07, 9.38510660e+07, ], 'CountWeightedL1Prefire_LHENjet0' : [ 9.38358176e+07, 9.34455575e+07, 9.42169546e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet0' : [ 9.07822832e+07, 9.38417217e+07, 9.52328157e+07, 8.98799690e+07, 9.38358176e+07, 9.61646696e+07, 8.91475367e+07, 9.38374923e+07, 9.69263839e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet0' : [ 1.07209435e+08, 7.93285715e+07, ], 'CountWeightedFullL1PrefireNom_LHENjet0' : [ 2.47087822e+12, 2.47088511e+12, 2.47081685e+12, ], 'CountWeightedFullL1Prefire_LHENjet0' : [ 2.47087822e+12, 2.46059070e+12, 2.48090184e+12, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet0' : [ 2.39040074e+12, 2.47094791e+12, 2.50759788e+12, 2.36664058e+12, 2.47087822e+12, 2.53213755e+12, 2.34735678e+12, 2.47087697e+12, 2.55219017e+12, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet0' : [ 2.82296133e+12, 2.08881117e+12, ], 'Count_LHENjet1' : [ 37108989, ], 'CountWeighted_LHENjet1' : [ 2.22991967e+07, 2.23011339e+07, 2.22975635e+07, ], 'CountWeightedLHEWeightScale_LHENjet1' : [ 2.32967630e+07, 2.42126712e+07, 2.50284991e+07, 2.12967402e+07, 2.22991967e+07, 2.31287308e+07, 1.96069159e+07, 2.06414056e+07, 2.14722698e+07, ], 'CountWeightedLHEEnvelope_LHENjet1' : [ 2.68372196e+07, 1.83002471e+07, ], 'CountWeightedFull_LHENjet1' : [ 5.87158680e+11, 5.87204752e+11, 5.87135402e+11, ], 'CountWeightedFullLHEWeightScale_LHENjet1' : [ 6.13431835e+11, 6.37549040e+11, 6.59030430e+11, 5.60768771e+11, 5.87158680e+11, 6.09007138e+11, 5.16273739e+11, 5.43512868e+11, 5.65390715e+11, ], 'CountWeightedFullLHEEnvelope_LHENjet1' : [ 7.06656655e+11, 4.81867473e+11, ], 'CountWeightedL1PrefireNom_LHENjet1' : [ 2.17292368e+07, 2.17303872e+07, 2.17284686e+07, ], 'CountWeightedL1Prefire_LHENjet1' : [ 2.17292368e+07, 2.15875312e+07, 2.18678606e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet1' : [ 2.26968613e+07, 2.35947199e+07, 2.43936047e+07, 2.07469659e+07, 2.17292368e+07, 2.25419007e+07, 1.90996934e+07, 2.01132663e+07, 2.09272497e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet1' : [ 2.61485525e+07, 1.78337458e+07, ], 'CountWeightedFullL1PrefireNom_LHENjet1' : [ 5.72153506e+11, 5.72180249e+11, 5.72146159e+11, ], 'CountWeightedFullL1Prefire_LHENjet1' : [ 5.72153506e+11, 5.68422625e+11, 5.75803176e+11, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet1' : [ 5.97635646e+11, 6.21277574e+11, 6.42312827e+11, 5.46292482e+11, 5.72153506e+11, 5.93555217e+11, 5.02917894e+11, 5.29606302e+11, 5.51039687e+11, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet1' : [ 6.88523070e+11, 4.69583964e+11, ], 'Count_LHENjet2' : [ 26725643, ], 'CountWeighted_LHENjet2' : [ 7.30131879e+06, 7.30235871e+06, 7.30023039e+06, ], 'CountWeightedLHEWeightScale_LHENjet2' : [ 8.33847782e+06, 8.23988130e+06, 8.19402955e+06, 7.35517960e+06, 7.30131879e+06, 7.25823021e+06, 6.46666962e+06, 6.43636687e+06, 6.39830704e+06, ], 'CountWeightedLHEEnvelope_LHENjet2' : [ 9.44242876e+06, 5.53940403e+06, ], 'CountWeightedFull_LHENjet2' : [ 1.92252452e+11, 1.92278823e+11, 1.92223128e+11, ], 'CountWeightedFullLHEWeightScale_LHENjet2' : [ 2.19562131e+11, 2.16965985e+11, 2.15758651e+11, 1.93670701e+11, 1.92252452e+11, 1.91117904e+11, 1.70275172e+11, 1.69477291e+11, 1.68475111e+11, ], 'CountWeightedFullLHEEnvelope_LHENjet2' : [ 2.48630490e+11, 1.45859180e+11, ], 'CountWeightedL1PrefireNom_LHENjet2' : [ 6.99505350e+06, 6.99581455e+06, 6.99423465e+06, ], 'CountWeightedL1Prefire_LHENjet2' : [ 6.99505350e+06, 6.92128394e+06, 7.06761541e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet2' : [ 7.99276449e+06, 7.89785569e+06, 7.85318009e+06, 7.04563757e+06, 6.99505350e+06, 6.95420653e+06, 6.19155929e+06, 6.16422965e+06, 6.12884332e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet2' : [ 9.05120823e+06, 5.30489047e+06, ], 'CountWeightedFullL1PrefireNom_LHENjet2' : [ 1.84188055e+11, 1.84207745e+11, 1.84166296e+11, ], 'CountWeightedFullL1Prefire_LHENjet2' : [ 1.84188055e+11, 1.82245652e+11, 1.86098763e+11, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet2' : [ 2.10459099e+11, 2.07960039e+11, 2.06783655e+11, 1.85520099e+11, 1.84188055e+11, 1.83112631e+11, 1.63031194e+11, 1.62311583e+11, 1.61379802e+11, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet2' : [ 2.38329190e+11, 1.39684138e+11, ], 'Count_LHENjet3' : [ 8557781, ], 'CountWeighted_LHENjet3' : [ -1.41776070e+06, -1.41754883e+06, -1.41792491e+06, ], 'CountWeightedLHEWeightScale_LHENjet3' : [ -1.95392372e+06, -1.98981147e+06, -2.00210752e+06, -1.39420748e+06, -1.41776070e+06, -1.42494980e+06, -1.03089960e+06, -1.04721891e+06, -1.05161175e+06, ], 'CountWeightedLHEEnvelope_LHENjet3' : [ -2.01841964e+06, -1.03002606e+06, ], 'CountWeightedFull_LHENjet3' : [ -3.73313373e+10, -3.73258412e+10, -3.73357126e+10, ], 'CountWeightedFullLHEWeightScale_LHENjet3' : [ -5.14491595e+10, -5.23941257e+10, -5.27178930e+10, -3.67111591e+10, -3.73313373e+10, -3.75206386e+10, -2.71448253e+10, -2.75745319e+10, -2.76902019e+10, ], 'CountWeightedFullLHEEnvelope_LHENjet3' : [ -5.31474117e+10, -2.71218239e+10, ], 'CountWeightedL1PrefireNom_LHENjet3' : [ -1.36474320e+06, -1.36450578e+06, -1.36490640e+06, ], 'CountWeightedL1Prefire_LHENjet3' : [ -1.36474320e+06, -1.35184575e+06, -1.37742493e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet3' : [ -1.88028229e+06, -1.91628769e+06, -1.92932319e+06, -1.34102106e+06, -1.36474320e+06, -1.37253001e+06, -9.91206303e+05, -1.00769672e+06, -1.01257316e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet3' : [ -1.94315781e+06, -9.91501855e+05, ], 'CountWeightedFullL1PrefireNom_LHENjet3' : [ -3.59353273e+10, -3.59291148e+10, -3.59396490e+10, ], 'CountWeightedFullL1Prefire_LHENjet3' : [ -3.59353273e+10, -3.55957224e+10, -3.62692502e+10, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet3' : [ -4.95100928e+10, -5.04581575e+10, -5.08013942e+10, -3.53106960e+10, -3.59353273e+10, -3.61403630e+10, -2.60996528e+10, -2.65338661e+10, -2.66622698e+10, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet3' : [ -5.11656775e+10, -2.61074370e+10, ], }), ("nof_tree_events", 182217609), ("nof_db_events", 182217609), ("fsize_local", 641177220288), # 641.18GB, avg file size 1.75GB ("fsize_db", 7474232515523), # 7.47TB, avg file size 3.73GB ("use_it", True), ("xsection", 6077.22), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Apr19_woPresel_nom_all_hh_multilepton/ntuples/DYJetsToLL_M-50_amcatnloFXFX_ext1"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14_ext1-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "EWK"), ("process_name_specific", "DY1JetsToLL_M-50_ext1"), ("nof_files", 71), ("nof_db_files", 417), ("nof_events", { 'Count' : [ 34859434, ], 'CountWeighted' : [ 3.48346879e+07, 3.48343504e+07, 3.48273934e+07, ], 'CountWeightedLHEWeightScale' : [ 3.02971091e+07, 3.51177471e+07, 3.91691760e+07, 3.00308275e+07, 3.48346879e+07, 3.88728125e+07, 2.98119513e+07, 3.46018243e+07, 3.86293886e+07, ], 'CountWeightedLHEEnvelope' : [ 3.90652340e+07, 2.99151300e+07, ], 'CountWeightedFull' : [ 3.48346879e+07, 3.48343504e+07, 3.48273934e+07, ], 'CountWeightedFullLHEWeightScale' : [ 3.02971091e+07, 3.51177471e+07, 3.91691760e+07, 3.00308275e+07, 3.48346879e+07, 3.88728125e+07, 2.98119513e+07, 3.46018243e+07, 3.86293886e+07, ], 'CountWeightedFullLHEEnvelope' : [ 3.90652340e+07, 2.99151300e+07, ], 'CountWeightedL1PrefireNom' : [ 3.41062514e+07, 3.41053455e+07, 3.41019804e+07, ], 'CountWeightedL1Prefire' : [ 3.41062514e+07, 3.39213868e+07, 3.42868498e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 2.96456802e+07, 3.43818857e+07, 3.83650866e+07, 2.93865501e+07, 3.41062514e+07, 3.80764514e+07, 2.91735733e+07, 3.38796096e+07, 3.78393875e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 3.82620575e+07, 2.92755839e+07, ], 'CountWeightedFullL1PrefireNom' : [ 3.41062514e+07, 3.41053455e+07, 3.41019804e+07, ], 'CountWeightedFullL1Prefire' : [ 3.41062514e+07, 3.39213868e+07, 3.42868498e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 2.96456802e+07, 3.43818857e+07, 3.83650866e+07, 2.93865501e+07, 3.41062514e+07, 3.80764514e+07, 2.91735733e+07, 3.38796096e+07, 3.78393875e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 3.82620575e+07, 2.92755839e+07, ], 'Count_LHEHT0to70' : [ 32607495, ], 'CountWeighted_LHEHT0to70' : [ 3.25861501e+07, 3.25857996e+07, 3.25795593e+07, ], 'CountWeightedLHEWeightScale_LHEHT0to70' : [ 2.80859548e+07, 3.28167619e+07, 3.68073487e+07, 2.78710135e+07, 3.25861501e+07, 3.65640850e+07, 2.76948502e+07, 3.23969426e+07, 3.63648093e+07, ], 'CountWeightedLHEEnvelope_LHEHT0to70' : [ 3.66969111e+07, 2.78013662e+07, ], 'CountWeightedFull_LHEHT0to70' : [ 3.25861501e+07, 3.25857996e+07, 3.25795593e+07, ], 'CountWeightedFullLHEWeightScale_LHEHT0to70' : [ 2.80859548e+07, 3.28167619e+07, 3.68073487e+07, 2.78710135e+07, 3.25861501e+07, 3.65640850e+07, 2.76948502e+07, 3.23969426e+07, 3.63648093e+07, ], 'CountWeightedFullLHEEnvelope_LHEHT0to70' : [ 3.66969111e+07, 2.78013662e+07, ], 'CountWeightedL1PrefireNom_LHEHT0to70' : [ 3.19654733e+07, 3.19646289e+07, 3.19615511e+07, ], 'CountWeightedL1Prefire_LHEHT0to70' : [ 3.19654733e+07, 3.18046327e+07, 3.21217675e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT0to70' : [ 2.75417518e+07, 3.21911365e+07, 3.61152428e+07, 2.73314968e+07, 3.19654733e+07, 3.58772069e+07, 2.71591826e+07, 3.17804030e+07, 3.56822103e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT0to70' : [ 3.60068022e+07, 2.72636401e+07, ], 'CountWeightedFullL1PrefireNom_LHEHT0to70' : [ 3.19654733e+07, 3.19646289e+07, 3.19615511e+07, ], 'CountWeightedFullL1Prefire_LHEHT0to70' : [ 3.19654733e+07, 3.18046327e+07, 3.21217675e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT0to70' : [ 2.75417518e+07, 3.21911365e+07, 3.61152428e+07, 2.73314968e+07, 3.19654733e+07, 3.58772069e+07, 2.71591826e+07, 3.17804030e+07, 3.56822103e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT0to70' : [ 3.60068022e+07, 2.72636401e+07, ], 'Count_LHEHT70to100' : [ 1522653, ], 'CountWeighted_LHEHT70to100' : [ 1.52101153e+06, 1.52091187e+06, 1.52100047e+06, ], 'CountWeightedLHEWeightScale_LHEHT70to100' : [ 1.47590160e+06, 1.55435833e+06, 1.61052267e+06, 1.44360958e+06, 1.52101153e+06, 1.57648514e+06, 1.41683674e+06, 1.49336696e+06, 1.54826836e+06, ], 'CountWeightedLHEEnvelope_LHEHT70to100' : [ 1.60710776e+06, 1.42194744e+06, ], 'CountWeightedFull_LHEHT70to100' : [ 1.52101153e+06, 1.52091187e+06, 1.52100047e+06, ], 'CountWeightedFullLHEWeightScale_LHEHT70to100' : [ 1.47590160e+06, 1.55435833e+06, 1.61052267e+06, 1.44360958e+06, 1.52101153e+06, 1.57648514e+06, 1.41683674e+06, 1.49336696e+06, 1.54826836e+06, ], 'CountWeightedFullLHEEnvelope_LHEHT70to100' : [ 1.60710776e+06, 1.42194744e+06, ], 'CountWeightedL1PrefireNom_LHEHT70to100' : [ 1.45739022e+06, 1.45723567e+06, 1.45744321e+06, ], 'CountWeightedL1Prefire_LHEHT70to100' : [ 1.45739022e+06, 1.44267755e+06, 1.47210612e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT70to100' : [ 1.41369909e+06, 1.48935642e+06, 1.54362934e+06, 1.38275288e+06, 1.45739022e+06, 1.51099233e+06, 1.35709611e+06, 1.43089020e+06, 1.48393689e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT70to100' : [ 1.54016686e+06, 1.36216179e+06, ], 'CountWeightedFullL1PrefireNom_LHEHT70to100' : [ 1.45739022e+06, 1.45723567e+06, 1.45744321e+06, ], 'CountWeightedFullL1Prefire_LHEHT70to100' : [ 1.45739022e+06, 1.44267755e+06, 1.47210612e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT70to100' : [ 1.41369909e+06, 1.48935642e+06, 1.54362934e+06, 1.38275288e+06, 1.45739022e+06, 1.51099233e+06, 1.35709611e+06, 1.43089020e+06, 1.48393689e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT70to100' : [ 1.54016686e+06, 1.36216179e+06, ], 'Count_LHEHT100to200' : [ 684972, ], 'CountWeighted_LHEHT100to200' : [ 6.83457644e+05, 6.83462111e+05, 6.83507330e+05, ], 'CountWeightedLHEWeightScale_LHEHT100to200' : [ 6.88381195e+05, 7.01293817e+05, 7.07288587e+05, 6.70658475e+05, 6.83457644e+05, 6.89471362e+05, 6.55847544e+05, 6.68552870e+05, 6.74583492e+05, ], 'CountWeightedLHEEnvelope_LHEHT100to200' : [ 7.14242962e+05, 6.50184425e+05, ], 'CountWeightedFull_LHEHT100to200' : [ 6.83457644e+05, 6.83462111e+05, 6.83507330e+05, ], 'CountWeightedFullLHEWeightScale_LHEHT100to200' : [ 6.88381195e+05, 7.01293817e+05, 7.07288587e+05, 6.70658475e+05, 6.83457644e+05, 6.89471362e+05, 6.55847544e+05, 6.68552870e+05, 6.74583492e+05, ], 'CountWeightedFullLHEEnvelope_LHEHT100to200' : [ 7.14242962e+05, 6.50184425e+05, ], 'CountWeightedL1PrefireNom_LHEHT100to200' : [ 6.42103372e+05, 6.42084690e+05, 6.42173065e+05, ], 'CountWeightedL1Prefire_LHEHT100to200' : [ 6.42103372e+05, 6.33279353e+05, 6.51053510e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT100to200' : [ 6.46346489e+05, 6.58903054e+05, 6.64924824e+05, 6.29663209e+05, 6.42103372e+05, 6.48134233e+05, 6.15721373e+05, 6.28065154e+05, 6.34104638e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT100to200' : [ 6.71104545e+05, 6.10741005e+05, ], 'CountWeightedFullL1PrefireNom_LHEHT100to200' : [ 6.42103372e+05, 6.42084690e+05, 6.42173065e+05, ], 'CountWeightedFullL1Prefire_LHEHT100to200' : [ 6.42103372e+05, 6.33279353e+05, 6.51053510e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT100to200' : [ 6.46346489e+05, 6.58903054e+05, 6.64924824e+05, 6.29663209e+05, 6.42103372e+05, 6.48134233e+05, 6.15721373e+05, 6.28065154e+05, 6.34104638e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT100to200' : [ 6.71104545e+05, 6.10741005e+05, ], 'Count_LHEHT200to400' : [ 43108, ], 'CountWeighted_LHEHT200to400' : [ 4.30235516e+04, 4.30293562e+04, 4.29912215e+04, ], 'CountWeightedLHEWeightScale_LHEHT200to400' : [ 4.55627390e+04, 4.42691506e+04, 4.29011603e+04, 4.42733502e+04, 4.30235516e+04, 4.16999031e+04, 4.31819563e+04, 4.19692905e+04, 4.06832218e+04, ], 'CountWeightedLHEEnvelope_LHEHT200to400' : [ 4.56839821e+04, 4.05721806e+04, ], 'CountWeightedFull_LHEHT200to400' : [ 4.30235516e+04, 4.30293562e+04, 4.29912215e+04, ], 'CountWeightedFullLHEWeightScale_LHEHT200to400' : [ 4.55627390e+04, 4.42691506e+04, 4.29011603e+04, 4.42733502e+04, 4.30235516e+04, 4.16999031e+04, 4.31819563e+04, 4.19692905e+04, 4.06832218e+04, ], 'CountWeightedFullLHEEnvelope_LHEHT200to400' : [ 4.56839821e+04, 4.05721806e+04, ], 'CountWeightedL1PrefireNom_LHEHT200to400' : [ 4.02692840e+04, 4.02665119e+04, 4.02455767e+04, ], 'CountWeightedL1Prefire_LHEHT200to400' : [ 4.02692840e+04, 3.97230156e+04, 4.08314178e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT200to400' : [ 4.26067926e+04, 4.14418461e+04, 4.02009353e+04, 4.13940780e+04, 4.02692840e+04, 3.90691938e+04, 4.03676165e+04, 3.92768692e+04, 3.81113753e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT200to400' : [ 4.27273616e+04, 3.80008615e+04, ], 'CountWeightedFullL1PrefireNom_LHEHT200to400' : [ 4.02692840e+04, 4.02665119e+04, 4.02455767e+04, ], 'CountWeightedFullL1Prefire_LHEHT200to400' : [ 4.02692840e+04, 3.97230156e+04, 4.08314178e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT200to400' : [ 4.26067926e+04, 4.14418461e+04, 4.02009353e+04, 4.13940780e+04, 4.02692840e+04, 3.90691938e+04, 4.03676165e+04, 3.92768692e+04, 3.81113753e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT200to400' : [ 4.27273616e+04, 3.80008615e+04, ], 'Count_LHEHT400to600' : [ 1111, ], 'CountWeighted_LHEHT400to600' : [ 1.10423515e+03, 1.10057911e+03, 1.10595953e+03, ], 'CountWeightedLHEWeightScale_LHEHT400to600' : [ 1.22360524e+03, 1.14046340e+03, 1.06579032e+03, 1.18464585e+03, 1.10423515e+03, 1.03200462e+03, 1.15128628e+03, 1.07321485e+03, 1.00307750e+03, ], 'CountWeightedLHEEnvelope_LHEHT400to600' : [ 1.22374121e+03, 1.00294658e+03, ], 'CountWeightedFull_LHEHT400to600' : [ 1.10423515e+03, 1.10057911e+03, 1.10595953e+03, ], 'CountWeightedFullLHEWeightScale_LHEHT400to600' : [ 1.22360524e+03, 1.14046340e+03, 1.06579032e+03, 1.18464585e+03, 1.10423515e+03, 1.03200462e+03, 1.15128628e+03, 1.07321485e+03, 1.00307750e+03, ], 'CountWeightedFullLHEEnvelope_LHEHT400to600' : [ 1.22374121e+03, 1.00294658e+03, ], 'CountWeightedL1PrefireNom_LHEHT400to600' : [ 1.07773756e+03, 1.07458301e+03, 1.07844845e+03, ], 'CountWeightedL1Prefire_LHEHT400to600' : [ 1.07773756e+03, 1.07214479e+03, 1.08333206e+03, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT400to600' : [ 1.19367941e+03, 1.11322089e+03, 1.04088187e+03, 1.15553582e+03, 1.07773756e+03, 1.00777884e+03, 1.12287633e+03, 1.04735637e+03, 9.79437497e+02, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT400to600' : [ 1.19381451e+03, 9.79307442e+02, ], 'CountWeightedFullL1PrefireNom_LHEHT400to600' : [ 1.07773756e+03, 1.07458301e+03, 1.07844845e+03, ], 'CountWeightedFullL1Prefire_LHEHT400to600' : [ 1.07773756e+03, 1.07214479e+03, 1.08333206e+03, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT400to600' : [ 1.19367941e+03, 1.11322089e+03, 1.04088187e+03, 1.15553582e+03, 1.07773756e+03, 1.00777884e+03, 1.12287633e+03, 1.04735637e+03, 9.79437497e+02, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT400to600' : [ 1.19381451e+03, 9.79307442e+02, ], 'Count_LHEHT600to800' : [ 74, ], 'CountWeighted_LHEHT600to800' : [ 7.31382106e+01, 7.22723197e+01, 7.33501276e+01, ], 'CountWeightedLHEWeightScale_LHEHT600to800' : [ 8.30494912e+01, 7.57548943e+01, 6.94419489e+01, 8.01768717e+01, 7.31382106e+01, 6.70467733e+01, 7.77014657e+01, 7.08832614e+01, 6.49828867e+01, ], 'CountWeightedLHEEnvelope_LHEHT600to800' : [ 8.30494912e+01, 6.49828867e+01, ], 'CountWeightedFull_LHEHT600to800' : [ 7.31382106e+01, 7.22723197e+01, 7.33501276e+01, ], 'CountWeightedFullLHEWeightScale_LHEHT600to800' : [ 8.30494912e+01, 7.57548943e+01, 6.94419489e+01, 8.01768717e+01, 7.31382106e+01, 6.70467733e+01, 7.77014657e+01, 7.08832614e+01, 6.49828867e+01, ], 'CountWeightedFullLHEEnvelope_LHEHT600to800' : [ 8.30494912e+01, 6.49828867e+01, ], 'CountWeightedL1PrefireNom_LHEHT600to800' : [ 7.28239147e+01, 7.19606683e+01, 7.30456435e+01, ], 'CountWeightedL1Prefire_LHEHT600to800' : [ 7.28239147e+01, 7.27491951e+01, 7.28971847e+01, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT600to800' : [ 8.26993873e+01, 7.54401518e+01, 6.91576774e+01, 7.98272629e+01, 7.28239147e+01, 6.67629074e+01, 7.73522832e+01, 7.05693511e+01, 6.46993704e+01, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT600to800' : [ 8.26993873e+01, 6.46993704e+01, ], 'CountWeightedFullL1PrefireNom_LHEHT600to800' : [ 7.28239147e+01, 7.19606683e+01, 7.30456435e+01, ], 'CountWeightedFullL1Prefire_LHEHT600to800' : [ 7.28239147e+01, 7.27491951e+01, 7.28971847e+01, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT600to800' : [ 8.26993873e+01, 7.54401518e+01, 6.91576774e+01, 7.98272629e+01, 7.28239147e+01, 6.67629074e+01, 7.73522832e+01, 7.05693511e+01, 6.46993704e+01, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT600to800' : [ 8.26993873e+01, 6.46993704e+01, ], 'Count_LHEHT800to1200' : [ 18, ], 'CountWeighted_LHEHT800to1200' : [ 2.00131897e+01, 2.01060751e+01, 1.94028315e+01, ], 'CountWeightedLHEWeightScale_LHEHT800to1200' : [ 2.26541096e+01, 2.03752523e+01, 1.84468487e+01, 2.22531672e+01, 2.00131897e+01, 1.81179583e+01, 2.19058580e+01, 1.96997229e+01, 1.78332255e+01, ], 'CountWeightedLHEEnvelope_LHEHT800to1200' : [ 2.26541096e+01, 1.78332255e+01, ], 'CountWeightedFull_LHEHT800to1200' : [ 2.00131897e+01, 2.01060751e+01, 1.94028315e+01, ], 'CountWeightedFullLHEWeightScale_LHEHT800to1200' : [ 2.26541096e+01, 2.03752523e+01, 1.84468487e+01, 2.22531672e+01, 2.00131897e+01, 1.81179583e+01, 2.19058580e+01, 1.96997229e+01, 1.78332255e+01, ], 'CountWeightedFullLHEEnvelope_LHEHT800to1200' : [ 2.26541096e+01, 1.78332255e+01, ], 'CountWeightedL1PrefireNom_LHEHT800to1200' : [ 2.00131897e+01, 2.01060751e+01, 1.94028315e+01, ], 'CountWeightedL1Prefire_LHEHT800to1200' : [ 2.00131897e+01, 2.00131897e+01, 2.00131897e+01, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT800to1200' : [ 2.26541096e+01, 2.03752523e+01, 1.84468487e+01, 2.22531672e+01, 2.00131897e+01, 1.81179583e+01, 2.19058580e+01, 1.96997229e+01, 1.78332255e+01, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT800to1200' : [ 2.26541096e+01, 1.78332255e+01, ], 'CountWeightedFullL1PrefireNom_LHEHT800to1200' : [ 2.00131897e+01, 2.01060751e+01, 1.94028315e+01, ], 'CountWeightedFullL1Prefire_LHEHT800to1200' : [ 2.00131897e+01, 2.00131897e+01, 2.00131897e+01, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT800to1200' : [ 2.26541096e+01, 2.03752523e+01, 1.84468487e+01, 2.22531672e+01, 2.00131897e+01, 1.81179583e+01, 2.19058580e+01, 1.96997229e+01, 1.78332255e+01, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT800to1200' : [ 2.26541096e+01, 1.78332255e+01, ], 'Count_LHEHT1200to2500' : [ 3, ], 'CountWeighted_LHEHT1200to2500' : [ 2.89147287e+00, 3.15291271e+00, 2.42983679e+00, ], 'CountWeightedLHEWeightScale_LHEHT1200to2500' : [ 3.41983244e+00, 2.89908120e+00, 2.49532863e+00, 3.41121804e+00, 2.89147287e+00, 2.48856602e+00, 3.40372918e+00, 2.88486116e+00, 2.48268685e+00, ], 'CountWeightedLHEEnvelope_LHEHT1200to2500' : [ 3.41983244e+00, 2.48268685e+00, ], 'CountWeightedFull_LHEHT1200to2500' : [ 2.89147287e+00, 3.15291271e+00, 2.42983679e+00, ], 'CountWeightedFullLHEWeightScale_LHEHT1200to2500' : [ 3.41983244e+00, 2.89908120e+00, 2.49532863e+00, 3.41121804e+00, 2.89147287e+00, 2.48856602e+00, 3.40372918e+00, 2.88486116e+00, 2.48268685e+00, ], 'CountWeightedFullLHEEnvelope_LHEHT1200to2500' : [ 3.41983244e+00, 2.48268685e+00, ], 'CountWeightedL1PrefireNom_LHEHT1200to2500' : [ 2.89147287e+00, 3.15291271e+00, 2.42983679e+00, ], 'CountWeightedL1Prefire_LHEHT1200to2500' : [ 2.89147287e+00, 2.89147287e+00, 2.89147287e+00, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT1200to2500' : [ 3.41983244e+00, 2.89908120e+00, 2.49532863e+00, 3.41121804e+00, 2.89147287e+00, 2.48856602e+00, 3.40372918e+00, 2.88486116e+00, 2.48268685e+00, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT1200to2500' : [ 3.41983244e+00, 2.48268685e+00, ], 'CountWeightedFullL1PrefireNom_LHEHT1200to2500' : [ 2.89147287e+00, 3.15291271e+00, 2.42983679e+00, ], 'CountWeightedFullL1Prefire_LHEHT1200to2500' : [ 2.89147287e+00, 2.89147287e+00, 2.89147287e+00, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT1200to2500' : [ 3.41983244e+00, 2.89908120e+00, 2.49532863e+00, 3.41121804e+00, 2.89147287e+00, 2.48856602e+00, 3.40372918e+00, 2.88486116e+00, 2.48268685e+00, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT1200to2500' : [ 3.41983244e+00, 2.48268685e+00, ], }), ("nof_tree_events", 34859434), ("nof_db_events", 34859434), ("fsize_local", 126294075597), # 126.29GB, avg file size 1.78GB ("fsize_db", 1462619517307), # 1.46TB, avg file size 3.51GB ("use_it", False), ("xsection", 998.61), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Apr19_woPresel_nom_all_hh_multilepton/ntuples/DY1JetsToLL_M-50_ext1"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/DY1JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_new_pmx_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "EWK"), ("process_name_specific", "DY1JetsToLL_M-50"), ("nof_files", 86), ("nof_db_files", 492), ("nof_events", { 'Count' : [ 42331295, ], 'CountWeighted' : [ 4.23029324e+07, 4.22915060e+07, 4.23035127e+07, ], 'CountWeightedLHEWeightScale' : [ 3.67896273e+07, 4.26471128e+07, 4.75683509e+07, 3.64658482e+07, 4.23029324e+07, 4.72079485e+07, 3.61997099e+07, 4.20195715e+07, 4.69119332e+07, ], 'CountWeightedLHEEnvelope' : [ 4.74416092e+07, 3.63253959e+07, ], 'CountWeightedFull' : [ 4.23029324e+07, 4.22915060e+07, 4.23035127e+07, ], 'CountWeightedFullLHEWeightScale' : [ 3.67896273e+07, 4.26471128e+07, 4.75683509e+07, 3.64658482e+07, 4.23029324e+07, 4.72079485e+07, 3.61997099e+07, 4.20195715e+07, 4.69119332e+07, ], 'CountWeightedFullLHEEnvelope' : [ 4.74416092e+07, 3.63253959e+07, ], 'CountWeightedL1PrefireNom' : [ 4.14192348e+07, 4.14102203e+07, 4.14207021e+07, ], 'CountWeightedL1Prefire' : [ 4.14192348e+07, 4.11946465e+07, 4.16376676e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 3.59998158e+07, 4.17544325e+07, 4.65933462e+07, 3.56847102e+07, 4.14192348e+07, 4.62423146e+07, 3.54257263e+07, 4.11434926e+07, 4.59540127e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 4.64677405e+07, 3.55499839e+07, ], 'CountWeightedFullL1PrefireNom' : [ 4.14192348e+07, 4.14102203e+07, 4.14207021e+07, ], 'CountWeightedFullL1Prefire' : [ 4.14192348e+07, 4.11946465e+07, 4.16376676e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 3.59998158e+07, 4.17544325e+07, 4.65933462e+07, 3.56847102e+07, 4.14192348e+07, 4.62423146e+07, 3.54257263e+07, 4.11434926e+07, 4.59540127e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 4.64677405e+07, 3.55499839e+07, ], 'Count_LHEHT0to70' : [ 39600354, ], 'CountWeighted_LHEHT0to70' : [ 3.95748491e+07, 3.95652602e+07, 3.95755098e+07, ], 'CountWeightedLHEWeightScale_LHEHT0to70' : [ 3.41075626e+07, 3.98553328e+07, 4.47034986e+07, 3.38461831e+07, 3.95748491e+07, 4.44076285e+07, 3.36319587e+07, 3.93446300e+07, 4.41652775e+07, ], 'CountWeightedLHEEnvelope_LHEHT0to70' : [ 4.45688936e+07, 3.37616668e+07, ], 'CountWeightedFull_LHEHT0to70' : [ 3.95748491e+07, 3.95652602e+07, 3.95755098e+07, ], 'CountWeightedFullLHEWeightScale_LHEHT0to70' : [ 3.41075626e+07, 3.98553328e+07, 4.47034986e+07, 3.38461831e+07, 3.95748491e+07, 4.44076285e+07, 3.36319587e+07, 3.93446300e+07, 4.41652775e+07, ], 'CountWeightedFullLHEEnvelope_LHEHT0to70' : [ 4.45688936e+07, 3.37616668e+07, ], 'CountWeightedL1PrefireNom_LHEHT0to70' : [ 3.88214152e+07, 3.88136378e+07, 3.88230286e+07, ], 'CountWeightedL1Prefire_LHEHT0to70' : [ 3.88214152e+07, 3.86259229e+07, 3.90106529e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT0to70' : [ 3.34471282e+07, 3.90958906e+07, 4.38636219e+07, 3.31914535e+07, 3.88214152e+07, 4.35741089e+07, 3.29819094e+07, 3.85962740e+07, 4.33369678e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT0to70' : [ 4.37314542e+07, 3.31091250e+07, ], 'CountWeightedFullL1PrefireNom_LHEHT0to70' : [ 3.88214152e+07, 3.88136378e+07, 3.88230286e+07, ], 'CountWeightedFullL1Prefire_LHEHT0to70' : [ 3.88214152e+07, 3.86259229e+07, 3.90106529e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT0to70' : [ 3.34471282e+07, 3.90958906e+07, 4.38636219e+07, 3.31914535e+07, 3.88214152e+07, 4.35741089e+07, 3.29819094e+07, 3.85962740e+07, 4.33369678e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT0to70' : [ 4.37314542e+07, 3.31091250e+07, ], 'Count_LHEHT70to100' : [ 1845475, ], 'CountWeighted_LHEHT70to100' : [ 1.84285041e+06, 1.84324788e+06, 1.84229690e+06, ], 'CountWeightedLHEWeightScale_LHEHT70to100' : [ 1.78821554e+06, 1.88337394e+06, 1.95152015e+06, 1.74897692e+06, 1.84285041e+06, 1.91015654e+06, 1.71644486e+06, 1.80925968e+06, 1.87586659e+06, ], 'CountWeightedLHEEnvelope_LHEHT70to100' : [ 1.94732787e+06, 1.72268904e+06, ], 'CountWeightedFull_LHEHT70to100' : [ 1.84285041e+06, 1.84324788e+06, 1.84229690e+06, ], 'CountWeightedFullLHEWeightScale_LHEHT70to100' : [ 1.78821554e+06, 1.88337394e+06, 1.95152015e+06, 1.74897692e+06, 1.84285041e+06, 1.91015654e+06, 1.71644486e+06, 1.80925968e+06, 1.87586659e+06, ], 'CountWeightedFullLHEEnvelope_LHEHT70to100' : [ 1.94732787e+06, 1.72268904e+06, ], 'CountWeightedL1PrefireNom_LHEHT70to100' : [ 1.76620280e+06, 1.76647651e+06, 1.76575524e+06, ], 'CountWeightedL1Prefire_LHEHT70to100' : [ 1.76620280e+06, 1.74846315e+06, 1.78394155e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT70to100' : [ 1.71329060e+06, 1.80506711e+06, 1.87093485e+06, 1.67567063e+06, 1.76620280e+06, 1.83125543e+06, 1.64448086e+06, 1.73398941e+06, 1.79836216e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT70to100' : [ 1.86668155e+06, 1.65067486e+06, ], 'CountWeightedFullL1PrefireNom_LHEHT70to100' : [ 1.76620280e+06, 1.76647651e+06, 1.76575524e+06, ], 'CountWeightedFullL1Prefire_LHEHT70to100' : [ 1.76620280e+06, 1.74846315e+06, 1.78394155e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT70to100' : [ 1.71329060e+06, 1.80506711e+06, 1.87093485e+06, 1.67567063e+06, 1.76620280e+06, 1.83125543e+06, 1.64448086e+06, 1.73398941e+06, 1.79836216e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT70to100' : [ 1.86668155e+06, 1.65067486e+06, ], 'Count_LHEHT100to200' : [ 831835, ], 'CountWeighted_LHEHT100to200' : [ 8.31041721e+05, 8.31192260e+05, 8.30774419e+05, ], 'CountWeightedLHEWeightScale_LHEHT100to200' : [ 8.37103736e+05, 8.52763161e+05, 8.60034763e+05, 8.15523134e+05, 8.31041721e+05, 8.38339906e+05, 7.97488045e+05, 8.12895936e+05, 8.20211945e+05, ], 'CountWeightedLHEEnvelope_LHEHT100to200' : [ 8.68506395e+05, 7.90590304e+05, ], 'CountWeightedFull_LHEHT100to200' : [ 8.31041721e+05, 8.31192260e+05, 8.30774419e+05, ], 'CountWeightedFullLHEWeightScale_LHEHT100to200' : [ 8.37103736e+05, 8.52763161e+05, 8.60034763e+05, 8.15523134e+05, 8.31041721e+05, 8.38339906e+05, 7.97488045e+05, 8.12895936e+05, 8.20211945e+05, ], 'CountWeightedFullLHEEnvelope_LHEHT100to200' : [ 8.68506395e+05, 7.90590304e+05, ], 'CountWeightedL1PrefireNom_LHEHT100to200' : [ 7.80885479e+05, 7.81003593e+05, 7.80647272e+05, ], 'CountWeightedL1Prefire_LHEHT100to200' : [ 7.80885479e+05, 7.70182106e+05, 7.91741756e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT100to200' : [ 7.86125040e+05, 8.01349565e+05, 8.08651496e+05, 7.65804603e+05, 7.80885479e+05, 7.88202404e+05, 7.48823147e+05, 7.63790617e+05, 7.71115805e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT100to200' : [ 8.16188548e+05, 7.42749238e+05, ], 'CountWeightedFullL1PrefireNom_LHEHT100to200' : [ 7.80885479e+05, 7.81003593e+05, 7.80647272e+05, ], 'CountWeightedFullL1Prefire_LHEHT100to200' : [ 7.80885479e+05, 7.70182106e+05, 7.91741756e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT100to200' : [ 7.86125040e+05, 8.01349565e+05, 8.08651496e+05, 7.65804603e+05, 7.80885479e+05, 7.88202404e+05, 7.48823147e+05, 7.63790617e+05, 7.71115805e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT100to200' : [ 8.16188548e+05, 7.42749238e+05, ], 'Count_LHEHT200to400' : [ 52161, ], 'CountWeighted_LHEHT200to400' : [ 5.20906008e+04, 5.20486561e+04, 5.21477779e+04, ], 'CountWeightedLHEWeightScale_LHEHT200to400' : [ 5.51262934e+04, 5.35766910e+04, 5.19349981e+04, 5.35887723e+04, 5.20906008e+04, 5.05015994e+04, 5.22873148e+04, 5.08331671e+04, 4.92883983e+04, ], 'CountWeightedLHEEnvelope_LHEHT200to400' : [ 5.52901667e+04, 4.91384425e+04, ], 'CountWeightedFull_LHEHT200to400' : [ 5.20906008e+04, 5.20486561e+04, 5.21477779e+04, ], 'CountWeightedFullLHEWeightScale_LHEHT200to400' : [ 5.51262934e+04, 5.35766910e+04, 5.19349981e+04, 5.35887723e+04, 5.20906008e+04, 5.05015994e+04, 5.22873148e+04, 5.08331671e+04, 4.92883983e+04, ], 'CountWeightedFullLHEEnvelope_LHEHT200to400' : [ 5.52901667e+04, 4.91384425e+04, ], 'CountWeightedL1PrefireNom_LHEHT200to400' : [ 4.88978239e+04, 4.88608391e+04, 4.89504228e+04, ], 'CountWeightedL1Prefire_LHEHT200to400' : [ 4.88978239e+04, 4.82577540e+04, 4.95551486e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT200to400' : [ 5.17058374e+04, 5.03012838e+04, 4.88034291e+04, 5.02550358e+04, 4.88978239e+04, 4.74486702e+04, 4.90270222e+04, 4.77103460e+04, 4.63020642e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT200to400' : [ 5.18637204e+04, 4.61579334e+04, ], 'CountWeightedFullL1PrefireNom_LHEHT200to400' : [ 4.88978239e+04, 4.88608391e+04, 4.89504228e+04, ], 'CountWeightedFullL1Prefire_LHEHT200to400' : [ 4.88978239e+04, 4.82577540e+04, 4.95551486e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT200to400' : [ 5.17058374e+04, 5.03012838e+04, 4.88034291e+04, 5.02550358e+04, 4.88978239e+04, 4.74486702e+04, 4.90270222e+04, 4.77103460e+04, 4.63020642e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT200to400' : [ 5.18637204e+04, 4.61579334e+04, ], 'Count_LHEHT400to600' : [ 1339, ], 'CountWeighted_LHEHT400to600' : [ 1.33073963e+03, 1.32995881e+03, 1.33376157e+03, ], 'CountWeightedLHEWeightScale_LHEHT400to600' : [ 1.47554090e+03, 1.37296115e+03, 1.28109155e+03, 1.43011508e+03, 1.33073963e+03, 1.24174439e+03, 1.39121635e+03, 1.29459844e+03, 1.20805276e+03, ], 'CountWeightedLHEEnvelope_LHEHT400to600' : [ 1.47560510e+03, 1.20799374e+03, ], 'CountWeightedFull_LHEHT400to600' : [ 1.33073963e+03, 1.32995881e+03, 1.33376157e+03, ], 'CountWeightedFullLHEWeightScale_LHEHT400to600' : [ 1.47554090e+03, 1.37296115e+03, 1.28109155e+03, 1.43011508e+03, 1.33073963e+03, 1.24174439e+03, 1.39121635e+03, 1.29459844e+03, 1.20805276e+03, ], 'CountWeightedFullLHEEnvelope_LHEHT400to600' : [ 1.47560510e+03, 1.20799374e+03, ], 'CountWeightedL1PrefireNom_LHEHT400to600' : [ 1.29090162e+03, 1.29067523e+03, 1.29370421e+03, ], 'CountWeightedL1Prefire_LHEHT400to600' : [ 1.29090162e+03, 1.28315343e+03, 1.29890943e+03, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT400to600' : [ 1.43028992e+03, 1.33209018e+03, 1.24398887e+03, 1.38600512e+03, 1.29090162e+03, 1.20558080e+03, 1.34808401e+03, 1.25564514e+03, 1.17269373e+03, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT400to600' : [ 1.43035412e+03, 1.17263471e+03, ], 'CountWeightedFullL1PrefireNom_LHEHT400to600' : [ 1.29090162e+03, 1.29067523e+03, 1.29370421e+03, ], 'CountWeightedFullL1Prefire_LHEHT400to600' : [ 1.29090162e+03, 1.28315343e+03, 1.29890943e+03, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT400to600' : [ 1.43028992e+03, 1.33209018e+03, 1.24398887e+03, 1.38600512e+03, 1.29090162e+03, 1.20558080e+03, 1.34808401e+03, 1.25564514e+03, 1.17269373e+03, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT400to600' : [ 1.43035412e+03, 1.17263471e+03, ], 'Count_LHEHT600to800' : [ 105, ], 'CountWeighted_LHEHT600to800' : [ 1.15280675e+02, 1.11437154e+02, 1.17873183e+02, ], 'CountWeightedLHEWeightScale_LHEHT600to800' : [ 1.29962406e+02, 1.18866157e+02, 1.09244322e+02, 1.26029168e+02, 1.15280675e+02, 1.05961656e+02, 1.22640552e+02, 1.12192854e+02, 1.03133858e+02, ], 'CountWeightedLHEEnvelope_LHEHT600to800' : [ 1.29962406e+02, 1.03133858e+02, ], 'CountWeightedFull_LHEHT600to800' : [ 1.15280675e+02, 1.11437154e+02, 1.17873183e+02, ], 'CountWeightedFullLHEWeightScale_LHEHT600to800' : [ 1.29962406e+02, 1.18866157e+02, 1.09244322e+02, 1.26029168e+02, 1.15280675e+02, 1.05961656e+02, 1.22640552e+02, 1.12192854e+02, 1.03133858e+02, ], 'CountWeightedFullLHEEnvelope_LHEHT600to800' : [ 1.29962406e+02, 1.03133858e+02, ], 'CountWeightedL1PrefireNom_LHEHT600to800' : [ 1.14990503e+02, 1.11182041e+02, 1.17550557e+02, ], 'CountWeightedL1Prefire_LHEHT600to800' : [ 1.14990503e+02, 1.14925601e+02, 1.15055405e+02, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT600to800' : [ 1.29628920e+02, 1.18565356e+02, 1.08971468e+02, 1.25707559e+02, 1.14990503e+02, 1.05698364e+02, 1.22329195e+02, 1.11911850e+02, 1.02878817e+02, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT600to800' : [ 1.29628920e+02, 1.02878817e+02, ], 'CountWeightedFullL1PrefireNom_LHEHT600to800' : [ 1.14990503e+02, 1.11182041e+02, 1.17550557e+02, ], 'CountWeightedFullL1Prefire_LHEHT600to800' : [ 1.14990503e+02, 1.14925601e+02, 1.15055405e+02, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT600to800' : [ 1.29628920e+02, 1.18565356e+02, 1.08971468e+02, 1.25707559e+02, 1.14990503e+02, 1.05698364e+02, 1.22329195e+02, 1.11911850e+02, 1.02878817e+02, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT600to800' : [ 1.29628920e+02, 1.02878817e+02, ], 'Count_LHEHT800to1200' : [ 23, ], 'CountWeighted_LHEHT800to1200' : [ 1.81908891e+01, 1.81052590e+01, 1.89499888e+01, ], 'CountWeightedLHEWeightScale_LHEHT800to1200' : [ 2.07669255e+01, 1.86407513e+01, 1.68499691e+01, 2.02652457e+01, 1.81908891e+01, 1.64441986e+01, 1.98308501e+01, 1.78016220e+01, 1.60928214e+01, ], 'CountWeightedLHEEnvelope_LHEHT800to1200' : [ 2.07669255e+01, 1.60928214e+01, ], 'CountWeightedFull_LHEHT800to1200' : [ 1.81908891e+01, 1.81052590e+01, 1.89499888e+01, ], 'CountWeightedFullLHEWeightScale_LHEHT800to1200' : [ 2.07669255e+01, 1.86407513e+01, 1.68499691e+01, 2.02652457e+01, 1.81908891e+01, 1.64441986e+01, 1.98308501e+01, 1.78016220e+01, 1.60928214e+01, ], 'CountWeightedFullLHEEnvelope_LHEHT800to1200' : [ 2.07669255e+01, 1.60928214e+01, ], 'CountWeightedL1PrefireNom_LHEHT800to1200' : [ 1.81908891e+01, 1.81052590e+01, 1.89499888e+01, ], 'CountWeightedL1Prefire_LHEHT800to1200' : [ 1.81908891e+01, 1.81908891e+01, 1.81908891e+01, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT800to1200' : [ 2.07669255e+01, 1.86407513e+01, 1.68499691e+01, 2.02652457e+01, 1.81908891e+01, 1.64441986e+01, 1.98308501e+01, 1.78016220e+01, 1.60928214e+01, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT800to1200' : [ 2.07669255e+01, 1.60928214e+01, ], 'CountWeightedFullL1PrefireNom_LHEHT800to1200' : [ 1.81908891e+01, 1.81052590e+01, 1.89499888e+01, ], 'CountWeightedFullL1Prefire_LHEHT800to1200' : [ 1.81908891e+01, 1.81908891e+01, 1.81908891e+01, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT800to1200' : [ 2.07669255e+01, 1.86407513e+01, 1.68499691e+01, 2.02652457e+01, 1.81908891e+01, 1.64441986e+01, 1.98308501e+01, 1.78016220e+01, 1.60928214e+01, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT800to1200' : [ 2.07669255e+01, 1.60928214e+01, ], 'Count_LHEHT1200to2500' : [ 3, ], 'CountWeighted_LHEHT1200to2500' : [ 3.92061365e+00, 3.93904054e+00, 3.51783133e+00, ], 'CountWeightedLHEWeightScale_LHEHT1200to2500' : [ 4.37616694e+00, 3.92061365e+00, 3.53556752e+00, 4.37616694e+00, 3.92061365e+00, 3.53556752e+00, 4.37616694e+00, 3.92061365e+00, 3.53556752e+00, ], 'CountWeightedLHEEnvelope_LHEHT1200to2500' : [ 4.37616694e+00, 3.53556752e+00, ], 'CountWeightedFull_LHEHT1200to2500' : [ 3.92061365e+00, 3.93904054e+00, 3.51783133e+00, ], 'CountWeightedFullLHEWeightScale_LHEHT1200to2500' : [ 4.37616694e+00, 3.92061365e+00, 3.53556752e+00, 4.37616694e+00, 3.92061365e+00, 3.53556752e+00, 4.37616694e+00, 3.92061365e+00, 3.53556752e+00, ], 'CountWeightedFullLHEEnvelope_LHEHT1200to2500' : [ 4.37616694e+00, 3.53556752e+00, ], 'CountWeightedL1PrefireNom_LHEHT1200to2500' : [ 3.92061365e+00, 3.93904054e+00, 3.51783133e+00, ], 'CountWeightedL1Prefire_LHEHT1200to2500' : [ 3.92061365e+00, 3.92061365e+00, 3.92061365e+00, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT1200to2500' : [ 4.37616694e+00, 3.92061365e+00, 3.53556752e+00, 4.37616694e+00, 3.92061365e+00, 3.53556752e+00, 4.37616694e+00, 3.92061365e+00, 3.53556752e+00, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT1200to2500' : [ 4.37616694e+00, 3.53556752e+00, ], 'CountWeightedFullL1PrefireNom_LHEHT1200to2500' : [ 3.92061365e+00, 3.93904054e+00, 3.51783133e+00, ], 'CountWeightedFullL1Prefire_LHEHT1200to2500' : [ 3.92061365e+00, 3.92061365e+00, 3.92061365e+00, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT1200to2500' : [ 4.37616694e+00, 3.92061365e+00, 3.53556752e+00, 4.37616694e+00, 3.92061365e+00, 3.53556752e+00, 4.37616694e+00, 3.92061365e+00, 3.53556752e+00, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT1200to2500' : [ 4.37616694e+00, 3.53556752e+00, ], }), ("nof_tree_events", 42331295), ("nof_db_events", 42331295), ("fsize_local", 154225740987), # 154.23GB, avg file size 1.79GB ("fsize_db", 1818087283471), # 1.82TB, avg file size 3.70GB ("use_it", False), ("xsection", 998.61), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Apr19_woPresel_nom_all_hh_multilepton/ntuples/DY1JetsToLL_M-50"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/DY2JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "EWK"), ("process_name_specific", "DY2JetsToLL_M-50"), ("nof_files", 1), ("nof_db_files", 2), ("nof_events", { 'Count' : [ 88895, ], 'CountWeighted' : [ 8.87929141e+04, 8.87952812e+04, 8.88154375e+04, ], 'CountWeightedLHEWeightScale' : [ 8.30711953e+04, 9.12917969e+04, 9.71752031e+04, 8.07623047e+04, 8.87929141e+04, 9.45468438e+04, 7.88660469e+04, 8.67422969e+04, 9.23894766e+04, ], 'CountWeightedLHEEnvelope' : [ 9.70370625e+04, 7.89135938e+04, ], 'CountWeightedFull' : [ 8.87929141e+04, 8.87952812e+04, 8.88154375e+04, ], 'CountWeightedFullLHEWeightScale' : [ 8.30711953e+04, 9.12917969e+04, 9.71752031e+04, 8.07623047e+04, 8.87929141e+04, 9.45468438e+04, 7.88660469e+04, 8.67422969e+04, 9.23894766e+04, ], 'CountWeightedFullLHEEnvelope' : [ 9.70370625e+04, 7.89135938e+04, ], 'CountWeightedL1PrefireNom' : [ 8.64066875e+04, 8.64104062e+04, 8.64211172e+04, ], 'CountWeightedL1Prefire' : [ 8.64066875e+04, 8.58149062e+04, 8.69860938e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 8.07606953e+04, 8.88330859e+04, 9.46205391e+04, 7.85206953e+04, 8.64066875e+04, 9.20663203e+04, 7.66811875e+04, 8.44160625e+04, 8.99703438e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 9.44520703e+04, 7.67571016e+04, ], 'CountWeightedFullL1PrefireNom' : [ 8.64066875e+04, 8.64104062e+04, 8.64211172e+04, ], 'CountWeightedFullL1Prefire' : [ 8.64066875e+04, 8.58149062e+04, 8.69860938e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 8.07606953e+04, 8.88330859e+04, 9.46205391e+04, 7.85206953e+04, 8.64066875e+04, 9.20663203e+04, 7.66811875e+04, 8.44160625e+04, 8.99703438e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 9.44520703e+04, 7.67571016e+04, ], 'Count_LHEHT0to70' : [ 47332, ], 'CountWeighted_LHEHT0to70' : [ 4.72506562e+04, 4.72653398e+04, 4.72410156e+04, ], 'CountWeightedLHEWeightScale_LHEHT0to70' : [ 4.24463633e+04, 4.83926953e+04, 5.28482617e+04, 4.14321641e+04, 4.72506562e+04, 5.16139766e+04, 4.06025000e+04, 4.63181406e+04, 5.06044414e+04, ], 'CountWeightedLHEEnvelope_LHEHT0to70' : [ 5.23811914e+04, 4.09289453e+04, ], 'CountWeightedFull_LHEHT0to70' : [ 4.72506562e+04, 4.72653398e+04, 4.72410156e+04, ], 'CountWeightedFullLHEWeightScale_LHEHT0to70' : [ 4.24463633e+04, 4.83926953e+04, 5.28482617e+04, 4.14321641e+04, 4.72506562e+04, 5.16139766e+04, 4.06025000e+04, 4.63181406e+04, 5.06044414e+04, ], 'CountWeightedFullLHEEnvelope_LHEHT0to70' : [ 5.23811914e+04, 4.09289453e+04, ], 'CountWeightedL1PrefireNom_LHEHT0to70' : [ 4.63750938e+04, 4.63880195e+04, 4.63627734e+04, ], 'CountWeightedL1Prefire_LHEHT0to70' : [ 4.63750938e+04, 4.61436484e+04, 4.65973203e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT0to70' : [ 4.16468047e+04, 4.74963984e+04, 5.18802109e+04, 4.06512773e+04, 4.63750938e+04, 5.06675938e+04, 3.98367070e+04, 4.54588828e+04, 4.96758398e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT0to70' : [ 5.14178320e+04, 4.01599727e+04, ], 'CountWeightedFullL1PrefireNom_LHEHT0to70' : [ 4.63750938e+04, 4.63880195e+04, 4.63627734e+04, ], 'CountWeightedFullL1Prefire_LHEHT0to70' : [ 4.63750938e+04, 4.61436484e+04, 4.65973203e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT0to70' : [ 4.16468047e+04, 4.74963984e+04, 5.18802109e+04, 4.06512773e+04, 4.63750938e+04, 5.06675938e+04, 3.98367070e+04, 4.54588828e+04, 4.96758398e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT0to70' : [ 5.14178320e+04, 4.01599727e+04, ], 'Count_LHEHT70to100' : [ 21907, ], 'CountWeighted_LHEHT70to100' : [ 2.19155840e+04, 2.18916621e+04, 2.19454531e+04, ], 'CountWeightedLHEWeightScale_LHEHT70to100' : [ 2.08715957e+04, 2.25519277e+04, 2.37058203e+04, 2.02802402e+04, 2.19155840e+04, 2.30390449e+04, 1.97936426e+04, 2.13922695e+04, 2.24905312e+04, ], 'CountWeightedLHEEnvelope_LHEHT70to100' : [ 2.36529199e+04, 1.98418145e+04, ], 'CountWeightedFull_LHEHT70to100' : [ 2.19155840e+04, 2.18916621e+04, 2.19454531e+04, ], 'CountWeightedFullLHEWeightScale_LHEHT70to100' : [ 2.08715957e+04, 2.25519277e+04, 2.37058203e+04, 2.02802402e+04, 2.19155840e+04, 2.30390449e+04, 1.97936426e+04, 2.13922695e+04, 2.24905312e+04, ], 'CountWeightedFullLHEEnvelope_LHEHT70to100' : [ 2.36529199e+04, 1.98418145e+04, ], 'CountWeightedL1PrefireNom_LHEHT70to100' : [ 2.13532441e+04, 2.13294512e+04, 2.13825332e+04, ], 'CountWeightedL1Prefire_LHEHT70to100' : [ 2.13532441e+04, 2.12087910e+04, 2.14932246e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT70to100' : [ 2.03318633e+04, 2.19736016e+04, 2.31018223e+04, 1.97555176e+04, 2.13532441e+04, 2.24515996e+04, 1.92813867e+04, 2.08430195e+04, 2.19167051e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT70to100' : [ 2.30477051e+04, 1.93304590e+04, ], 'CountWeightedFullL1PrefireNom_LHEHT70to100' : [ 2.13532441e+04, 2.13294512e+04, 2.13825332e+04, ], 'CountWeightedFullL1Prefire_LHEHT70to100' : [ 2.13532441e+04, 2.12087910e+04, 2.14932246e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT70to100' : [ 2.03318633e+04, 2.19736016e+04, 2.31018223e+04, 1.97555176e+04, 2.13532441e+04, 2.24515996e+04, 1.92813867e+04, 2.08430195e+04, 2.19167051e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT70to100' : [ 2.30477051e+04, 1.93304590e+04, ], 'Count_LHEHT100to200' : [ 17183, ], 'CountWeighted_LHEHT100to200' : [ 1.71375215e+04, 1.71505801e+04, 1.71265781e+04, ], 'CountWeightedLHEWeightScale_LHEHT100to200' : [ 1.70773359e+04, 1.77135781e+04, 1.80512109e+04, 1.65205547e+04, 1.71375215e+04, 1.74652129e+04, 1.60598955e+04, 1.66611094e+04, 1.69803828e+04, ], 'CountWeightedLHEEnvelope_LHEHT100to200' : [ 1.82831387e+04, 1.58650586e+04, ], 'CountWeightedFull_LHEHT100to200' : [ 1.71375215e+04, 1.71505801e+04, 1.71265781e+04, ], 'CountWeightedFullLHEWeightScale_LHEHT100to200' : [ 1.70773359e+04, 1.77135781e+04, 1.80512109e+04, 1.65205547e+04, 1.71375215e+04, 1.74652129e+04, 1.60598955e+04, 1.66611094e+04, 1.69803828e+04, ], 'CountWeightedFullLHEEnvelope_LHEHT100to200' : [ 1.82831387e+04, 1.58650586e+04, ], 'CountWeightedL1PrefireNom_LHEHT100to200' : [ 1.63727031e+04, 1.63871855e+04, 1.63627754e+04, ], 'CountWeightedL1Prefire_LHEHT100to200' : [ 1.63727031e+04, 1.61948525e+04, 1.65497285e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT100to200' : [ 1.63042324e+04, 1.69232461e+04, 1.72552070e+04, 1.57724814e+04, 1.63727031e+04, 1.66948809e+04, 1.53325977e+04, 1.59174453e+04, 1.62313340e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT100to200' : [ 1.74675859e+04, 1.51549688e+04, ], 'CountWeightedFullL1PrefireNom_LHEHT100to200' : [ 1.63727031e+04, 1.63871855e+04, 1.63627754e+04, ], 'CountWeightedFullL1Prefire_LHEHT100to200' : [ 1.63727031e+04, 1.61948525e+04, 1.65497285e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT100to200' : [ 1.63042324e+04, 1.69232461e+04, 1.72552070e+04, 1.57724814e+04, 1.63727031e+04, 1.66948809e+04, 1.53325977e+04, 1.59174453e+04, 1.62313340e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT100to200' : [ 1.74675859e+04, 1.51549688e+04, ], 'Count_LHEHT200to400' : [ 2307, ], 'CountWeighted_LHEHT200to400' : [ 2.32087524e+03, 2.31719141e+03, 2.32078711e+03, ], 'CountWeightedLHEWeightScale_LHEHT200to400' : [ 2.48634302e+03, 2.45034204e+03, 2.39858740e+03, 2.35493311e+03, 2.32087524e+03, 2.27182031e+03, 2.24821558e+03, 2.21577295e+03, 2.16891406e+03, ], 'CountWeightedLHEEnvelope_LHEHT200to400' : [ 2.52962524e+03, 2.13214697e+03, ], 'CountWeightedFull_LHEHT200to400' : [ 2.32087524e+03, 2.31719141e+03, 2.32078711e+03, ], 'CountWeightedFullLHEWeightScale_LHEHT200to400' : [ 2.48634302e+03, 2.45034204e+03, 2.39858740e+03, 2.35493311e+03, 2.32087524e+03, 2.27182031e+03, 2.24821558e+03, 2.21577295e+03, 2.16891406e+03, ], 'CountWeightedFullLHEEnvelope_LHEHT200to400' : [ 2.52962524e+03, 2.13214697e+03, ], 'CountWeightedL1PrefireNom_LHEHT200to400' : [ 2.15058447e+03, 2.14793726e+03, 2.14957739e+03, ], 'CountWeightedL1Prefire_LHEHT200to400' : [ 2.15058447e+03, 2.11424927e+03, 2.18739844e+03, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT200to400' : [ 2.30185083e+03, 2.27109595e+03, 2.22520679e+03, 2.17961499e+03, 2.15058447e+03, 2.10714600e+03, 2.08034863e+03, 2.05275781e+03, 2.01130469e+03, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT200to400' : [ 2.34312524e+03, 1.97614514e+03, ], 'CountWeightedFullL1PrefireNom_LHEHT200to400' : [ 2.15058447e+03, 2.14793726e+03, 2.14957739e+03, ], 'CountWeightedFullL1Prefire_LHEHT200to400' : [ 2.15058447e+03, 2.11424927e+03, 2.18739844e+03, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT200to400' : [ 2.30185083e+03, 2.27109595e+03, 2.22520679e+03, 2.17961499e+03, 2.15058447e+03, 2.10714600e+03, 2.08034863e+03, 2.05275781e+03, 2.01130469e+03, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT200to400' : [ 2.34312524e+03, 1.97614514e+03, ], 'Count_LHEHT400to600' : [ 141, ], 'CountWeighted_LHEHT400to600' : [ 1.38891602e+02, 1.39404236e+02, 1.39043015e+02, ], 'CountWeightedLHEWeightScale_LHEHT400to600' : [ 1.58947876e+02, 1.50782028e+02, 1.43067947e+02, 1.46424561e+02, 1.38891602e+02, 1.31772186e+02, 1.36284348e+02, 1.29264679e+02, 1.22624825e+02, ], 'CountWeightedLHEEnvelope_LHEHT400to600' : [ 1.59350830e+02, 1.22432259e+02, ], 'CountWeightedFull_LHEHT400to600' : [ 1.38891602e+02, 1.39404236e+02, 1.39043015e+02, ], 'CountWeightedFullLHEWeightScale_LHEHT400to600' : [ 1.58947876e+02, 1.50782028e+02, 1.43067947e+02, 1.46424561e+02, 1.38891602e+02, 1.31772186e+02, 1.36284348e+02, 1.29264679e+02, 1.22624825e+02, ], 'CountWeightedFullLHEEnvelope_LHEHT400to600' : [ 1.59350830e+02, 1.22432259e+02, ], 'CountWeightedL1PrefireNom_LHEHT400to600' : [ 1.28780762e+02, 1.29390274e+02, 1.28892609e+02, ], 'CountWeightedL1Prefire_LHEHT400to600' : [ 1.28780762e+02, 1.26597862e+02, 1.30965408e+02, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT400to600' : [ 1.47011063e+02, 1.39502502e+02, 1.32403061e+02, 1.35727509e+02, 1.28780762e+02, 1.22209801e+02, 1.26583565e+02, 1.20093338e+02, 1.13949249e+02, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT400to600' : [ 1.47396469e+02, 1.13763641e+02, ], 'CountWeightedFullL1PrefireNom_LHEHT400to600' : [ 1.28780762e+02, 1.29390274e+02, 1.28892609e+02, ], 'CountWeightedFullL1Prefire_LHEHT400to600' : [ 1.28780762e+02, 1.26597862e+02, 1.30965408e+02, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT400to600' : [ 1.47011063e+02, 1.39502502e+02, 1.32403061e+02, 1.35727509e+02, 1.28780762e+02, 1.22209801e+02, 1.26583565e+02, 1.20093338e+02, 1.13949249e+02, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT400to600' : [ 1.47396469e+02, 1.13763641e+02, ], 'Count_LHEHT600to800' : [ 22, ], 'CountWeighted_LHEHT600to800' : [ 2.40503483e+01, 2.46118793e+01, 2.28246975e+01, ], 'CountWeightedLHEWeightScale_LHEHT600to800' : [ 2.78901596e+01, 2.63883286e+01, 2.50156250e+01, 2.54238167e+01, 2.40503483e+01, 2.27961273e+01, 2.33839645e+01, 2.21180954e+01, 2.09620819e+01, ], 'CountWeightedLHEEnvelope_LHEHT600to800' : [ 2.78961220e+01, 2.09620819e+01, ], 'CountWeightedFull_LHEHT600to800' : [ 2.40503483e+01, 2.46118793e+01, 2.28246975e+01, ], 'CountWeightedFullLHEWeightScale_LHEHT600to800' : [ 2.78901596e+01, 2.63883286e+01, 2.50156250e+01, 2.54238167e+01, 2.40503483e+01, 2.27961273e+01, 2.33839645e+01, 2.21180954e+01, 2.09620819e+01, ], 'CountWeightedFullLHEEnvelope_LHEHT600to800' : [ 2.78961220e+01, 2.09620819e+01, ], 'CountWeightedL1PrefireNom_LHEHT600to800' : [ 2.26963768e+01, 2.32904510e+01, 2.14447632e+01, ], 'CountWeightedL1Prefire_LHEHT600to800' : [ 2.26963768e+01, 2.24504585e+01, 2.29527760e+01, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT600to800' : [ 2.62928848e+01, 2.49150009e+01, 2.36528015e+01, 2.39559135e+01, 2.26963768e+01, 2.15436821e+01, 2.20256996e+01, 2.08652210e+01, 1.98032341e+01, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT600to800' : [ 2.62988472e+01, 1.98032341e+01, ], 'CountWeightedFullL1PrefireNom_LHEHT600to800' : [ 2.26963768e+01, 2.32904510e+01, 2.14447632e+01, ], 'CountWeightedFullL1Prefire_LHEHT600to800' : [ 2.26963768e+01, 2.24504585e+01, 2.29527760e+01, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT600to800' : [ 2.62928848e+01, 2.49150009e+01, 2.36528015e+01, 2.39559135e+01, 2.26963768e+01, 2.15436821e+01, 2.20256996e+01, 2.08652210e+01, 1.98032341e+01, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT600to800' : [ 2.62988472e+01, 1.98032341e+01, ], 'Count_LHEHT800to1200' : [ 3, ], 'CountWeighted_LHEHT800to1200' : [ 2.79822731e+00, 2.85859251e+00, 2.89581728e+00, ], 'CountWeightedLHEWeightScale_LHEHT800to1200' : [ 3.53943491e+00, 3.20369673e+00, 2.91681194e+00, 3.09090710e+00, 2.79822731e+00, 2.54836798e+00, 2.73640299e+00, 2.47788620e+00, 2.25702167e+00, ], 'CountWeightedLHEEnvelope_LHEHT800to1200' : [ 3.53943491e+00, 2.25702167e+00, ], 'CountWeightedFull_LHEHT800to1200' : [ 2.79822731e+00, 2.85859251e+00, 2.89581728e+00, ], 'CountWeightedFullLHEWeightScale_LHEHT800to1200' : [ 3.53943491e+00, 3.20369673e+00, 2.91681194e+00, 3.09090710e+00, 2.79822731e+00, 2.54836798e+00, 2.73640299e+00, 2.47788620e+00, 2.25702167e+00, ], 'CountWeightedFullLHEEnvelope_LHEHT800to1200' : [ 3.53943491e+00, 2.25702167e+00, ], 'CountWeightedL1PrefireNom_LHEHT800to1200' : [ 2.45636177e+00, 2.54512072e+00, 2.52325773e+00, ], 'CountWeightedL1Prefire_LHEHT800to1200' : [ 2.45636177e+00, 2.37809134e+00, 2.53366709e+00, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT800to1200' : [ 3.10436130e+00, 2.80977583e+00, 2.55807114e+00, 2.71341324e+00, 2.45636177e+00, 2.23693013e+00, 2.40417051e+00, 2.17692304e+00, 1.98278522e+00, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT800to1200' : [ 3.10436130e+00, 1.98278522e+00, ], 'CountWeightedFullL1PrefireNom_LHEHT800to1200' : [ 2.45636177e+00, 2.54512072e+00, 2.52325773e+00, ], 'CountWeightedFullL1Prefire_LHEHT800to1200' : [ 2.45636177e+00, 2.37809134e+00, 2.53366709e+00, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT800to1200' : [ 3.10436130e+00, 2.80977583e+00, 2.55807114e+00, 2.71341324e+00, 2.45636177e+00, 2.23693013e+00, 2.40417051e+00, 2.17692304e+00, 1.98278522e+00, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT800to1200' : [ 3.10436130e+00, 1.98278522e+00, ], }), ("nof_tree_events", 88895), ("nof_db_events", 88895), ("fsize_local", 390792660), # 390.79MB, avg file size 390.79MB ("fsize_db", 4131753194), # 4.13GB, avg file size 2.07GB ("use_it", False), ("xsection", 349.25), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Apr19_woPresel_nom_all_hh_multilepton/ntuples/DY2JetsToLL_M-50"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/DY2JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_new_pmx_94X_mc2017_realistic_v14_ext1-v2/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "EWK"), ("process_name_specific", "DY2JetsToLL_M-50_ext1"), ("nof_files", 21), ("nof_db_files", 163), ("nof_events", { 'Count' : [ 10037851, ], 'CountWeighted' : [ 1.00269926e+07, 1.00269163e+07, 1.00269750e+07, ], 'CountWeightedLHEWeightScale' : [ 9.37975777e+06, 1.03083800e+07, 1.09738954e+07, 9.11954261e+06, 1.00269926e+07, 1.06778519e+07, 8.90586974e+06, 9.79606029e+06, 1.04348753e+07, ], 'CountWeightedLHEEnvelope' : [ 1.09569112e+07, 8.91270859e+06, ], 'CountWeightedFull' : [ 1.00269926e+07, 1.00269163e+07, 1.00269750e+07, ], 'CountWeightedFullLHEWeightScale' : [ 9.37975777e+06, 1.03083800e+07, 1.09738954e+07, 9.11954261e+06, 1.00269926e+07, 1.06778519e+07, 8.90586974e+06, 9.79606029e+06, 1.04348753e+07, ], 'CountWeightedFullLHEEnvelope' : [ 1.09569112e+07, 8.91270859e+06, ], 'CountWeightedL1PrefireNom' : [ 9.75949852e+06, 9.75909283e+06, 9.75985270e+06, ], 'CountWeightedL1Prefire' : [ 9.75949852e+06, 9.69282880e+06, 9.82450255e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 9.12111108e+06, 1.00325959e+07, 1.06867590e+07, 8.86880795e+06, 9.75949852e+06, 1.03992331e+07, 8.66164059e+06, 9.53536284e+06, 1.01632480e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 1.06668272e+07, 8.67119309e+06, ], 'CountWeightedFullL1PrefireNom' : [ 9.75949852e+06, 9.75909283e+06, 9.75985270e+06, ], 'CountWeightedFullL1Prefire' : [ 9.75949852e+06, 9.69282880e+06, 9.82450255e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 9.12111108e+06, 1.00325959e+07, 1.06867590e+07, 8.86880795e+06, 9.75949852e+06, 1.03992331e+07, 8.66164059e+06, 9.53536284e+06, 1.01632480e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 1.06668272e+07, 8.67119309e+06, ], 'Count_LHEHT0to70' : [ 5317722, ], 'CountWeighted_LHEHT0to70' : [ 5.31337695e+06, 5.31372293e+06, 5.31332891e+06, ], 'CountWeightedLHEWeightScale_LHEHT0to70' : [ 4.77059795e+06, 5.43994208e+06, 5.94137935e+06, 4.65823163e+06, 5.31337695e+06, 5.80437942e+06, 4.56629778e+06, 5.20984016e+06, 5.69232462e+06, ], 'CountWeightedLHEEnvelope_LHEHT0to70' : [ 5.88928127e+06, 4.60246403e+06, ], 'CountWeightedFull_LHEHT0to70' : [ 5.31337695e+06, 5.31372293e+06, 5.31332891e+06, ], 'CountWeightedFullLHEWeightScale_LHEHT0to70' : [ 4.77059795e+06, 5.43994208e+06, 5.94137935e+06, 4.65823163e+06, 5.31337695e+06, 5.80437942e+06, 4.56629778e+06, 5.20984016e+06, 5.69232462e+06, ], 'CountWeightedFullLHEEnvelope_LHEHT0to70' : [ 5.88928127e+06, 4.60246403e+06, ], 'CountWeightedL1PrefireNom_LHEHT0to70' : [ 5.21455543e+06, 5.21472425e+06, 5.21465910e+06, ], 'CountWeightedL1Prefire_LHEHT0to70' : [ 5.21455543e+06, 5.18839503e+06, 5.23967486e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT0to70' : [ 4.68082877e+06, 5.33873831e+06, 5.83181346e+06, 4.57060078e+06, 5.21455543e+06, 5.69736900e+06, 4.48041950e+06, 5.11297596e+06, 5.58740663e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT0to70' : [ 5.78047230e+06, 4.51606411e+06, ], 'CountWeightedFullL1PrefireNom_LHEHT0to70' : [ 5.21455543e+06, 5.21472425e+06, 5.21465910e+06, ], 'CountWeightedFullL1Prefire_LHEHT0to70' : [ 5.21455543e+06, 5.18839503e+06, 5.23967486e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT0to70' : [ 4.68082877e+06, 5.33873831e+06, 5.83181346e+06, 4.57060078e+06, 5.21455543e+06, 5.69736900e+06, 4.48041950e+06, 5.11297596e+06, 5.58740663e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT0to70' : [ 5.78047230e+06, 4.51606411e+06, ], 'Count_LHEHT70to100' : [ 2503034, ], 'CountWeighted_LHEHT70to100' : [ 2.50040910e+06, 2.50023788e+06, 2.50046735e+06, ], 'CountWeightedLHEWeightScale_LHEHT70to100' : [ 2.38184640e+06, 2.57310371e+06, 2.70423500e+06, 2.31418120e+06, 2.50040910e+06, 2.62815817e+06, 2.25851047e+06, 2.44062288e+06, 2.56557190e+06, ], 'CountWeightedLHEEnvelope_LHEHT70to100' : [ 2.69807456e+06, 2.26439257e+06, ], 'CountWeightedFull_LHEHT70to100' : [ 2.50040910e+06, 2.50023788e+06, 2.50046735e+06, ], 'CountWeightedFullLHEWeightScale_LHEHT70to100' : [ 2.38184640e+06, 2.57310371e+06, 2.70423500e+06, 2.31418120e+06, 2.50040910e+06, 2.62815817e+06, 2.25851047e+06, 2.44062288e+06, 2.56557190e+06, ], 'CountWeightedFullLHEEnvelope_LHEHT70to100' : [ 2.69807456e+06, 2.26439257e+06, ], 'CountWeightedL1PrefireNom_LHEHT70to100' : [ 2.43461079e+06, 2.43440594e+06, 2.43468320e+06, ], 'CountWeightedL1Prefire_LHEHT70to100' : [ 2.43461079e+06, 2.41781303e+06, 2.45091425e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT70to100' : [ 2.31857606e+06, 2.50539253e+06, 2.63359990e+06, 2.25270462e+06, 2.43461079e+06, 2.55950428e+06, 2.19851113e+06, 2.37639454e+06, 2.49854906e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT70to100' : [ 2.62734787e+06, 2.20445107e+06, ], 'CountWeightedFullL1PrefireNom_LHEHT70to100' : [ 2.43461079e+06, 2.43440594e+06, 2.43468320e+06, ], 'CountWeightedFullL1Prefire_LHEHT70to100' : [ 2.43461079e+06, 2.41781303e+06, 2.45091425e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT70to100' : [ 2.31857606e+06, 2.50539253e+06, 2.63359990e+06, 2.25270462e+06, 2.43461079e+06, 2.55950428e+06, 2.19851113e+06, 2.37639454e+06, 2.49854906e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT70to100' : [ 2.62734787e+06, 2.20445107e+06, ], 'Count_LHEHT100to200' : [ 1936414, ], 'CountWeighted_LHEHT100to200' : [ 1.93371698e+06, 1.93356140e+06, 1.93396928e+06, ], 'CountWeightedLHEWeightScale_LHEHT100to200' : [ 1.92591479e+06, 1.99929766e+06, 2.03882724e+06, 1.86259209e+06, 1.93371698e+06, 1.97207370e+06, 1.81020726e+06, 1.87949150e+06, 1.91685729e+06, ], 'CountWeightedLHEEnvelope_LHEHT100to200' : [ 2.06328596e+06, 1.78982207e+06, ], 'CountWeightedFull_LHEHT100to200' : [ 1.93371698e+06, 1.93356140e+06, 1.93396928e+06, ], 'CountWeightedFullLHEWeightScale_LHEHT100to200' : [ 1.92591479e+06, 1.99929766e+06, 2.03882724e+06, 1.86259209e+06, 1.93371698e+06, 1.97207370e+06, 1.81020726e+06, 1.87949150e+06, 1.91685729e+06, ], 'CountWeightedFullLHEEnvelope_LHEHT100to200' : [ 2.06328596e+06, 1.78982207e+06, ], 'CountWeightedL1PrefireNom_LHEHT100to200' : [ 1.85059199e+06, 1.85032805e+06, 1.85091953e+06, ], 'CountWeightedL1Prefire_LHEHT100to200' : [ 1.85059199e+06, 1.83110722e+06, 1.86996847e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT100to200' : [ 1.84205699e+06, 1.91337554e+06, 1.95214189e+06, 1.78146454e+06, 1.85059199e+06, 1.88819933e+06, 1.73134258e+06, 1.79867467e+06, 1.83531218e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT100to200' : [ 1.97467254e+06, 1.71262827e+06, ], 'CountWeightedFullL1PrefireNom_LHEHT100to200' : [ 1.85059199e+06, 1.85032805e+06, 1.85091953e+06, ], 'CountWeightedFullL1Prefire_LHEHT100to200' : [ 1.85059199e+06, 1.83110722e+06, 1.86996847e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT100to200' : [ 1.84205699e+06, 1.91337554e+06, 1.95214189e+06, 1.78146454e+06, 1.85059199e+06, 1.88819933e+06, 1.73134258e+06, 1.79867467e+06, 1.83531218e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT100to200' : [ 1.97467254e+06, 1.71262827e+06, ], 'Count_LHEHT200to400' : [ 262248, ], 'CountWeighted_LHEHT200to400' : [ 2.61384539e+05, 2.61426920e+05, 2.61332169e+05, ], 'CountWeightedLHEWeightScale_LHEHT200to400' : [ 2.80267812e+05, 2.76283536e+05, 2.70520258e+05, 2.65159488e+05, 2.61384539e+05, 2.55917586e+05, 2.52905778e+05, 2.49302120e+05, 2.44076874e+05, ], 'CountWeightedLHEEnvelope_LHEHT200to400' : [ 2.85173771e+05, 2.39996274e+05, ], 'CountWeightedFull_LHEHT200to400' : [ 2.61384539e+05, 2.61426920e+05, 2.61332169e+05, ], 'CountWeightedFullLHEWeightScale_LHEHT200to400' : [ 2.80267812e+05, 2.76283536e+05, 2.70520258e+05, 2.65159488e+05, 2.61384539e+05, 2.55917586e+05, 2.52905778e+05, 2.49302120e+05, 2.44076874e+05, ], 'CountWeightedFullLHEEnvelope_LHEHT200to400' : [ 2.85173771e+05, 2.39996274e+05, ], 'CountWeightedL1PrefireNom_LHEHT200to400' : [ 2.42951265e+05, 2.42976589e+05, 2.42907919e+05, ], 'CountWeightedL1Prefire_LHEHT200to400' : [ 2.42951265e+05, 2.39005756e+05, 2.46949585e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT200to400' : [ 2.60166392e+05, 2.56781567e+05, 2.51685255e+05, 2.46158325e+05, 2.42951265e+05, 2.38116281e+05, 2.34796097e+05, 2.31734402e+05, 2.27112848e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT200to400' : [ 2.64861844e+05, 2.23198810e+05, ], 'CountWeightedFullL1PrefireNom_LHEHT200to400' : [ 2.42951265e+05, 2.42976589e+05, 2.42907919e+05, ], 'CountWeightedFullL1Prefire_LHEHT200to400' : [ 2.42951265e+05, 2.39005756e+05, 2.46949585e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT200to400' : [ 2.60166392e+05, 2.56781567e+05, 2.51685255e+05, 2.46158325e+05, 2.42951265e+05, 2.38116281e+05, 2.34796097e+05, 2.31734402e+05, 2.27112848e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT200to400' : [ 2.64861844e+05, 2.23198810e+05, ], 'Count_LHEHT400to600' : [ 15579, ], 'CountWeighted_LHEHT400to600' : [ 1.55116612e+04, 1.55260132e+04, 1.55044023e+04, ], 'CountWeightedLHEWeightScale_LHEHT400to600' : [ 1.77885863e+04, 1.68982307e+04, 1.60570207e+04, 1.63368375e+04, 1.55116612e+04, 1.47331274e+04, 1.51660331e+04, 1.43937251e+04, 1.36659611e+04, ], 'CountWeightedLHEEnvelope_LHEHT400to600' : [ 1.78517225e+04, 1.36271259e+04, ], 'CountWeightedFull_LHEHT400to600' : [ 1.55116612e+04, 1.55260132e+04, 1.55044023e+04, ], 'CountWeightedFullLHEWeightScale_LHEHT400to600' : [ 1.77885863e+04, 1.68982307e+04, 1.60570207e+04, 1.63368375e+04, 1.55116612e+04, 1.47331274e+04, 1.51660331e+04, 1.43937251e+04, 1.36659611e+04, ], 'CountWeightedFullLHEEnvelope_LHEHT400to600' : [ 1.78517225e+04, 1.36271259e+04, ], 'CountWeightedL1PrefireNom_LHEHT400to600' : [ 1.43057817e+04, 1.43209476e+04, 1.42996171e+04, ], 'CountWeightedL1Prefire_LHEHT400to600' : [ 1.43057817e+04, 1.40564845e+04, 1.45590783e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT400to600' : [ 1.63697544e+04, 1.55745537e+04, 1.48191854e+04, 1.50435620e+04, 1.43057817e+04, 1.36059782e+04, 1.39737718e+04, 1.32826011e+04, 1.26278352e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT400to600' : [ 1.64305292e+04, 1.25900169e+04, ], 'CountWeightedFullL1PrefireNom_LHEHT400to600' : [ 1.43057817e+04, 1.43209476e+04, 1.42996171e+04, ], 'CountWeightedFullL1Prefire_LHEHT400to600' : [ 1.43057817e+04, 1.40564845e+04, 1.45590783e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT400to600' : [ 1.63697544e+04, 1.55745537e+04, 1.48191854e+04, 1.50435620e+04, 1.43057817e+04, 1.36059782e+04, 1.39737718e+04, 1.32826011e+04, 1.26278352e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT400to600' : [ 1.64305292e+04, 1.25900169e+04, ], 'Count_LHEHT600to800' : [ 2175, ], 'CountWeighted_LHEHT600to800' : [ 2.17302303e+03, 2.17091019e+03, 2.16539203e+03, ], 'CountWeightedLHEWeightScale_LHEHT600to800' : [ 2.56204583e+03, 2.39815915e+03, 2.25138093e+03, 2.32264040e+03, 2.17302303e+03, 2.03919501e+03, 2.12953733e+03, 1.99146980e+03, 1.86811704e+03, ], 'CountWeightedLHEEnvelope_LHEHT600to800' : [ 2.56566073e+03, 1.86643877e+03, ], 'CountWeightedFull_LHEHT600to800' : [ 2.17302303e+03, 2.17091019e+03, 2.16539203e+03, ], 'CountWeightedFullLHEWeightScale_LHEHT600to800' : [ 2.56204583e+03, 2.39815915e+03, 2.25138093e+03, 2.32264040e+03, 2.17302303e+03, 2.03919501e+03, 2.12953733e+03, 1.99146980e+03, 1.86811704e+03, ], 'CountWeightedFullLHEEnvelope_LHEHT600to800' : [ 2.56566073e+03, 1.86643877e+03, ], 'CountWeightedL1PrefireNom_LHEHT600to800' : [ 2.01997068e+03, 2.01928472e+03, 2.01241898e+03, ], 'CountWeightedL1Prefire_LHEHT600to800' : [ 2.01997068e+03, 1.98841611e+03, 2.05217521e+03, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT600to800' : [ 2.37523635e+03, 2.22801956e+03, 2.09554115e+03, 2.15453451e+03, 2.01997068e+03, 1.89904886e+03, 1.97642628e+03, 1.85211530e+03, 1.74055088e+03, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT600to800' : [ 2.37868428e+03, 1.73894044e+03, ], 'CountWeightedFullL1PrefireNom_LHEHT600to800' : [ 2.01997068e+03, 2.01928472e+03, 2.01241898e+03, ], 'CountWeightedFullL1Prefire_LHEHT600to800' : [ 2.01997068e+03, 1.98841611e+03, 2.05217521e+03, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT600to800' : [ 2.37523635e+03, 2.22801956e+03, 2.09554115e+03, 2.15453451e+03, 2.01997068e+03, 1.89904886e+03, 1.97642628e+03, 1.85211530e+03, 1.74055088e+03, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT600to800' : [ 2.37868428e+03, 1.73894044e+03, ], 'Count_LHEHT800to1200' : [ 598, ], 'CountWeighted_LHEHT800to1200' : [ 5.83090710e+02, 5.82324154e+02, 5.85422768e+02, ], 'CountWeightedLHEWeightScale_LHEHT800to1200' : [ 6.96077731e+02, 6.42515351e+02, 5.95864437e+02, 6.32035143e+02, 5.83090710e+02, 5.40508615e+02, 5.79965425e+02, 5.34786705e+02, 4.95520989e+02, ], 'CountWeightedLHEEnvelope_LHEHT800to1200' : [ 6.96685716e+02, 4.95300534e+02, ], 'CountWeightedFull_LHEHT800to1200' : [ 5.83090710e+02, 5.82324154e+02, 5.85422768e+02, ], 'CountWeightedFullLHEWeightScale_LHEHT800to1200' : [ 6.96077731e+02, 6.42515351e+02, 5.95864437e+02, 6.32035143e+02, 5.83090710e+02, 5.40508615e+02, 5.79965425e+02, 5.34786705e+02, 4.95520989e+02, ], 'CountWeightedFullLHEEnvelope_LHEHT800to1200' : [ 6.96685716e+02, 4.95300534e+02, ], 'CountWeightedL1PrefireNom_LHEHT800to1200' : [ 5.52757055e+02, 5.51294924e+02, 5.55851965e+02, ], 'CountWeightedL1Prefire_LHEHT800to1200' : [ 5.52757055e+02, 5.46406345e+02, 5.59226837e+02, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT800to1200' : [ 6.58982501e+02, 6.09340186e+02, 5.65983427e+02, 5.98112397e+02, 5.52757055e+02, 5.13191225e+02, 5.48649469e+02, 5.06787884e+02, 4.70309851e+02, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT800to1200' : [ 6.59576545e+02, 4.70092325e+02, ], 'CountWeightedFullL1PrefireNom_LHEHT800to1200' : [ 5.52757055e+02, 5.51294924e+02, 5.55851965e+02, ], 'CountWeightedFullL1Prefire_LHEHT800to1200' : [ 5.52757055e+02, 5.46406345e+02, 5.59226837e+02, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT800to1200' : [ 6.58982501e+02, 6.09340186e+02, 5.65983427e+02, 5.98112397e+02, 5.52757055e+02, 5.13191225e+02, 5.48649469e+02, 5.06787884e+02, 4.70309851e+02, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT800to1200' : [ 6.59576545e+02, 4.70092325e+02, ], 'Count_LHEHT1200to2500' : [ 79, ], 'CountWeighted_LHEHT1200to2500' : [ 7.97459739e+01, 7.92326909e+01, 7.89322647e+01, ], 'CountWeightedLHEWeightScale_LHEHT1200to2500' : [ 9.80736123e+01, 8.77870704e+01, 7.92600925e+01, 8.91093467e+01, 7.97459739e+01, 7.19850136e+01, 8.17637979e+01, 7.31563537e+01, 6.60234494e+01, ], 'CountWeightedLHEEnvelope_LHEHT1200to2500' : [ 9.80736123e+01, 6.60234494e+01, ], 'CountWeightedFull_LHEHT1200to2500' : [ 7.97459739e+01, 7.92326909e+01, 7.89322647e+01, ], 'CountWeightedFullLHEWeightScale_LHEHT1200to2500' : [ 9.80736123e+01, 8.77870704e+01, 7.92600925e+01, 8.91093467e+01, 7.97459739e+01, 7.19850136e+01, 8.17637979e+01, 7.31563537e+01, 6.60234494e+01, ], 'CountWeightedFullLHEEnvelope_LHEHT1200to2500' : [ 9.80736123e+01, 6.60234494e+01, ], 'CountWeightedL1PrefireNom_LHEHT1200to2500' : [ 7.82620248e+01, 7.77818429e+01, 7.74976580e+01, ], 'CountWeightedL1Prefire_LHEHT1200to2500' : [ 7.82620248e+01, 7.79337090e+01, 7.85912070e+01, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT1200to2500' : [ 9.61623268e+01, 8.61406907e+01, 7.78263254e+01, 8.73845998e+01, 7.82620248e+01, 7.06941577e+01, 8.01915548e+01, 7.18050181e+01, 6.48491018e+01, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT1200to2500' : [ 9.61623268e+01, 6.48491018e+01, ], 'CountWeightedFullL1PrefireNom_LHEHT1200to2500' : [ 7.82620248e+01, 7.77818429e+01, 7.74976580e+01, ], 'CountWeightedFullL1Prefire_LHEHT1200to2500' : [ 7.82620248e+01, 7.79337090e+01, 7.85912070e+01, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT1200to2500' : [ 9.61623268e+01, 8.61406907e+01, 7.78263254e+01, 8.73845998e+01, 7.82620248e+01, 7.06941577e+01, 8.01915548e+01, 7.18050181e+01, 6.48491018e+01, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT1200to2500' : [ 9.61623268e+01, 6.48491018e+01, ], 'Count_LHEHT2500toInf' : [ 2, ], 'CountWeighted_LHEHT2500toInf' : [ 5.07888377e-01, -1.83239400e-01, 1.18982995e+00, ], 'CountWeightedLHEWeightScale_LHEHT2500toInf' : [ 6.69324994e-01, 5.91930687e-01, 5.27184665e-01, 5.72636724e-01, 5.07888377e-01, 4.53482985e-01, 4.89253044e-01, 4.35372174e-01, 3.89891386e-01, ], 'CountWeightedLHEEnvelope_LHEHT2500toInf' : [ 6.69324994e-01, 3.89891386e-01, ], 'CountWeightedFull_LHEHT2500toInf' : [ 5.07888377e-01, -1.83239400e-01, 1.18982995e+00, ], 'CountWeightedFullLHEWeightScale_LHEHT2500toInf' : [ 6.69324994e-01, 5.91930687e-01, 5.27184665e-01, 5.72636724e-01, 5.07888377e-01, 4.53482985e-01, 4.89253044e-01, 4.35372174e-01, 3.89891386e-01, ], 'CountWeightedFullLHEEnvelope_LHEHT2500toInf' : [ 6.69324994e-01, 3.89891386e-01, ], 'CountWeightedL1PrefireNom_LHEHT2500toInf' : [ 5.07888377e-01, -1.83239400e-01, 1.18982995e+00, ], 'CountWeightedL1Prefire_LHEHT2500toInf' : [ 5.07888377e-01, 5.07888377e-01, 5.07888377e-01, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT2500toInf' : [ 6.69324994e-01, 5.91930687e-01, 5.27184665e-01, 5.72636724e-01, 5.07888377e-01, 4.53482985e-01, 4.89253044e-01, 4.35372174e-01, 3.89891386e-01, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT2500toInf' : [ 6.69324994e-01, 3.89891386e-01, ], 'CountWeightedFullL1PrefireNom_LHEHT2500toInf' : [ 5.07888377e-01, -1.83239400e-01, 1.18982995e+00, ], 'CountWeightedFullL1Prefire_LHEHT2500toInf' : [ 5.07888377e-01, 5.07888377e-01, 5.07888377e-01, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT2500toInf' : [ 6.69324994e-01, 5.91930687e-01, 5.27184665e-01, 5.72636724e-01, 5.07888377e-01, 4.53482985e-01, 4.89253044e-01, 4.35372174e-01, 3.89891386e-01, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT2500toInf' : [ 6.69324994e-01, 3.89891386e-01, ], }), ("nof_tree_events", 10037851), ("nof_db_events", 10037851), ("fsize_local", 43995404115), # 44.00GB, avg file size 2.10GB ("fsize_db", 464730818230), # 464.73GB, avg file size 2.85GB ("use_it", False), ("xsection", 349.25), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Apr19_woPresel_nom_all_hh_multilepton/ntuples/DY2JetsToLL_M-50_ext1"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/DY3JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "EWK"), ("process_name_specific", "DY3JetsToLL_M-50"), ("nof_files", 12), ("nof_db_files", 84), ("nof_events", { 'Count' : [ 5748466, ], 'CountWeighted' : [ 5.74033230e+06, 5.74070684e+06, 5.73934731e+06, ], 'CountWeightedLHEWeightScale' : [ 5.79845372e+06, 5.98344381e+06, 6.05306081e+06, 5.56018500e+06, 5.74033230e+06, 5.80907862e+06, 5.36490523e+06, 5.54093291e+06, 5.60908416e+06, ], 'CountWeightedLHEEnvelope' : [ 6.25531931e+06, 5.18843761e+06, ], 'CountWeightedFull' : [ 5.74033230e+06, 5.74070684e+06, 5.73934731e+06, ], 'CountWeightedFullLHEWeightScale' : [ 5.79845372e+06, 5.98344381e+06, 6.05306081e+06, 5.56018500e+06, 5.74033230e+06, 5.80907862e+06, 5.36490523e+06, 5.54093291e+06, 5.60908416e+06, ], 'CountWeightedFullLHEEnvelope' : [ 6.25531931e+06, 5.18843761e+06, ], 'CountWeightedL1PrefireNom' : [ 5.53865978e+06, 5.53864422e+06, 5.53837606e+06, ], 'CountWeightedL1Prefire' : [ 5.53865978e+06, 5.48971406e+06, 5.58646120e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 5.58831833e+06, 5.77255900e+06, 5.84435238e+06, 5.35935642e+06, 5.53865978e+06, 5.60942053e+06, 5.17169141e+06, 5.34687331e+06, 5.41683234e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 6.03415856e+06, 5.00618284e+06, ], 'CountWeightedFullL1PrefireNom' : [ 5.53865978e+06, 5.53864422e+06, 5.53837606e+06, ], 'CountWeightedFullL1Prefire' : [ 5.53865978e+06, 5.48971406e+06, 5.58646120e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 5.58831833e+06, 5.77255900e+06, 5.84435238e+06, 5.35935642e+06, 5.53865978e+06, 5.60942053e+06, 5.17169141e+06, 5.34687331e+06, 5.41683234e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 6.03415856e+06, 5.00618284e+06, ], 'Count_LHEHT0to70' : [ 458778, ], 'CountWeighted_LHEHT0to70' : [ 4.58245723e+05, 4.58325693e+05, 4.58138848e+05, ], 'CountWeightedLHEWeightScale_LHEHT0to70' : [ 4.34991756e+05, 4.77574484e+05, 5.04727227e+05, 4.17113207e+05, 4.58245723e+05, 4.84515270e+05, 4.02501625e+05, 4.42451223e+05, 4.67999129e+05, ], 'CountWeightedLHEEnvelope_LHEHT0to70' : [ 5.07027676e+05, 4.00264789e+05, ], 'CountWeightedFull_LHEHT0to70' : [ 4.58245723e+05, 4.58325693e+05, 4.58138848e+05, ], 'CountWeightedFullLHEWeightScale_LHEHT0to70' : [ 4.34991756e+05, 4.77574484e+05, 5.04727227e+05, 4.17113207e+05, 4.58245723e+05, 4.84515270e+05, 4.02501625e+05, 4.42451223e+05, 4.67999129e+05, ], 'CountWeightedFullLHEEnvelope_LHEHT0to70' : [ 5.07027676e+05, 4.00264789e+05, ], 'CountWeightedL1PrefireNom_LHEHT0to70' : [ 4.49642416e+05, 4.49709285e+05, 4.49557574e+05, ], 'CountWeightedL1Prefire_LHEHT0to70' : [ 4.49642416e+05, 4.47361141e+05, 4.51826711e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT0to70' : [ 4.26710734e+05, 4.68595990e+05, 4.95324170e+05, 4.09184643e+05, 4.49642416e+05, 4.75501312e+05, 3.94861467e+05, 4.34155893e+05, 4.59303334e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT0to70' : [ 4.97523199e+05, 3.92715262e+05, ], 'CountWeightedFullL1PrefireNom_LHEHT0to70' : [ 4.49642416e+05, 4.49709285e+05, 4.49557574e+05, ], 'CountWeightedFullL1Prefire_LHEHT0to70' : [ 4.49642416e+05, 4.47361141e+05, 4.51826711e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT0to70' : [ 4.26710734e+05, 4.68595990e+05, 4.95324170e+05, 4.09184643e+05, 4.49642416e+05, 4.75501312e+05, 3.94861467e+05, 4.34155893e+05, 4.59303334e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT0to70' : [ 4.97523199e+05, 3.92715262e+05, ], 'Count_LHEHT70to100' : [ 1558158, ], 'CountWeighted_LHEHT70to100' : [ 1.55641404e+06, 1.55634391e+06, 1.55695236e+06, ], 'CountWeightedLHEWeightScale_LHEHT70to100' : [ 1.52036920e+06, 1.61547098e+06, 1.66936314e+06, 1.46422732e+06, 1.55641404e+06, 1.60885909e+06, 1.41820788e+06, 1.50809912e+06, 1.55926852e+06, ], 'CountWeightedLHEEnvelope_LHEHT70to100' : [ 1.69541672e+06, 1.39613155e+06, ], 'CountWeightedFull_LHEHT70to100' : [ 1.55641404e+06, 1.55634391e+06, 1.55695236e+06, ], 'CountWeightedFullLHEWeightScale_LHEHT70to100' : [ 1.52036920e+06, 1.61547098e+06, 1.66936314e+06, 1.46422732e+06, 1.55641404e+06, 1.60885909e+06, 1.41820788e+06, 1.50809912e+06, 1.55926852e+06, ], 'CountWeightedFullLHEEnvelope_LHEHT70to100' : [ 1.69541672e+06, 1.39613155e+06, ], 'CountWeightedL1PrefireNom_LHEHT70to100' : [ 1.52251623e+06, 1.52238302e+06, 1.52298077e+06, ], 'CountWeightedL1Prefire_LHEHT70to100' : [ 1.52251623e+06, 1.51356547e+06, 1.53106453e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT70to100' : [ 1.48683262e+06, 1.58026331e+06, 1.63325667e+06, 1.43193600e+06, 1.52251623e+06, 1.57406873e+06, 1.38693895e+06, 1.47524566e+06, 1.52555756e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT70to100' : [ 1.65848141e+06, 1.36558038e+06, ], 'CountWeightedFullL1PrefireNom_LHEHT70to100' : [ 1.52251623e+06, 1.52238302e+06, 1.52298077e+06, ], 'CountWeightedFullL1Prefire_LHEHT70to100' : [ 1.52251623e+06, 1.51356547e+06, 1.53106453e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT70to100' : [ 1.48683262e+06, 1.58026331e+06, 1.63325667e+06, 1.43193600e+06, 1.52251623e+06, 1.57406873e+06, 1.38693895e+06, 1.47524566e+06, 1.52555756e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT70to100' : [ 1.65848141e+06, 1.36558038e+06, ], 'Count_LHEHT100to200' : [ 2909978, ], 'CountWeighted_LHEHT100to200' : [ 2.90514538e+06, 2.90566966e+06, 2.90551220e+06, ], 'CountWeightedLHEWeightScale_LHEHT100to200' : [ 2.94961984e+06, 3.02056797e+06, 3.03820573e+06, 2.83640327e+06, 2.90514538e+06, 2.92271767e+06, 2.74308430e+06, 2.81023870e+06, 2.82753314e+06, ], 'CountWeightedLHEEnvelope_LHEHT100to200' : [ 3.14178566e+06, 2.65265518e+06, ], 'CountWeightedFull_LHEHT100to200' : [ 2.90514538e+06, 2.90566966e+06, 2.90551220e+06, ], 'CountWeightedFullLHEWeightScale_LHEHT100to200' : [ 2.94961984e+06, 3.02056797e+06, 3.03820573e+06, 2.83640327e+06, 2.90514538e+06, 2.92271767e+06, 2.74308430e+06, 2.81023870e+06, 2.82753314e+06, ], 'CountWeightedFullLHEEnvelope_LHEHT100to200' : [ 3.14178566e+06, 2.65265518e+06, ], 'CountWeightedL1PrefireNom_LHEHT100to200' : [ 2.80145003e+06, 2.80161785e+06, 2.80181945e+06, ], 'CountWeightedL1Prefire_LHEHT100to200' : [ 2.80145003e+06, 2.77592113e+06, 2.82642484e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT100to200' : [ 2.84272789e+06, 2.91272813e+06, 2.93090025e+06, 2.73358324e+06, 2.80145003e+06, 2.81946377e+06, 2.64362836e+06, 2.70987620e+06, 2.72762445e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT100to200' : [ 3.02931988e+06, 2.55777333e+06, ], 'CountWeightedFullL1PrefireNom_LHEHT100to200' : [ 2.80145003e+06, 2.80161785e+06, 2.80181945e+06, ], 'CountWeightedFullL1Prefire_LHEHT100to200' : [ 2.80145003e+06, 2.77592113e+06, 2.82642484e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT100to200' : [ 2.84272789e+06, 2.91272813e+06, 2.93090025e+06, 2.73358324e+06, 2.80145003e+06, 2.81946377e+06, 2.64362836e+06, 2.70987620e+06, 2.72762445e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT100to200' : [ 3.02931988e+06, 2.55777333e+06, ], 'Count_LHEHT200to400' : [ 742285, ], 'CountWeighted_LHEHT200to400' : [ 7.40992000e+05, 7.41057375e+05, 7.40735381e+05, ], 'CountWeightedLHEWeightScale_LHEHT200to400' : [ 8.00976449e+05, 7.82952531e+05, 7.59700355e+05, 7.57981238e+05, 7.40992000e+05, 7.19016197e+05, 7.23087469e+05, 7.06941273e+05, 6.86000406e+05, ], 'CountWeightedLHEEnvelope_LHEHT200to400' : [ 8.18116730e+05, 6.71431469e+05, ], 'CountWeightedFull_LHEHT200to400' : [ 7.40992000e+05, 7.41057375e+05, 7.40735381e+05, ], 'CountWeightedFullLHEWeightScale_LHEHT200to400' : [ 8.00976449e+05, 7.82952531e+05, 7.59700355e+05, 7.57981238e+05, 7.40992000e+05, 7.19016197e+05, 7.23087469e+05, 7.06941273e+05, 6.86000406e+05, ], 'CountWeightedFullLHEEnvelope_LHEHT200to400' : [ 8.18116730e+05, 6.71431469e+05, ], 'CountWeightedL1PrefireNom_LHEHT200to400' : [ 6.91975484e+05, 6.91996131e+05, 6.91788648e+05, ], 'CountWeightedL1Prefire_LHEHT200to400' : [ 6.91975484e+05, 6.81144191e+05, 7.02868664e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT200to400' : [ 7.47014129e+05, 7.31103371e+05, 7.10113283e+05, 7.06970137e+05, 6.91975484e+05, 6.72140002e+05, 6.74467273e+05, 6.60222115e+05, 6.41320168e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT200to400' : [ 7.63362301e+05, 6.27399682e+05, ], 'CountWeightedFullL1PrefireNom_LHEHT200to400' : [ 6.91975484e+05, 6.91996131e+05, 6.91788648e+05, ], 'CountWeightedFullL1Prefire_LHEHT200to400' : [ 6.91975484e+05, 6.81144191e+05, 7.02868664e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT200to400' : [ 7.47014129e+05, 7.31103371e+05, 7.10113283e+05, 7.06970137e+05, 6.91975484e+05, 6.72140002e+05, 6.74467273e+05, 6.60222115e+05, 6.41320168e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT200to400' : [ 7.63362301e+05, 6.27399682e+05, ], 'Count_LHEHT400to600' : [ 64563, ], 'CountWeighted_LHEHT400to600' : [ 6.43984126e+04, 6.43441484e+04, 6.44363494e+04, ], 'CountWeightedLHEWeightScale_LHEHT400to600' : [ 7.49027144e+04, 7.04008486e+04, 6.62061904e+04, 6.85464424e+04, 6.43984126e+04, 6.05388572e+04, 6.34590994e+04, 5.95966770e+04, 5.60048704e+04, ], 'CountWeightedLHEEnvelope_LHEHT400to600' : [ 7.53245356e+04, 5.57054521e+04, ], 'CountWeightedFull_LHEHT400to600' : [ 6.43984126e+04, 6.43441484e+04, 6.44363494e+04, ], 'CountWeightedFullLHEWeightScale_LHEHT400to600' : [ 7.49027144e+04, 7.04008486e+04, 6.62061904e+04, 6.85464424e+04, 6.43984126e+04, 6.05388572e+04, 6.34590994e+04, 5.95966770e+04, 5.60048704e+04, ], 'CountWeightedFullLHEEnvelope_LHEHT400to600' : [ 7.53245356e+04, 5.57054521e+04, ], 'CountWeightedL1PrefireNom_LHEHT400to600' : [ 5.91579082e+04, 5.91038618e+04, 5.91971660e+04, ], 'CountWeightedL1Prefire_LHEHT400to600' : [ 5.91579082e+04, 5.80596990e+04, 6.02721472e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT400to600' : [ 6.86464458e+04, 6.46366714e+04, 6.08777383e+04, 6.28558062e+04, 5.91579082e+04, 5.56963601e+04, 5.82196372e+04, 5.47736687e+04, 5.15498726e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT400to600' : [ 6.90471270e+04, 5.12633643e+04, ], 'CountWeightedFullL1PrefireNom_LHEHT400to600' : [ 5.91579082e+04, 5.91038618e+04, 5.91971660e+04, ], 'CountWeightedFullL1Prefire_LHEHT400to600' : [ 5.91579082e+04, 5.80596990e+04, 6.02721472e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT400to600' : [ 6.86464458e+04, 6.46366714e+04, 6.08777383e+04, 6.28558062e+04, 5.91579082e+04, 5.56963601e+04, 5.82196372e+04, 5.47736687e+04, 5.15498726e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT400to600' : [ 6.90471270e+04, 5.12633643e+04, ], 'Count_LHEHT600to800' : [ 10863, ], 'CountWeighted_LHEHT600to800' : [ 1.07635811e+04, 1.07738579e+04, 1.07493807e+04, ], 'CountWeightedLHEWeightScale_LHEHT600to800' : [ 1.29000094e+04, 1.18935359e+04, 1.10090796e+04, 1.16805134e+04, 1.07635811e+04, 9.95897028e+03, 1.07016066e+04, 9.85702789e+03, 9.11645642e+03, ], 'CountWeightedLHEEnvelope_LHEHT600to800' : [ 1.29410731e+04, 9.08903125e+03, ], 'CountWeightedFull_LHEHT600to800' : [ 1.07635811e+04, 1.07738579e+04, 1.07493807e+04, ], 'CountWeightedFullLHEWeightScale_LHEHT600to800' : [ 1.29000094e+04, 1.18935359e+04, 1.10090796e+04, 1.16805134e+04, 1.07635811e+04, 9.95897028e+03, 1.07016066e+04, 9.85702789e+03, 9.11645642e+03, ], 'CountWeightedFullLHEEnvelope_LHEHT600to800' : [ 1.29410731e+04, 9.08903125e+03, ], 'CountWeightedL1PrefireNom_LHEHT600to800' : [ 9.97548627e+03, 9.98251324e+03, 9.96383261e+03, ], 'CountWeightedL1Prefire_LHEHT600to800' : [ 9.97548627e+03, 9.81179309e+03, 1.01416116e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT600to800' : [ 1.19246527e+04, 1.10151526e+04, 1.02126731e+04, 1.08051283e+04, 9.97548627e+03, 9.24460739e+03, 9.90606894e+03, 9.14101682e+03, 8.46759570e+03, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT600to800' : [ 1.19632552e+04, 8.44177573e+03, ], 'CountWeightedFullL1PrefireNom_LHEHT600to800' : [ 9.97548627e+03, 9.98251324e+03, 9.96383261e+03, ], 'CountWeightedFullL1Prefire_LHEHT600to800' : [ 9.97548627e+03, 9.81179309e+03, 1.01416116e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT600to800' : [ 1.19246527e+04, 1.10151526e+04, 1.02126731e+04, 1.08051283e+04, 9.97548627e+03, 9.24460739e+03, 9.90606894e+03, 9.14101682e+03, 8.46759570e+03, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT600to800' : [ 1.19632552e+04, 8.44177573e+03, ], 'Count_LHEHT800to1200' : [ 3370, ], 'CountWeighted_LHEHT800to1200' : [ 3.34941803e+03, 3.34382634e+03, 3.35760866e+03, ], 'CountWeightedLHEWeightScale_LHEHT800to1200' : [ 4.10595358e+03, 3.71824829e+03, 3.39118117e+03, 3.70035025e+03, 3.34941803e+03, 3.05370987e+03, 3.37337527e+03, 3.05221730e+03, 2.78174678e+03, ], 'CountWeightedLHEEnvelope_LHEHT800to1200' : [ 4.11074194e+03, 2.77868015e+03, ], 'CountWeightedFull_LHEHT800to1200' : [ 3.34941803e+03, 3.34382634e+03, 3.35760866e+03, ], 'CountWeightedFullLHEWeightScale_LHEHT800to1200' : [ 4.10595358e+03, 3.71824829e+03, 3.39118117e+03, 3.70035025e+03, 3.34941803e+03, 3.05370987e+03, 3.37337527e+03, 3.05221730e+03, 2.78174678e+03, ], 'CountWeightedFullLHEEnvelope_LHEHT800to1200' : [ 4.11074194e+03, 2.77868015e+03, ], 'CountWeightedL1PrefireNom_LHEHT800to1200' : [ 3.17375996e+03, 3.16833566e+03, 3.18043462e+03, ], 'CountWeightedL1Prefire_LHEHT800to1200' : [ 3.17375996e+03, 3.13660449e+03, 3.21119792e+03, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT800to1200' : [ 3.88322157e+03, 3.52160214e+03, 3.21587376e+03, 3.50136531e+03, 3.17375996e+03, 2.89712556e+03, 3.19340059e+03, 2.89335626e+03, 2.64015044e+03, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT800to1200' : [ 3.88804495e+03, 2.63699060e+03, ], 'CountWeightedFullL1PrefireNom_LHEHT800to1200' : [ 3.17375996e+03, 3.16833566e+03, 3.18043462e+03, ], 'CountWeightedFullL1Prefire_LHEHT800to1200' : [ 3.17375996e+03, 3.13660449e+03, 3.21119792e+03, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT800to1200' : [ 3.88322157e+03, 3.52160214e+03, 3.21587376e+03, 3.50136531e+03, 3.17375996e+03, 2.89712556e+03, 3.19340059e+03, 2.89335626e+03, 2.64015044e+03, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT800to1200' : [ 3.88804495e+03, 2.63699060e+03, ], 'Count_LHEHT1200to2500' : [ 466, ], 'CountWeighted_LHEHT1200to2500' : [ 4.74090338e+02, 4.68947430e+02, 4.78817551e+02, ], 'CountWeightedLHEWeightScale_LHEHT1200to2500' : [ 5.93689953e+02, 5.28381098e+02, 4.74852650e+02, 5.32857096e+02, 4.74090338e+02, 4.25970594e+02, 4.83515789e+02, 4.30073151e+02, 3.86332722e+02, ], 'CountWeightedLHEEnvelope_LHEHT1200to2500' : [ 5.94205151e+02, 3.86051682e+02, ], 'CountWeightedFull_LHEHT1200to2500' : [ 4.74090338e+02, 4.68947430e+02, 4.78817551e+02, ], 'CountWeightedFullLHEWeightScale_LHEHT1200to2500' : [ 5.93689953e+02, 5.28381098e+02, 4.74852650e+02, 5.32857096e+02, 4.74090338e+02, 4.25970594e+02, 4.83515789e+02, 4.30073151e+02, 3.86332722e+02, ], 'CountWeightedFullLHEEnvelope_LHEHT1200to2500' : [ 5.94205151e+02, 3.86051682e+02, ], 'CountWeightedL1PrefireNom_LHEHT1200to2500' : [ 4.60587610e+02, 4.55163664e+02, 4.65793625e+02, ], 'CountWeightedL1Prefire_LHEHT1200to2500' : [ 4.60587610e+02, 4.57522263e+02, 4.63633553e+02, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT1200to2500' : [ 5.76349291e+02, 5.13122581e+02, 4.61303185e+02, 5.17506941e+02, 4.60587610e+02, 4.13983141e+02, 4.69757162e+02, 4.17973713e+02, 3.75593727e+02, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT1200to2500' : [ 5.76853933e+02, 3.75313284e+02, ], 'CountWeightedFullL1PrefireNom_LHEHT1200to2500' : [ 4.60587610e+02, 4.55163664e+02, 4.65793625e+02, ], 'CountWeightedFullL1Prefire_LHEHT1200to2500' : [ 4.60587610e+02, 4.57522263e+02, 4.63633553e+02, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT1200to2500' : [ 5.76349291e+02, 5.13122581e+02, 4.61303185e+02, 5.17506941e+02, 4.60587610e+02, 4.13983141e+02, 4.69757162e+02, 4.17973713e+02, 3.75593727e+02, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT1200to2500' : [ 5.76853933e+02, 3.75313284e+02, ], 'Count_LHEHT2500toInf' : [ 5, ], 'CountWeighted_LHEHT2500toInf' : [ 6.01205313e+00, 5.64279974e+00, 6.18636942e+00, ], 'CountWeightedLHEWeightScale_LHEHT2500toInf' : [ 8.04886031e+00, 6.59817535e+00, 5.51557833e+00, 7.33578533e+00, 6.01205313e+00, 5.02505255e+00, 6.73900908e+00, 5.52198195e+00, 4.61482638e+00, ], 'CountWeightedLHEEnvelope_LHEHT2500toInf' : [ 8.04886031e+00, 4.61482638e+00, ], 'CountWeightedFull_LHEHT2500toInf' : [ 6.01205313e+00, 5.64279974e+00, 6.18636942e+00, ], 'CountWeightedFullLHEWeightScale_LHEHT2500toInf' : [ 8.04886031e+00, 6.59817535e+00, 5.51557833e+00, 7.33578533e+00, 6.01205313e+00, 5.02505255e+00, 6.73900908e+00, 5.52198195e+00, 4.61482638e+00, ], 'CountWeightedFullLHEEnvelope_LHEHT2500toInf' : [ 8.04886031e+00, 4.61482638e+00, ], 'CountWeightedL1PrefireNom_LHEHT2500toInf' : [ 5.91810614e+00, 5.54024464e+00, 6.09390342e+00, ], 'CountWeightedL1Prefire_LHEHT2500toInf' : [ 5.91810614e+00, 5.89285976e+00, 5.94133514e+00, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT2500toInf' : [ 7.92363399e+00, 6.49623507e+00, 5.43106967e+00, 7.22038150e+00, 5.91810614e+00, 4.94717240e+00, 6.63197690e+00, 5.43484992e+00, 4.54259431e+00, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT2500toInf' : [ 7.92363399e+00, 4.54259431e+00, ], 'CountWeightedFullL1PrefireNom_LHEHT2500toInf' : [ 5.91810614e+00, 5.54024464e+00, 6.09390342e+00, ], 'CountWeightedFullL1Prefire_LHEHT2500toInf' : [ 5.91810614e+00, 5.89285976e+00, 5.94133514e+00, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT2500toInf' : [ 7.92363399e+00, 6.49623507e+00, 5.43106967e+00, 7.22038150e+00, 5.91810614e+00, 4.94717240e+00, 6.63197690e+00, 5.43484992e+00, 4.54259431e+00, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT2500toInf' : [ 7.92363399e+00, 4.54259431e+00, ], }), ("nof_tree_events", 5748466), ("nof_db_events", 5748466), ("fsize_local", 29656323497), # 29.66GB, avg file size 2.47GB ("fsize_db", 276614009421), # 276.61GB, avg file size 3.29GB ("use_it", False), ("xsection", 127.52), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Apr19_woPresel_nom_all_hh_multilepton/ntuples/DY3JetsToLL_M-50"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/DY3JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_new_pmx_94X_mc2017_realistic_v14_ext1-v2/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "EWK"), ("process_name_specific", "DY3JetsToLL_M-50_ext1"), ("nof_files", 3), ("nof_db_files", 34), ("nof_events", { 'Count' : [ 1149467, ], 'CountWeighted' : [ 1.14768381e+06, 1.14790081e+06, 1.14767750e+06, ], 'CountWeightedLHEWeightScale' : [ 1.15948477e+06, 1.19627453e+06, 1.21014317e+06, 1.11187345e+06, 1.14768381e+06, 1.16140956e+06, 1.07284614e+06, 1.10789227e+06, 1.12145205e+06, ], 'CountWeightedLHEEnvelope' : [ 1.25073391e+06, 1.03743588e+06, ], 'CountWeightedFull' : [ 1.14768381e+06, 1.14790081e+06, 1.14767750e+06, ], 'CountWeightedFullLHEWeightScale' : [ 1.15948477e+06, 1.19627453e+06, 1.21014317e+06, 1.11187345e+06, 1.14768381e+06, 1.16140956e+06, 1.07284614e+06, 1.10789227e+06, 1.12145205e+06, ], 'CountWeightedFullLHEEnvelope' : [ 1.25073391e+06, 1.03743588e+06, ], 'CountWeightedL1PrefireNom' : [ 1.10752800e+06, 1.10758927e+06, 1.10755352e+06, ], 'CountWeightedL1Prefire' : [ 1.10752800e+06, 1.09777206e+06, 1.11707638e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 1.11757159e+06, 1.15425500e+06, 1.16851378e+06, 1.07182997e+06, 1.10752800e+06, 1.12159531e+06, 1.03433086e+06, 1.06923591e+06, 1.08312564e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 1.20661425e+06, 1.00111382e+06, ], 'CountWeightedFullL1PrefireNom' : [ 1.10752800e+06, 1.10758927e+06, 1.10755352e+06, ], 'CountWeightedFullL1Prefire' : [ 1.10752800e+06, 1.09777206e+06, 1.11707638e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 1.11757159e+06, 1.15425500e+06, 1.16851378e+06, 1.07182997e+06, 1.10752800e+06, 1.12159531e+06, 1.03433086e+06, 1.06923591e+06, 1.08312564e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 1.20661425e+06, 1.00111382e+06, ], 'Count_LHEHT0to70' : [ 92095, ], 'CountWeighted_LHEHT0to70' : [ 9.19321680e+04, 9.19588418e+04, 9.19204424e+04, ], 'CountWeightedLHEWeightScale_LHEHT0to70' : [ 8.72865518e+04, 9.57821094e+04, 1.01177778e+05, 8.37241230e+04, 9.19321680e+04, 9.71523496e+04, 8.08125908e+04, 8.87859746e+04, 9.38629746e+04, ], 'CountWeightedLHEEnvelope_LHEHT0to70' : [ 1.01675277e+05, 8.03328174e+04, ], 'CountWeightedFull_LHEHT0to70' : [ 9.19321680e+04, 9.19588418e+04, 9.19204424e+04, ], 'CountWeightedFullLHEWeightScale_LHEHT0to70' : [ 8.72865518e+04, 9.57821094e+04, 1.01177778e+05, 8.37241230e+04, 9.19321680e+04, 9.71523496e+04, 8.08125908e+04, 8.87859746e+04, 9.38629746e+04, ], 'CountWeightedFullLHEEnvelope_LHEHT0to70' : [ 1.01675277e+05, 8.03328174e+04, ], 'CountWeightedL1PrefireNom_LHEHT0to70' : [ 9.01861035e+04, 9.02100625e+04, 9.01762266e+04, ], 'CountWeightedL1Prefire_LHEHT0to70' : [ 9.01861035e+04, 8.97242051e+04, 9.06286602e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT0to70' : [ 8.56066836e+04, 9.39585605e+04, 9.92669580e+04, 8.21167363e+04, 9.01861035e+04, 9.53217949e+04, 7.92644805e+04, 8.71032520e+04, 9.20981055e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT0to70' : [ 9.97458594e+04, 7.88013057e+04, ], 'CountWeightedFullL1PrefireNom_LHEHT0to70' : [ 9.01861035e+04, 9.02100625e+04, 9.01762266e+04, ], 'CountWeightedFullL1Prefire_LHEHT0to70' : [ 9.01861035e+04, 8.97242051e+04, 9.06286602e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT0to70' : [ 8.56066836e+04, 9.39585605e+04, 9.92669580e+04, 8.21167363e+04, 9.01861035e+04, 9.53217949e+04, 7.92644805e+04, 8.71032520e+04, 9.20981055e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT0to70' : [ 9.97458594e+04, 7.88013057e+04, ], 'Count_LHEHT70to100' : [ 312537, ], 'CountWeighted_LHEHT70to100' : [ 3.12132828e+05, 3.12203699e+05, 3.12130062e+05, ], 'CountWeightedLHEWeightScale_LHEHT70to100' : [ 3.04913180e+05, 3.23937629e+05, 3.34681578e+05, 2.93685480e+05, 3.12132828e+05, 3.22578840e+05, 2.84482945e+05, 3.02462266e+05, 3.12659633e+05, ], 'CountWeightedLHEEnvelope_LHEHT70to100' : [ 3.39959801e+05, 2.79999098e+05, ], 'CountWeightedFull_LHEHT70to100' : [ 3.12132828e+05, 3.12203699e+05, 3.12130062e+05, ], 'CountWeightedFullLHEWeightScale_LHEHT70to100' : [ 3.04913180e+05, 3.23937629e+05, 3.34681578e+05, 2.93685480e+05, 3.12132828e+05, 3.22578840e+05, 2.84482945e+05, 3.02462266e+05, 3.12659633e+05, ], 'CountWeightedFullLHEEnvelope_LHEHT70to100' : [ 3.39959801e+05, 2.79999098e+05, ], 'CountWeightedL1PrefireNom_LHEHT70to100' : [ 3.05332574e+05, 3.05391680e+05, 3.05336652e+05, ], 'CountWeightedL1Prefire_LHEHT70to100' : [ 3.05332574e+05, 3.03538898e+05, 3.07048242e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT70to100' : [ 2.98199766e+05, 3.16882383e+05, 3.27450203e+05, 2.87216895e+05, 3.05332574e+05, 3.15606246e+05, 2.78215141e+05, 2.95870098e+05, 3.05899551e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT70to100' : [ 3.32557645e+05, 2.73880344e+05, ], 'CountWeightedFullL1PrefireNom_LHEHT70to100' : [ 3.05332574e+05, 3.05391680e+05, 3.05336652e+05, ], 'CountWeightedFullL1Prefire_LHEHT70to100' : [ 3.05332574e+05, 3.03538898e+05, 3.07048242e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT70to100' : [ 2.98199766e+05, 3.16882383e+05, 3.27450203e+05, 2.87216895e+05, 3.05332574e+05, 3.15606246e+05, 2.78215141e+05, 2.95870098e+05, 3.05899551e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT70to100' : [ 3.32557645e+05, 2.73880344e+05, ], 'Count_LHEHT100to200' : [ 581485, ], 'CountWeighted_LHEHT100to200' : [ 5.80665695e+05, 5.80694797e+05, 5.80537641e+05, ], 'CountWeightedLHEWeightScale_LHEHT100to200' : [ 5.89593344e+05, 6.03746633e+05, 6.07164531e+05, 5.66915414e+05, 5.80665695e+05, 5.84043891e+05, 5.48223266e+05, 5.61630078e+05, 5.64987078e+05, ], 'CountWeightedLHEEnvelope_LHEHT100to200' : [ 6.27926195e+05, 5.30112422e+05, ], 'CountWeightedFull_LHEHT100to200' : [ 5.80665695e+05, 5.80694797e+05, 5.80537641e+05, ], 'CountWeightedFullLHEWeightScale_LHEHT100to200' : [ 5.89593344e+05, 6.03746633e+05, 6.07164531e+05, 5.66915414e+05, 5.80665695e+05, 5.84043891e+05, 5.48223266e+05, 5.61630078e+05, 5.64987078e+05, ], 'CountWeightedFullLHEEnvelope_LHEHT100to200' : [ 6.27926195e+05, 5.30112422e+05, ], 'CountWeightedL1PrefireNom_LHEHT100to200' : [ 5.60011445e+05, 5.60001531e+05, 5.59948227e+05, ], 'CountWeightedL1Prefire_LHEHT100to200' : [ 5.60011445e+05, 5.54933766e+05, 5.64979023e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT100to200' : [ 5.68322500e+05, 5.82271289e+05, 5.85820750e+05, 5.46467250e+05, 5.60011445e+05, 5.63517125e+05, 5.28453703e+05, 5.41661945e+05, 5.45134859e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT100to200' : [ 6.05544766e+05, 5.11259219e+05, ], 'CountWeightedFullL1PrefireNom_LHEHT100to200' : [ 5.60011445e+05, 5.60001531e+05, 5.59948227e+05, ], 'CountWeightedFullL1Prefire_LHEHT100to200' : [ 5.60011445e+05, 5.54933766e+05, 5.64979023e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT100to200' : [ 5.68322500e+05, 5.82271289e+05, 5.85820750e+05, 5.46467250e+05, 5.60011445e+05, 5.63517125e+05, 5.28453703e+05, 5.41661945e+05, 5.45134859e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT100to200' : [ 6.05544766e+05, 5.11259219e+05, ], 'Count_LHEHT200to400' : [ 147428, ], 'CountWeighted_LHEHT200to400' : [ 1.47181584e+05, 1.47101705e+05, 1.47245121e+05, ], 'CountWeightedLHEWeightScale_LHEHT200to400' : [ 1.59117195e+05, 1.55503209e+05, 1.50858863e+05, 1.50585848e+05, 1.47181584e+05, 1.42792082e+05, 1.43659955e+05, 1.40424664e+05, 1.36244041e+05, ], 'CountWeightedLHEEnvelope_LHEHT200to400' : [ 1.62510596e+05, 1.33359783e+05, ], 'CountWeightedFull_LHEHT200to400' : [ 1.47181584e+05, 1.47101705e+05, 1.47245121e+05, ], 'CountWeightedFullLHEWeightScale_LHEHT200to400' : [ 1.59117195e+05, 1.55503209e+05, 1.50858863e+05, 1.50585848e+05, 1.47181584e+05, 1.42792082e+05, 1.43659955e+05, 1.40424664e+05, 1.36244041e+05, ], 'CountWeightedFullLHEEnvelope_LHEHT200to400' : [ 1.62510596e+05, 1.33359783e+05, ], 'CountWeightedL1PrefireNom_LHEHT200to400' : [ 1.37438266e+05, 1.37351504e+05, 1.37510039e+05, ], 'CountWeightedL1Prefire_LHEHT200to400' : [ 1.37438266e+05, 1.35285379e+05, 1.39603635e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT200to400' : [ 1.48394285e+05, 1.45195854e+05, 1.40997941e+05, 1.40450168e+05, 1.37438266e+05, 1.33471559e+05, 1.33999939e+05, 1.31138984e+05, 1.27361016e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT200to400' : [ 1.51627123e+05, 1.24608543e+05, ], 'CountWeightedFullL1PrefireNom_LHEHT200to400' : [ 1.37438266e+05, 1.37351504e+05, 1.37510039e+05, ], 'CountWeightedFullL1Prefire_LHEHT200to400' : [ 1.37438266e+05, 1.35285379e+05, 1.39603635e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT200to400' : [ 1.48394285e+05, 1.45195854e+05, 1.40997941e+05, 1.40450168e+05, 1.37438266e+05, 1.33471559e+05, 1.33999939e+05, 1.31138984e+05, 1.27361016e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT200to400' : [ 1.51627123e+05, 1.24608543e+05, ], 'Count_LHEHT400to600' : [ 12896, ], 'CountWeighted_LHEHT400to600' : [ 1.28726970e+04, 1.28683591e+04, 1.28681840e+04, ], 'CountWeightedLHEWeightScale_LHEHT400to600' : [ 1.49736091e+04, 1.40714366e+04, 1.32303193e+04, 1.37026641e+04, 1.28726970e+04, 1.20994058e+04, 1.26836963e+04, 1.19117914e+04, 1.11930288e+04, ], 'CountWeightedLHEEnvelope_LHEHT400to600' : [ 1.50598169e+04, 1.11301676e+04, ], 'CountWeightedFull_LHEHT400to600' : [ 1.28726970e+04, 1.28683591e+04, 1.28681840e+04, ], 'CountWeightedFullLHEWeightScale_LHEHT400to600' : [ 1.49736091e+04, 1.40714366e+04, 1.32303193e+04, 1.37026641e+04, 1.28726970e+04, 1.20994058e+04, 1.26836963e+04, 1.19117914e+04, 1.11930288e+04, ], 'CountWeightedFullLHEEnvelope_LHEHT400to600' : [ 1.50598169e+04, 1.11301676e+04, ], 'CountWeightedL1PrefireNom_LHEHT400to600' : [ 1.17944839e+04, 1.17925959e+04, 1.17894762e+04, ], 'CountWeightedL1Prefire_LHEHT400to600' : [ 1.17944839e+04, 1.15677903e+04, 1.20242253e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT400to600' : [ 1.36834482e+04, 1.28853358e+04, 1.21356750e+04, 1.25293687e+04, 1.17944839e+04, 1.11046917e+04, 1.16036248e+04, 1.09196165e+04, 1.02779917e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT400to600' : [ 1.37669233e+04, 1.02164258e+04, ], 'CountWeightedFullL1PrefireNom_LHEHT400to600' : [ 1.17944839e+04, 1.17925959e+04, 1.17894762e+04, ], 'CountWeightedFullL1Prefire_LHEHT400to600' : [ 1.17944839e+04, 1.15677903e+04, 1.20242253e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT400to600' : [ 1.36834482e+04, 1.28853358e+04, 1.21356750e+04, 1.25293687e+04, 1.17944839e+04, 1.11046917e+04, 1.16036248e+04, 1.09196165e+04, 1.02779917e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT400to600' : [ 1.37669233e+04, 1.02164258e+04, ], 'Count_LHEHT600to800' : [ 2201, ], 'CountWeighted_LHEHT600to800' : [ 2.15851395e+03, 2.15624918e+03, 2.16671878e+03, ], 'CountWeightedLHEWeightScale_LHEHT600to800' : [ 2.58877243e+03, 2.38381506e+03, 2.20453748e+03, 2.34560312e+03, 2.15851395e+03, 1.99512651e+03, 2.15040488e+03, 1.97771089e+03, 1.82711560e+03, ], 'CountWeightedLHEEnvelope_LHEHT600to800' : [ 2.59659076e+03, 1.82206967e+03, ], 'CountWeightedFull_LHEHT600to800' : [ 2.15851395e+03, 2.15624918e+03, 2.16671878e+03, ], 'CountWeightedFullLHEWeightScale_LHEHT600to800' : [ 2.58877243e+03, 2.38381506e+03, 2.20453748e+03, 2.34560312e+03, 2.15851395e+03, 1.99512651e+03, 2.15040488e+03, 1.97771089e+03, 1.82711560e+03, ], 'CountWeightedFullLHEEnvelope_LHEHT600to800' : [ 2.59659076e+03, 1.82206967e+03, ], 'CountWeightedL1PrefireNom_LHEHT600to800' : [ 2.01249203e+03, 2.00959201e+03, 2.02075812e+03, ], 'CountWeightedL1Prefire_LHEHT600to800' : [ 2.01249203e+03, 1.98224597e+03, 2.04313647e+03, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT600to800' : [ 2.40853345e+03, 2.22080225e+03, 2.05623795e+03, 2.18410809e+03, 2.01249203e+03, 1.86231476e+03, 2.00383493e+03, 1.84521646e+03, 1.70663297e+03, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT600to800' : [ 2.41591116e+03, 1.70185080e+03, ], 'CountWeightedFullL1PrefireNom_LHEHT600to800' : [ 2.01249203e+03, 2.00959201e+03, 2.02075812e+03, ], 'CountWeightedFullL1Prefire_LHEHT600to800' : [ 2.01249203e+03, 1.98224597e+03, 2.04313647e+03, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT600to800' : [ 2.40853345e+03, 2.22080225e+03, 2.05623795e+03, 2.18410809e+03, 2.01249203e+03, 1.86231476e+03, 2.00383493e+03, 1.84521646e+03, 1.70663297e+03, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT600to800' : [ 2.41591116e+03, 1.70185080e+03, ], 'Count_LHEHT800to1200' : [ 731, ], 'CountWeighted_LHEHT800to1200' : [ 7.28980270e+02, 7.29142258e+02, 7.27694710e+02, ], 'CountWeightedLHEWeightScale_LHEHT800to1200' : [ 8.94730286e+02, 8.08237000e+02, 7.35610306e+02, 8.07172256e+02, 7.28980270e+02, 6.63347969e+02, 7.36415726e+02, 6.64931282e+02, 6.04951660e+02, ], 'CountWeightedLHEEnvelope_LHEHT800to1200' : [ 8.95556168e+02, 6.04374634e+02, ], 'CountWeightedFull_LHEHT800to1200' : [ 7.28980270e+02, 7.29142258e+02, 7.27694710e+02, ], 'CountWeightedFullLHEWeightScale_LHEHT800to1200' : [ 8.94730286e+02, 8.08237000e+02, 7.35610306e+02, 8.07172256e+02, 7.28980270e+02, 6.63347969e+02, 7.36415726e+02, 6.64931282e+02, 6.04951660e+02, ], 'CountWeightedFullLHEEnvelope_LHEHT800to1200' : [ 8.95556168e+02, 6.04374634e+02, ], 'CountWeightedL1PrefireNom_LHEHT800to1200' : [ 6.90153358e+02, 6.89915405e+02, 6.89203796e+02, ], 'CountWeightedL1Prefire_LHEHT800to1200' : [ 6.90153358e+02, 6.82047577e+02, 6.98451981e+02, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT800to1200' : [ 8.45693672e+02, 7.65028694e+02, 6.97154625e+02, 7.63135117e+02, 6.90153358e+02, 6.28774750e+02, 6.96385017e+02, 6.29618683e+02, 5.73494637e+02, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT800to1200' : [ 8.46448509e+02, 5.72980278e+02, ], 'CountWeightedFullL1PrefireNom_LHEHT800to1200' : [ 6.90153358e+02, 6.89915405e+02, 6.89203796e+02, ], 'CountWeightedFullL1Prefire_LHEHT800to1200' : [ 6.90153358e+02, 6.82047577e+02, 6.98451981e+02, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT800to1200' : [ 8.45693672e+02, 7.65028694e+02, 6.97154625e+02, 7.63135117e+02, 6.90153358e+02, 6.28774750e+02, 6.96385017e+02, 6.29618683e+02, 5.73494637e+02, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT800to1200' : [ 8.46448509e+02, 5.72980278e+02, ], 'Count_LHEHT1200to2500' : [ 94, ], 'CountWeighted_LHEHT1200to2500' : [ 9.34415107e+01, 9.16657443e+01, 9.48984032e+01, ], 'CountWeightedLHEWeightScale_LHEHT1200to2500' : [ 1.17532846e+02, 1.04000159e+02, 9.29878049e+01, 1.05628394e+02, 9.34415107e+01, 8.35280790e+01, 9.59270315e+01, 8.48399997e+01, 7.58242655e+01, ], 'CountWeightedLHEEnvelope_LHEHT1200to2500' : [ 1.17532846e+02, 7.58242655e+01, ], 'CountWeightedFull_LHEHT1200to2500' : [ 9.34415107e+01, 9.16657443e+01, 9.48984032e+01, ], 'CountWeightedFullLHEWeightScale_LHEHT1200to2500' : [ 1.17532846e+02, 1.04000159e+02, 9.29878049e+01, 1.05628394e+02, 9.34415107e+01, 8.35280790e+01, 9.59270315e+01, 8.48399997e+01, 7.58242655e+01, ], 'CountWeightedFullLHEEnvelope_LHEHT1200to2500' : [ 1.17532846e+02, 7.58242655e+01, ], 'CountWeightedL1PrefireNom_LHEHT1200to2500' : [ 9.13242545e+01, 8.97675281e+01, 9.25629311e+01, ], 'CountWeightedL1Prefire_LHEHT1200to2500' : [ 9.13242545e+01, 9.08428283e+01, 9.18011947e+01, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT1200to2500' : [ 1.14795385e+02, 1.01599151e+02, 9.08616834e+01, 1.03217078e+02, 9.13242545e+01, 8.16512594e+01, 9.37764349e+01, 8.29498515e+01, 7.41471758e+01, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT1200to2500' : [ 1.14795385e+02, 7.41471758e+01, ], 'CountWeightedFullL1PrefireNom_LHEHT1200to2500' : [ 9.13242545e+01, 8.97675281e+01, 9.25629311e+01, ], 'CountWeightedFullL1Prefire_LHEHT1200to2500' : [ 9.13242545e+01, 9.08428283e+01, 9.18011947e+01, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT1200to2500' : [ 1.14795385e+02, 1.01599151e+02, 9.08616834e+01, 1.03217078e+02, 9.13242545e+01, 8.16512594e+01, 9.37764349e+01, 8.29498515e+01, 7.41471758e+01, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT1200to2500' : [ 1.14795385e+02, 7.41471758e+01, ], }), ("nof_tree_events", 1149467), ("nof_db_events", 1149467), ("fsize_local", 5928585042), # 5.93GB, avg file size 1.98GB ("fsize_db", 55739563882), # 55.74GB, avg file size 1.64GB ("use_it", False), ("xsection", 127.52), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Apr19_woPresel_nom_all_hh_multilepton/ntuples/DY3JetsToLL_M-50_ext1"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/DY4JetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_v2_94X_mc2017_realistic_v14-v2/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "EWK"), ("process_name_specific", "DY4JetsToLL_M-50"), ("nof_files", 15), ("nof_db_files", 75), ("nof_events", { 'Count' : [ 4328648, ], 'CountWeighted' : [ 4.31793192e+06, 4.31738181e+06, 4.31730011e+06, ], 'CountWeightedLHEWeightScale' : [ 4.73502862e+06, 4.56081678e+06, 4.36843592e+06, 4.48019108e+06, 4.31793192e+06, 4.13749345e+06, 4.27451455e+06, 4.12173642e+06, 3.95096219e+06, ], 'CountWeightedLHEEnvelope' : [ 4.86429112e+06, 3.83609088e+06, ], 'CountWeightedFull' : [ 4.31793192e+06, 4.31738181e+06, 4.31730011e+06, ], 'CountWeightedFullLHEWeightScale' : [ 4.73502862e+06, 4.56081678e+06, 4.36843592e+06, 4.48019108e+06, 4.31793192e+06, 4.13749345e+06, 4.27451455e+06, 4.12173642e+06, 3.95096219e+06, ], 'CountWeightedFullLHEEnvelope' : [ 4.86429112e+06, 3.83609088e+06, ], 'CountWeightedL1PrefireNom' : [ 4.08497391e+06, 4.08451927e+06, 4.08476114e+06, ], 'CountWeightedL1Prefire' : [ 4.08497391e+06, 4.03087836e+06, 4.13852994e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 4.47038225e+06, 4.31289984e+06, 4.13620117e+06, 4.23172178e+06, 4.08497391e+06, 3.91917931e+06, 4.03897912e+06, 3.90077459e+06, 3.74378839e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 4.59544497e+06, 3.63258117e+06, ], 'CountWeightedFullL1PrefireNom' : [ 4.08497391e+06, 4.08451927e+06, 4.08476114e+06, ], 'CountWeightedFullL1Prefire' : [ 4.08497391e+06, 4.03087836e+06, 4.13852994e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 4.47038225e+06, 4.31289984e+06, 4.13620117e+06, 4.23172178e+06, 4.08497391e+06, 3.91917931e+06, 4.03897912e+06, 3.90077459e+06, 3.74378839e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 4.59544497e+06, 3.63258117e+06, ], 'Count_LHEHT0to70' : [ 7378, ], 'CountWeighted_LHEHT0to70' : [ 7.35585159e+03, 7.36941190e+03, 7.34448721e+03, ], 'CountWeightedLHEWeightScale_LHEHT0to70' : [ 7.58236493e+03, 8.00165158e+03, 8.20315128e+03, 6.96632791e+03, 7.35585159e+03, 7.54416873e+03, 6.46366910e+03, 6.82904135e+03, 7.00644409e+03, ], 'CountWeightedLHEEnvelope_LHEHT0to70' : [ 8.36256027e+03, 6.34958331e+03, ], 'CountWeightedFull_LHEHT0to70' : [ 7.35585159e+03, 7.36941190e+03, 7.34448721e+03, ], 'CountWeightedFullLHEWeightScale_LHEHT0to70' : [ 7.58236493e+03, 8.00165158e+03, 8.20315128e+03, 6.96632791e+03, 7.35585159e+03, 7.54416873e+03, 6.46366910e+03, 6.82904135e+03, 7.00644409e+03, ], 'CountWeightedFullLHEEnvelope_LHEHT0to70' : [ 8.36256027e+03, 6.34958331e+03, ], 'CountWeightedL1PrefireNom_LHEHT0to70' : [ 7.17686438e+03, 7.19097256e+03, 7.16539240e+03, ], 'CountWeightedL1Prefire_LHEHT0to70' : [ 7.17686438e+03, 7.13039468e+03, 7.22165997e+03, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT0to70' : [ 7.39496658e+03, 7.80649554e+03, 8.00501273e+03, 6.79452771e+03, 7.17686438e+03, 7.36239801e+03, 6.30460376e+03, 6.66325180e+03, 6.83803793e+03, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT0to70' : [ 8.15907211e+03, 6.19452750e+03, ], 'CountWeightedFullL1PrefireNom_LHEHT0to70' : [ 7.17686438e+03, 7.19097256e+03, 7.16539240e+03, ], 'CountWeightedFullL1Prefire_LHEHT0to70' : [ 7.17686438e+03, 7.13039468e+03, 7.22165997e+03, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT0to70' : [ 7.39496658e+03, 7.80649554e+03, 8.00501273e+03, 6.79452771e+03, 7.17686438e+03, 7.36239801e+03, 6.30460376e+03, 6.66325180e+03, 6.83803793e+03, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT0to70' : [ 8.15907211e+03, 6.19452750e+03, ], 'Count_LHEHT70to100' : [ 159448, ], 'CountWeighted_LHEHT70to100' : [ 1.59244163e+05, 1.59202065e+05, 1.59318644e+05, ], 'CountWeightedLHEWeightScale_LHEHT70to100' : [ 1.63524909e+05, 1.66984021e+05, 1.66900118e+05, 1.55887015e+05, 1.59244163e+05, 1.59204070e+05, 1.49648068e+05, 1.52923230e+05, 1.52917152e+05, ], 'CountWeightedLHEEnvelope_LHEHT70to100' : [ 1.76052688e+05, 1.41644479e+05, ], 'CountWeightedFull_LHEHT70to100' : [ 1.59244163e+05, 1.59202065e+05, 1.59318644e+05, ], 'CountWeightedFullLHEWeightScale_LHEHT70to100' : [ 1.63524909e+05, 1.66984021e+05, 1.66900118e+05, 1.55887015e+05, 1.59244163e+05, 1.59204070e+05, 1.49648068e+05, 1.52923230e+05, 1.52917152e+05, ], 'CountWeightedFullLHEEnvelope_LHEHT70to100' : [ 1.76052688e+05, 1.41644479e+05, ], 'CountWeightedL1PrefireNom_LHEHT70to100' : [ 1.55673226e+05, 1.55629283e+05, 1.55748135e+05, ], 'CountWeightedL1Prefire_LHEHT70to100' : [ 1.55673226e+05, 1.54736679e+05, 1.56567308e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT70to100' : [ 1.59811205e+05, 1.63238151e+05, 1.63189539e+05, 1.52348292e+05, 1.55673226e+05, 1.55665758e+05, 1.46252431e+05, 1.49495369e+05, 1.49519743e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT70to100' : [ 1.72091051e+05, 1.38470479e+05, ], 'CountWeightedFullL1PrefireNom_LHEHT70to100' : [ 1.55673226e+05, 1.55629283e+05, 1.55748135e+05, ], 'CountWeightedFullL1Prefire_LHEHT70to100' : [ 1.55673226e+05, 1.54736679e+05, 1.56567308e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT70to100' : [ 1.59811205e+05, 1.63238151e+05, 1.63189539e+05, 1.52348292e+05, 1.55673226e+05, 1.55665758e+05, 1.46252431e+05, 1.49495369e+05, 1.49519743e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT70to100' : [ 1.72091051e+05, 1.38470479e+05, ], 'Count_LHEHT100to200' : [ 1928292, ], 'CountWeighted_LHEHT100to200' : [ 1.92510845e+06, 1.92496556e+06, 1.92510608e+06, ], 'CountWeightedLHEWeightScale_LHEHT100to200' : [ 2.03493948e+06, 2.00542361e+06, 1.95404279e+06, 1.95311123e+06, 1.92510845e+06, 1.87600523e+06, 1.88599191e+06, 1.85923022e+06, 1.81198994e+06, ], 'CountWeightedLHEEnvelope_LHEHT100to200' : [ 2.11843856e+06, 1.73666915e+06, ], 'CountWeightedFull_LHEHT100to200' : [ 1.92510845e+06, 1.92496556e+06, 1.92510608e+06, ], 'CountWeightedFullLHEWeightScale_LHEHT100to200' : [ 2.03493948e+06, 2.00542361e+06, 1.95404279e+06, 1.95311123e+06, 1.92510845e+06, 1.87600523e+06, 1.88599191e+06, 1.85923022e+06, 1.81198994e+06, ], 'CountWeightedFullLHEEnvelope_LHEHT100to200' : [ 2.11843856e+06, 1.73666915e+06, ], 'CountWeightedL1PrefireNom_LHEHT100to200' : [ 1.85852111e+06, 1.85839145e+06, 1.85859127e+06, ], 'CountWeightedL1Prefire_LHEHT100to200' : [ 1.85852111e+06, 1.84171112e+06, 1.87478152e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT100to200' : [ 1.96372863e+06, 1.93617881e+06, 1.88728441e+06, 1.88464827e+06, 1.85852111e+06, 1.81180809e+06, 1.81978567e+06, 1.79483670e+06, 1.74989572e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT100to200' : [ 2.04485712e+06, 1.67670955e+06, ], 'CountWeightedFullL1PrefireNom_LHEHT100to200' : [ 1.85852111e+06, 1.85839145e+06, 1.85859127e+06, ], 'CountWeightedFullL1Prefire_LHEHT100to200' : [ 1.85852111e+06, 1.84171112e+06, 1.87478152e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT100to200' : [ 1.96372863e+06, 1.93617881e+06, 1.88728441e+06, 1.88464827e+06, 1.85852111e+06, 1.81180809e+06, 1.81978567e+06, 1.79483670e+06, 1.74989572e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT100to200' : [ 2.04485712e+06, 1.67670955e+06, ], 'Count_LHEHT200to400' : [ 1711867, ], 'CountWeighted_LHEHT200to400' : [ 1.70708374e+06, 1.70727354e+06, 1.70675342e+06, ], 'CountWeightedLHEWeightScale_LHEHT200to400' : [ 1.89948520e+06, 1.80522353e+06, 1.71108210e+06, 1.79609848e+06, 1.70708374e+06, 1.61812677e+06, 1.71274334e+06, 1.62796817e+06, 1.54317823e+06, ], 'CountWeightedLHEEnvelope_LHEHT200to400' : [ 1.92951618e+06, 1.51728448e+06, ], 'CountWeightedFull_LHEHT200to400' : [ 1.70708374e+06, 1.70727354e+06, 1.70675342e+06, ], 'CountWeightedFullLHEWeightScale_LHEHT200to400' : [ 1.89948520e+06, 1.80522353e+06, 1.71108210e+06, 1.79609848e+06, 1.70708374e+06, 1.61812677e+06, 1.71274334e+06, 1.62796817e+06, 1.54317823e+06, ], 'CountWeightedFullLHEEnvelope_LHEHT200to400' : [ 1.92951618e+06, 1.51728448e+06, ], 'CountWeightedL1PrefireNom_LHEHT200to400' : [ 1.59335195e+06, 1.59341981e+06, 1.59320491e+06, ], 'CountWeightedL1Prefire_LHEHT200to400' : [ 1.59335195e+06, 1.56742958e+06, 1.61921437e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT200to400' : [ 1.77071392e+06, 1.68486305e+06, 1.59856552e+06, 1.67442150e+06, 1.59335195e+06, 1.51181117e+06, 1.59676609e+06, 1.51956938e+06, 1.44184470e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT200to400' : [ 1.79933083e+06, 1.41713888e+06, ], 'CountWeightedFullL1PrefireNom_LHEHT200to400' : [ 1.59335195e+06, 1.59341981e+06, 1.59320491e+06, ], 'CountWeightedFullL1Prefire_LHEHT200to400' : [ 1.59335195e+06, 1.56742958e+06, 1.61921437e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT200to400' : [ 1.77071392e+06, 1.68486305e+06, 1.59856552e+06, 1.67442150e+06, 1.59335195e+06, 1.51181117e+06, 1.59676609e+06, 1.51956938e+06, 1.44184470e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT200to400' : [ 1.79933083e+06, 1.41713888e+06, ], 'Count_LHEHT400to600' : [ 361573, ], 'CountWeighted_LHEHT400to600' : [ 3.60021141e+05, 3.59990088e+05, 3.60066375e+05, ], 'CountWeightedLHEWeightScale_LHEHT400to600' : [ 4.30743850e+05, 3.96748721e+05, 3.66775477e+05, 3.90973166e+05, 3.60021141e+05, 3.32754475e+05, 3.59559385e+05, 3.31020881e+05, 3.05882648e+05, ], 'CountWeightedLHEEnvelope_LHEHT400to600' : [ 4.32808088e+05, 3.04392559e+05, ], 'CountWeightedFull_LHEHT400to600' : [ 3.60021141e+05, 3.59990088e+05, 3.60066375e+05, ], 'CountWeightedFullLHEWeightScale_LHEHT400to600' : [ 4.30743850e+05, 3.96748721e+05, 3.66775477e+05, 3.90973166e+05, 3.60021141e+05, 3.32754475e+05, 3.59559385e+05, 3.31020881e+05, 3.05882648e+05, ], 'CountWeightedFullLHEEnvelope_LHEHT400to600' : [ 4.32808088e+05, 3.04392559e+05, ], 'CountWeightedL1PrefireNom_LHEHT400to600' : [ 3.25344729e+05, 3.25299412e+05, 3.25406541e+05, ], 'CountWeightedL1Prefire_LHEHT400to600' : [ 3.25344729e+05, 3.17966033e+05, 3.32819242e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT400to600' : [ 3.88268297e+05, 3.58407725e+05, 3.31943029e+05, 3.52542801e+05, 3.25344729e+05, 3.01258621e+05, 3.24310400e+05, 2.99223656e+05, 2.77010820e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT400to600' : [ 3.90201424e+05, 2.75610579e+05, ], 'CountWeightedFullL1PrefireNom_LHEHT400to600' : [ 3.25344729e+05, 3.25299412e+05, 3.25406541e+05, ], 'CountWeightedFullL1Prefire_LHEHT400to600' : [ 3.25344729e+05, 3.17966033e+05, 3.32819242e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT400to600' : [ 3.88268297e+05, 3.58407725e+05, 3.31943029e+05, 3.52542801e+05, 3.25344729e+05, 3.01258621e+05, 3.24310400e+05, 2.99223656e+05, 2.77010820e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT400to600' : [ 3.90201424e+05, 2.75610579e+05, ], 'Count_LHEHT600to800' : [ 101120, ], 'CountWeighted_LHEHT600to800' : [ 1.00554608e+05, 1.00539860e+05, 1.00575627e+05, ], 'CountWeightedLHEWeightScale_LHEHT600to800' : [ 1.24404268e+05, 1.12520940e+05, 1.02459283e+05, 1.11198114e+05, 1.00554608e+05, 9.15483745e+04, 1.00784329e+05, 9.11197227e+04, 8.29434810e+04, ], 'CountWeightedLHEEnvelope_LHEHT600to800' : [ 1.24686680e+05, 8.27595234e+04, ], 'CountWeightedFull_LHEHT600to800' : [ 1.00554608e+05, 1.00539860e+05, 1.00575627e+05, ], 'CountWeightedFullLHEWeightScale_LHEHT600to800' : [ 1.24404268e+05, 1.12520940e+05, 1.02459283e+05, 1.11198114e+05, 1.00554608e+05, 9.15483745e+04, 1.00784329e+05, 9.11197227e+04, 8.29434810e+04, ], 'CountWeightedFullLHEEnvelope_LHEHT600to800' : [ 1.24686680e+05, 8.27595234e+04, ], 'CountWeightedL1PrefireNom_LHEHT600to800' : [ 9.08471406e+04, 9.08370610e+04, 9.08675825e+04, ], 'CountWeightedL1Prefire_LHEHT600to800' : [ 9.08471406e+04, 8.88210107e+04, 9.29062837e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT600to800' : [ 1.12020910e+05, 1.01585994e+05, 9.27088447e+04, 1.00202324e+05, 9.08471406e+04, 8.28939800e+04, 9.08749775e+04, 8.23733535e+04, 7.51473706e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT600to800' : [ 1.12287152e+05, 7.49731372e+04, ], 'CountWeightedFullL1PrefireNom_LHEHT600to800' : [ 9.08471406e+04, 9.08370610e+04, 9.08675825e+04, ], 'CountWeightedFullL1Prefire_LHEHT600to800' : [ 9.08471406e+04, 8.88210107e+04, 9.29062837e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT600to800' : [ 1.12020910e+05, 1.01585994e+05, 9.27088447e+04, 1.00202324e+05, 9.08471406e+04, 8.28939800e+04, 9.08749775e+04, 8.23733535e+04, 7.51473706e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT600to800' : [ 1.12287152e+05, 7.49731372e+04, ], 'Count_LHEHT800to1200' : [ 47798, ], 'CountWeighted_LHEHT800to1200' : [ 4.74594895e+04, 4.74761250e+04, 4.74575391e+04, ], 'CountWeightedLHEWeightScale_LHEHT800to1200' : [ 6.00644211e+04, 5.34679138e+04, 4.80317585e+04, 5.33224795e+04, 4.74594895e+04, 4.26302993e+04, 4.79951926e+04, 4.27127639e+04, 3.83620291e+04, ], 'CountWeightedLHEEnvelope_LHEHT800to1200' : [ 6.01444758e+04, 3.83113787e+04, ], 'CountWeightedFull_LHEHT800to1200' : [ 4.74594895e+04, 4.74761250e+04, 4.74575391e+04, ], 'CountWeightedFullLHEWeightScale_LHEHT800to1200' : [ 6.00644211e+04, 5.34679138e+04, 4.80317585e+04, 5.33224795e+04, 4.74594895e+04, 4.26302993e+04, 4.79951926e+04, 4.27127639e+04, 3.83620291e+04, ], 'CountWeightedFullLHEEnvelope_LHEHT800to1200' : [ 6.01444758e+04, 3.83113787e+04, ], 'CountWeightedL1PrefireNom_LHEHT800to1200' : [ 4.35776321e+04, 4.35981113e+04, 4.35696289e+04, ], 'CountWeightedL1Prefire_LHEHT800to1200' : [ 4.35776321e+04, 4.27609019e+04, 4.44051792e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT800to1200' : [ 5.49797080e+04, 4.90578501e+04, 4.41606042e+04, 4.88467368e+04, 4.35776321e+04, 3.92227727e+04, 4.39964705e+04, 3.92446111e+04, 3.53177241e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT800to1200' : [ 5.50520027e+04, 3.52734937e+04, ], 'CountWeightedFullL1PrefireNom_LHEHT800to1200' : [ 4.35776321e+04, 4.35981113e+04, 4.35696289e+04, ], 'CountWeightedFullL1Prefire_LHEHT800to1200' : [ 4.35776321e+04, 4.27609019e+04, 4.44051792e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT800to1200' : [ 5.49797080e+04, 4.90578501e+04, 4.41606042e+04, 4.88467368e+04, 4.35776321e+04, 3.92227727e+04, 4.39964705e+04, 3.92446111e+04, 3.53177241e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT800to1200' : [ 5.50520027e+04, 3.52734937e+04, ], 'Count_LHEHT1200to2500' : [ 10963, ], 'CountWeighted_LHEHT1200to2500' : [ 1.07949797e+04, 1.07962844e+04, 1.08001611e+04, ], 'CountWeightedLHEWeightScale_LHEHT1200to2500' : [ 1.40232219e+04, 1.22043140e+04, 1.07527140e+04, 1.24042419e+04, 1.07949797e+04, 9.51111511e+03, 1.11167201e+04, 9.67436444e+03, 8.52357584e+03, ], 'CountWeightedLHEEnvelope_LHEHT1200to2500' : [ 1.40289273e+04, 8.52029852e+03, ], 'CountWeightedFull_LHEHT1200to2500' : [ 1.07949797e+04, 1.07962844e+04, 1.08001611e+04, ], 'CountWeightedFullLHEWeightScale_LHEHT1200to2500' : [ 1.40232219e+04, 1.22043140e+04, 1.07527140e+04, 1.24042419e+04, 1.07949797e+04, 9.51111511e+03, 1.11167201e+04, 9.67436444e+03, 8.52357584e+03, ], 'CountWeightedFullLHEEnvelope_LHEHT1200to2500' : [ 1.40289273e+04, 8.52029852e+03, ], 'CountWeightedL1PrefireNom_LHEHT1200to2500' : [ 1.01909872e+04, 1.01899385e+04, 1.02000776e+04, ], 'CountWeightedL1Prefire_LHEHT1200to2500' : [ 1.01909872e+04, 1.00597559e+04, 1.03226766e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT1200to2500' : [ 1.32107374e+04, 1.15146582e+04, 1.01581852e+04, 1.16926844e+04, 1.01909872e+04, 8.99041827e+03, 1.04845081e+04, 9.13771039e+03, 8.06093524e+03, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT1200to2500' : [ 1.32165189e+04, 8.05766376e+03, ], 'CountWeightedFullL1PrefireNom_LHEHT1200to2500' : [ 1.01909872e+04, 1.01899385e+04, 1.02000776e+04, ], 'CountWeightedFullL1Prefire_LHEHT1200to2500' : [ 1.01909872e+04, 1.00597559e+04, 1.03226766e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT1200to2500' : [ 1.32107374e+04, 1.15146582e+04, 1.01581852e+04, 1.16926844e+04, 1.01909872e+04, 8.99041827e+03, 1.04845081e+04, 9.13771039e+03, 8.06093524e+03, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT1200to2500' : [ 1.32165189e+04, 8.05766376e+03, ], 'Count_LHEHT2500toInf' : [ 209, ], 'CountWeighted_LHEHT2500toInf' : [ 2.00099814e+02, 1.97846551e+02, 2.03826295e+02, ], 'CountWeightedLHEWeightScale_LHEHT2500toInf' : [ 2.66953596e+02, 2.23908478e+02, 1.90978898e+02, 2.38507781e+02, 2.00099814e+02, 1.70709124e+02, 2.15450076e+02, 1.80799507e+02, 1.54270479e+02, ], 'CountWeightedLHEEnvelope_LHEHT2500toInf' : [ 2.66953596e+02, 1.54270479e+02, ], 'CountWeightedFull_LHEHT2500toInf' : [ 2.00099814e+02, 1.97846551e+02, 2.03826295e+02, ], 'CountWeightedFullLHEWeightScale_LHEHT2500toInf' : [ 2.66953596e+02, 2.23908478e+02, 1.90978898e+02, 2.38507781e+02, 2.00099814e+02, 1.70709124e+02, 2.15450076e+02, 1.80799507e+02, 1.54270479e+02, ], 'CountWeightedFullLHEEnvelope_LHEHT2500toInf' : [ 2.66953596e+02, 1.54270479e+02, ], 'CountWeightedL1PrefireNom_LHEHT2500toInf' : [ 1.92886859e+02, 1.90340626e+02, 1.96909880e+02, ], 'CountWeightedL1Prefire_LHEHT2500toInf' : [ 1.92886859e+02, 1.91158042e+02, 1.94550782e+02, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT2500toInf' : [ 2.56899339e+02, 2.15668455e+02, 1.84098374e+02, 2.29708973e+02, 1.92886859e+02, 1.64684765e+02, 2.07654514e+02, 1.74407255e+02, 1.48930407e+02, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT2500toInf' : [ 2.56899339e+02, 1.48930407e+02, ], 'CountWeightedFullL1PrefireNom_LHEHT2500toInf' : [ 1.92886859e+02, 1.90340626e+02, 1.96909880e+02, ], 'CountWeightedFullL1Prefire_LHEHT2500toInf' : [ 1.92886859e+02, 1.91158042e+02, 1.94550782e+02, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT2500toInf' : [ 2.56899339e+02, 2.15668455e+02, 1.84098374e+02, 2.29708973e+02, 1.92886859e+02, 1.64684765e+02, 2.07654514e+02, 1.74407255e+02, 1.48930407e+02, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT2500toInf' : [ 2.56899339e+02, 1.48930407e+02, ], }), ("nof_tree_events", 4328648), ("nof_db_events", 4328648), ("fsize_local", 28121020857), # 28.12GB, avg file size 1.87GB ("fsize_db", 229309195986), # 229.31GB, avg file size 3.06GB ("use_it", False), ("xsection", 50.039), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Apr19_woPresel_nom_all_hh_multilepton/ntuples/DY4JetsToLL_M-50"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/DYJetsToLL_M-50_HT-70to100_TuneCP5_13TeV-madgraphMLM-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "EWK"), ("process_name_specific", "DYJetsToLL_M50_HT70to100"), ("nof_files", 19), ("nof_db_files", 207), ("nof_events", { 'Count' : [ 9344037, ], 'CountWeighted' : [ 9.33437200e+06, 9.33376556e+06, 9.33437500e+06, ], 'CountWeightedLHEWeightScale' : [ 8.98388438e+06, 9.60435753e+06, 1.00168869e+07, 8.72873684e+06, 9.33437200e+06, 9.73720688e+06, 8.51871047e+06, 9.11179412e+06, 9.50705778e+06, ], 'CountWeightedLHEEnvelope' : [ 1.00377517e+07, 8.50558084e+06, ], 'CountWeightedFull' : [ 9.33437200e+06, 9.33376556e+06, 9.33437500e+06, ], 'CountWeightedFullLHEWeightScale' : [ 8.98388438e+06, 9.60435753e+06, 1.00168869e+07, 8.72873684e+06, 9.33437200e+06, 9.73720688e+06, 8.51871047e+06, 9.11179412e+06, 9.50705778e+06, ], 'CountWeightedFullLHEEnvelope' : [ 1.00377517e+07, 8.50558084e+06, ], 'CountWeightedL1PrefireNom' : [ 9.06015819e+06, 9.05954409e+06, 9.06047756e+06, ], 'CountWeightedL1Prefire' : [ 9.06015819e+06, 8.99221803e+06, 9.12652875e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 8.71775247e+06, 9.32267572e+06, 9.72566769e+06, 8.46981925e+06, 9.06015819e+06, 9.45374003e+06, 8.26574606e+06, 8.84391247e+06, 9.22998197e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 9.74509256e+06, 8.25367612e+06, ], 'CountWeightedFullL1PrefireNom' : [ 9.06015819e+06, 9.05954409e+06, 9.06047756e+06, ], 'CountWeightedFullL1Prefire' : [ 9.06015819e+06, 8.99221803e+06, 9.12652875e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 8.71775247e+06, 9.32267572e+06, 9.72566769e+06, 8.46981925e+06, 9.06015819e+06, 9.45374003e+06, 8.26574606e+06, 8.84391247e+06, 9.22998197e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 9.74509256e+06, 8.25367612e+06, ], 'Count_LHENjet1' : [ 2443008, ], 'CountWeighted_LHENjet1' : [ 2.43946384e+06, 2.43998241e+06, 2.43920000e+06, ], 'CountWeightedLHEWeightScale_LHENjet1' : [ 2.36699125e+06, 2.49279152e+06, 2.58296484e+06, 2.31535866e+06, 2.43946384e+06, 2.52855210e+06, 2.27255349e+06, 2.39527820e+06, 2.48344317e+06, ], 'CountWeightedLHEEnvelope_LHENjet1' : [ 2.57766964e+06, 2.28055745e+06, ], 'CountWeightedFull_LHENjet1' : [ 2.43946384e+06, 2.43998241e+06, 2.43920000e+06, ], 'CountWeightedFullLHEWeightScale_LHENjet1' : [ 2.36699125e+06, 2.49279152e+06, 2.58296484e+06, 2.31535866e+06, 2.43946384e+06, 2.52855210e+06, 2.27255349e+06, 2.39527820e+06, 2.48344317e+06, ], 'CountWeightedFullLHEEnvelope_LHENjet1' : [ 2.57766964e+06, 2.28055745e+06, ], 'CountWeightedL1PrefireNom_LHENjet1' : [ 2.33745871e+06, 2.33779529e+06, 2.33728969e+06, ], 'CountWeightedL1Prefire_LHENjet1' : [ 2.33745871e+06, 2.31386013e+06, 2.36105297e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet1' : [ 2.26725348e+06, 2.38858432e+06, 2.47572333e+06, 2.21776502e+06, 2.33745871e+06, 2.42354077e+06, 2.17673794e+06, 2.29509478e+06, 2.38028179e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet1' : [ 2.47033338e+06, 2.18468965e+06, ], 'CountWeightedFullL1PrefireNom_LHENjet1' : [ 2.33745871e+06, 2.33779529e+06, 2.33728969e+06, ], 'CountWeightedFullL1Prefire_LHENjet1' : [ 2.33745871e+06, 2.31386013e+06, 2.36105297e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet1' : [ 2.26725348e+06, 2.38858432e+06, 2.47572333e+06, 2.21776502e+06, 2.33745871e+06, 2.42354077e+06, 2.17673794e+06, 2.29509478e+06, 2.38028179e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet1' : [ 2.47033338e+06, 2.18468965e+06, ], 'Count_LHENjet2' : [ 4863556, ], 'CountWeighted_LHENjet2' : [ 4.85791170e+06, 4.85762059e+06, 4.85830161e+06, ], 'CountWeightedLHEWeightScale_LHENjet2' : [ 4.62546370e+06, 4.99851312e+06, 5.25451264e+06, 4.49465092e+06, 4.85791170e+06, 5.10730372e+06, 4.38702097e+06, 4.74227088e+06, 4.98619819e+06, ], 'CountWeightedLHEEnvelope_LHENjet2' : [ 5.24165116e+06, 4.39925736e+06, ], 'CountWeightedFull_LHENjet2' : [ 4.85791170e+06, 4.85762059e+06, 4.85830161e+06, ], 'CountWeightedFullLHEWeightScale_LHENjet2' : [ 4.62546370e+06, 4.99851312e+06, 5.25451264e+06, 4.49465092e+06, 4.85791170e+06, 5.10730372e+06, 4.38702097e+06, 4.74227088e+06, 4.98619819e+06, ], 'CountWeightedFullLHEEnvelope_LHENjet2' : [ 5.24165116e+06, 4.39925736e+06, ], 'CountWeightedL1PrefireNom_LHENjet2' : [ 4.73005208e+06, 4.72975552e+06, 4.73046802e+06, ], 'CountWeightedL1Prefire_LHENjet2' : [ 4.73005208e+06, 4.69739836e+06, 4.76171530e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet2' : [ 4.50259131e+06, 4.86695900e+06, 5.11725631e+06, 4.37525075e+06, 4.73005208e+06, 4.97388778e+06, 4.27048000e+06, 4.61745877e+06, 4.85594414e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet2' : [ 5.10425950e+06, 4.28279083e+06, ], 'CountWeightedFullL1PrefireNom_LHENjet2' : [ 4.73005208e+06, 4.72975552e+06, 4.73046802e+06, ], 'CountWeightedFullL1Prefire_LHENjet2' : [ 4.73005208e+06, 4.69739836e+06, 4.76171530e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet2' : [ 4.50259131e+06, 4.86695900e+06, 5.11725631e+06, 4.37525075e+06, 4.73005208e+06, 4.97388778e+06, 4.27048000e+06, 4.61745877e+06, 4.85594414e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet2' : [ 5.10425950e+06, 4.28279083e+06, ], 'Count_LHENjet3' : [ 1906985, ], 'CountWeighted_LHENjet3' : [ 1.90564523e+06, 1.90536693e+06, 1.90594702e+06, ], 'CountWeightedLHEWeightScale_LHENjet3' : [ 1.85911177e+06, 1.97630748e+06, 2.04267120e+06, 1.79192362e+06, 1.90564523e+06, 1.97023834e+06, 1.73685461e+06, 1.84776730e+06, 1.91087405e+06, ], 'CountWeightedLHEEnvelope_LHENjet3' : [ 2.07479842e+06, 1.70954220e+06, ], 'CountWeightedFull_LHENjet3' : [ 1.90564523e+06, 1.90536693e+06, 1.90594702e+06, ], 'CountWeightedFullLHEWeightScale_LHENjet3' : [ 1.85911177e+06, 1.97630748e+06, 2.04267120e+06, 1.79192362e+06, 1.90564523e+06, 1.97023834e+06, 1.73685461e+06, 1.84776730e+06, 1.91087405e+06, ], 'CountWeightedFullLHEEnvelope_LHENjet3' : [ 2.07479842e+06, 1.70954220e+06, ], 'CountWeightedL1PrefireNom_LHENjet3' : [ 1.86443892e+06, 1.86408823e+06, 1.86475151e+06, ], 'CountWeightedL1Prefire_LHENjet3' : [ 1.86443892e+06, 1.85354907e+06, 1.87483242e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet3' : [ 1.81845503e+06, 1.93355822e+06, 1.99883917e+06, 1.75274681e+06, 1.86443892e+06, 1.92797078e+06, 1.69889231e+06, 1.80782018e+06, 1.86988995e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet3' : [ 2.02995699e+06, 1.67245502e+06, ], 'CountWeightedFullL1PrefireNom_LHENjet3' : [ 1.86443892e+06, 1.86408823e+06, 1.86475151e+06, ], 'CountWeightedFullL1Prefire_LHENjet3' : [ 1.86443892e+06, 1.85354907e+06, 1.87483242e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet3' : [ 1.81845503e+06, 1.93355822e+06, 1.99883917e+06, 1.75274681e+06, 1.86443892e+06, 1.92797078e+06, 1.69889231e+06, 1.80782018e+06, 1.86988995e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet3' : [ 2.02995699e+06, 1.67245502e+06, ], 'Count_LHENjet4' : [ 130488, ], 'CountWeighted_LHENjet4' : [ 1.30493638e+05, 1.30429829e+05, 1.30537856e+05, ], 'CountWeightedLHEWeightScale_LHENjet4' : [ 1.32334857e+05, 1.36121834e+05, 1.36788704e+05, 1.26807352e+05, 1.30493638e+05, 1.31174155e+05, 1.22289244e+05, 1.25894432e+05, 1.26584750e+05, ], 'CountWeightedLHEEnvelope_LHENjet4' : [ 1.43649407e+05, 1.16243008e+05, ], 'CountWeightedFull_LHENjet4' : [ 1.30493638e+05, 1.30429829e+05, 1.30537856e+05, ], 'CountWeightedFullLHEWeightScale_LHENjet4' : [ 1.32334857e+05, 1.36121834e+05, 1.36788704e+05, 1.26807352e+05, 1.30493638e+05, 1.31174155e+05, 1.22289244e+05, 1.25894432e+05, 1.26584750e+05, ], 'CountWeightedFullLHEEnvelope_LHENjet4' : [ 1.43649407e+05, 1.16243008e+05, ], 'CountWeightedL1PrefireNom_LHENjet4' : [ 1.27701069e+05, 1.27645019e+05, 1.27735314e+05, ], 'CountWeightedL1Prefire_LHENjet4' : [ 1.27701069e+05, 1.26962011e+05, 1.28404779e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet4' : [ 1.29471502e+05, 1.33209807e+05, 1.33886875e+05, 1.24062695e+05, 1.27701069e+05, 1.28390504e+05, 1.19641749e+05, 1.23199605e+05, 1.23897792e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet4' : [ 1.40569642e+05, 1.13753753e+05, ], 'CountWeightedFullL1PrefireNom_LHENjet4' : [ 1.27701069e+05, 1.27645019e+05, 1.27735314e+05, ], 'CountWeightedFullL1Prefire_LHENjet4' : [ 1.27701069e+05, 1.26962011e+05, 1.28404779e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet4' : [ 1.29471502e+05, 1.33209807e+05, 1.33886875e+05, 1.24062695e+05, 1.27701069e+05, 1.28390504e+05, 1.19641749e+05, 1.23199605e+05, 1.23897792e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet4' : [ 1.40569642e+05, 1.13753753e+05, ], }), ("nof_tree_events", 9344037), ("nof_db_events", 9344037), ("fsize_local", 41651418253), # 41.65GB, avg file size 2.19GB ("fsize_db", 429654206472), # 429.65GB, avg file size 2.08GB ("use_it", False), ("xsection", 167.33), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Apr19_woPresel_nom_all_hh_multilepton/ntuples/DYJetsToLL_M50_HT70to100"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/DYJetsToLL_M-50_HT-100to200_TuneCP5_13TeV-madgraphMLM-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_new_pmx_94X_mc2017_realistic_v14-v2/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "EWK"), ("process_name_specific", "DYJetsToLL_M50_HT100to200"), ("nof_files", 23), ("nof_db_files", 172), ("nof_events", { 'Count' : [ 11197488, ], 'CountWeighted' : [ 1.11811906e+07, 1.11824060e+07, 1.11810858e+07, ], 'CountWeightedLHEWeightScale' : [ 1.13326115e+07, 1.15866841e+07, 1.16581761e+07, 1.09333136e+07, 1.11811906e+07, 1.12516929e+07, 1.06036297e+07, 1.08456941e+07, 1.09160642e+07, ], 'CountWeightedLHEEnvelope' : [ 1.20190426e+07, 1.02864808e+07, ], 'CountWeightedFull' : [ 1.11811906e+07, 1.11824060e+07, 1.11810858e+07, ], 'CountWeightedFullLHEWeightScale' : [ 1.13326115e+07, 1.15866841e+07, 1.16581761e+07, 1.09333136e+07, 1.11811906e+07, 1.12516929e+07, 1.06036297e+07, 1.08456941e+07, 1.09160642e+07, ], 'CountWeightedFullLHEEnvelope' : [ 1.20190426e+07, 1.02864808e+07, ], 'CountWeightedL1PrefireNom' : [ 1.07255855e+07, 1.07257305e+07, 1.07259166e+07, ], 'CountWeightedL1Prefire' : [ 1.07255855e+07, 1.06174245e+07, 1.08322325e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 1.08661820e+07, 1.11153453e+07, 1.11887993e+07, 1.04826863e+07, 1.07255855e+07, 1.07980525e+07, 1.01660790e+07, 1.04033986e+07, 1.04754368e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 1.15306375e+07, 9.86582027e+06, ], 'CountWeightedFullL1PrefireNom' : [ 1.07255855e+07, 1.07257305e+07, 1.07259166e+07, ], 'CountWeightedFullL1Prefire' : [ 1.07255855e+07, 1.06174245e+07, 1.08322325e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 1.08661820e+07, 1.11153453e+07, 1.11887993e+07, 1.04826863e+07, 1.07255855e+07, 1.07980525e+07, 1.01660790e+07, 1.04033986e+07, 1.04754368e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 1.15306375e+07, 9.86582027e+06, ], 'Count_LHENjet1' : [ 1199910, ], 'CountWeighted_LHENjet1' : [ 1.19863687e+06, 1.19851208e+06, 1.19878624e+06, ], 'CountWeightedLHEWeightScale_LHENjet1' : [ 1.20753420e+06, 1.23000739e+06, 1.24038168e+06, 1.17636291e+06, 1.19863687e+06, 1.20904912e+06, 1.15031264e+06, 1.17242395e+06, 1.18286791e+06, ], 'CountWeightedLHEEnvelope_LHENjet1' : [ 1.25272346e+06, 1.14024762e+06, ], 'CountWeightedFull_LHENjet1' : [ 1.19863687e+06, 1.19851208e+06, 1.19878624e+06, ], 'CountWeightedFullLHEWeightScale_LHENjet1' : [ 1.20753420e+06, 1.23000739e+06, 1.24038168e+06, 1.17636291e+06, 1.19863687e+06, 1.20904912e+06, 1.15031264e+06, 1.17242395e+06, 1.18286791e+06, ], 'CountWeightedFullLHEEnvelope_LHENjet1' : [ 1.25272346e+06, 1.14024762e+06, ], 'CountWeightedL1PrefireNom_LHENjet1' : [ 1.12601867e+06, 1.12585272e+06, 1.12619837e+06, ], 'CountWeightedL1Prefire_LHENjet1' : [ 1.12601867e+06, 1.11052194e+06, 1.14173742e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet1' : [ 1.13371430e+06, 1.15557657e+06, 1.16601310e+06, 1.10436098e+06, 1.12601867e+06, 1.13647531e+06, 1.07983097e+06, 1.10132171e+06, 1.11179486e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet1' : [ 1.17697406e+06, 1.07098554e+06, ], 'CountWeightedFullL1PrefireNom_LHENjet1' : [ 1.12601867e+06, 1.12585272e+06, 1.12619837e+06, ], 'CountWeightedFullL1Prefire_LHENjet1' : [ 1.12601867e+06, 1.11052194e+06, 1.14173742e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet1' : [ 1.13371430e+06, 1.15557657e+06, 1.16601310e+06, 1.10436098e+06, 1.12601867e+06, 1.13647531e+06, 1.07983097e+06, 1.10132171e+06, 1.11179486e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet1' : [ 1.17697406e+06, 1.07098554e+06, ], 'Count_LHENjet2' : [ 4118278, ], 'CountWeighted_LHENjet2' : [ 4.11212752e+06, 4.11149755e+06, 4.11285009e+06, ], 'CountWeightedLHEWeightScale_LHENjet2' : [ 4.09489132e+06, 4.25104580e+06, 4.33522605e+06, 3.96076365e+06, 4.11212752e+06, 4.19379174e+06, 3.84979349e+06, 3.99722807e+06, 4.07678952e+06, ], 'CountWeightedLHEEnvelope_LHENjet2' : [ 4.38687384e+06, 3.80675924e+06, ], 'CountWeightedFull_LHENjet2' : [ 4.11212752e+06, 4.11149755e+06, 4.11285009e+06, ], 'CountWeightedFullLHEWeightScale_LHENjet2' : [ 4.09489132e+06, 4.25104580e+06, 4.33522605e+06, 3.96076365e+06, 4.11212752e+06, 4.19379174e+06, 3.84979349e+06, 3.99722807e+06, 4.07678952e+06, ], 'CountWeightedFullLHEEnvelope_LHENjet2' : [ 4.38687384e+06, 3.80675924e+06, ], 'CountWeightedL1PrefireNom_LHENjet2' : [ 3.93534812e+06, 3.93451651e+06, 3.93624235e+06, ], 'CountWeightedL1Prefire_LHENjet2' : [ 3.93534812e+06, 3.89391441e+06, 3.97653188e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet2' : [ 3.91654471e+06, 4.06834292e+06, 4.15094174e+06, 3.78820688e+06, 3.93534812e+06, 4.01546175e+06, 3.68203487e+06, 3.82534195e+06, 3.90339542e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet2' : [ 4.19846881e+06, 3.64256995e+06, ], 'CountWeightedFullL1PrefireNom_LHENjet2' : [ 3.93534812e+06, 3.93451651e+06, 3.93624235e+06, ], 'CountWeightedFullL1Prefire_LHENjet2' : [ 3.93534812e+06, 3.89391441e+06, 3.97653188e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet2' : [ 3.91654471e+06, 4.06834292e+06, 4.15094174e+06, 3.78820688e+06, 3.93534812e+06, 4.01546175e+06, 3.68203487e+06, 3.82534195e+06, 3.90339542e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet2' : [ 4.19846881e+06, 3.64256995e+06, ], 'Count_LHENjet3' : [ 3929135, ], 'CountWeighted_LHENjet3' : [ 3.92260947e+06, 3.92307466e+06, 3.92213903e+06, ], 'CountWeightedLHEWeightScale_LHENjet3' : [ 3.98034877e+06, 4.07667985e+06, 4.10041084e+06, 3.82909065e+06, 3.92260947e+06, 3.94607187e+06, 3.70441380e+06, 3.79564060e+06, 3.81886077e+06, ], 'CountWeightedLHEEnvelope_LHENjet3' : [ 4.24016373e+06, 3.58223422e+06, ], 'CountWeightedFull_LHENjet3' : [ 3.92260947e+06, 3.92307466e+06, 3.92213903e+06, ], 'CountWeightedFullLHEWeightScale_LHENjet3' : [ 3.98034877e+06, 4.07667985e+06, 4.10041084e+06, 3.82909065e+06, 3.92260947e+06, 3.94607187e+06, 3.70441380e+06, 3.79564060e+06, 3.81886077e+06, ], 'CountWeightedFullLHEEnvelope_LHENjet3' : [ 4.24016373e+06, 3.58223422e+06, ], 'CountWeightedL1PrefireNom_LHENjet3' : [ 3.78265536e+06, 3.78294408e+06, 3.78232902e+06, ], 'CountWeightedL1Prefire_LHENjet3' : [ 3.78265536e+06, 3.74822771e+06, 3.81632402e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet3' : [ 3.83634269e+06, 3.93128327e+06, 3.95581588e+06, 3.69049623e+06, 3.78265536e+06, 3.80686135e+06, 3.57028931e+06, 3.66016741e+06, 3.68409655e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet3' : [ 4.08859729e+06, 3.45429166e+06, ], 'CountWeightedFullL1PrefireNom_LHENjet3' : [ 3.78265536e+06, 3.78294408e+06, 3.78232902e+06, ], 'CountWeightedFullL1Prefire_LHENjet3' : [ 3.78265536e+06, 3.74822771e+06, 3.81632402e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet3' : [ 3.83634269e+06, 3.93128327e+06, 3.95581588e+06, 3.69049623e+06, 3.78265536e+06, 3.80686135e+06, 3.57028931e+06, 3.66016741e+06, 3.68409655e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet3' : [ 4.08859729e+06, 3.45429166e+06, ], 'Count_LHENjet4' : [ 1950165, ], 'CountWeighted_LHENjet4' : [ 1.94674801e+06, 1.94694141e+06, 1.94655341e+06, ], 'CountWeightedLHEWeightScale_LHENjet4' : [ 2.04986948e+06, 2.02824710e+06, 1.98220957e+06, 1.96710984e+06, 1.94674801e+06, 1.90280862e+06, 1.89912369e+06, 1.87978116e+06, 1.83757738e+06, ], 'CountWeightedLHEEnvelope_LHENjet4' : [ 2.13927350e+06, 1.75724838e+06, ], 'CountWeightedFull_LHENjet4' : [ 1.94674801e+06, 1.94694141e+06, 1.94655341e+06, ], 'CountWeightedFullLHEWeightScale_LHENjet4' : [ 2.04986948e+06, 2.02824710e+06, 1.98220957e+06, 1.96710984e+06, 1.94674801e+06, 1.90280862e+06, 1.89912369e+06, 1.87978116e+06, 1.83757738e+06, ], 'CountWeightedFullLHEEnvelope_LHENjet4' : [ 2.13927350e+06, 1.75724838e+06, ], 'CountWeightedL1PrefireNom_LHENjet4' : [ 1.88095902e+06, 1.88107939e+06, 1.88086002e+06, ], 'CountWeightedL1Prefire_LHENjet4' : [ 1.88095902e+06, 1.86431174e+06, 1.89705639e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet4' : [ 1.97961665e+06, 1.95976495e+06, 1.91607330e+06, 1.89963656e+06, 1.88095902e+06, 1.83927212e+06, 1.83393675e+06, 1.81621601e+06, 1.77618047e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet4' : [ 2.06662430e+06, 1.69798104e+06, ], 'CountWeightedFullL1PrefireNom_LHENjet4' : [ 1.88095902e+06, 1.88107939e+06, 1.88086002e+06, ], 'CountWeightedFullL1Prefire_LHENjet4' : [ 1.88095902e+06, 1.86431174e+06, 1.89705639e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet4' : [ 1.97961665e+06, 1.95976495e+06, 1.91607330e+06, 1.89963656e+06, 1.88095902e+06, 1.83927212e+06, 1.83393675e+06, 1.81621601e+06, 1.77618047e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet4' : [ 2.06662430e+06, 1.69798104e+06, ], }), ("nof_tree_events", 11197488), ("nof_db_events", 11197488), ("fsize_local", 58554593982), # 58.55GB, avg file size 2.55GB ("fsize_db", 547433166562), # 547.43GB, avg file size 3.18GB ("use_it", False), ("xsection", 183.53), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Apr19_woPresel_nom_all_hh_multilepton/ntuples/DYJetsToLL_M50_HT100to200"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/DYJetsToLL_M-50_HT-100to200_TuneCP5_13TeV-madgraphMLM-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14_ext1-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "EWK"), ("process_name_specific", "DYJetsToLL_M50_HT100to200_ext1"), ("nof_files", 8), ("nof_db_files", 61), ("nof_events", { 'Count' : [ 3950339, ], 'CountWeighted' : [ 3.94377856e+06, 3.94404400e+06, 3.94369956e+06, ], 'CountWeightedLHEWeightScale' : [ 3.99818066e+06, 4.08726144e+06, 4.11281031e+06, 3.85706034e+06, 3.94377856e+06, 3.96918359e+06, 3.74055266e+06, 3.82548522e+06, 3.85061178e+06, ], 'CountWeightedLHEEnvelope' : [ 4.24048231e+06, 3.62833619e+06, ], 'CountWeightedFull' : [ 3.94377856e+06, 3.94404400e+06, 3.94369956e+06, ], 'CountWeightedFullLHEWeightScale' : [ 3.99818066e+06, 4.08726144e+06, 4.11281031e+06, 3.85706034e+06, 3.94377856e+06, 3.96918359e+06, 3.74055266e+06, 3.82548522e+06, 3.85061178e+06, ], 'CountWeightedFullLHEEnvelope' : [ 4.24048231e+06, 3.62833619e+06, ], 'CountWeightedL1PrefireNom' : [ 3.78233050e+06, 3.78229912e+06, 3.78254588e+06, ], 'CountWeightedL1Prefire' : [ 3.78233050e+06, 3.74406322e+06, 3.82018062e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 3.83258397e+06, 3.92012522e+06, 3.94622956e+06, 3.69710066e+06, 3.78233050e+06, 3.80821847e+06, 3.58525912e+06, 3.66869072e+06, 3.69428800e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 4.06712500e+06, 3.47906594e+06, ], 'CountWeightedFullL1PrefireNom' : [ 3.78233050e+06, 3.78229912e+06, 3.78254588e+06, ], 'CountWeightedFullL1Prefire' : [ 3.78233050e+06, 3.74406322e+06, 3.82018062e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 3.83258397e+06, 3.92012522e+06, 3.94622956e+06, 3.69710066e+06, 3.78233050e+06, 3.80821847e+06, 3.58525912e+06, 3.66869072e+06, 3.69428800e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 4.06712500e+06, 3.47906594e+06, ], 'Count_LHENjet1' : [ 422378, ], 'CountWeighted_LHENjet1' : [ 4.21916879e+05, 4.21872926e+05, 4.21879266e+05, ], 'CountWeightedLHEWeightScale_LHENjet1' : [ 4.25091922e+05, 4.32969359e+05, 4.36605598e+05, 4.14109820e+05, 4.21916879e+05, 4.25567609e+05, 4.04931941e+05, 4.12682855e+05, 4.16344410e+05, ], 'CountWeightedLHEEnvelope_LHENjet1' : [ 4.40988738e+05, 4.01354129e+05, ], 'CountWeightedFull_LHENjet1' : [ 4.21916879e+05, 4.21872926e+05, 4.21879266e+05, ], 'CountWeightedFullLHEWeightScale_LHENjet1' : [ 4.25091922e+05, 4.32969359e+05, 4.36605598e+05, 4.14109820e+05, 4.21916879e+05, 4.25567609e+05, 4.04931941e+05, 4.12682855e+05, 4.16344410e+05, ], 'CountWeightedFullLHEEnvelope_LHENjet1' : [ 4.40988738e+05, 4.01354129e+05, ], 'CountWeightedL1PrefireNom_LHENjet1' : [ 3.96240660e+05, 3.96198559e+05, 3.96220027e+05, ], 'CountWeightedL1Prefire_LHENjet1' : [ 3.96240660e+05, 3.90765371e+05, 4.01793605e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet1' : [ 3.98985059e+05, 4.06645031e+05, 4.10301215e+05, 3.88653148e+05, 3.96240660e+05, 3.99905066e+05, 3.80019266e+05, 3.87549238e+05, 3.91218641e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet1' : [ 4.14206531e+05, 3.76861355e+05, ], 'CountWeightedFullL1PrefireNom_LHENjet1' : [ 3.96240660e+05, 3.96198559e+05, 3.96220027e+05, ], 'CountWeightedFullL1Prefire_LHENjet1' : [ 3.96240660e+05, 3.90765371e+05, 4.01793605e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet1' : [ 3.98985059e+05, 4.06645031e+05, 4.10301215e+05, 3.88653148e+05, 3.96240660e+05, 3.99905066e+05, 3.80019266e+05, 3.87549238e+05, 3.91218641e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet1' : [ 4.14206531e+05, 3.76861355e+05, ], 'Count_LHENjet2' : [ 1452521, ], 'CountWeighted_LHENjet2' : [ 1.45055388e+06, 1.45065188e+06, 1.45066183e+06, ], 'CountWeightedLHEWeightScale_LHENjet2' : [ 1.44465066e+06, 1.49969277e+06, 1.52948047e+06, 1.39724748e+06, 1.45055388e+06, 1.47950012e+06, 1.35802911e+06, 1.40998539e+06, 1.43815303e+06, ], 'CountWeightedLHEEnvelope_LHENjet2' : [ 1.54774491e+06, 1.34280300e+06, ], 'CountWeightedFull_LHENjet2' : [ 1.45055388e+06, 1.45065188e+06, 1.45066183e+06, ], 'CountWeightedFullLHEWeightScale_LHENjet2' : [ 1.44465066e+06, 1.49969277e+06, 1.52948047e+06, 1.39724748e+06, 1.45055388e+06, 1.47950012e+06, 1.35802911e+06, 1.40998539e+06, 1.43815303e+06, ], 'CountWeightedFullLHEEnvelope_LHENjet2' : [ 1.54774491e+06, 1.34280300e+06, ], 'CountWeightedL1PrefireNom_LHENjet2' : [ 1.38824422e+06, 1.38817512e+06, 1.38842472e+06, ], 'CountWeightedL1Prefire_LHENjet2' : [ 1.38824422e+06, 1.37363783e+06, 1.40277594e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet2' : [ 1.38174148e+06, 1.43528181e+06, 1.46449584e+06, 1.33638023e+06, 1.38824422e+06, 1.41661408e+06, 1.29885355e+06, 1.34939169e+06, 1.37700698e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet2' : [ 1.48130075e+06, 1.28489523e+06, ], 'CountWeightedFullL1PrefireNom_LHENjet2' : [ 1.38824422e+06, 1.38817512e+06, 1.38842472e+06, ], 'CountWeightedFullL1Prefire_LHENjet2' : [ 1.38824422e+06, 1.37363783e+06, 1.40277594e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet2' : [ 1.38174148e+06, 1.43528181e+06, 1.46449584e+06, 1.33638023e+06, 1.38824422e+06, 1.41661408e+06, 1.29885355e+06, 1.34939169e+06, 1.37700698e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet2' : [ 1.48130075e+06, 1.28489523e+06, ], 'Count_LHENjet3' : [ 1386640, ], 'CountWeighted_LHENjet3' : [ 1.38505464e+06, 1.38501383e+06, 1.38527455e+06, ], 'CountWeightedLHEWeightScale_LHENjet3' : [ 1.40573942e+06, 1.43958902e+06, 1.44797669e+06, 1.35223456e+06, 1.38505464e+06, 1.39341527e+06, 1.30813541e+06, 1.34020472e+06, 1.34844650e+06, ], 'CountWeightedLHEEnvelope_LHENjet3' : [ 1.49755841e+06, 1.26478700e+06, ], 'CountWeightedFull_LHENjet3' : [ 1.38505464e+06, 1.38501383e+06, 1.38527455e+06, ], 'CountWeightedFullLHEWeightScale_LHENjet3' : [ 1.40573942e+06, 1.43958902e+06, 1.44797669e+06, 1.35223456e+06, 1.38505464e+06, 1.39341527e+06, 1.30813541e+06, 1.34020472e+06, 1.34844650e+06, ], 'CountWeightedFullLHEEnvelope_LHENjet3' : [ 1.49755841e+06, 1.26478700e+06, ], 'CountWeightedL1PrefireNom_LHENjet3' : [ 1.33506334e+06, 1.33491702e+06, 1.33529025e+06, ], 'CountWeightedL1Prefire_LHENjet3' : [ 1.33506334e+06, 1.32279070e+06, 1.34708566e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet3' : [ 1.35424238e+06, 1.38761741e+06, 1.39626844e+06, 1.30268877e+06, 1.33506334e+06, 1.34364733e+06, 1.26019944e+06, 1.29181480e+06, 1.30027919e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet3' : [ 1.44335689e+06, 1.21906048e+06, ], 'CountWeightedFullL1PrefireNom_LHENjet3' : [ 1.33506334e+06, 1.33491702e+06, 1.33529025e+06, ], 'CountWeightedFullL1Prefire_LHENjet3' : [ 1.33506334e+06, 1.32279070e+06, 1.34708566e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet3' : [ 1.35424238e+06, 1.38761741e+06, 1.39626844e+06, 1.30268877e+06, 1.33506334e+06, 1.34364733e+06, 1.26019944e+06, 1.29181480e+06, 1.30027919e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet3' : [ 1.44335689e+06, 1.21906048e+06, ], 'Count_LHENjet4' : [ 688800, ], 'CountWeighted_LHENjet4' : [ 6.86253141e+05, 6.86507625e+05, 6.86140547e+05, ], 'CountWeightedLHEWeightScale_LHENjet4' : [ 7.22733070e+05, 7.15038086e+05, 6.98773906e+05, 6.93500320e+05, 6.86253141e+05, 6.70732945e+05, 6.69488086e+05, 6.62609531e+05, 6.47697859e+05, ], 'CountWeightedLHEEnvelope_LHENjet4' : [ 7.54216219e+05, 6.19422539e+05, ], 'CountWeightedFull_LHENjet4' : [ 6.86253141e+05, 6.86507625e+05, 6.86140547e+05, ], 'CountWeightedFullLHEWeightScale_LHENjet4' : [ 7.22733070e+05, 7.15038086e+05, 6.98773906e+05, 6.93500320e+05, 6.86253141e+05, 6.70732945e+05, 6.69488086e+05, 6.62609531e+05, 6.47697859e+05, ], 'CountWeightedFullLHEEnvelope_LHENjet4' : [ 7.54216219e+05, 6.19422539e+05, ], 'CountWeightedL1PrefireNom_LHENjet4' : [ 6.62782945e+05, 6.63004523e+05, 6.62715102e+05, ], 'CountWeightedL1Prefire_LHENjet4' : [ 6.62782945e+05, 6.56854055e+05, 6.68512844e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet4' : [ 6.97641891e+05, 6.90604812e+05, 6.75190445e+05, 6.69404578e+05, 6.62782945e+05, 6.48078461e+05, 6.46211164e+05, 6.39931992e+05, 6.25807453e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet4' : [ 7.28289266e+05, 5.98274742e+05, ], 'CountWeightedFullL1PrefireNom_LHENjet4' : [ 6.62782945e+05, 6.63004523e+05, 6.62715102e+05, ], 'CountWeightedFullL1Prefire_LHENjet4' : [ 6.62782945e+05, 6.56854055e+05, 6.68512844e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet4' : [ 6.97641891e+05, 6.90604812e+05, 6.75190445e+05, 6.69404578e+05, 6.62782945e+05, 6.48078461e+05, 6.46211164e+05, 6.39931992e+05, 6.25807453e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet4' : [ 7.28289266e+05, 5.98274742e+05, ], }), ("nof_tree_events", 3950339), ("nof_db_events", 3950339), ("fsize_local", 20542280187), # 20.54GB, avg file size 2.57GB ("fsize_db", 186406431655), # 186.41GB, avg file size 3.06GB ("use_it", False), ("xsection", 183.53), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Apr19_woPresel_nom_all_hh_multilepton/ntuples/DYJetsToLL_M50_HT100to200_ext1"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/DYJetsToLL_M-50_HT-200to400_TuneCP5_13TeV-madgraphMLM-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v2/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "EWK"), ("process_name_specific", "DYJetsToLL_M50_HT200to400"), ("nof_files", 22), ("nof_db_files", 159), ("nof_events", { 'Count' : [ 10728447, ], 'CountWeighted' : [ 1.07006441e+07, 1.06990662e+07, 1.06976763e+07, ], 'CountWeightedLHEWeightScale' : [ 1.17097978e+07, 1.12989010e+07, 1.08490197e+07, 1.10881273e+07, 1.07006441e+07, 1.02743986e+07, 1.05839569e+07, 1.02140365e+07, 9.80832791e+06, ], 'CountWeightedLHEEnvelope' : [ 1.19128852e+07, 9.63595666e+06, ], 'CountWeightedFull' : [ 1.07006441e+07, 1.06990662e+07, 1.06976763e+07, ], 'CountWeightedFullLHEWeightScale' : [ 1.17097978e+07, 1.12989010e+07, 1.08490197e+07, 1.10881273e+07, 1.07006441e+07, 1.02743986e+07, 1.05839569e+07, 1.02140365e+07, 9.80832791e+06, ], 'CountWeightedFullLHEEnvelope' : [ 1.19128852e+07, 9.63595666e+06, ], 'CountWeightedL1PrefireNom' : [ 9.98999667e+06, 9.98847084e+06, 9.98948188e+06, ], 'CountWeightedL1Prefire' : [ 9.98999667e+06, 9.83167612e+06, 1.01485963e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 1.09183888e+07, 1.05480226e+07, 1.01388532e+07, 1.03396064e+07, 9.98999667e+06, 9.60266523e+06, 9.87012297e+06, 9.53679762e+06, 9.16772153e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 1.11124000e+07, 9.00273894e+06, ], 'CountWeightedFullL1PrefireNom' : [ 9.98999667e+06, 9.98847084e+06, 9.98948188e+06, ], 'CountWeightedFullL1Prefire' : [ 9.98999667e+06, 9.83167612e+06, 1.01485963e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 1.09183888e+07, 1.05480226e+07, 1.01388532e+07, 1.03396064e+07, 9.98999667e+06, 9.60266523e+06, 9.87012297e+06, 9.53679762e+06, 9.16772153e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 1.11124000e+07, 9.00273894e+06, ], 'Count_LHENjet1' : [ 250670, ], 'CountWeighted_LHENjet1' : [ 2.49899471e+05, 2.49850307e+05, 2.50014898e+05, ], 'CountWeightedLHEWeightScale_LHENjet1' : [ 2.64181431e+05, 2.56722885e+05, 2.48843517e+05, 2.57118801e+05, 2.49899471e+05, 2.42264281e+05, 2.51140645e+05, 2.44125886e+05, 2.36695859e+05, ], 'CountWeightedLHEEnvelope_LHENjet1' : [ 2.64939766e+05, 2.35997220e+05, ], 'CountWeightedFull_LHENjet1' : [ 2.49899471e+05, 2.49850307e+05, 2.50014898e+05, ], 'CountWeightedFullLHEWeightScale_LHENjet1' : [ 2.64181431e+05, 2.56722885e+05, 2.48843517e+05, 2.57118801e+05, 2.49899471e+05, 2.42264281e+05, 2.51140645e+05, 2.44125886e+05, 2.36695859e+05, ], 'CountWeightedFullLHEEnvelope_LHENjet1' : [ 2.64939766e+05, 2.35997220e+05, ], 'CountWeightedL1PrefireNom_LHENjet1' : [ 2.34127373e+05, 2.34035363e+05, 2.34280290e+05, ], 'CountWeightedL1Prefire_LHENjet1' : [ 2.34127373e+05, 2.30974792e+05, 2.37365918e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet1' : [ 2.47281387e+05, 2.40559605e+05, 2.33406795e+05, 2.40629644e+05, 2.34127373e+05, 2.27199678e+05, 2.34999443e+05, 2.28684994e+05, 2.21946339e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet1' : [ 2.48031740e+05, 2.21254966e+05, ], 'CountWeightedFullL1PrefireNom_LHENjet1' : [ 2.34127373e+05, 2.34035363e+05, 2.34280290e+05, ], 'CountWeightedFullL1Prefire_LHENjet1' : [ 2.34127373e+05, 2.30974792e+05, 2.37365918e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet1' : [ 2.47281387e+05, 2.40559605e+05, 2.33406795e+05, 2.40629644e+05, 2.34127373e+05, 2.27199678e+05, 2.34999443e+05, 2.28684994e+05, 2.21946339e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet1' : [ 2.48031740e+05, 2.21254966e+05, ], 'Count_LHENjet2' : [ 1793643, ], 'CountWeighted_LHENjet2' : [ 1.78872240e+06, 1.78892089e+06, 1.78846866e+06, ], 'CountWeightedLHEWeightScale_LHENjet2' : [ 1.91834612e+06, 1.89037632e+06, 1.85041178e+06, 1.81525916e+06, 1.78872240e+06, 1.75081765e+06, 1.73165159e+06, 1.70631532e+06, 1.67006109e+06, ], 'CountWeightedLHEEnvelope_LHENjet2' : [ 1.95136616e+06, 1.64259480e+06, ], 'CountWeightedFull_LHENjet2' : [ 1.78872240e+06, 1.78892089e+06, 1.78846866e+06, ], 'CountWeightedFullLHEWeightScale_LHENjet2' : [ 1.91834612e+06, 1.89037632e+06, 1.85041178e+06, 1.81525916e+06, 1.78872240e+06, 1.75081765e+06, 1.73165159e+06, 1.70631532e+06, 1.67006109e+06, ], 'CountWeightedFullLHEEnvelope_LHENjet2' : [ 1.95136616e+06, 1.64259480e+06, ], 'CountWeightedL1PrefireNom_LHENjet2' : [ 1.66221280e+06, 1.66227818e+06, 1.66209212e+06, ], 'CountWeightedL1Prefire_LHENjet2' : [ 1.66221280e+06, 1.63517727e+06, 1.68962057e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet2' : [ 1.78030925e+06, 1.75651564e+06, 1.72117793e+06, 1.68478939e+06, 1.66221280e+06, 1.62868468e+06, 1.60731121e+06, 1.58575321e+06, 1.55367864e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet2' : [ 1.81188077e+06, 1.52736286e+06, ], 'CountWeightedFullL1PrefireNom_LHENjet2' : [ 1.66221280e+06, 1.66227818e+06, 1.66209212e+06, ], 'CountWeightedFullL1Prefire_LHENjet2' : [ 1.66221280e+06, 1.63517727e+06, 1.68962057e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet2' : [ 1.78030925e+06, 1.75651564e+06, 1.72117793e+06, 1.68478939e+06, 1.66221280e+06, 1.62868468e+06, 1.60731121e+06, 1.58575321e+06, 1.55367864e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet2' : [ 1.81188077e+06, 1.52736286e+06, ], 'Count_LHENjet3' : [ 3198586, ], 'CountWeighted_LHENjet3' : [ 3.19021986e+06, 3.18999431e+06, 3.19040388e+06, ], 'CountWeightedLHEWeightScale_LHENjet3' : [ 3.44945539e+06, 3.37050138e+06, 3.26923425e+06, 3.26457426e+06, 3.19021986e+06, 3.09448310e+06, 3.11452510e+06, 3.04382952e+06, 2.95266441e+06, ], 'CountWeightedLHEEnvelope_LHENjet3' : [ 3.52256441e+06, 2.89054805e+06, ], 'CountWeightedFull_LHENjet3' : [ 3.19021986e+06, 3.18999431e+06, 3.19040388e+06, ], 'CountWeightedFullLHEWeightScale_LHENjet3' : [ 3.44945539e+06, 3.37050138e+06, 3.26923425e+06, 3.26457426e+06, 3.19021986e+06, 3.09448310e+06, 3.11452510e+06, 3.04382952e+06, 2.95266441e+06, ], 'CountWeightedFullLHEEnvelope_LHENjet3' : [ 3.52256441e+06, 2.89054805e+06, ], 'CountWeightedL1PrefireNom_LHENjet3' : [ 2.97861005e+06, 2.97819448e+06, 2.97903875e+06, ], 'CountWeightedL1Prefire_LHENjet3' : [ 2.97861005e+06, 2.93184277e+06, 3.02563080e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet3' : [ 3.21646967e+06, 3.14668658e+06, 3.05527153e+06, 3.04433773e+06, 2.97861005e+06, 2.89221566e+06, 2.90461894e+06, 2.84216832e+06, 2.75987082e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet3' : [ 3.28619706e+06, 2.70052220e+06, ], 'CountWeightedFullL1PrefireNom_LHENjet3' : [ 2.97861005e+06, 2.97819448e+06, 2.97903875e+06, ], 'CountWeightedFullL1Prefire_LHENjet3' : [ 2.97861005e+06, 2.93184277e+06, 3.02563080e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet3' : [ 3.21646967e+06, 3.14668658e+06, 3.05527153e+06, 3.04433773e+06, 2.97861005e+06, 2.89221566e+06, 2.90461894e+06, 2.84216832e+06, 2.75987082e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet3' : [ 3.28619706e+06, 2.70052220e+06, ], 'Count_LHENjet4' : [ 5485548, ], 'CountWeighted_LHENjet4' : [ 5.47031911e+06, 5.47052877e+06, 5.47051688e+06, ], 'CountWeightedLHEWeightScale_LHENjet4' : [ 6.07785078e+06, 5.78048298e+06, 5.48056548e+06, 5.75122450e+06, 5.47031911e+06, 5.18683392e+06, 5.48666977e+06, 5.21920496e+06, 4.94891810e+06, ], 'CountWeightedLHEEnvelope_LHENjet4' : [ 6.17398972e+06, 4.86683359e+06, ], 'CountWeightedFull_LHENjet4' : [ 5.47031911e+06, 5.47052877e+06, 5.47051688e+06, ], 'CountWeightedFullLHEWeightScale_LHENjet4' : [ 6.07785078e+06, 5.78048298e+06, 5.48056548e+06, 5.75122450e+06, 5.47031911e+06, 5.18683392e+06, 5.48666977e+06, 5.21920496e+06, 4.94891810e+06, ], 'CountWeightedFullLHEEnvelope_LHENjet4' : [ 6.17398972e+06, 4.86683359e+06, ], 'CountWeightedL1PrefireNom_LHENjet4' : [ 5.11439682e+06, 5.11407668e+06, 5.11479027e+06, ], 'CountWeightedL1Prefire_LHENjet4' : [ 5.11439682e+06, 5.03310259e+06, 5.19544920e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet4' : [ 5.67435350e+06, 5.40389192e+06, 5.12902320e+06, 5.36986597e+06, 5.11439682e+06, 4.85457007e+06, 5.12320094e+06, 4.87994606e+06, 4.63222698e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet4' : [ 5.76628995e+06, 4.55360022e+06, ], 'CountWeightedFullL1PrefireNom_LHENjet4' : [ 5.11439682e+06, 5.11407668e+06, 5.11479027e+06, ], 'CountWeightedFullL1Prefire_LHENjet4' : [ 5.11439682e+06, 5.03310259e+06, 5.19544920e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet4' : [ 5.67435350e+06, 5.40389192e+06, 5.12902320e+06, 5.36986597e+06, 5.11439682e+06, 4.85457007e+06, 5.12320094e+06, 4.87994606e+06, 4.63222698e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet4' : [ 5.76628995e+06, 4.55360022e+06, ], }), ("nof_tree_events", 10728447), ("nof_db_events", 10728447), ("fsize_local", 72034818458), # 72.03GB, avg file size 3.27GB ("fsize_db", 576131281371), # 576.13GB, avg file size 3.62GB ("use_it", False), ("xsection", 55.411), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Apr19_woPresel_nom_all_hh_multilepton/ntuples/DYJetsToLL_M50_HT200to400"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/DYJetsToLL_M-50_HT-200to400_TuneCP5_13TeV-madgraphMLM-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14_ext1-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "EWK"), ("process_name_specific", "DYJetsToLL_M50_HT200to400_ext1"), ("nof_files", 3), ("nof_db_files", 22), ("nof_events", { 'Count' : [ 1200863, ], 'CountWeighted' : [ 1.19760164e+06, 1.19785638e+06, 1.19771536e+06, ], 'CountWeightedLHEWeightScale' : [ 1.31086116e+06, 1.26471984e+06, 1.21449086e+06, 1.24120619e+06, 1.19760164e+06, 1.15013798e+06, 1.18471094e+06, 1.14323809e+06, 1.09794078e+06, ], 'CountWeightedLHEEnvelope' : [ 1.33350792e+06, 1.07871405e+06, ], 'CountWeightedFull' : [ 1.19760164e+06, 1.19785638e+06, 1.19771536e+06, ], 'CountWeightedFullLHEWeightScale' : [ 1.31086116e+06, 1.26471984e+06, 1.21449086e+06, 1.24120619e+06, 1.19760164e+06, 1.15013798e+06, 1.18471094e+06, 1.14323809e+06, 1.09794078e+06, ], 'CountWeightedFullLHEEnvelope' : [ 1.33350792e+06, 1.07871405e+06, ], 'CountWeightedL1PrefireNom' : [ 1.11836644e+06, 1.11835802e+06, 1.11851425e+06, ], 'CountWeightedL1Prefire' : [ 1.11836644e+06, 1.10069597e+06, 1.13609898e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 1.22245103e+06, 1.18093019e+06, 1.13517486e+06, 1.15759248e+06, 1.11836644e+06, 1.07512189e+06, 1.10497700e+06, 1.06765622e+06, 1.02639977e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 1.24409159e+06, 1.00799809e+06, ], 'CountWeightedFullL1PrefireNom' : [ 1.11836644e+06, 1.11835802e+06, 1.11851425e+06, ], 'CountWeightedFullL1Prefire' : [ 1.11836644e+06, 1.10069597e+06, 1.13609898e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 1.22245103e+06, 1.18093019e+06, 1.13517486e+06, 1.15759248e+06, 1.11836644e+06, 1.07512189e+06, 1.10497700e+06, 1.06765622e+06, 1.02639977e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 1.24409159e+06, 1.00799809e+06, ], 'Count_LHENjet1' : [ 28345, ], 'CountWeighted_LHENjet1' : [ 2.82285190e+04, 2.82324111e+04, 2.82253960e+04, ], 'CountWeightedLHEWeightScale_LHENjet1' : [ 2.98764819e+04, 2.90197104e+04, 2.81172837e+04, 2.90575176e+04, 2.82285190e+04, 2.73544526e+04, 2.83642954e+04, 2.75590771e+04, 2.67088018e+04, ], 'CountWeightedLHEEnvelope_LHENjet1' : [ 2.99563369e+04, 2.66359141e+04, ], 'CountWeightedFull_LHENjet1' : [ 2.82285190e+04, 2.82324111e+04, 2.82253960e+04, ], 'CountWeightedFullLHEWeightScale_LHENjet1' : [ 2.98764819e+04, 2.90197104e+04, 2.81172837e+04, 2.90575176e+04, 2.82285190e+04, 2.73544526e+04, 2.83642954e+04, 2.75590771e+04, 2.67088018e+04, ], 'CountWeightedFullLHEEnvelope_LHENjet1' : [ 2.99563369e+04, 2.66359141e+04, ], 'CountWeightedL1PrefireNom_LHENjet1' : [ 2.64320225e+04, 2.64356206e+04, 2.64285112e+04, ], 'CountWeightedL1Prefire_LHENjet1' : [ 2.64320225e+04, 2.60734370e+04, 2.68003857e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet1' : [ 2.79501011e+04, 2.71777769e+04, 2.63584795e+04, 2.71787900e+04, 2.64320225e+04, 2.56388853e+04, 2.65259238e+04, 2.58010190e+04, 2.50298564e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet1' : [ 2.80292847e+04, 2.49574971e+04, ], 'CountWeightedFullL1PrefireNom_LHENjet1' : [ 2.64320225e+04, 2.64356206e+04, 2.64285112e+04, ], 'CountWeightedFullL1Prefire_LHENjet1' : [ 2.64320225e+04, 2.60734370e+04, 2.68003857e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet1' : [ 2.79501011e+04, 2.71777769e+04, 2.63584795e+04, 2.71787900e+04, 2.64320225e+04, 2.56388853e+04, 2.65259238e+04, 2.58010190e+04, 2.50298564e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet1' : [ 2.80292847e+04, 2.49574971e+04, ], 'Count_LHENjet2' : [ 200801, ], 'CountWeighted_LHENjet2' : [ 2.00385371e+05, 2.00509020e+05, 2.00269496e+05, ], 'CountWeightedLHEWeightScale_LHENjet2' : [ 2.14827547e+05, 2.11703781e+05, 2.07221348e+05, 2.03341520e+05, 2.00385371e+05, 1.96132320e+05, 1.94025543e+05, 1.91202312e+05, 1.87139604e+05, ], 'CountWeightedLHEEnvelope_LHENjet2' : [ 2.18534680e+05, 1.84054174e+05, ], 'CountWeightedFull_LHENjet2' : [ 2.00385371e+05, 2.00509020e+05, 2.00269496e+05, ], 'CountWeightedFullLHEWeightScale_LHENjet2' : [ 2.14827547e+05, 2.11703781e+05, 2.07221348e+05, 2.03341520e+05, 2.00385371e+05, 1.96132320e+05, 1.94025543e+05, 1.91202312e+05, 1.87139604e+05, ], 'CountWeightedFullLHEEnvelope_LHENjet2' : [ 2.18534680e+05, 1.84054174e+05, ], 'CountWeightedL1PrefireNom_LHENjet2' : [ 1.86281846e+05, 1.86385129e+05, 1.86195137e+05, ], 'CountWeightedL1Prefire_LHENjet2' : [ 1.86281846e+05, 1.83264279e+05, 1.89339641e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet2' : [ 1.99443012e+05, 1.96786840e+05, 1.92824742e+05, 1.88797053e+05, 1.86281846e+05, 1.82523096e+05, 1.80161555e+05, 1.77760652e+05, 1.74168467e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet2' : [ 2.02993273e+05, 1.71207453e+05, ], 'CountWeightedFullL1PrefireNom_LHENjet2' : [ 1.86281846e+05, 1.86385129e+05, 1.86195137e+05, ], 'CountWeightedFullL1Prefire_LHENjet2' : [ 1.86281846e+05, 1.83264279e+05, 1.89339641e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet2' : [ 1.99443012e+05, 1.96786840e+05, 1.92824742e+05, 1.88797053e+05, 1.86281846e+05, 1.82523096e+05, 1.80161555e+05, 1.77760652e+05, 1.74168467e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet2' : [ 2.02993273e+05, 1.71207453e+05, ], 'Count_LHENjet3' : [ 357750, ], 'CountWeighted_LHENjet3' : [ 3.56616352e+05, 3.56672387e+05, 3.56510203e+05, ], 'CountWeightedLHEWeightScale_LHENjet3' : [ 3.85594109e+05, 3.76815949e+05, 3.65535250e+05, 3.64873285e+05, 3.56616352e+05, 3.45954074e+05, 3.48054836e+05, 3.40209156e+05, 3.30061734e+05, ], 'CountWeightedLHEEnvelope_LHENjet3' : [ 3.93801789e+05, 3.23082723e+05, ], 'CountWeightedFull_LHENjet3' : [ 3.56616352e+05, 3.56672387e+05, 3.56510203e+05, ], 'CountWeightedFullLHEWeightScale_LHENjet3' : [ 3.85594109e+05, 3.76815949e+05, 3.65535250e+05, 3.64873285e+05, 3.56616352e+05, 3.45954074e+05, 3.48054836e+05, 3.40209156e+05, 3.30061734e+05, ], 'CountWeightedFullLHEEnvelope_LHENjet3' : [ 3.93801789e+05, 3.23082723e+05, ], 'CountWeightedL1PrefireNom_LHENjet3' : [ 3.33068293e+05, 3.33088168e+05, 3.33009688e+05, ], 'CountWeightedL1Prefire_LHENjet3' : [ 3.33068293e+05, 3.27867203e+05, 3.38299895e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet3' : [ 3.59663754e+05, 3.51909223e+05, 3.41726016e+05, 3.40363906e+05, 3.33068293e+05, 3.23447676e+05, 3.24696070e+05, 3.17769809e+05, 3.08611102e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet3' : [ 3.67492953e+05, 3.01941672e+05, ], 'CountWeightedFullL1PrefireNom_LHENjet3' : [ 3.33068293e+05, 3.33088168e+05, 3.33009688e+05, ], 'CountWeightedFullL1Prefire_LHENjet3' : [ 3.33068293e+05, 3.27867203e+05, 3.38299895e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet3' : [ 3.59663754e+05, 3.51909223e+05, 3.41726016e+05, 3.40363906e+05, 3.33068293e+05, 3.23447676e+05, 3.24696070e+05, 3.17769809e+05, 3.08611102e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet3' : [ 3.67492953e+05, 3.01941672e+05, ], 'Count_LHENjet4' : [ 613967, ], 'CountWeighted_LHENjet4' : [ 6.12482391e+05, 6.12259523e+05, 6.12674930e+05, ], 'CountWeightedLHEWeightScale_LHENjet4' : [ 6.80563469e+05, 6.47243391e+05, 6.13621570e+05, 6.43939648e+05, 6.12482391e+05, 5.80702508e+05, 6.14271938e+05, 5.84319797e+05, 5.54034742e+05, ], 'CountWeightedLHEEnvelope_LHENjet4' : [ 6.91221797e+05, 5.44945758e+05, ], 'CountWeightedFull_LHENjet4' : [ 6.12482391e+05, 6.12259523e+05, 6.12674930e+05, ], 'CountWeightedFullLHEWeightScale_LHENjet4' : [ 6.80563469e+05, 6.47243391e+05, 6.13621570e+05, 6.43939648e+05, 6.12482391e+05, 5.80702508e+05, 6.14271938e+05, 5.84319797e+05, 5.54034742e+05, ], 'CountWeightedFullLHEEnvelope_LHENjet4' : [ 6.91221797e+05, 5.44945758e+05, ], 'CountWeightedL1PrefireNom_LHENjet4' : [ 5.72638344e+05, 5.72375289e+05, 5.72880734e+05, ], 'CountWeightedL1Prefire_LHENjet4' : [ 5.72638344e+05, 5.63538070e+05, 5.81707961e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet4' : [ 6.35397742e+05, 6.05085258e+05, 5.74272031e+05, 6.01257195e+05, 5.72638344e+05, 5.43514938e+05, 5.73595789e+05, 5.46350391e+05, 5.18594711e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet4' : [ 6.45582070e+05, 5.09895828e+05, ], 'CountWeightedFullL1PrefireNom_LHENjet4' : [ 5.72638344e+05, 5.72375289e+05, 5.72880734e+05, ], 'CountWeightedFullL1Prefire_LHENjet4' : [ 5.72638344e+05, 5.63538070e+05, 5.81707961e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet4' : [ 6.35397742e+05, 6.05085258e+05, 5.74272031e+05, 6.01257195e+05, 5.72638344e+05, 5.43514938e+05, 5.73595789e+05, 5.46350391e+05, 5.18594711e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet4' : [ 6.45582070e+05, 5.09895828e+05, ], }), ("nof_tree_events", 1200863), ("nof_db_events", 1200863), ("fsize_local", 8036189077), # 8.04GB, avg file size 2.68GB ("fsize_db", 63472314509), # 63.47GB, avg file size 2.89GB ("use_it", False), ("xsection", 55.411), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Apr19_woPresel_nom_all_hh_multilepton/ntuples/DYJetsToLL_M50_HT200to400_ext1"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/DYJetsToLL_M-50_HT-400to600_TuneCP5_13TeV-madgraphMLM-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_new_pmx_94X_mc2017_realistic_v14-v2/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "EWK"), ("process_name_specific", "DYJetsToLL_M50_HT400to600"), ("nof_files", 21), ("nof_db_files", 193), ("nof_events", { 'Count' : [ 10219524, ], 'CountWeighted' : [ 1.01761563e+07, 1.01737129e+07, 1.01743981e+07, ], 'CountWeightedLHEWeightScale' : [ 1.20538742e+07, 1.11476101e+07, 1.03399761e+07, 1.10052150e+07, 1.01761563e+07, 9.43543062e+06, 1.01706076e+07, 9.40081353e+06, 8.71548794e+06, ], 'CountWeightedLHEEnvelope' : [ 1.21093020e+07, 8.67583175e+06, ], 'CountWeightedFull' : [ 1.01761563e+07, 1.01737129e+07, 1.01743981e+07, ], 'CountWeightedFullLHEWeightScale' : [ 1.20538742e+07, 1.11476101e+07, 1.03399761e+07, 1.10052150e+07, 1.01761563e+07, 9.43543062e+06, 1.01706076e+07, 9.40081353e+06, 8.71548794e+06, ], 'CountWeightedFullLHEEnvelope' : [ 1.21093020e+07, 8.67583175e+06, ], 'CountWeightedL1PrefireNom' : [ 9.25099297e+06, 9.24940617e+06, 9.25079533e+06, ], 'CountWeightedL1Prefire' : [ 9.25099297e+06, 9.05513769e+06, 9.44939512e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 1.09296138e+07, 1.01302844e+07, 9.41415078e+06, 9.98329050e+06, 9.25099297e+06, 8.59440044e+06, 9.22973938e+06, 8.55002739e+06, 7.94167297e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 1.09818842e+07, 7.90412050e+06, ], 'CountWeightedFullL1PrefireNom' : [ 9.25099297e+06, 9.24940617e+06, 9.25079533e+06, ], 'CountWeightedFullL1Prefire' : [ 9.25099297e+06, 9.05513769e+06, 9.44939512e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 1.09296138e+07, 1.01302844e+07, 9.41415078e+06, 9.98329050e+06, 9.25099297e+06, 8.59440044e+06, 9.22973938e+06, 8.55002739e+06, 7.94167297e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 1.09818842e+07, 7.90412050e+06, ], 'Count_LHENjet1' : [ 47143, ], 'CountWeighted_LHENjet1' : [ 4.67974420e+04, 4.68066492e+04, 4.67909866e+04, ], 'CountWeightedLHEWeightScale_LHENjet1' : [ 5.14607307e+04, 4.80230125e+04, 4.49340679e+04, 5.01434680e+04, 4.67974420e+04, 4.37908969e+04, 4.90154159e+04, 4.57482906e+04, 4.28119788e+04, ], 'CountWeightedLHEEnvelope_LHENjet1' : [ 5.14642516e+04, 4.28085067e+04, ], 'CountWeightedFull_LHENjet1' : [ 4.67974420e+04, 4.68066492e+04, 4.67909866e+04, ], 'CountWeightedFullLHEWeightScale_LHENjet1' : [ 5.14607307e+04, 4.80230125e+04, 4.49340679e+04, 5.01434680e+04, 4.67974420e+04, 4.37908969e+04, 4.90154159e+04, 4.57482906e+04, 4.28119788e+04, ], 'CountWeightedFullLHEEnvelope_LHENjet1' : [ 5.14642516e+04, 4.28085067e+04, ], 'CountWeightedL1PrefireNom_LHENjet1' : [ 4.56512751e+04, 4.56597676e+04, 4.56467104e+04, ], 'CountWeightedL1Prefire_LHENjet1' : [ 4.56512751e+04, 4.54181309e+04, 4.58885807e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet1' : [ 5.01679034e+04, 4.68505437e+04, 4.38656077e+04, 4.88796221e+04, 4.56512751e+04, 4.27464072e+04, 4.77764232e+04, 4.46246735e+04, 4.17880468e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet1' : [ 5.01722739e+04, 4.17837660e+04, ], 'CountWeightedFullL1PrefireNom_LHENjet1' : [ 4.56512751e+04, 4.56597676e+04, 4.56467104e+04, ], 'CountWeightedFullL1Prefire_LHENjet1' : [ 4.56512751e+04, 4.54181309e+04, 4.58885807e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet1' : [ 5.01679034e+04, 4.68505437e+04, 4.38656077e+04, 4.88796221e+04, 4.56512751e+04, 4.27464072e+04, 4.77764232e+04, 4.46246735e+04, 4.17880468e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet1' : [ 5.01722739e+04, 4.17837660e+04, ], 'Count_LHENjet2' : [ 759819, ], 'CountWeighted_LHENjet2' : [ 7.56746363e+05, 7.56595332e+05, 7.56855578e+05, ], 'CountWeightedLHEWeightScale_LHENjet2' : [ 8.66801986e+05, 8.22541504e+05, 7.80884818e+05, 7.97869354e+05, 7.56746363e+05, 7.18111590e+05, 7.42228301e+05, 7.03669871e+05, 6.67467555e+05, ], 'CountWeightedLHEEnvelope_LHENjet2' : [ 8.69949188e+05, 6.65451104e+05, ], 'CountWeightedFull_LHENjet2' : [ 7.56746363e+05, 7.56595332e+05, 7.56855578e+05, ], 'CountWeightedFullLHEWeightScale_LHENjet2' : [ 8.66801986e+05, 8.22541504e+05, 7.80884818e+05, 7.97869354e+05, 7.56746363e+05, 7.18111590e+05, 7.42228301e+05, 7.03669871e+05, 6.67467555e+05, ], 'CountWeightedFullLHEEnvelope_LHENjet2' : [ 8.69949188e+05, 6.65451104e+05, ], 'CountWeightedL1PrefireNom_LHENjet2' : [ 6.96864352e+05, 6.96669314e+05, 6.96993340e+05, ], 'CountWeightedL1Prefire_LHENjet2' : [ 6.96864352e+05, 6.84557221e+05, 7.09397051e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet2' : [ 7.96247738e+05, 7.56883758e+05, 7.19616926e+05, 7.33489744e+05, 6.96864352e+05, 6.62254436e+05, 6.82811314e+05, 6.48425826e+05, 6.15957455e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet2' : [ 7.99281160e+05, 6.13992330e+05, ], 'CountWeightedFullL1PrefireNom_LHENjet2' : [ 6.96864352e+05, 6.96669314e+05, 6.96993340e+05, ], 'CountWeightedFullL1Prefire_LHENjet2' : [ 6.96864352e+05, 6.84557221e+05, 7.09397051e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet2' : [ 7.96247738e+05, 7.56883758e+05, 7.19616926e+05, 7.33489744e+05, 6.96864352e+05, 6.62254436e+05, 6.82811314e+05, 6.48425826e+05, 6.15957455e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet2' : [ 7.99281160e+05, 6.13992330e+05, ], 'Count_LHENjet3' : [ 1900134, ], 'CountWeighted_LHENjet3' : [ 1.89191272e+06, 1.89194225e+06, 1.89204852e+06, ], 'CountWeightedLHEWeightScale_LHENjet3' : [ 2.20115286e+06, 2.06763998e+06, 1.94347636e+06, 2.01493938e+06, 1.89191272e+06, 1.77767845e+06, 1.86581888e+06, 1.75126917e+06, 1.64495540e+06, ], 'CountWeightedLHEEnvelope_LHENjet3' : [ 2.21339049e+06, 1.63620038e+06, ], 'CountWeightedFull_LHENjet3' : [ 1.89191272e+06, 1.89194225e+06, 1.89204852e+06, ], 'CountWeightedFullLHEWeightScale_LHENjet3' : [ 2.20115286e+06, 2.06763998e+06, 1.94347636e+06, 2.01493938e+06, 1.89191272e+06, 1.77767845e+06, 1.86581888e+06, 1.75126917e+06, 1.64495540e+06, ], 'CountWeightedFullLHEEnvelope_LHENjet3' : [ 2.21339049e+06, 1.63620038e+06, ], 'CountWeightedL1PrefireNom_LHENjet3' : [ 1.73296871e+06, 1.73287492e+06, 1.73323793e+06, ], 'CountWeightedL1Prefire_LHENjet3' : [ 1.73296871e+06, 1.69981597e+06, 1.76663195e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet3' : [ 2.01129630e+06, 1.89279795e+06, 1.78193466e+06, 1.84227228e+06, 1.73296871e+06, 1.63087740e+06, 1.70685573e+06, 1.60499966e+06, 1.50990152e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet3' : [ 2.02284654e+06, 1.50160420e+06, ], 'CountWeightedFullL1PrefireNom_LHENjet3' : [ 1.73296871e+06, 1.73287492e+06, 1.73323793e+06, ], 'CountWeightedFullL1Prefire_LHENjet3' : [ 1.73296871e+06, 1.69981597e+06, 1.76663195e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet3' : [ 2.01129630e+06, 1.89279795e+06, 1.78193466e+06, 1.84227228e+06, 1.73296871e+06, 1.63087740e+06, 1.70685573e+06, 1.60499966e+06, 1.50990152e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet3' : [ 2.02284654e+06, 1.50160420e+06, ], 'Count_LHENjet4' : [ 7512428, ], 'CountWeighted_LHENjet4' : [ 7.47968698e+06, 7.47929262e+06, 7.47856841e+06, ], 'CountWeightedLHEWeightScale_LHENjet4' : [ 8.93445361e+06, 8.20923264e+06, 7.57070259e+06, 8.14232292e+06, 7.47968698e+06, 6.89585764e+06, 7.51355670e+06, 6.89994681e+06, 6.36026477e+06, ], 'CountWeightedLHEEnvelope_LHENjet4' : [ 8.97449531e+06, 6.33138748e+06, ], 'CountWeightedFull_LHENjet4' : [ 7.47968698e+06, 7.47929262e+06, 7.47856841e+06, ], 'CountWeightedFullLHEWeightScale_LHENjet4' : [ 8.93445361e+06, 8.20923264e+06, 7.57070259e+06, 8.14232292e+06, 7.47968698e+06, 6.89585764e+06, 7.51355670e+06, 6.89994681e+06, 6.36026477e+06, ], 'CountWeightedFullLHEEnvelope_LHENjet4' : [ 8.97449531e+06, 6.33138748e+06, ], 'CountWeightedL1PrefireNom_LHENjet4' : [ 6.77501289e+06, 6.77460955e+06, 6.77490797e+06, ], 'CountWeightedL1Prefire_LHENjet4' : [ 6.77501289e+06, 6.62491141e+06, 6.92699258e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet4' : [ 8.07190231e+06, 7.43367708e+06, 6.86874312e+06, 7.35868347e+06, 6.77501289e+06, 6.25852933e+06, 6.79230069e+06, 6.25191262e+06, 5.77403042e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet4' : [ 8.10958366e+06, 5.74674609e+06, ], 'CountWeightedFullL1PrefireNom_LHENjet4' : [ 6.77501289e+06, 6.77460955e+06, 6.77490797e+06, ], 'CountWeightedFullL1Prefire_LHENjet4' : [ 6.77501289e+06, 6.62491141e+06, 6.92699258e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet4' : [ 8.07190231e+06, 7.43367708e+06, 6.86874312e+06, 7.35868347e+06, 6.77501289e+06, 6.25852933e+06, 6.79230069e+06, 6.25191262e+06, 5.77403042e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet4' : [ 8.10958366e+06, 5.74674609e+06, ], }), ("nof_tree_events", 10219524), ("nof_db_events", 10219524), ("fsize_local", 83029754574), # 83.03GB, avg file size 3.95GB ("fsize_db", 605120374708), # 605.12GB, avg file size 3.14GB ("use_it", False), ("xsection", 7.9592), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Apr19_woPresel_nom_all_hh_multilepton/ntuples/DYJetsToLL_M50_HT400to600"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/DYJetsToLL_M-50_HT-400to600_TuneCP5_13TeV-madgraphMLM-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14_ext1-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "EWK"), ("process_name_specific", "DYJetsToLL_M50_HT400to600_ext1"), ("nof_files", 3), ("nof_db_files", 23), ("nof_events", { 'Count' : [ 1124294, ], 'CountWeighted' : [ 1.11929957e+06, 1.11901334e+06, 1.11917665e+06, ], 'CountWeightedLHEWeightScale' : [ 1.32595162e+06, 1.22622753e+06, 1.13737355e+06, 1.21060588e+06, 1.11929957e+06, 1.03787641e+06, 1.11878369e+06, 1.03407703e+06, 9.58696172e+05, ], 'CountWeightedLHEEnvelope' : [ 1.33209531e+06, 9.54287820e+05, ], 'CountWeightedFull' : [ 1.11929957e+06, 1.11901334e+06, 1.11917665e+06, ], 'CountWeightedFullLHEWeightScale' : [ 1.32595162e+06, 1.22622753e+06, 1.13737355e+06, 1.21060588e+06, 1.11929957e+06, 1.03787641e+06, 1.11878369e+06, 1.03407703e+06, 9.58696172e+05, ], 'CountWeightedFullLHEEnvelope' : [ 1.33209531e+06, 9.54287820e+05, ], 'CountWeightedL1PrefireNom' : [ 1.01773351e+06, 1.01758238e+06, 1.01777925e+06, ], 'CountWeightedL1Prefire' : [ 1.01773351e+06, 9.96228789e+05, 1.03952391e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 1.20245055e+06, 1.11449872e+06, 1.03570730e+06, 1.09835046e+06, 1.01773351e+06, 9.45537469e+05, 1.01544827e+06, 9.40662539e+05, 8.73741875e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 1.20825780e+06, 8.69554766e+05, ], 'CountWeightedFullL1PrefireNom' : [ 1.01773351e+06, 1.01758238e+06, 1.01777925e+06, ], 'CountWeightedFullL1Prefire' : [ 1.01773351e+06, 9.96228789e+05, 1.03952391e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 1.20245055e+06, 1.11449872e+06, 1.03570730e+06, 1.09835046e+06, 1.01773351e+06, 9.45537469e+05, 1.01544827e+06, 9.40662539e+05, 8.73741875e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 1.20825780e+06, 8.69554766e+05, ], 'Count_LHENjet1' : [ 5718, ], 'CountWeighted_LHENjet1' : [ 5.74324158e+03, 5.72930627e+03, 5.75881738e+03, ], 'CountWeightedLHEWeightScale_LHENjet1' : [ 6.30709875e+03, 5.88865521e+03, 5.51239417e+03, 6.15092627e+03, 5.74324158e+03, 5.37666229e+03, 6.01718121e+03, 5.61875879e+03, 5.26043127e+03, ], 'CountWeightedLHEEnvelope_LHENjet1' : [ 6.30750964e+03, 5.26002844e+03, ], 'CountWeightedFull_LHENjet1' : [ 5.74324158e+03, 5.72930627e+03, 5.75881738e+03, ], 'CountWeightedFullLHEWeightScale_LHENjet1' : [ 6.30709875e+03, 5.88865521e+03, 5.51239417e+03, 6.15092627e+03, 5.74324158e+03, 5.37666229e+03, 6.01718121e+03, 5.61875879e+03, 5.26043127e+03, ], 'CountWeightedFullLHEEnvelope_LHENjet1' : [ 6.30750964e+03, 5.26002844e+03, ], 'CountWeightedL1PrefireNom_LHENjet1' : [ 5.59949805e+03, 5.58822284e+03, 5.61202618e+03, ], 'CountWeightedL1Prefire_LHENjet1' : [ 5.59949805e+03, 5.57012549e+03, 5.62931128e+03, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet1' : [ 6.14492249e+03, 5.74136359e+03, 5.37797565e+03, 5.99264325e+03, 5.59949805e+03, 5.24548749e+03, 5.86224042e+03, 5.47805823e+03, 5.13204034e+03, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet1' : [ 6.14534875e+03, 5.13162555e+03, ], 'CountWeightedFullL1PrefireNom_LHENjet1' : [ 5.59949805e+03, 5.58822284e+03, 5.61202618e+03, ], 'CountWeightedFullL1Prefire_LHENjet1' : [ 5.59949805e+03, 5.57012549e+03, 5.62931128e+03, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet1' : [ 6.14492249e+03, 5.74136359e+03, 5.37797565e+03, 5.99264325e+03, 5.59949805e+03, 5.24548749e+03, 5.86224042e+03, 5.47805823e+03, 5.13204034e+03, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet1' : [ 6.14534875e+03, 5.13162555e+03, ], 'Count_LHENjet2' : [ 83019, ], 'CountWeighted_LHENjet2' : [ 8.24829980e+04, 8.25072793e+04, 8.24952441e+04, ], 'CountWeightedLHEWeightScale_LHENjet2' : [ 9.44403096e+04, 8.96218252e+04, 8.50863027e+04, 8.69617627e+04, 8.24829980e+04, 7.82745234e+04, 8.09237275e+04, 7.67224131e+04, 7.27775098e+04, ], 'CountWeightedLHEEnvelope_LHENjet2' : [ 9.47742012e+04, 7.25652686e+04, ], 'CountWeightedFull_LHENjet2' : [ 8.24829980e+04, 8.25072793e+04, 8.24952441e+04, ], 'CountWeightedFullLHEWeightScale_LHENjet2' : [ 9.44403096e+04, 8.96218252e+04, 8.50863027e+04, 8.69617627e+04, 8.24829980e+04, 7.82745234e+04, 8.09237275e+04, 7.67224131e+04, 7.27775098e+04, ], 'CountWeightedFullLHEEnvelope_LHENjet2' : [ 9.47742012e+04, 7.25652686e+04, ], 'CountWeightedL1PrefireNom_LHENjet2' : [ 7.60346113e+04, 7.60453213e+04, 7.60565244e+04, ], 'CountWeightedL1Prefire_LHENjet2' : [ 7.60346113e+04, 7.47079912e+04, 7.73851895e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet2' : [ 8.68504160e+04, 8.25614434e+04, 7.85001240e+04, 8.00264160e+04, 7.60346113e+04, 7.22615479e+04, 7.45149277e+04, 7.07660176e+04, 6.72255024e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet2' : [ 8.71816406e+04, 6.70097988e+04, ], 'CountWeightedFullL1PrefireNom_LHENjet2' : [ 7.60346113e+04, 7.60453213e+04, 7.60565244e+04, ], 'CountWeightedFullL1Prefire_LHENjet2' : [ 7.60346113e+04, 7.47079912e+04, 7.73851895e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet2' : [ 8.68504160e+04, 8.25614434e+04, 7.85001240e+04, 8.00264160e+04, 7.60346113e+04, 7.22615479e+04, 7.45149277e+04, 7.07660176e+04, 6.72255024e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet2' : [ 8.71816406e+04, 6.70097988e+04, ], 'Count_LHENjet3' : [ 210430, ], 'CountWeighted_LHENjet3' : [ 2.09496377e+05, 2.09388281e+05, 2.09570068e+05, ], 'CountWeightedLHEWeightScale_LHENjet3' : [ 2.43797852e+05, 2.29007531e+05, 2.15259168e+05, 2.23117494e+05, 2.09496377e+05, 1.96850027e+05, 2.06558045e+05, 1.93879115e+05, 1.82114055e+05, ], 'CountWeightedLHEEnvelope_LHENjet3' : [ 2.45160775e+05, 1.81136133e+05, ], 'CountWeightedFull_LHENjet3' : [ 2.09496377e+05, 2.09388281e+05, 2.09570068e+05, ], 'CountWeightedFullLHEWeightScale_LHENjet3' : [ 2.43797852e+05, 2.29007531e+05, 2.15259168e+05, 2.23117494e+05, 2.09496377e+05, 1.96850027e+05, 2.06558045e+05, 1.93879115e+05, 1.82114055e+05, ], 'CountWeightedFullLHEEnvelope_LHENjet3' : [ 2.45160775e+05, 1.81136133e+05, ], 'CountWeightedL1PrefireNom_LHENjet3' : [ 1.91881697e+05, 1.91760646e+05, 1.91977721e+05, ], 'CountWeightedL1Prefire_LHENjet3' : [ 1.91881697e+05, 1.88208900e+05, 1.95613055e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet3' : [ 2.22734953e+05, 2.09616266e+05, 1.97344990e+05, 2.03975324e+05, 1.91881697e+05, 1.80582551e+05, 1.88945887e+05, 1.77677949e+05, 1.67158182e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet3' : [ 2.24024500e+05, 1.66228406e+05, ], 'CountWeightedFullL1PrefireNom_LHENjet3' : [ 1.91881697e+05, 1.91760646e+05, 1.91977721e+05, ], 'CountWeightedFullL1Prefire_LHENjet3' : [ 1.91881697e+05, 1.88208900e+05, 1.95613055e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet3' : [ 2.22734953e+05, 2.09616266e+05, 1.97344990e+05, 2.03975324e+05, 1.91881697e+05, 1.80582551e+05, 1.88945887e+05, 1.77677949e+05, 1.67158182e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet3' : [ 2.24024500e+05, 1.66228406e+05, ], 'Count_LHENjet4' : [ 825127, ], 'CountWeighted_LHENjet4' : [ 8.21478211e+05, 8.21556234e+05, 8.21423766e+05, ], 'CountWeightedLHEWeightScale_LHENjet4' : [ 9.81406969e+05, 9.01683867e+05, 8.31517805e+05, 8.94374625e+05, 8.21478211e+05, 7.57380688e+05, 8.25288734e+05, 7.57840312e+05, 6.98546172e+05, ], 'CountWeightedLHEEnvelope_LHENjet4' : [ 9.85853422e+05, 6.95329219e+05, ], 'CountWeightedFull_LHENjet4' : [ 8.21478211e+05, 8.21556234e+05, 8.21423766e+05, ], 'CountWeightedFullLHEWeightScale_LHENjet4' : [ 9.81406969e+05, 9.01683867e+05, 8.31517805e+05, 8.94374625e+05, 8.21478211e+05, 7.57380688e+05, 8.25288734e+05, 7.57840312e+05, 6.98546172e+05, ], 'CountWeightedFullLHEEnvelope_LHENjet4' : [ 9.85853422e+05, 6.95329219e+05, ], 'CountWeightedL1PrefireNom_LHENjet4' : [ 7.44178812e+05, 7.44266203e+05, 7.44166297e+05, ], 'CountWeightedL1Prefire_LHENjet4' : [ 7.44178812e+05, 7.27700711e+05, 7.60854477e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet4' : [ 8.86720742e+05, 8.16568812e+05, 7.54485773e+05, 8.08356578e+05, 7.44178812e+05, 6.87451344e+05, 7.46126828e+05, 6.86737172e+05, 6.34229227e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet4' : [ 8.90908102e+05, 6.31188539e+05, ], 'CountWeightedFullL1PrefireNom_LHENjet4' : [ 7.44178812e+05, 7.44266203e+05, 7.44166297e+05, ], 'CountWeightedFullL1Prefire_LHENjet4' : [ 7.44178812e+05, 7.27700711e+05, 7.60854477e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet4' : [ 8.86720742e+05, 8.16568812e+05, 7.54485773e+05, 8.08356578e+05, 7.44178812e+05, 6.87451344e+05, 7.46126828e+05, 6.86737172e+05, 6.34229227e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet4' : [ 8.90908102e+05, 6.31188539e+05, ], }), ("nof_tree_events", 1124294), ("nof_db_events", 1124294), ("fsize_local", 9107794677), # 9.11GB, avg file size 3.04GB ("fsize_db", 65482538135), # 65.48GB, avg file size 2.85GB ("use_it", False), ("xsection", 7.9592), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Apr19_woPresel_nom_all_hh_multilepton/ntuples/DYJetsToLL_M50_HT400to600_ext1"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/DYJetsToLL_M-50_HT-600to800_TuneCP5_13TeV-madgraphMLM-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_new_pmx_94X_mc2017_realistic_v14-v2/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "EWK"), ("process_name_specific", "DYJetsToLL_M50_HT600to800"), ("nof_files", 36), ("nof_db_files", 183), ("nof_events", { 'Count' : [ 8743640, ], 'CountWeighted' : [ 8.69166595e+06, 8.69174247e+06, 8.69167691e+06, ], 'CountWeightedLHEWeightScale' : [ 1.06732940e+07, 9.65729415e+06, 8.79663770e+06, 9.60938964e+06, 8.69166595e+06, 7.91504478e+06, 8.76382730e+06, 7.92453439e+06, 7.21443173e+06, ], 'CountWeightedLHEEnvelope' : [ 1.06967076e+07, 7.19921572e+06, ], 'CountWeightedFull' : [ 8.69166595e+06, 8.69174247e+06, 8.69167691e+06, ], 'CountWeightedFullLHEWeightScale' : [ 1.06732940e+07, 9.65729415e+06, 8.79663770e+06, 9.60938964e+06, 8.69166595e+06, 7.91504478e+06, 8.76382730e+06, 7.92453439e+06, 7.21443173e+06, ], 'CountWeightedFullLHEEnvelope' : [ 1.06967076e+07, 7.19921572e+06, ], 'CountWeightedL1PrefireNom' : [ 7.90159243e+06, 7.90086533e+06, 7.90231920e+06, ], 'CountWeightedL1Prefire' : [ 7.90159243e+06, 7.73675903e+06, 8.06896809e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 9.67015750e+06, 8.77280386e+06, 8.00888992e+06, 8.71302897e+06, 7.90159243e+06, 7.21151768e+06, 7.95176186e+06, 7.20893108e+06, 6.57738792e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 9.69239277e+06, 6.56285690e+06, ], 'CountWeightedFullL1PrefireNom' : [ 7.90159243e+06, 7.90086533e+06, 7.90231920e+06, ], 'CountWeightedFullL1Prefire' : [ 7.90159243e+06, 7.73675903e+06, 8.06896809e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 9.67015750e+06, 8.77280386e+06, 8.00888992e+06, 8.71302897e+06, 7.90159243e+06, 7.21151768e+06, 7.95176186e+06, 7.20893108e+06, 6.57738792e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 9.69239277e+06, 6.56285690e+06, ], 'Count_LHENjet1' : [ 16075, ], 'CountWeighted_LHENjet1' : [ 1.58981091e+04, 1.58974893e+04, 1.58946016e+04, ], 'CountWeightedLHEWeightScale_LHENjet1' : [ 1.78634441e+04, 1.62941416e+04, 1.49403620e+04, 1.74284654e+04, 1.58981091e+04, 1.45780978e+04, 1.70535975e+04, 1.55569321e+04, 1.42659023e+04, ], 'CountWeightedLHEEnvelope_LHENjet1' : [ 1.78555608e+04, 1.42737865e+04, ], 'CountWeightedFull_LHENjet1' : [ 1.58981091e+04, 1.58974893e+04, 1.58946016e+04, ], 'CountWeightedFullLHEWeightScale_LHENjet1' : [ 1.78634441e+04, 1.62941416e+04, 1.49403620e+04, 1.74284654e+04, 1.58981091e+04, 1.45780978e+04, 1.70535975e+04, 1.55569321e+04, 1.42659023e+04, ], 'CountWeightedFullLHEEnvelope_LHENjet1' : [ 1.78555608e+04, 1.42737865e+04, ], 'CountWeightedL1PrefireNom_LHENjet1' : [ 1.58084039e+04, 1.58053534e+04, 1.58074987e+04, ], 'CountWeightedL1Prefire_LHENjet1' : [ 1.58084039e+04, 1.57884783e+04, 1.58280162e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet1' : [ 1.77588823e+04, 1.62022373e+04, 1.48589808e+04, 1.73263696e+04, 1.58084039e+04, 1.44986843e+04, 1.69536307e+04, 1.54691248e+04, 1.41881878e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet1' : [ 1.77510016e+04, 1.41960691e+04, ], 'CountWeightedFullL1PrefireNom_LHENjet1' : [ 1.58084039e+04, 1.58053534e+04, 1.58074987e+04, ], 'CountWeightedFullL1Prefire_LHENjet1' : [ 1.58084039e+04, 1.57884783e+04, 1.58280162e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet1' : [ 1.77588823e+04, 1.62022373e+04, 1.48589808e+04, 1.73263696e+04, 1.58084039e+04, 1.44986843e+04, 1.69536307e+04, 1.54691248e+04, 1.41881878e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet1' : [ 1.77510016e+04, 1.41960691e+04, ], 'Count_LHENjet2' : [ 407730, ], 'CountWeighted_LHENjet2' : [ 4.05048582e+05, 4.04886321e+05, 4.05188940e+05, ], 'CountWeightedLHEWeightScale_LHENjet2' : [ 4.75785843e+05, 4.43758837e+05, 4.15259130e+05, 4.34521527e+05, 4.05048582e+05, 3.78861575e+05, 4.01052906e+05, 3.73665137e+05, 3.49351424e+05, ], 'CountWeightedLHEEnvelope_LHENjet2' : [ 4.76520604e+05, 3.48970416e+05, ], 'CountWeightedFull_LHENjet2' : [ 4.05048582e+05, 4.04886321e+05, 4.05188940e+05, ], 'CountWeightedFullLHEWeightScale_LHENjet2' : [ 4.75785843e+05, 4.43758837e+05, 4.15259130e+05, 4.34521527e+05, 4.05048582e+05, 3.78861575e+05, 4.01052906e+05, 3.73665137e+05, 3.49351424e+05, ], 'CountWeightedFullLHEEnvelope_LHENjet2' : [ 4.76520604e+05, 3.48970416e+05, ], 'CountWeightedL1PrefireNom_LHENjet2' : [ 3.77725473e+05, 3.77527560e+05, 3.77911846e+05, ], 'CountWeightedL1Prefire_LHENjet2' : [ 3.77725473e+05, 3.72117695e+05, 3.83433515e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet2' : [ 4.42584353e+05, 4.13505354e+05, 3.87539983e+05, 4.04527745e+05, 3.77725473e+05, 3.53832972e+05, 3.73648524e+05, 3.48707253e+05, 3.26494640e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet2' : [ 4.43305197e+05, 3.26113991e+05, ], 'CountWeightedFullL1PrefireNom_LHENjet2' : [ 3.77725473e+05, 3.77527560e+05, 3.77911846e+05, ], 'CountWeightedFullL1Prefire_LHENjet2' : [ 3.77725473e+05, 3.72117695e+05, 3.83433515e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet2' : [ 4.42584353e+05, 4.13505354e+05, 3.87539983e+05, 4.04527745e+05, 3.77725473e+05, 3.53832972e+05, 3.73648524e+05, 3.48707253e+05, 3.26494640e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet2' : [ 4.43305197e+05, 3.26113991e+05, ], 'Count_LHENjet3' : [ 1179065, ], 'CountWeighted_LHENjet3' : [ 1.17104863e+06, 1.17117531e+06, 1.17104459e+06, ], 'CountWeightedLHEWeightScale_LHENjet3' : [ 1.40394327e+06, 1.29204962e+06, 1.19428599e+06, 1.27312120e+06, 1.17104863e+06, 1.08198311e+06, 1.16798793e+06, 1.07384251e+06, 9.91760913e+05, ], 'CountWeightedLHEEnvelope_LHENjet3' : [ 1.40789238e+06, 9.89077868e+05, ], 'CountWeightedFull_LHENjet3' : [ 1.17104863e+06, 1.17117531e+06, 1.17104459e+06, ], 'CountWeightedFullLHEWeightScale_LHENjet3' : [ 1.40394327e+06, 1.29204962e+06, 1.19428599e+06, 1.27312120e+06, 1.17104863e+06, 1.08198311e+06, 1.16798793e+06, 1.07384251e+06, 9.91760913e+05, ], 'CountWeightedFullLHEEnvelope_LHENjet3' : [ 1.40789238e+06, 9.89077868e+05, ], 'CountWeightedL1PrefireNom_LHENjet3' : [ 1.08240416e+06, 1.08244273e+06, 1.08247460e+06, ], 'CountWeightedL1Prefire_LHENjet3' : [ 1.08240416e+06, 1.06407366e+06, 1.10103540e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet3' : [ 1.29406476e+06, 1.19333446e+06, 1.10495515e+06, 1.17442449e+06, 1.08240416e+06, 1.00178485e+06, 1.07822641e+06, 9.93245742e+05, 9.18859874e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet3' : [ 1.29782556e+06, 9.16297483e+05, ], 'CountWeightedFullL1PrefireNom_LHENjet3' : [ 1.08240416e+06, 1.08244273e+06, 1.08247460e+06, ], 'CountWeightedFullL1Prefire_LHENjet3' : [ 1.08240416e+06, 1.06407366e+06, 1.10103540e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet3' : [ 1.29406476e+06, 1.19333446e+06, 1.10495515e+06, 1.17442449e+06, 1.08240416e+06, 1.00178485e+06, 1.07822641e+06, 9.93245742e+05, 9.18859874e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet3' : [ 1.29782556e+06, 9.16297483e+05, ], 'Count_LHENjet4' : [ 7140770, ], 'CountWeighted_LHENjet4' : [ 7.09959680e+06, 7.09971796e+06, 7.09959422e+06, ], 'CountWeightedLHEWeightScale_LHENjet4' : [ 8.77569878e+06, 7.90518713e+06, 7.17215648e+06, 7.88432080e+06, 7.09959680e+06, 6.43962348e+06, 7.17773616e+06, 6.46146443e+06, 5.85905161e+06, ], 'CountWeightedLHEEnvelope_LHENjet4' : [ 8.79443665e+06, 5.84689175e+06, ], 'CountWeightedFull_LHENjet4' : [ 7.09959680e+06, 7.09971796e+06, 7.09959422e+06, ], 'CountWeightedFullLHEWeightScale_LHENjet4' : [ 8.77569878e+06, 7.90518713e+06, 7.17215648e+06, 7.88432080e+06, 7.09959680e+06, 6.43962348e+06, 7.17773616e+06, 6.46146443e+06, 5.85905161e+06, ], 'CountWeightedFullLHEEnvelope_LHENjet4' : [ 8.79443665e+06, 5.84689175e+06, ], 'CountWeightedL1PrefireNom_LHENjet4' : [ 6.42560536e+06, 6.42505008e+06, 6.42616985e+06, ], 'CountWeightedL1Prefire_LHENjet4' : [ 6.42560536e+06, 6.28476987e+06, 6.56864029e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet4' : [ 7.91574793e+06, 7.14975765e+06, 6.50153867e+06, 7.11675197e+06, 6.42560536e+06, 5.84139944e+06, 6.48293401e+06, 5.85150226e+06, 5.31784315e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet4' : [ 7.93350921e+06, 5.30624758e+06, ], 'CountWeightedFullL1PrefireNom_LHENjet4' : [ 6.42560536e+06, 6.42505008e+06, 6.42616985e+06, ], 'CountWeightedFullL1Prefire_LHENjet4' : [ 6.42560536e+06, 6.28476987e+06, 6.56864029e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet4' : [ 7.91574793e+06, 7.14975765e+06, 6.50153867e+06, 7.11675197e+06, 6.42560536e+06, 5.84139944e+06, 6.48293401e+06, 5.85150226e+06, 5.31784315e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet4' : [ 7.93350921e+06, 5.30624758e+06, ], }), ("nof_tree_events", 8743640), ("nof_db_events", 8743640), ("fsize_local", 76432197650), # 76.43GB, avg file size 2.12GB ("fsize_db", 535469359588), # 535.47GB, avg file size 2.93GB ("use_it", False), ("xsection", 2.0041), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Apr19_woPresel_nom_all_hh_multilepton/ntuples/DYJetsToLL_M50_HT600to800"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/DYJetsToLL_M-50_HT-800to1200_TuneCP5_13TeV-madgraphMLM-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_new_pmx_94X_mc2017_realistic_v14-v2/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "EWK"), ("process_name_specific", "DYJetsToLL_M50_HT800to1200"), ("nof_files", 7), ("nof_db_files", 66), ("nof_events", { 'Count' : [ 3114980, ], 'CountWeighted' : [ 3.08913730e+06, 3.08928511e+06, 3.08960309e+06, ], 'CountWeightedLHEWeightScale' : [ 3.88953392e+06, 3.45533972e+06, 3.09922686e+06, 3.47889806e+06, 3.08913730e+06, 2.77066262e+06, 3.15188722e+06, 2.79852916e+06, 2.50899328e+06, ], 'CountWeightedLHEEnvelope' : [ 3.89406039e+06, 2.50628984e+06, ], 'CountWeightedFull' : [ 3.08913730e+06, 3.08928511e+06, 3.08960309e+06, ], 'CountWeightedFullLHEWeightScale' : [ 3.88953392e+06, 3.45533972e+06, 3.09922686e+06, 3.47889806e+06, 3.08913730e+06, 2.77066262e+06, 3.15188722e+06, 2.79852916e+06, 2.50899328e+06, ], 'CountWeightedFullLHEEnvelope' : [ 3.89406039e+06, 2.50628984e+06, ], 'CountWeightedL1PrefireNom' : [ 2.85228254e+06, 2.85214484e+06, 2.85256414e+06, ], 'CountWeightedL1Prefire' : [ 2.85228254e+06, 2.80240288e+06, 2.90280630e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 3.57979488e+06, 3.18763910e+06, 2.86478442e+06, 3.20442399e+06, 2.85228254e+06, 2.56297737e+06, 2.90521143e+06, 2.58541444e+06, 2.32240733e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 3.58416150e+06, 2.31978155e+06, ], 'CountWeightedFullL1PrefireNom' : [ 2.85228254e+06, 2.85214484e+06, 2.85256414e+06, ], 'CountWeightedFullL1Prefire' : [ 2.85228254e+06, 2.80240288e+06, 2.90280630e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 3.57979488e+06, 3.18763910e+06, 2.86478442e+06, 3.20442399e+06, 2.85228254e+06, 2.56297737e+06, 2.90521143e+06, 2.58541444e+06, 2.32240733e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 3.58416150e+06, 2.31978155e+06, ], 'Count_LHENjet1' : [ 2160, ], 'CountWeighted_LHENjet1' : [ 2.12114942e+03, 2.11839844e+03, 2.11844223e+03, ], 'CountWeightedLHEWeightScale_LHENjet1' : [ 2.42314458e+03, 2.17229433e+03, 1.96093690e+03, 2.36598073e+03, 2.12114942e+03, 1.91488408e+03, 2.31648029e+03, 2.07687724e+03, 1.87500782e+03, ], 'CountWeightedLHEEnvelope_LHENjet1' : [ 2.42385695e+03, 1.87429545e+03, ], 'CountWeightedFull_LHENjet1' : [ 2.12114942e+03, 2.11839844e+03, 2.11844223e+03, ], 'CountWeightedFullLHEWeightScale_LHENjet1' : [ 2.42314458e+03, 2.17229433e+03, 1.96093690e+03, 2.36598073e+03, 2.12114942e+03, 1.91488408e+03, 2.31648029e+03, 2.07687724e+03, 1.87500782e+03, ], 'CountWeightedFullLHEEnvelope_LHENjet1' : [ 2.42385695e+03, 1.87429545e+03, ], 'CountWeightedL1PrefireNom_LHENjet1' : [ 2.11690799e+03, 2.11420030e+03, 2.11422380e+03, ], 'CountWeightedL1Prefire_LHENjet1' : [ 2.11690799e+03, 2.11585893e+03, 2.11790269e+03, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet1' : [ 2.41806248e+03, 2.16798597e+03, 1.95723457e+03, 2.36097505e+03, 2.11690799e+03, 1.91124076e+03, 2.31154079e+03, 2.07269370e+03, 1.87141570e+03, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet1' : [ 2.41877483e+03, 1.87070336e+03, ], 'CountWeightedFullL1PrefireNom_LHENjet1' : [ 2.11690799e+03, 2.11420030e+03, 2.11422380e+03, ], 'CountWeightedFullL1Prefire_LHENjet1' : [ 2.11690799e+03, 2.11585893e+03, 2.11790269e+03, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet1' : [ 2.41806248e+03, 2.16798597e+03, 1.95723457e+03, 2.36097505e+03, 2.11690799e+03, 1.91124076e+03, 2.31154079e+03, 2.07269370e+03, 1.87141570e+03, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet1' : [ 2.41877483e+03, 1.87070336e+03, ], 'Count_LHENjet2' : [ 99083, ], 'CountWeighted_LHENjet2' : [ 9.81002815e+04, 9.81598640e+04, 9.80159277e+04, ], 'CountWeightedLHEWeightScale_LHENjet2' : [ 1.17259432e+05, 1.07942495e+05, 9.98812539e+04, 1.06618324e+05, 9.81002815e+04, 9.07397964e+04, 9.79511521e+04, 9.00868088e+04, 8.32956355e+04, ], 'CountWeightedLHEEnvelope_LHENjet2' : [ 1.17328451e+05, 8.32707407e+04, ], 'CountWeightedFull_LHENjet2' : [ 9.81002815e+04, 9.81598640e+04, 9.80159277e+04, ], 'CountWeightedFullLHEWeightScale_LHENjet2' : [ 1.17259432e+05, 1.07942495e+05, 9.98812539e+04, 1.06618324e+05, 9.81002815e+04, 9.07397964e+04, 9.79511521e+04, 9.00868088e+04, 8.32956355e+04, ], 'CountWeightedFullLHEEnvelope_LHENjet2' : [ 1.17328451e+05, 8.32707407e+04, ], 'CountWeightedL1PrefireNom_LHENjet2' : [ 9.34372378e+04, 9.34895920e+04, 9.33679199e+04, ], 'CountWeightedL1Prefire_LHENjet2' : [ 9.34372378e+04, 9.24547852e+04, 9.44291233e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet2' : [ 1.11487175e+05, 1.02768568e+05, 9.52085964e+04, 1.01415165e+05, 9.34372378e+04, 8.65289065e+04, 9.32096587e+04, 8.58379988e+04, 7.94593657e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet2' : [ 1.11556306e+05, 7.94335776e+04, ], 'CountWeightedFullL1PrefireNom_LHENjet2' : [ 9.34372378e+04, 9.34895920e+04, 9.33679199e+04, ], 'CountWeightedFullL1Prefire_LHENjet2' : [ 9.34372378e+04, 9.24547852e+04, 9.44291233e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet2' : [ 1.11487175e+05, 1.02768568e+05, 9.52085964e+04, 1.01415165e+05, 9.34372378e+04, 8.65289065e+04, 9.32096587e+04, 8.58379988e+04, 7.94593657e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet2' : [ 1.11556306e+05, 7.94335776e+04, ], 'Count_LHENjet3' : [ 313697, ], 'CountWeighted_LHENjet3' : [ 3.10892461e+05, 3.10917094e+05, 3.10915021e+05, ], 'CountWeightedLHEWeightScale_LHENjet3' : [ 3.80193447e+05, 3.44351108e+05, 3.14092934e+05, 3.43416919e+05, 3.10892461e+05, 2.83468636e+05, 3.13706068e+05, 2.83870991e+05, 2.58733300e+05, ], 'CountWeightedLHEEnvelope_LHENjet3' : [ 3.80804121e+05, 2.58334613e+05, ], 'CountWeightedFull_LHENjet3' : [ 3.10892461e+05, 3.10917094e+05, 3.10915021e+05, ], 'CountWeightedFullLHEWeightScale_LHENjet3' : [ 3.80193447e+05, 3.44351108e+05, 3.14092934e+05, 3.43416919e+05, 3.10892461e+05, 2.83468636e+05, 3.13706068e+05, 2.83870991e+05, 2.58733300e+05, ], 'CountWeightedFullLHEEnvelope_LHENjet3' : [ 3.80804121e+05, 2.58334613e+05, ], 'CountWeightedL1PrefireNom_LHENjet3' : [ 2.93260827e+05, 2.93284148e+05, 2.93270349e+05, ], 'CountWeightedL1Prefire_LHENjet3' : [ 2.93260827e+05, 2.89550195e+05, 2.97010957e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet3' : [ 3.57858518e+05, 3.24637277e+05, 2.96522122e+05, 3.23437638e+05, 2.93260827e+05, 2.67755723e+05, 2.95616303e+05, 2.67909525e+05, 2.44510642e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet3' : [ 3.58440791e+05, 2.44131347e+05, ], 'CountWeightedFullL1PrefireNom_LHENjet3' : [ 2.93260827e+05, 2.93284148e+05, 2.93270349e+05, ], 'CountWeightedFullL1Prefire_LHENjet3' : [ 2.93260827e+05, 2.89550195e+05, 2.97010957e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet3' : [ 3.57858518e+05, 3.24637277e+05, 2.96522122e+05, 3.23437638e+05, 2.93260827e+05, 2.67755723e+05, 2.95616303e+05, 2.67909525e+05, 2.44510642e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet3' : [ 3.58440791e+05, 2.44131347e+05, ], 'Count_LHENjet4' : [ 2700040, ], 'CountWeighted_LHENjet4' : [ 2.67833093e+06, 2.67815690e+06, 2.67851538e+06, ], 'CountWeightedLHEWeightScale_LHENjet4' : [ 3.38965258e+06, 3.00089891e+06, 2.68329333e+06, 3.02650319e+06, 2.67833093e+06, 2.39454070e+06, 2.73791587e+06, 2.42253294e+06, 2.16508956e+06, ], 'CountWeightedLHEEnvelope_LHENjet4' : [ 3.39349914e+06, 2.16281047e+06, ], 'CountWeightedFull_LHENjet4' : [ 2.67833093e+06, 2.67815690e+06, 2.67851538e+06, ], 'CountWeightedFullLHEWeightScale_LHENjet4' : [ 3.38965258e+06, 3.00089891e+06, 2.68329333e+06, 3.02650319e+06, 2.67833093e+06, 2.39454070e+06, 2.73791587e+06, 2.42253294e+06, 2.16508956e+06, ], 'CountWeightedFullLHEEnvelope_LHENjet4' : [ 3.39349914e+06, 2.16281047e+06, ], 'CountWeightedL1PrefireNom_LHENjet4' : [ 2.46364209e+06, 2.46329725e+06, 2.46378967e+06, ], 'CountWeightedL1Prefire_LHENjet4' : [ 2.46364209e+06, 2.41845502e+06, 2.50941752e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet4' : [ 3.10802494e+06, 2.75808141e+06, 2.47109773e+06, 2.77721552e+06, 2.46364209e+06, 2.20678615e+06, 2.51407469e+06, 2.22962047e+06, 1.99656213e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet4' : [ 3.11173919e+06, 1.99434234e+06, ], 'CountWeightedFullL1PrefireNom_LHENjet4' : [ 2.46364209e+06, 2.46329725e+06, 2.46378967e+06, ], 'CountWeightedFullL1Prefire_LHENjet4' : [ 2.46364209e+06, 2.41845502e+06, 2.50941752e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet4' : [ 3.10802494e+06, 2.75808141e+06, 2.47109773e+06, 2.77721552e+06, 2.46364209e+06, 2.20678615e+06, 2.51407469e+06, 2.22962047e+06, 1.99656213e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet4' : [ 3.11173919e+06, 1.99434234e+06, ], }), ("nof_tree_events", 3114980), ("nof_db_events", 3114980), ("fsize_local", 28375604711), # 28.38GB, avg file size 4.05GB ("fsize_db", 196397396234), # 196.40GB, avg file size 2.98GB ("use_it", False), ("xsection", 0.92367), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Apr19_woPresel_nom_all_hh_multilepton/ntuples/DYJetsToLL_M50_HT800to1200"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/DYJetsToLL_M-50_HT-1200to2500_TuneCP5_13TeV-madgraphMLM-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "EWK"), ("process_name_specific", "DYJetsToLL_M50_HT1200to2500"), ("nof_files", 3), ("nof_db_files", 15), ("nof_events", { 'Count' : [ 625517, ], 'CountWeighted' : [ 6.16875500e+05, 6.16866422e+05, 6.16902367e+05, ], 'CountWeightedLHEWeightScale' : [ 7.98131062e+05, 6.92124406e+05, 6.08051648e+05, 7.11485188e+05, 6.16875500e+05, 5.41877867e+05, 6.42044102e+05, 5.56582203e+05, 4.88846945e+05, ], 'CountWeightedLHEEnvelope' : [ 7.98481047e+05, 4.88663094e+05, ], 'CountWeightedFull' : [ 6.16875500e+05, 6.16866422e+05, 6.16902367e+05, ], 'CountWeightedFullLHEWeightScale' : [ 7.98131062e+05, 6.92124406e+05, 6.08051648e+05, 7.11485188e+05, 6.16875500e+05, 5.41877867e+05, 6.42044102e+05, 5.56582203e+05, 4.88846945e+05, ], 'CountWeightedFullLHEEnvelope' : [ 7.98481047e+05, 4.88663094e+05, ], 'CountWeightedL1PrefireNom' : [ 5.84590328e+05, 5.84576625e+05, 5.84638156e+05, ], 'CountWeightedL1Prefire' : [ 5.84590328e+05, 5.77551836e+05, 5.91652031e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 7.54941516e+05, 6.55552531e+05, 5.76606641e+05, 6.73359812e+05, 5.84590328e+05, 5.14124031e+05, 6.07927367e+05, 5.27696852e+05, 4.64013875e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 7.55293703e+05, 4.63823953e+05, ], 'CountWeightedFullL1PrefireNom' : [ 5.84590328e+05, 5.84576625e+05, 5.84638156e+05, ], 'CountWeightedFullL1Prefire' : [ 5.84590328e+05, 5.77551836e+05, 5.91652031e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 7.54941516e+05, 6.55552531e+05, 5.76606641e+05, 6.73359812e+05, 5.84590328e+05, 5.14124031e+05, 6.07927367e+05, 5.27696852e+05, 4.64013875e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 7.55293703e+05, 4.63823953e+05, ], 'Count_LHENjet1' : [ 96, ], 'CountWeighted_LHENjet1' : [ 9.43667564e+01, 9.31027431e+01, 9.72886581e+01, ], 'CountWeightedLHEWeightScale_LHENjet1' : [ 1.10098251e+02, 9.60984573e+01, 8.46385374e+01, 1.08124184e+02, 9.43667564e+01, 8.31075830e+01, 1.06405149e+02, 9.28596306e+01, 8.17744770e+01, ], 'CountWeightedLHEEnvelope_LHENjet1' : [ 1.10098251e+02, 8.17744770e+01, ], 'CountWeightedFull_LHENjet1' : [ 9.43667564e+01, 9.31027431e+01, 9.72886581e+01, ], 'CountWeightedFullLHEWeightScale_LHENjet1' : [ 1.10098251e+02, 9.60984573e+01, 8.46385374e+01, 1.08124184e+02, 9.43667564e+01, 8.31075830e+01, 1.06405149e+02, 9.28596306e+01, 8.17744770e+01, ], 'CountWeightedFullLHEEnvelope_LHENjet1' : [ 1.10098251e+02, 8.17744770e+01, ], 'CountWeightedL1PrefireNom_LHENjet1' : [ 9.42941494e+01, 9.30244789e+01, 9.72218113e+01, ], 'CountWeightedL1Prefire_LHENjet1' : [ 9.42941494e+01, 9.42655697e+01, 9.43184872e+01, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet1' : [ 1.10014801e+02, 9.60253563e+01, 8.45739279e+01, 1.08041277e+02, 9.42941494e+01, 8.30434151e+01, 1.06322737e+02, 9.27874565e+01, 8.17106981e+01, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet1' : [ 1.10014801e+02, 8.17106981e+01, ], 'CountWeightedFullL1PrefireNom_LHENjet1' : [ 9.42941494e+01, 9.30244789e+01, 9.72218113e+01, ], 'CountWeightedFullL1Prefire_LHENjet1' : [ 9.42941494e+01, 9.42655697e+01, 9.43184872e+01, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet1' : [ 1.10014801e+02, 9.60253563e+01, 8.45739279e+01, 1.08041277e+02, 9.42941494e+01, 8.30434151e+01, 1.06322737e+02, 9.27874565e+01, 8.17106981e+01, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet1' : [ 1.10014801e+02, 8.17106981e+01, ], 'Count_LHENjet2' : [ 12705, ], 'CountWeighted_LHENjet2' : [ 1.25000332e+04, 1.25102588e+04, 1.24834592e+04, ], 'CountWeightedLHEWeightScale_LHENjet2' : [ 1.52234658e+04, 1.37927395e+04, 1.25823628e+04, 1.37983933e+04, 1.25000332e+04, 1.14020786e+04, 1.26290681e+04, 1.14394939e+04, 1.04335059e+04, ], 'CountWeightedLHEEnvelope_LHENjet2' : [ 1.52339275e+04, 1.04245881e+04, ], 'CountWeightedFull_LHENjet2' : [ 1.25000332e+04, 1.25102588e+04, 1.24834592e+04, ], 'CountWeightedFullLHEWeightScale_LHENjet2' : [ 1.52234658e+04, 1.37927395e+04, 1.25823628e+04, 1.37983933e+04, 1.25000332e+04, 1.14020786e+04, 1.26290681e+04, 1.14394939e+04, 1.04335059e+04, ], 'CountWeightedFullLHEEnvelope_LHENjet2' : [ 1.52339275e+04, 1.04245881e+04, ], 'CountWeightedL1PrefireNom_LHENjet2' : [ 1.21578438e+04, 1.21673794e+04, 1.21425278e+04, ], 'CountWeightedL1Prefire_LHENjet2' : [ 1.21578438e+04, 1.20830420e+04, 1.22329536e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet2' : [ 1.47926099e+04, 1.34125613e+04, 1.22437573e+04, 1.34105596e+04, 1.21578438e+04, 1.10973337e+04, 1.22763452e+04, 1.11283174e+04, 1.01563998e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet2' : [ 1.48030259e+04, 1.01475223e+04, ], 'CountWeightedFullL1PrefireNom_LHENjet2' : [ 1.21578438e+04, 1.21673794e+04, 1.21425278e+04, ], 'CountWeightedFullL1Prefire_LHENjet2' : [ 1.21578438e+04, 1.20830420e+04, 1.22329536e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet2' : [ 1.47926099e+04, 1.34125613e+04, 1.22437573e+04, 1.34105596e+04, 1.21578438e+04, 1.10973337e+04, 1.22763452e+04, 1.11283174e+04, 1.01563998e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet2' : [ 1.48030259e+04, 1.01475223e+04, ], 'Count_LHENjet3' : [ 44762, ], 'CountWeighted_LHENjet3' : [ 4.38290664e+04, 4.38299814e+04, 4.38595293e+04, ], 'CountWeightedLHEWeightScale_LHENjet3' : [ 5.49218789e+04, 4.86605107e+04, 4.35642588e+04, 4.94815684e+04, 4.38290664e+04, 3.92322539e+04, 4.50541064e+04, 3.98983081e+04, 3.57066157e+04, ], 'CountWeightedLHEEnvelope_LHENjet3' : [ 5.49481270e+04, 3.56915898e+04, ], 'CountWeightedFull_LHENjet3' : [ 4.38290664e+04, 4.38299814e+04, 4.38595293e+04, ], 'CountWeightedFullLHEWeightScale_LHENjet3' : [ 5.49218789e+04, 4.86605107e+04, 4.35642588e+04, 4.94815684e+04, 4.38290664e+04, 3.92322539e+04, 4.50541064e+04, 3.98983081e+04, 3.57066157e+04, ], 'CountWeightedFullLHEEnvelope_LHENjet3' : [ 5.49481270e+04, 3.56915898e+04, ], 'CountWeightedL1PrefireNom_LHENjet3' : [ 4.24169941e+04, 4.24149971e+04, 4.24493457e+04, ], 'CountWeightedL1Prefire_LHENjet3' : [ 4.24169941e+04, 4.21065371e+04, 4.27280488e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet3' : [ 5.30889512e+04, 4.70797686e+04, 4.21830391e+04, 4.78441846e+04, 4.24169941e+04, 3.79982729e+04, 4.35745088e+04, 3.86222173e+04, 3.45914971e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet3' : [ 5.31153760e+04, 3.45761851e+04, ], 'CountWeightedFullL1PrefireNom_LHENjet3' : [ 4.24169941e+04, 4.24149971e+04, 4.24493457e+04, ], 'CountWeightedFullL1Prefire_LHENjet3' : [ 4.24169941e+04, 4.21065371e+04, 4.27280488e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet3' : [ 5.30889512e+04, 4.70797686e+04, 4.21830391e+04, 4.78441846e+04, 4.24169941e+04, 3.79982729e+04, 4.35745088e+04, 3.86222173e+04, 3.45914971e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet3' : [ 5.31153760e+04, 3.45761851e+04, ], 'Count_LHENjet4' : [ 567954, ], 'CountWeighted_LHENjet4' : [ 5.60446445e+05, 5.60432117e+05, 5.60455664e+05, ], 'CountWeightedLHEWeightScale_LHENjet4' : [ 7.27876312e+05, 6.29575062e+05, 5.51820664e+05, 6.48098070e+05, 5.60446445e+05, 4.91161047e+05, 5.84254656e+05, 5.05150375e+05, 4.42625922e+05, ], 'CountWeightedLHEEnvelope_LHENjet4' : [ 7.28189656e+05, 4.42466047e+05, ], 'CountWeightedFull_LHENjet4' : [ 5.60446445e+05, 5.60432117e+05, 5.60455664e+05, ], 'CountWeightedFullLHEWeightScale_LHENjet4' : [ 7.27876312e+05, 6.29575062e+05, 5.51820664e+05, 6.48098070e+05, 5.60446445e+05, 4.91161047e+05, 5.84254656e+05, 5.05150375e+05, 4.42625922e+05, ], 'CountWeightedFullLHEEnvelope_LHENjet4' : [ 7.28189656e+05, 4.42466047e+05, ], 'CountWeightedL1PrefireNom_LHENjet4' : [ 5.29917609e+05, 5.29900570e+05, 5.29945781e+05, ], 'CountWeightedL1Prefire_LHENjet4' : [ 5.29917609e+05, 5.23264320e+05, 5.36593531e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet4' : [ 6.86950844e+05, 5.94964172e+05, 5.22096008e+05, 6.11997703e+05, 5.29917609e+05, 4.64945938e+05, 5.51970414e+05, 4.77852828e+05, 4.19185016e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet4' : [ 6.87266250e+05, 4.19019320e+05, ], 'CountWeightedFullL1PrefireNom_LHENjet4' : [ 5.29917609e+05, 5.29900570e+05, 5.29945781e+05, ], 'CountWeightedFullL1Prefire_LHENjet4' : [ 5.29917609e+05, 5.23264320e+05, 5.36593531e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet4' : [ 6.86950844e+05, 5.94964172e+05, 5.22096008e+05, 6.11997703e+05, 5.29917609e+05, 4.64945938e+05, 5.51970414e+05, 4.77852828e+05, 4.19185016e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet4' : [ 6.87266250e+05, 4.19019320e+05, ], }), ("nof_tree_events", 625517), ("nof_db_events", 625517), ("fsize_local", 5902094288), # 5.90GB, avg file size 1.97GB ("fsize_db", 41980141603), # 41.98GB, avg file size 2.80GB ("use_it", False), ("xsection", 0.22025), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Apr19_woPresel_nom_all_hh_multilepton/ntuples/DYJetsToLL_M50_HT1200to2500"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/DYJetsToLL_M-50_HT-2500toInf_TuneCP5_13TeV-madgraphMLM-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_new_pmx_94X_mc2017_realistic_v14-v2/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "EWK"), ("process_name_specific", "DYJetsToLL_M50_HT2500toInf"), ("nof_files", 2), ("nof_db_files", 10), ("nof_events", { 'Count' : [ 419308, ], 'CountWeighted' : [ 4.01301188e+05, 4.01240578e+05, 4.01303062e+05, ], 'CountWeightedLHEWeightScale' : [ 5.36839750e+05, 4.47826578e+05, 3.80161562e+05, 4.81067656e+05, 4.01301188e+05, 3.40661750e+05, 4.35595062e+05, 3.63355641e+05, 3.08456250e+05, ], 'CountWeightedLHEEnvelope' : [ 5.36756750e+05, 3.08546805e+05, ], 'CountWeightedFull' : [ 4.01301188e+05, 4.01240578e+05, 4.01303062e+05, ], 'CountWeightedFullLHEWeightScale' : [ 5.36839750e+05, 4.47826578e+05, 3.80161562e+05, 4.81067656e+05, 4.01301188e+05, 3.40661750e+05, 4.35595062e+05, 3.63355641e+05, 3.08456250e+05, ], 'CountWeightedFullLHEEnvelope' : [ 5.36756750e+05, 3.08546805e+05, ], 'CountWeightedL1PrefireNom' : [ 3.88878391e+05, 3.88823344e+05, 3.88891953e+05, ], 'CountWeightedL1Prefire' : [ 3.88878391e+05, 3.86033625e+05, 3.91696234e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 5.19810000e+05, 4.33895750e+05, 3.68544078e+05, 4.65886641e+05, 3.88878391e+05, 3.30304656e+05, 4.21910109e+05, 3.52160766e+05, 2.99120078e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 5.19731594e+05, 2.99206297e+05, ], 'CountWeightedFullL1PrefireNom' : [ 3.88878391e+05, 3.88823344e+05, 3.88891953e+05, ], 'CountWeightedFullL1Prefire' : [ 3.88878391e+05, 3.86033625e+05, 3.91696234e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 5.19810000e+05, 4.33895750e+05, 3.68544078e+05, 4.65886641e+05, 3.88878391e+05, 3.30304656e+05, 4.21910109e+05, 3.52160766e+05, 2.99120078e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 5.19731594e+05, 2.99206297e+05, ], 'Count_LHENjet1' : [ 6, ], 'CountWeighted_LHENjet1' : [ -3.30358684e-01, -1.99047327e-02, -6.54211342e-01, ], 'CountWeightedLHEWeightScale_LHENjet1' : [ -2.09402561e-01, -2.81266987e-01, -3.21993649e-01, -2.69507527e-01, -3.30358684e-01, -3.62635911e-01, -3.22344661e-01, -3.73542488e-01, -3.98373425e-01, ], 'CountWeightedLHEEnvelope_LHENjet1' : [ -2.09402561e-01, -3.98373425e-01, ], 'CountWeightedFull_LHENjet1' : [ -3.30358684e-01, -1.99047327e-02, -6.54211342e-01, ], 'CountWeightedFullLHEWeightScale_LHENjet1' : [ -2.09402561e-01, -2.81266987e-01, -3.21993649e-01, -2.69507527e-01, -3.30358684e-01, -3.62635911e-01, -3.22344661e-01, -3.73542488e-01, -3.98373425e-01, ], 'CountWeightedFullLHEEnvelope_LHENjet1' : [ -2.09402561e-01, -3.98373425e-01, ], 'CountWeightedL1PrefireNom_LHENjet1' : [ -3.30358684e-01, -1.99047327e-02, -6.54211342e-01, ], 'CountWeightedL1Prefire_LHENjet1' : [ -3.30358684e-01, -3.30358684e-01, -3.30358684e-01, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet1' : [ -2.09402561e-01, -2.81266987e-01, -3.21993649e-01, -2.69507527e-01, -3.30358684e-01, -3.62635911e-01, -3.22344661e-01, -3.73542488e-01, -3.98373425e-01, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet1' : [ -2.09402561e-01, -3.98373425e-01, ], 'CountWeightedFullL1PrefireNom_LHENjet1' : [ -3.30358684e-01, -1.99047327e-02, -6.54211342e-01, ], 'CountWeightedFullL1Prefire_LHENjet1' : [ -3.30358684e-01, -3.30358684e-01, -3.30358684e-01, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet1' : [ -2.09402561e-01, -2.81266987e-01, -3.21993649e-01, -2.69507527e-01, -3.30358684e-01, -3.62635911e-01, -3.22344661e-01, -3.73542488e-01, -3.98373425e-01, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet1' : [ -2.09402561e-01, -3.98373425e-01, ], 'Count_LHENjet2' : [ 6543, ], 'CountWeighted_LHENjet2' : [ 6.22776733e+03, 6.21984570e+03, 6.23646924e+03, ], 'CountWeightedLHEWeightScale_LHENjet2' : [ 7.87041577e+03, 6.87911523e+03, 6.07310278e+03, 7.12378711e+03, 6.22776733e+03, 5.49903784e+03, 6.50555981e+03, 5.68835791e+03, 5.02344873e+03, ], 'CountWeightedLHEEnvelope_LHENjet2' : [ 7.87071216e+03, 5.02320300e+03, ], 'CountWeightedFull_LHENjet2' : [ 6.22776733e+03, 6.21984570e+03, 6.23646924e+03, ], 'CountWeightedFullLHEWeightScale_LHENjet2' : [ 7.87041577e+03, 6.87911523e+03, 6.07310278e+03, 7.12378711e+03, 6.22776733e+03, 5.49903784e+03, 6.50555981e+03, 5.68835791e+03, 5.02344873e+03, ], 'CountWeightedFullLHEEnvelope_LHENjet2' : [ 7.87071216e+03, 5.02320300e+03, ], 'CountWeightedL1PrefireNom_LHENjet2' : [ 6.14001514e+03, 6.13254150e+03, 6.14818555e+03, ], 'CountWeightedL1Prefire_LHENjet2' : [ 6.14001514e+03, 6.11943164e+03, 6.16031177e+03, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet2' : [ 7.75750659e+03, 6.78194385e+03, 5.98849219e+03, 7.02185474e+03, 6.14001514e+03, 5.42260938e+03, 6.41269849e+03, 5.60839307e+03, 4.95378772e+03, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet2' : [ 7.75780396e+03, 4.95354187e+03, ], 'CountWeightedFullL1PrefireNom_LHENjet2' : [ 6.14001514e+03, 6.13254150e+03, 6.14818555e+03, ], 'CountWeightedFullL1Prefire_LHENjet2' : [ 6.14001514e+03, 6.11943164e+03, 6.16031177e+03, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet2' : [ 7.75750659e+03, 6.78194385e+03, 5.98849219e+03, 7.02185474e+03, 6.14001514e+03, 5.42260938e+03, 6.41269849e+03, 5.60839307e+03, 4.95378772e+03, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet2' : [ 7.75780396e+03, 4.95354187e+03, ], 'Count_LHENjet3' : [ 21292, ], 'CountWeighted_LHENjet3' : [ 2.02497227e+04, 2.02273896e+04, 2.02666328e+04, ], 'CountWeightedLHEWeightScale_LHENjet3' : [ 2.61463887e+04, 2.23861543e+04, 1.94435449e+04, 2.36474238e+04, 2.02497227e+04, 1.75910596e+04, 2.15796328e+04, 1.84819585e+04, 1.60576992e+04, ], 'CountWeightedLHEEnvelope_LHENjet3' : [ 2.61524863e+04, 1.60524512e+04, ], 'CountWeightedFull_LHENjet3' : [ 2.02497227e+04, 2.02273896e+04, 2.02666328e+04, ], 'CountWeightedFullLHEWeightScale_LHENjet3' : [ 2.61463887e+04, 2.23861543e+04, 1.94435449e+04, 2.36474238e+04, 2.02497227e+04, 1.75910596e+04, 2.15796328e+04, 1.84819585e+04, 1.60576992e+04, ], 'CountWeightedFullLHEEnvelope_LHENjet3' : [ 2.61524863e+04, 1.60524512e+04, ], 'CountWeightedL1PrefireNom_LHENjet3' : [ 1.98975547e+04, 1.98739312e+04, 1.99167900e+04, ], 'CountWeightedL1Prefire_LHENjet3' : [ 1.98975547e+04, 1.98171807e+04, 1.99774883e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet3' : [ 2.56790254e+04, 2.19948838e+04, 1.91105708e+04, 2.32268838e+04, 1.98975547e+04, 1.72912783e+04, 2.11975830e+04, 1.81619429e+04, 1.57852271e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet3' : [ 2.56852979e+04, 1.57798306e+04, ], 'CountWeightedFullL1PrefireNom_LHENjet3' : [ 1.98975547e+04, 1.98739312e+04, 1.99167900e+04, ], 'CountWeightedFullL1Prefire_LHENjet3' : [ 1.98975547e+04, 1.98171807e+04, 1.99774883e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet3' : [ 2.56790254e+04, 2.19948838e+04, 1.91105708e+04, 2.32268838e+04, 1.98975547e+04, 1.72912783e+04, 2.11975830e+04, 1.81619429e+04, 1.57852271e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet3' : [ 2.56852979e+04, 1.57798306e+04, ], 'Count_LHENjet4' : [ 391467, ], 'CountWeighted_LHENjet4' : [ 3.74821062e+05, 3.74796500e+05, 3.74803812e+05, ], 'CountWeightedLHEWeightScale_LHENjet4' : [ 5.02823547e+05, 4.18561406e+05, 3.54645031e+05, 4.50296672e+05, 3.74821062e+05, 3.17571883e+05, 4.07510172e+05, 3.39185328e+05, 2.87375594e+05, ], 'CountWeightedLHEEnvelope_LHENjet4' : [ 5.02734172e+05, 2.87471578e+05, ], 'CountWeightedFull_LHENjet4' : [ 3.74821062e+05, 3.74796500e+05, 3.74803812e+05, ], 'CountWeightedFullLHEWeightScale_LHENjet4' : [ 5.02823547e+05, 4.18561406e+05, 3.54645031e+05, 4.50296672e+05, 3.74821062e+05, 3.17571883e+05, 4.07510172e+05, 3.39185328e+05, 2.87375594e+05, ], 'CountWeightedFullLHEEnvelope_LHENjet4' : [ 5.02734172e+05, 2.87471578e+05, ], 'CountWeightedL1PrefireNom_LHENjet4' : [ 3.62839188e+05, 3.62819484e+05, 3.62829953e+05, ], 'CountWeightedL1Prefire_LHENjet4' : [ 3.62839188e+05, 3.60095109e+05, 3.65556594e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet4' : [ 4.86373938e+05, 4.05118953e+05, 3.43445172e+05, 4.35638094e+05, 3.62839188e+05, 3.07590867e+05, 3.94299859e+05, 3.28390578e+05, 2.78381523e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet4' : [ 4.86288969e+05, 2.78473398e+05, ], 'CountWeightedFullL1PrefireNom_LHENjet4' : [ 3.62839188e+05, 3.62819484e+05, 3.62829953e+05, ], 'CountWeightedFullL1Prefire_LHENjet4' : [ 3.62839188e+05, 3.60095109e+05, 3.65556594e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet4' : [ 4.86373938e+05, 4.05118953e+05, 3.43445172e+05, 4.35638094e+05, 3.62839188e+05, 3.07590867e+05, 3.94299859e+05, 3.28390578e+05, 2.78381523e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet4' : [ 4.86288969e+05, 2.78473398e+05, ], }), ("nof_tree_events", 419308), ("nof_db_events", 419308), ("fsize_local", 4060505379), # 4.06GB, avg file size 2.03GB ("fsize_db", 30462850223), # 30.46GB, avg file size 3.05GB ("use_it", False), ("xsection", 0.004007), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Apr19_woPresel_nom_all_hh_multilepton/ntuples/DYJetsToLL_M50_HT2500toInf"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/DYBBJetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "EWK"), ("process_name_specific", "DYBBJetsToLL_M-50"), ("nof_files", 6), ("nof_db_files", 46), ("nof_events", { 'Count' : [ 2725626, ], 'CountWeighted' : [ 2.72376616e+06, 2.72400367e+06, 2.72320272e+06, ], 'CountWeightedLHEWeightScale' : [ 2.78045539e+06, 2.82241902e+06, 2.81621844e+06, 2.68040381e+06, 2.72376616e+06, 2.72003706e+06, 2.59845550e+06, 2.64302614e+06, 2.64126384e+06, ], 'CountWeightedLHEEnvelope' : [ 2.97219248e+06, 2.46222856e+06, ], 'CountWeightedFull' : [ 2.72376616e+06, 2.72400367e+06, 2.72320272e+06, ], 'CountWeightedFullLHEWeightScale' : [ 2.78045539e+06, 2.82241902e+06, 2.81621844e+06, 2.68040381e+06, 2.72376616e+06, 2.72003706e+06, 2.59845550e+06, 2.64302614e+06, 2.64126384e+06, ], 'CountWeightedFullLHEEnvelope' : [ 2.97219248e+06, 2.46222856e+06, ], 'CountWeightedL1PrefireNom' : [ 2.66003167e+06, 2.66011598e+06, 2.65973970e+06, ], 'CountWeightedL1Prefire' : [ 2.66003167e+06, 2.64389095e+06, 2.67564806e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 2.71218325e+06, 2.75577877e+06, 2.75165748e+06, 2.61517809e+06, 2.66003167e+06, 2.65821328e+06, 2.53570683e+06, 2.58162958e+06, 2.58167359e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 2.90111553e+06, 2.40521498e+06, ], 'CountWeightedFullL1PrefireNom' : [ 2.66003167e+06, 2.66011598e+06, 2.65973970e+06, ], 'CountWeightedFullL1Prefire' : [ 2.66003167e+06, 2.64389095e+06, 2.67564806e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 2.71218325e+06, 2.75577877e+06, 2.75165748e+06, 2.61517809e+06, 2.66003167e+06, 2.65821328e+06, 2.53570683e+06, 2.58162958e+06, 2.58167359e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 2.90111553e+06, 2.40521498e+06, ], }), ("nof_tree_events", 2725626), ("nof_db_events", 2725626), ("fsize_local", 13589867796), # 13.59GB, avg file size 2.26GB ("fsize_db", 133741432740), # 133.74GB, avg file size 2.91GB ("use_it", False), ("xsection", 14.6), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Apr19_woPresel_nom_all_hh_multilepton/ntuples/DYBBJetsToLL_M-50"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/DYBBJetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14_ext1-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "EWK"), ("process_name_specific", "DYBBJetsToLL_M-50_ext1"), ("nof_files", 5), ("nof_db_files", 121), ("nof_events", { 'Count' : [ 2375576, ], 'CountWeighted' : [ 2.37401262e+06, 2.37374678e+06, 2.37345275e+06, ], 'CountWeightedLHEWeightScale' : [ 2.42291984e+06, 2.45974766e+06, 2.45456106e+06, 2.33588138e+06, 2.37401262e+06, 2.37090912e+06, 2.26458969e+06, 2.30372797e+06, 2.30238938e+06, ], 'CountWeightedLHEEnvelope' : [ 2.59114975e+06, 2.14519347e+06, ], 'CountWeightedFull' : [ 2.37401262e+06, 2.37374678e+06, 2.37345275e+06, ], 'CountWeightedFullLHEWeightScale' : [ 2.42291984e+06, 2.45974766e+06, 2.45456106e+06, 2.33588138e+06, 2.37401262e+06, 2.37090912e+06, 2.26458969e+06, 2.30372797e+06, 2.30238938e+06, ], 'CountWeightedFullLHEEnvelope' : [ 2.59114975e+06, 2.14519347e+06, ], 'CountWeightedL1PrefireNom' : [ 2.31839609e+06, 2.31812284e+06, 2.31809947e+06, ], 'CountWeightedL1Prefire' : [ 2.31839609e+06, 2.30433375e+06, 2.33197838e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 2.36341834e+06, 2.40164438e+06, 2.39830484e+06, 2.27901162e+06, 2.31839609e+06, 2.31701594e+06, 2.20986412e+06, 2.25016150e+06, 2.25042953e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 2.52917881e+06, 2.09550041e+06, ], 'CountWeightedFullL1PrefireNom' : [ 2.31839609e+06, 2.31812284e+06, 2.31809947e+06, ], 'CountWeightedFullL1Prefire' : [ 2.31839609e+06, 2.30433375e+06, 2.33197838e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 2.36341834e+06, 2.40164438e+06, 2.39830484e+06, 2.27901162e+06, 2.31839609e+06, 2.31701594e+06, 2.20986412e+06, 2.25016150e+06, 2.25042953e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 2.52917881e+06, 2.09550041e+06, ], }), ("nof_tree_events", 2375576), ("nof_db_events", 2375576), ("fsize_local", 11874234034), # 11.87GB, avg file size 2.37GB ("fsize_db", 118040727435), # 118.04GB, avg file size 975.54MB ("use_it", False), ("xsection", 14.6), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Apr19_woPresel_nom_all_hh_multilepton/ntuples/DYBBJetsToLL_M-50_ext1"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/WJetsToLNu_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "EWK"), ("process_name_specific", "WJetsToLNu"), ("nof_files", 119), ("nof_db_files", 471), ("nof_events", { 'Count' : [ 28855787, ], 'CountWeighted' : [ 1.97898242e+07, 1.97906593e+07, 1.97911879e+07, ], 'CountWeightedLHEEnvelope' : [ 1.97898242e+07, 1.97898242e+07, ], 'CountWeightedPSWeight' : [ 1.98326069e+07, 1.97943284e+07, 2.52363806e+07, 1.97324426e+07, 1.97789361e+07, 1.47813344e+07, ], 'CountWeightedPSWeightOriginalXWGTUP' : [ 2.88557155e+08, 2.88557304e+08, 2.88557304e+08, 2.88557160e+08, 2.88557304e+08, 2.88557154e+08, ], 'CountWeightedFull' : [ 4.97049056e+12, 4.96990735e+12, 4.97023673e+12, ], 'CountWeightedFullLHEEnvelope' : [ 4.97049056e+12, 4.97049056e+12, ], 'CountWeightedFullPSWeight' : [ 4.98099381e+12, 4.97135035e+12, 6.33810144e+12, 4.95582965e+12, 4.96748517e+12, 3.71236632e+12, ], 'CountWeightedFullPSWeightOriginalXWGTUP' : [ 7.24734284e+13, 7.24734284e+13, 7.24734284e+13, 7.24734284e+13, 7.24734284e+13, 7.24734284e+13, ], 'CountWeightedL1PrefireNom' : [ 1.96204462e+07, 1.96206711e+07, 1.96220880e+07, ], 'CountWeightedL1Prefire' : [ 1.96204462e+07, 1.95726652e+07, 1.96660763e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 1.96204462e+07, 1.96204462e+07, ], 'CountWeightedPSWeightL1PrefireNom' : [ 1.96629678e+07, 1.96242364e+07, 2.50160326e+07, 1.95634267e+07, 1.96108043e+07, 1.46590374e+07, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNom' : [ 2.85650672e+08, 2.85650819e+08, 2.85650819e+08, 2.85650677e+08, 2.85650819e+08, 2.85650671e+08, ], 'CountWeightedFullL1PrefireNom' : [ 4.92790936e+12, 4.92729889e+12, 4.92782195e+12, ], 'CountWeightedFullL1Prefire' : [ 4.92790936e+12, 4.91589043e+12, 4.93936235e+12, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 4.92790936e+12, 4.92790936e+12, ], 'CountWeightedFullPSWeightL1PrefireNom' : [ 4.93838987e+12, 4.92863338e+12, 6.28276352e+12, 4.91338323e+12, 4.92526031e+12, 3.68165320e+12, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNom' : [ 7.17428238e+13, 7.17428238e+13, 7.17428238e+13, 7.17428238e+13, 7.17428238e+13, 7.17428238e+13, ], }), ("nof_tree_events", 28855787), ("nof_db_events", 29131933), ("fsize_local", 80993080538), # 80.99GB, avg file size 680.61MB ("fsize_db", 1190337097038), # 1.19TB, avg file size 2.53GB ("use_it", False), ("xsection", 61526.7), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", False), ("nof_PSweights", 4), ("LHE_set", "LHEPdfWeight[nLHEPdfWeight]/F"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2022Sep22_woPresel_nom_all_hh_multilepton/ntuples/WJetsToLNu"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/WJetsToLNu_0J_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v2/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "EWK"), ("process_name_specific", "WJetsToLNu_0J"), ("nof_files", 654), ("nof_db_files", 2700), ("nof_events", { 'Count' : [ 161031394, ], 'CountWeighted' : [ 1.29178793e+08, 1.29188694e+08, 1.29172942e+08, ], 'CountWeightedLHEWeightScale' : [ 1.24270587e+08, 1.29451534e+08, 1.32223573e+08, 1.22764494e+08, 1.29178793e+08, 1.33164631e+08, 1.21547265e+08, 1.29022065e+08, 1.33974202e+08, ], 'CountWeightedLHEEnvelope' : [ 1.47465139e+08, 1.09361950e+08, ], 'CountWeightedFull' : [ 9.81376988e+12, 9.81392400e+12, 9.81409520e+12, ], 'CountWeightedFullLHEWeightScale' : [ 9.44067452e+12, 9.83430967e+12, 1.00448764e+13, 9.32624275e+12, 9.81376988e+12, 1.01163777e+13, 9.23378718e+12, 9.80171414e+12, 1.01778745e+13, ], 'CountWeightedFullLHEEnvelope' : [ 1.12027865e+13, 8.30809159e+12, ], 'CountWeightedL1PrefireNom' : [ 1.28356909e+08, 1.28362312e+08, 1.28354974e+08, ], 'CountWeightedL1Prefire' : [ 1.28356909e+08, 1.28112709e+08, 1.28589388e+08, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 1.23478769e+08, 1.28624270e+08, 1.31375297e+08, 1.21984847e+08, 1.28356909e+08, 1.32315265e+08, 1.20777472e+08, 1.28204303e+08, 1.33123648e+08, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 1.46525716e+08, 1.08666063e+08, ], 'CountWeightedFullL1PrefireNom' : [ 9.75131168e+12, 9.75118934e+12, 9.75181109e+12, ], 'CountWeightedFullL1Prefire' : [ 9.75131168e+12, 9.73272584e+12, 9.76895921e+12, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 9.38052430e+12, 9.77146176e+12, 9.98043215e+12, 9.26701883e+12, 9.75131168e+12, 1.00518494e+13, 9.17530960e+12, 9.73957782e+12, 1.01132571e+13, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 1.11314171e+13, 8.25522782e+12, ], }), ("nof_tree_events", 161031394), ("nof_db_events", 180935349), ("fsize_local", 396999334239), # 397.00GB, avg file size 607.03MB ("fsize_db", 7052897110538), # 7.05TB, avg file size 2.61GB ("use_it", False), ("xsection", 50062.0), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2022Sep22_woPresel_nom_all_hh_multilepton/ntuples/WJetsToLNu_0J"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "EWK"), ("process_name_specific", "WJetsToLNu_1J"), ("nof_files", 349), ("nof_db_files", 1096), ("nof_events", { 'Count' : [ 86456622, ], 'CountWeighted' : [ 3.96154531e+07, 3.96160244e+07, 3.96174802e+07, ], 'CountWeightedLHEWeightScale' : [ 4.18605878e+07, 4.30336862e+07, 4.41767270e+07, 3.81694912e+07, 3.96154531e+07, 4.08527172e+07, 3.52006256e+07, 3.67889220e+07, 3.80860562e+07, ], 'CountWeightedLHEEnvelope' : [ 4.86226380e+07, 3.18754714e+07, ], 'CountWeightedFull' : [ 3.91078918e+12, 3.91065751e+12, 3.91099778e+12, ], 'CountWeightedFullLHEWeightScale' : [ 4.13238139e+12, 4.24818690e+12, 4.36102502e+12, 3.76800573e+12, 3.91078918e+12, 4.03288559e+12, 3.47492509e+12, 3.63171758e+12, 3.75976931e+12, ], 'CountWeightedFullLHEEnvelope' : [ 4.79991529e+12, 3.14667425e+12, ], 'CountWeightedL1PrefireNom' : [ 3.90511966e+07, 3.90502733e+07, 3.90543832e+07, ], 'CountWeightedL1Prefire' : [ 3.90511966e+07, 3.89011832e+07, 3.91944648e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 4.12686154e+07, 4.24259488e+07, 4.35521915e+07, 3.76237704e+07, 3.90511966e+07, 4.02715329e+07, 3.46933505e+07, 3.62616570e+07, 3.75418854e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 4.79332344e+07, 3.14195417e+07, ], 'CountWeightedFullL1PrefireNom' : [ 3.85508217e+12, 3.85484163e+12, 3.85539207e+12, ], 'CountWeightedFullL1Prefire' : [ 3.85508217e+12, 3.84026248e+12, 3.86921882e+12, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 4.07394332e+12, 4.18819271e+12, 4.29937216e+12, 3.71413319e+12, 3.85508217e+12, 3.97551348e+12, 3.42484796e+12, 3.57966769e+12, 3.70604983e+12, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 4.73185911e+12, 3.10166605e+12, ], }), ("nof_tree_events", 86456622), ("nof_db_events", 89838274), ("fsize_local", 288298241980), # 288.30GB, avg file size 826.07MB ("fsize_db", 3773000427129), # 3.77TB, avg file size 3.44GB ("use_it", False), ("xsection", 8331.0), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2022Sep22_woPresel_nom_all_hh_multilepton/ntuples/WJetsToLNu_1J"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/WJetsToLNu_1J_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14_ext1-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "EWK"), ("process_name_specific", "WJetsToLNu_1J_ext1"), ("nof_files", 699), ("nof_db_files", 2764), ("nof_events", { 'Count' : [ 169914803, ], 'CountWeighted' : [ 7.77415851e+07, 7.77416028e+07, 7.77453334e+07, ], 'CountWeightedLHEWeightScale' : [ 8.21682590e+07, 8.44547072e+07, 8.66839039e+07, 7.49168613e+07, 7.77415851e+07, 8.01586849e+07, 6.90856712e+07, 7.21939266e+07, 7.47282854e+07, ], 'CountWeightedLHEEnvelope' : [ 9.54399285e+07, 6.25365417e+07, ], 'CountWeightedFull' : [ 7.67465071e+12, 7.67442700e+12, 7.67476434e+12, ], 'CountWeightedFullLHEWeightScale' : [ 8.11146196e+12, 8.33717516e+12, 8.55723489e+12, 7.39562154e+12, 7.67465071e+12, 7.91308206e+12, 6.81998037e+12, 7.12681952e+12, 7.37700607e+12, ], 'CountWeightedFullLHEEnvelope' : [ 9.42161179e+12, 6.17346481e+12, ], 'CountWeightedL1PrefireNom' : [ 7.66369031e+07, 7.66347871e+07, 7.66416060e+07, ], 'CountWeightedL1Prefire' : [ 7.66369031e+07, 7.63428350e+07, 7.69174416e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 8.10089225e+07, 8.32641893e+07, 8.54602659e+07, 7.38483061e+07, 7.66369031e+07, 7.90202764e+07, 6.80925371e+07, 7.11614769e+07, 7.36625441e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 9.40895031e+07, 6.16439039e+07, ], 'CountWeightedFullL1PrefireNom' : [ 7.56554596e+12, 7.56515048e+12, 7.56582466e+12, ], 'CountWeightedFullL1Prefire' : [ 7.56554596e+12, 7.53651494e+12, 7.59326402e+12, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 7.99701533e+12, 8.21964938e+12, 8.43644069e+12, 7.29013655e+12, 7.56554596e+12, 7.80070125e+12, 6.72194068e+12, 7.02489937e+12, 7.27179822e+12, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 9.28830061e+12, 6.08534630e+12, ], }), ("nof_tree_events", 169914803), ("nof_db_events", 169914803), ("fsize_local", 566555315401), # 566.56GB, avg file size 810.52MB ("fsize_db", 7166491918506), # 7.17TB, avg file size 2.59GB ("use_it", False), ("xsection", 8331.0), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2022Sep22_woPresel_nom_all_hh_multilepton/ntuples/WJetsToLNu_1J_ext1"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "EWK"), ("process_name_specific", "WJetsToLNu_2J"), ("nof_files", 384), ("nof_db_files", 1105), ("nof_events", { 'Count' : [ 95200696, ], 'CountWeighted' : [ 2.90274259e+07, 2.90296905e+07, 2.90241800e+07, ], 'CountWeightedLHEEnvelope' : [ 2.90274259e+07, 2.90274259e+07, ], 'CountWeightedFull' : [ 2.35651861e+12, 2.35667855e+12, 2.35621436e+12, ], 'CountWeightedFullLHEEnvelope' : [ 2.35651861e+12, 2.35651861e+12, ], 'CountWeightedL1PrefireNom' : [ 2.82350854e+07, 2.82360493e+07, 2.82329715e+07, ], 'CountWeightedL1Prefire' : [ 2.82350854e+07, 2.80363995e+07, 2.84278054e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 2.82350854e+07, 2.82350854e+07, ], 'CountWeightedFullL1PrefireNom' : [ 2.29218799e+12, 2.29224701e+12, 2.29198915e+12, ], 'CountWeightedFullL1Prefire' : [ 2.29218799e+12, 2.27605321e+12, 2.30782401e+12, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 2.29218799e+12, 2.29218799e+12, ], }), ("nof_tree_events", 95200696), ("nof_db_events", 98285948), ("fsize_local", 417846359986), # 417.85GB, avg file size 1.09GB ("fsize_db", 4136628104962), # 4.14TB, avg file size 3.74GB ("use_it", False), ("xsection", 3133.0), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", False), ("nof_PSweights", 1), ("LHE_set", "LHEPdfWeight[nLHEPdfWeight]/F"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2022Sep22_woPresel_nom_all_hh_multilepton/ntuples/WJetsToLNu_2J"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/WJetsToLNu_2J_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14_ext1-v2/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "EWK"), ("process_name_specific", "WJetsToLNu_2J_ext1"), ("nof_files", 398), ("nof_db_files", 1628), ("nof_events", { 'Count' : [ 98051568, ], 'CountWeighted' : [ 2.99301569e+07, 2.99299846e+07, 2.99303181e+07, ], 'CountWeightedLHEEnvelope' : [ 2.99301569e+07, 2.99301569e+07, ], 'CountWeightedFull' : [ 2.42975159e+12, 2.42976214e+12, 2.42970364e+12, ], 'CountWeightedFullLHEEnvelope' : [ 2.42975159e+12, 2.42975159e+12, ], 'CountWeightedL1PrefireNom' : [ 2.91137783e+07, 2.91123241e+07, 2.91151388e+07, ], 'CountWeightedL1Prefire' : [ 2.91137783e+07, 2.89090677e+07, 2.93122841e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 2.91137783e+07, 2.91137783e+07, ], 'CountWeightedFullL1PrefireNom' : [ 2.36348796e+12, 2.36338593e+12, 2.36355671e+12, ], 'CountWeightedFullL1Prefire' : [ 2.36348796e+12, 2.34687017e+12, 2.37959857e+12, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 2.36348796e+12, 2.36348796e+12, ], }), ("nof_tree_events", 98051568), ("nof_db_events", 101158373), ("fsize_local", 430273278893), # 430.27GB, avg file size 1.08GB ("fsize_db", 4276803546541), # 4.28TB, avg file size 2.63GB ("use_it", False), ("xsection", 3133.0), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", False), ("nof_PSweights", 1), ("LHE_set", "LHEPdfWeight[nLHEPdfWeight]/F"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2022Sep22_woPresel_nom_all_hh_multilepton/ntuples/WJetsToLNu_2J_ext1"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/WJetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v3/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "EWK"), ("process_name_specific", "WJetsToLNu_madgraphMLM"), ("nof_files", 61), ("nof_db_files", 490), ("nof_events", { 'Count' : [ 30008250, ], 'CountWeighted' : [ 2.99838428e+07, 2.99814125e+07, 2.99804535e+07, ], 'CountWeightedLHEWeightScale' : [ 2.63878030e+07, 3.01210324e+07, 3.34623682e+07, 2.62559834e+07, 2.99838428e+07, 3.33216453e+07, 2.61484727e+07, 2.98716858e+07, 3.32068417e+07, ], 'CountWeightedLHEEnvelope' : [ 3.34911254e+07, 2.61262022e+07, ], 'CountWeightedFull' : [ 2.99838428e+07, 2.99814125e+07, 2.99804535e+07, ], 'CountWeightedFullLHEWeightScale' : [ 2.63878030e+07, 3.01210324e+07, 3.34623682e+07, 2.62559834e+07, 2.99838428e+07, 3.33216453e+07, 2.61484727e+07, 2.98716858e+07, 3.32068417e+07, ], 'CountWeightedFullLHEEnvelope' : [ 3.34911254e+07, 2.61262022e+07, ], 'CountWeightedL1PrefireNom' : [ 2.97455405e+07, 2.97429253e+07, 2.97435308e+07, ], 'CountWeightedL1Prefire' : [ 2.97455405e+07, 2.96775914e+07, 2.98102042e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 2.61702886e+07, 2.98796039e+07, 3.32009494e+07, 2.60416598e+07, 2.97455405e+07, 3.30633332e+07, 2.59367298e+07, 2.96359954e+07, 3.29510439e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 3.32266732e+07, 2.59170098e+07, ], 'CountWeightedFullL1PrefireNom' : [ 2.97455405e+07, 2.97429253e+07, 2.97435308e+07, ], 'CountWeightedFullL1Prefire' : [ 2.97455405e+07, 2.96775914e+07, 2.98102042e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 2.61702886e+07, 2.98796039e+07, 3.32009494e+07, 2.60416598e+07, 2.97455405e+07, 3.30633332e+07, 2.59367298e+07, 2.96359954e+07, 3.29510439e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 3.32266732e+07, 2.59170098e+07, ], 'Count_LHENjet0_LHEHT0to70' : [ 23022160, ], 'CountWeighted_LHENjet0_LHEHT0to70' : [ 2.30016537e+07, 2.30029276e+07, 2.30025738e+07, ], 'CountWeightedLHEWeightScale_LHENjet0_LHEHT0to70' : [ 2.00337485e+07, 2.30016537e+07, 2.57325096e+07, 2.00337485e+07, 2.30016537e+07, 2.57325096e+07, 2.00337485e+07, 2.30016537e+07, 2.57325096e+07, ], 'CountWeightedLHEEnvelope_LHENjet0_LHEHT0to70' : [ 2.57330407e+07, 2.00332296e+07, ], 'CountWeightedFull_LHENjet0_LHEHT0to70' : [ 2.30016537e+07, 2.30029276e+07, 2.30025738e+07, ], 'CountWeightedFullLHEWeightScale_LHENjet0_LHEHT0to70' : [ 2.00337485e+07, 2.30016537e+07, 2.57325096e+07, 2.00337485e+07, 2.30016537e+07, 2.57325096e+07, 2.00337485e+07, 2.30016537e+07, 2.57325096e+07, ], 'CountWeightedFullLHEEnvelope_LHENjet0_LHEHT0to70' : [ 2.57330407e+07, 2.00332296e+07, ], 'CountWeightedL1PrefireNom_LHENjet0_LHEHT0to70' : [ 2.28600598e+07, 2.28606695e+07, 2.28614873e+07, ], 'CountWeightedL1Prefire_LHENjet0_LHEHT0to70' : [ 2.28600598e+07, 2.28176630e+07, 2.29004750e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet0_LHEHT0to70' : [ 1.99099325e+07, 2.28600598e+07, 2.55745007e+07, 1.99099325e+07, 2.28600598e+07, 2.55745007e+07, 1.99099325e+07, 2.28600598e+07, 2.55745007e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet0_LHEHT0to70' : [ 2.55750315e+07, 1.99094142e+07, ], 'CountWeightedFullL1PrefireNom_LHENjet0_LHEHT0to70' : [ 2.28600598e+07, 2.28606695e+07, 2.28614873e+07, ], 'CountWeightedFullL1Prefire_LHENjet0_LHEHT0to70' : [ 2.28600598e+07, 2.28176630e+07, 2.29004750e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet0_LHEHT0to70' : [ 1.99099325e+07, 2.28600598e+07, 2.55745007e+07, 1.99099325e+07, 2.28600598e+07, 2.55745007e+07, 1.99099325e+07, 2.28600598e+07, 2.55745007e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet0_LHEHT0to70' : [ 2.55750315e+07, 1.99094142e+07, ], 'Count_LHENjet1_LHEHT0to70' : [ 4315830, ], 'CountWeighted_LHENjet1_LHEHT0to70' : [ 4.31177791e+06, 4.31196129e+06, 4.31187145e+06, ], 'CountWeightedLHEWeightScale_LHENjet1_LHEHT0to70' : [ 3.73445272e+06, 4.34990307e+06, 4.86981597e+06, 3.69900031e+06, 4.31177791e+06, 4.82956813e+06, 3.67000839e+06, 4.28061190e+06, 4.79666419e+06, ], 'CountWeightedLHEEnvelope_LHENjet1_LHEHT0to70' : [ 4.84995058e+06, 3.68945534e+06, ], 'CountWeightedFull_LHENjet1_LHEHT0to70' : [ 4.31177791e+06, 4.31196129e+06, 4.31187145e+06, ], 'CountWeightedFullLHEWeightScale_LHENjet1_LHEHT0to70' : [ 3.73445272e+06, 4.34990307e+06, 4.86981597e+06, 3.69900031e+06, 4.31177791e+06, 4.82956813e+06, 3.67000839e+06, 4.28061190e+06, 4.79666419e+06, ], 'CountWeightedFullLHEEnvelope_LHENjet1_LHEHT0to70' : [ 4.84995058e+06, 3.68945534e+06, ], 'CountWeightedL1PrefireNom_LHENjet1_LHEHT0to70' : [ 4.27231400e+06, 4.27239706e+06, 4.27249561e+06, ], 'CountWeightedL1Prefire_LHENjet1_LHEHT0to70' : [ 4.27231400e+06, 4.26118699e+06, 4.28280464e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet1_LHEHT0to70' : [ 3.69963243e+06, 4.31001421e+06, 4.82569358e+06, 3.66457810e+06, 4.27231400e+06, 4.78589061e+06, 3.63591246e+06, 4.24149458e+06, 4.75335063e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet1_LHEHT0to70' : [ 4.80601543e+06, 3.65516736e+06, ], 'CountWeightedFullL1PrefireNom_LHENjet1_LHEHT0to70' : [ 4.27231400e+06, 4.27239706e+06, 4.27249561e+06, ], 'CountWeightedFullL1Prefire_LHENjet1_LHEHT0to70' : [ 4.27231400e+06, 4.26118699e+06, 4.28280464e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet1_LHEHT0to70' : [ 3.69963243e+06, 4.31001421e+06, 4.82569358e+06, 3.66457810e+06, 4.27231400e+06, 4.78589061e+06, 3.63591246e+06, 4.24149458e+06, 4.75335063e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet1_LHEHT0to70' : [ 4.80601543e+06, 3.65516736e+06, ], 'Count_LHENjet1_LHEHT70to100' : [ 180520, ], 'CountWeighted_LHENjet1_LHEHT70to100' : [ 1.80273891e+05, 1.80266216e+05, 1.80306657e+05, ], 'CountWeightedLHEWeightScale_LHENjet1_LHEHT70to100' : [ 1.75583452e+05, 1.84689986e+05, 1.91221083e+05, 1.71303447e+05, 1.80273891e+05, 1.86715522e+05, 1.67758499e+05, 1.76616385e+05, 1.82984178e+05, ], 'CountWeightedLHEEnvelope_LHENjet1_LHEHT70to100' : [ 1.90667934e+05, 1.68566099e+05, ], 'CountWeightedFull_LHENjet1_LHEHT70to100' : [ 1.80273891e+05, 1.80266216e+05, 1.80306657e+05, ], 'CountWeightedFullLHEWeightScale_LHENjet1_LHEHT70to100' : [ 1.75583452e+05, 1.84689986e+05, 1.91221083e+05, 1.71303447e+05, 1.80273891e+05, 1.86715522e+05, 1.67758499e+05, 1.76616385e+05, 1.82984178e+05, ], 'CountWeightedFullLHEEnvelope_LHENjet1_LHEHT70to100' : [ 1.90667934e+05, 1.68566099e+05, ], 'CountWeightedL1PrefireNom_LHENjet1_LHEHT70to100' : [ 1.75391459e+05, 1.75360850e+05, 1.75446425e+05, ], 'CountWeightedL1Prefire_LHENjet1_LHEHT70to100' : [ 1.75391459e+05, 1.74223338e+05, 1.76550039e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet1_LHEHT70to100' : [ 1.70797417e+05, 1.79689476e+05, 1.86075525e+05, 1.66632555e+05, 1.75391459e+05, 1.81689776e+05, 1.63182998e+05, 1.71831785e+05, 1.78057685e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet1_LHEHT70to100' : [ 1.85522166e+05, 1.63982933e+05, ], 'CountWeightedFullL1PrefireNom_LHENjet1_LHEHT70to100' : [ 1.75391459e+05, 1.75360850e+05, 1.75446425e+05, ], 'CountWeightedFullL1Prefire_LHENjet1_LHEHT70to100' : [ 1.75391459e+05, 1.74223338e+05, 1.76550039e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet1_LHEHT70to100' : [ 1.70797417e+05, 1.79689476e+05, 1.86075525e+05, 1.66632555e+05, 1.75391459e+05, 1.81689776e+05, 1.63182998e+05, 1.71831785e+05, 1.78057685e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet1_LHEHT70to100' : [ 1.85522166e+05, 1.63982933e+05, ], 'Count_LHENjet1_LHEHT100to200' : [ 75345, ], 'CountWeighted_LHENjet1_LHEHT100to200' : [ 7.53067060e+04, 7.52692773e+04, 7.53533407e+04, ], 'CountWeightedLHEWeightScale_LHENjet1_LHEHT100to200' : [ 7.60851065e+04, 7.74522779e+04, 7.80792601e+04, 7.39508984e+04, 7.53067060e+04, 7.59375969e+04, 7.21685535e+04, 7.35149888e+04, 7.41492797e+04, ], 'CountWeightedLHEEnvelope_LHENjet1_LHEHT100to200' : [ 7.87951385e+04, 7.16058121e+04, ], 'CountWeightedFull_LHENjet1_LHEHT100to200' : [ 7.53067060e+04, 7.52692773e+04, 7.53533407e+04, ], 'CountWeightedFullLHEWeightScale_LHENjet1_LHEHT100to200' : [ 7.60851065e+04, 7.74522779e+04, 7.80792601e+04, 7.39508984e+04, 7.53067060e+04, 7.59375969e+04, 7.21685535e+04, 7.35149888e+04, 7.41492797e+04, ], 'CountWeightedFullLHEEnvelope_LHENjet1_LHEHT100to200' : [ 7.87951385e+04, 7.16058121e+04, ], 'CountWeightedL1PrefireNom_LHENjet1_LHEHT100to200' : [ 7.20620156e+04, 7.20251233e+04, 7.21039939e+04, ], 'CountWeightedL1Prefire_LHENjet1_LHEHT100to200' : [ 7.20620156e+04, 7.13493396e+04, 7.27781534e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet1_LHEHT100to200' : [ 7.27763590e+04, 7.41182137e+04, 7.47494777e+04, 7.07318302e+04, 7.20620156e+04, 7.26962932e+04, 6.90244156e+04, 7.03449644e+04, 7.09818867e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet1_LHEHT100to200' : [ 7.54037690e+04, 6.85152660e+04, ], 'CountWeightedFullL1PrefireNom_LHENjet1_LHEHT100to200' : [ 7.20620156e+04, 7.20251233e+04, 7.21039939e+04, ], 'CountWeightedFullL1Prefire_LHENjet1_LHEHT100to200' : [ 7.20620156e+04, 7.13493396e+04, 7.27781534e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet1_LHEHT100to200' : [ 7.27763590e+04, 7.41182137e+04, 7.47494777e+04, 7.07318302e+04, 7.20620156e+04, 7.26962932e+04, 6.90244156e+04, 7.03449644e+04, 7.09818867e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet1_LHEHT100to200' : [ 7.54037690e+04, 6.85152660e+04, ], 'Count_LHENjet1_LHEHT200to400' : [ 4190, ], 'CountWeighted_LHENjet1_LHEHT200to400' : [ 4.17108561e+03, 4.16797891e+03, 4.17652890e+03, ], 'CountWeightedLHEWeightScale_LHENjet1_LHEHT200to400' : [ 4.43052082e+03, 4.30746558e+03, 4.17749258e+03, 4.28921014e+03, 4.17108561e+03, 4.04607028e+03, 4.16961706e+03, 4.05567127e+03, 3.93485702e+03, ], 'CountWeightedLHEEnvelope_LHENjet1_LHEHT200to400' : [ 4.43993911e+03, 3.92585412e+03, ], 'CountWeightedFull_LHENjet1_LHEHT200to400' : [ 4.17108561e+03, 4.16797891e+03, 4.17652890e+03, ], 'CountWeightedFullLHEWeightScale_LHENjet1_LHEHT200to400' : [ 4.43052082e+03, 4.30746558e+03, 4.17749258e+03, 4.28921014e+03, 4.17108561e+03, 4.04607028e+03, 4.16961706e+03, 4.05567127e+03, 3.93485702e+03, ], 'CountWeightedFullLHEEnvelope_LHENjet1_LHEHT200to400' : [ 4.43993911e+03, 3.92585412e+03, ], 'CountWeightedL1PrefireNom_LHENjet1_LHEHT200to400' : [ 3.98635067e+03, 3.98315005e+03, 3.99283449e+03, ], 'CountWeightedL1Prefire_LHENjet1_LHEHT200to400' : [ 3.98635067e+03, 3.94785956e+03, 4.02512379e+03, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet1_LHEHT200to400' : [ 4.23180967e+03, 4.11709532e+03, 3.99540725e+03, 4.09641125e+03, 3.98635067e+03, 3.86935091e+03, 3.98182366e+03, 3.87570708e+03, 3.76268037e+03, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet1_LHEHT200to400' : [ 4.24110703e+03, 3.75379599e+03, ], 'CountWeightedFullL1PrefireNom_LHENjet1_LHEHT200to400' : [ 3.98635067e+03, 3.98315005e+03, 3.99283449e+03, ], 'CountWeightedFullL1Prefire_LHENjet1_LHEHT200to400' : [ 3.98635067e+03, 3.94785956e+03, 4.02512379e+03, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet1_LHEHT200to400' : [ 4.23180967e+03, 4.11709532e+03, 3.99540725e+03, 4.09641125e+03, 3.98635067e+03, 3.86935091e+03, 3.98182366e+03, 3.87570708e+03, 3.76268037e+03, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet1_LHEHT200to400' : [ 4.24110703e+03, 3.75379599e+03, ], 'Count_LHENjet1_LHEHT400to600' : [ 99, ], 'CountWeighted_LHENjet1_LHEHT400to600' : [ 1.06679527e+02, 1.03640759e+02, 1.09010262e+02, ], 'CountWeightedLHEWeightScale_LHENjet1_LHEHT400to600' : [ 1.18915744e+02, 1.10562258e+02, 1.03109159e+02, 1.14753368e+02, 1.06679527e+02, 9.94773185e+01, 1.11191526e+02, 1.03356514e+02, 9.63691980e+01, ], 'CountWeightedLHEEnvelope_LHENjet1_LHEHT400to600' : [ 1.18915744e+02, 9.63691980e+01, ], 'CountWeightedFull_LHENjet1_LHEHT400to600' : [ 1.06679527e+02, 1.03640759e+02, 1.09010262e+02, ], 'CountWeightedFullLHEWeightScale_LHENjet1_LHEHT400to600' : [ 1.18915744e+02, 1.10562258e+02, 1.03109159e+02, 1.14753368e+02, 1.06679527e+02, 9.94773185e+01, 1.11191526e+02, 1.03356514e+02, 9.63691980e+01, ], 'CountWeightedFullLHEEnvelope_LHENjet1_LHEHT400to600' : [ 1.18915744e+02, 9.63691980e+01, ], 'CountWeightedL1PrefireNom_LHENjet1_LHEHT400to600' : [ 1.03862423e+02, 1.00978636e+02, 1.06050108e+02, ], 'CountWeightedL1Prefire_LHENjet1_LHEHT400to600' : [ 1.03862423e+02, 1.03273075e+02, 1.04451835e+02, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet1_LHEHT400to600' : [ 1.15748006e+02, 1.07725002e+02, 1.00552627e+02, 1.11607360e+02, 1.03862423e+02, 9.69395273e+01, 1.08064143e+02, 1.00556686e+02, 9.38474687e+01, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet1_LHEHT400to600' : [ 1.15748006e+02, 9.38474687e+01, ], 'CountWeightedFullL1PrefireNom_LHENjet1_LHEHT400to600' : [ 1.03862423e+02, 1.00978636e+02, 1.06050108e+02, ], 'CountWeightedFullL1Prefire_LHENjet1_LHEHT400to600' : [ 1.03862423e+02, 1.03273075e+02, 1.04451835e+02, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet1_LHEHT400to600' : [ 1.15748006e+02, 1.07725002e+02, 1.00552627e+02, 1.11607360e+02, 1.03862423e+02, 9.69395273e+01, 1.08064143e+02, 1.00556686e+02, 9.38474687e+01, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet1_LHEHT400to600' : [ 1.15748006e+02, 9.38474687e+01, ], 'Count_LHENjet1_LHEHT600to800' : [ 12, ], 'CountWeighted_LHENjet1_LHEHT600to800' : [ 1.18243704e+01, 1.22193238e+01, 1.15305664e+01, ], 'CountWeightedLHEWeightScale_LHENjet1_LHEHT600to800' : [ 1.34176455e+01, 1.22533608e+01, 1.12513860e+01, 1.29458112e+01, 1.18243704e+01, 1.08591259e+01, 1.25392666e+01, 1.14548602e+01, 1.05212635e+01, ], 'CountWeightedLHEEnvelope_LHENjet1_LHEHT600to800' : [ 1.34176455e+01, 1.05212635e+01, ], 'CountWeightedFull_LHENjet1_LHEHT600to800' : [ 1.18243704e+01, 1.22193238e+01, 1.15305664e+01, ], 'CountWeightedFullLHEWeightScale_LHENjet1_LHEHT600to800' : [ 1.34176455e+01, 1.22533608e+01, 1.12513860e+01, 1.29458112e+01, 1.18243704e+01, 1.08591259e+01, 1.25392666e+01, 1.14548602e+01, 1.05212635e+01, ], 'CountWeightedFullLHEEnvelope_LHENjet1_LHEHT600to800' : [ 1.34176455e+01, 1.05212635e+01, ], 'CountWeightedL1PrefireNom_LHENjet1_LHEHT600to800' : [ 1.18243704e+01, 1.22193238e+01, 1.15305664e+01, ], 'CountWeightedL1Prefire_LHENjet1_LHEHT600to800' : [ 1.18243704e+01, 1.18243704e+01, 1.18243704e+01, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet1_LHEHT600to800' : [ 1.34176455e+01, 1.22533608e+01, 1.12513860e+01, 1.29458112e+01, 1.18243704e+01, 1.08591259e+01, 1.25392666e+01, 1.14548602e+01, 1.05212635e+01, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet1_LHEHT600to800' : [ 1.34176455e+01, 1.05212635e+01, ], 'CountWeightedFullL1PrefireNom_LHENjet1_LHEHT600to800' : [ 1.18243704e+01, 1.22193238e+01, 1.15305664e+01, ], 'CountWeightedFullL1Prefire_LHENjet1_LHEHT600to800' : [ 1.18243704e+01, 1.18243704e+01, 1.18243704e+01, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet1_LHEHT600to800' : [ 1.34176455e+01, 1.22533608e+01, 1.12513860e+01, 1.29458112e+01, 1.18243704e+01, 1.08591259e+01, 1.25392666e+01, 1.14548602e+01, 1.05212635e+01, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet1_LHEHT600to800' : [ 1.34176455e+01, 1.05212635e+01, ], 'Count_LHENjet1_LHEHT800to1200' : [ 2, ], 'CountWeighted_LHENjet1_LHEHT800to1200' : [ 1.31775063e+00, 1.82158476e+00, 9.41099629e-01, ], 'CountWeightedLHEWeightScale_LHENjet1_LHEHT800to1200' : [ 1.46327567e+00, 1.31775063e+00, 1.19476902e+00, 1.46327567e+00, 1.31775063e+00, 1.19476902e+00, 1.46327567e+00, 1.31775063e+00, 1.19476902e+00, ], 'CountWeightedLHEEnvelope_LHENjet1_LHEHT800to1200' : [ 1.46327567e+00, 1.19476902e+00, ], 'CountWeightedFull_LHENjet1_LHEHT800to1200' : [ 1.31775063e+00, 1.82158476e+00, 9.41099629e-01, ], 'CountWeightedFullLHEWeightScale_LHENjet1_LHEHT800to1200' : [ 1.46327567e+00, 1.31775063e+00, 1.19476902e+00, 1.46327567e+00, 1.31775063e+00, 1.19476902e+00, 1.46327567e+00, 1.31775063e+00, 1.19476902e+00, ], 'CountWeightedFullLHEEnvelope_LHENjet1_LHEHT800to1200' : [ 1.46327567e+00, 1.19476902e+00, ], 'CountWeightedL1PrefireNom_LHENjet1_LHEHT800to1200' : [ 1.31775063e+00, 1.82158476e+00, 9.41099629e-01, ], 'CountWeightedL1Prefire_LHENjet1_LHEHT800to1200' : [ 1.31775063e+00, 1.31775063e+00, 1.31775063e+00, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet1_LHEHT800to1200' : [ 1.46327567e+00, 1.31775063e+00, 1.19476902e+00, 1.46327567e+00, 1.31775063e+00, 1.19476902e+00, 1.46327567e+00, 1.31775063e+00, 1.19476902e+00, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet1_LHEHT800to1200' : [ 1.46327567e+00, 1.19476902e+00, ], 'CountWeightedFullL1PrefireNom_LHENjet1_LHEHT800to1200' : [ 1.31775063e+00, 1.82158476e+00, 9.41099629e-01, ], 'CountWeightedFullL1Prefire_LHENjet1_LHEHT800to1200' : [ 1.31775063e+00, 1.31775063e+00, 1.31775063e+00, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet1_LHEHT800to1200' : [ 1.46327567e+00, 1.31775063e+00, 1.19476902e+00, 1.46327567e+00, 1.31775063e+00, 1.19476902e+00, 1.46327567e+00, 1.31775063e+00, 1.19476902e+00, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet1_LHEHT800to1200' : [ 1.46327567e+00, 1.19476902e+00, ], 'Count_LHENjet2_LHEHT0to70' : [ 828016, ], 'CountWeighted_LHENjet2_LHEHT0to70' : [ 8.27640137e+05, 8.27612237e+05, 8.27611908e+05, ], 'CountWeightedLHEWeightScale_LHENjet2_LHEHT0to70' : [ 7.51558762e+05, 8.49289535e+05, 9.22564851e+05, 7.32093029e+05, 8.27640137e+05, 8.99313058e+05, 7.16203845e+05, 8.09971618e+05, 8.80338376e+05, ], 'CountWeightedLHEEnvelope_LHENjet2_LHEHT0to70' : [ 9.12762300e+05, 7.23643697e+05, ], 'CountWeightedFull_LHENjet2_LHEHT0to70' : [ 8.27640137e+05, 8.27612237e+05, 8.27611908e+05, ], 'CountWeightedFullLHEWeightScale_LHENjet2_LHEHT0to70' : [ 7.51558762e+05, 8.49289535e+05, 9.22564851e+05, 7.32093029e+05, 8.27640137e+05, 8.99313058e+05, 7.16203845e+05, 8.09971618e+05, 8.80338376e+05, ], 'CountWeightedFullLHEEnvelope_LHENjet2_LHEHT0to70' : [ 9.12762300e+05, 7.23643697e+05, ], 'CountWeightedL1PrefireNom_LHENjet2_LHEHT0to70' : [ 8.20217559e+05, 8.20168578e+05, 8.20208861e+05, ], 'CountWeightedL1Prefire_LHENjet2_LHEHT0to70' : [ 8.20217559e+05, 8.18037852e+05, 8.22225647e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet2_LHEHT0to70' : [ 7.44775312e+05, 8.41667521e+05, 9.14322102e+05, 7.25489665e+05, 8.20217559e+05, 8.91283608e+05, 7.09747595e+05, 8.02711849e+05, 8.72483144e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet2_LHEHT0to70' : [ 9.04599013e+05, 7.17127126e+05, ], 'CountWeightedFullL1PrefireNom_LHENjet2_LHEHT0to70' : [ 8.20217559e+05, 8.20168578e+05, 8.20208861e+05, ], 'CountWeightedFullL1Prefire_LHENjet2_LHEHT0to70' : [ 8.20217559e+05, 8.18037852e+05, 8.22225647e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet2_LHEHT0to70' : [ 7.44775312e+05, 8.41667521e+05, 9.14322102e+05, 7.25489665e+05, 8.20217559e+05, 8.91283608e+05, 7.09747595e+05, 8.02711849e+05, 8.72483144e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet2_LHEHT0to70' : [ 9.04599013e+05, 7.17127126e+05, ], 'Count_LHENjet2_LHEHT70to100' : [ 388668, ], 'CountWeighted_LHENjet2_LHEHT70to100' : [ 3.87987378e+05, 3.88060897e+05, 3.87916494e+05, ], 'CountWeightedLHEWeightScale_LHENjet2_LHEHT70to100' : [ 3.72928764e+05, 4.00372433e+05, 4.19134077e+05, 3.61309102e+05, 3.87987378e+05, 4.06234240e+05, 3.51769273e+05, 3.77820060e+05, 3.95644627e+05, ], 'CountWeightedLHEEnvelope_LHENjet2_LHEHT70to100' : [ 4.17535123e+05, 3.53538243e+05, ], 'CountWeightedFull_LHENjet2_LHEHT70to100' : [ 3.87987378e+05, 3.88060897e+05, 3.87916494e+05, ], 'CountWeightedFullLHEWeightScale_LHENjet2_LHEHT70to100' : [ 3.72928764e+05, 4.00372433e+05, 4.19134077e+05, 3.61309102e+05, 3.87987378e+05, 4.06234240e+05, 3.51769273e+05, 3.77820060e+05, 3.95644627e+05, ], 'CountWeightedFullLHEEnvelope_LHENjet2_LHEHT70to100' : [ 4.17535123e+05, 3.53538243e+05, ], 'CountWeightedL1PrefireNom_LHENjet2_LHEHT70to100' : [ 3.82243217e+05, 3.82309306e+05, 3.82180220e+05, ], 'CountWeightedL1Prefire_LHENjet2_LHEHT70to100' : [ 3.82243217e+05, 3.80658374e+05, 3.83740686e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet2_LHEHT70to100' : [ 3.67376541e+05, 3.94441583e+05, 4.12953256e+05, 3.55932877e+05, 3.82243217e+05, 4.00246924e+05, 3.46537705e+05, 3.72229231e+05, 3.89816331e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet2_LHEHT70to100' : [ 4.11362550e+05, 3.48293887e+05, ], 'CountWeightedFullL1PrefireNom_LHENjet2_LHEHT70to100' : [ 3.82243217e+05, 3.82309306e+05, 3.82180220e+05, ], 'CountWeightedFullL1Prefire_LHENjet2_LHEHT70to100' : [ 3.82243217e+05, 3.80658374e+05, 3.83740686e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet2_LHEHT70to100' : [ 3.67376541e+05, 3.94441583e+05, 4.12953256e+05, 3.55932877e+05, 3.82243217e+05, 4.00246924e+05, 3.46537705e+05, 3.72229231e+05, 3.89816331e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet2_LHEHT70to100' : [ 4.11362550e+05, 3.48293887e+05, ], 'Count_LHENjet2_LHEHT100to200' : [ 290832, ], 'CountWeighted_LHENjet2_LHEHT100to200' : [ 2.90620616e+05, 2.90595252e+05, 2.90577271e+05, ], 'CountWeightedLHEWeightScale_LHENjet2_LHEHT100to200' : [ 2.91982218e+05, 3.01603226e+05, 3.06593322e+05, 2.81312150e+05, 2.90620616e+05, 2.95453250e+05, 2.72537522e+05, 2.81589416e+05, 2.86292843e+05, ], 'CountWeightedLHEEnvelope_LHENjet2_LHEHT100to200' : [ 3.09981893e+05, 2.69985451e+05, ], 'CountWeightedFull_LHENjet2_LHEHT100to200' : [ 2.90620616e+05, 2.90595252e+05, 2.90577271e+05, ], 'CountWeightedFullLHEWeightScale_LHENjet2_LHEHT100to200' : [ 2.91982218e+05, 3.01603226e+05, 3.06593322e+05, 2.81312150e+05, 2.90620616e+05, 2.95453250e+05, 2.72537522e+05, 2.81589416e+05, 2.86292843e+05, ], 'CountWeightedFullLHEEnvelope_LHENjet2_LHEHT100to200' : [ 3.09981893e+05, 2.69985451e+05, ], 'CountWeightedL1PrefireNom_LHENjet2_LHEHT100to200' : [ 2.82133874e+05, 2.82096697e+05, 2.82098371e+05, ], 'CountWeightedL1Prefire_LHENjet2_LHEHT100to200' : [ 2.82133874e+05, 2.80060489e+05, 2.84170456e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet2_LHEHT100to200' : [ 2.83345271e+05, 2.92784920e+05, 2.97717709e+05, 2.73001154e+05, 2.82133874e+05, 2.86910565e+05, 2.64494510e+05, 2.73375195e+05, 2.78023832e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet2_LHEHT100to200' : [ 3.00912041e+05, 2.62104866e+05, ], 'CountWeightedFullL1PrefireNom_LHENjet2_LHEHT100to200' : [ 2.82133874e+05, 2.82096697e+05, 2.82098371e+05, ], 'CountWeightedFullL1Prefire_LHENjet2_LHEHT100to200' : [ 2.82133874e+05, 2.80060489e+05, 2.84170456e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet2_LHEHT100to200' : [ 2.83345271e+05, 2.92784920e+05, 2.97717709e+05, 2.73001154e+05, 2.82133874e+05, 2.86910565e+05, 2.64494510e+05, 2.73375195e+05, 2.78023832e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet2_LHEHT100to200' : [ 3.00912041e+05, 2.62104866e+05, ], 'Count_LHENjet2_LHEHT200to400' : [ 37837, ], 'CountWeighted_LHENjet2_LHEHT200to400' : [ 3.77934976e+04, 3.77836171e+04, 3.77834475e+04, ], 'CountWeightedLHEWeightScale_LHENjet2_LHEHT200to400' : [ 4.12187153e+04, 4.05452974e+04, 3.96517991e+04, 3.84285640e+04, 3.77934976e+04, 3.69527328e+04, 3.61915187e+04, 3.55877740e+04, 3.47897996e+04, ], 'CountWeightedLHEEnvelope_LHENjet2_LHEHT200to400' : [ 4.17205071e+04, 3.44294269e+04, ], 'CountWeightedFull_LHENjet2_LHEHT200to400' : [ 3.77934976e+04, 3.77836171e+04, 3.77834475e+04, ], 'CountWeightedFullLHEWeightScale_LHENjet2_LHEHT200to400' : [ 4.12187153e+04, 4.05452974e+04, 3.96517991e+04, 3.84285640e+04, 3.77934976e+04, 3.69527328e+04, 3.61915187e+04, 3.55877740e+04, 3.47897996e+04, ], 'CountWeightedFullLHEEnvelope_LHENjet2_LHEHT200to400' : [ 4.17205071e+04, 3.44294269e+04, ], 'CountWeightedL1PrefireNom_LHENjet2_LHEHT200to400' : [ 3.56776249e+04, 3.56635693e+04, 3.56705699e+04, ], 'CountWeightedL1Prefire_LHENjet2_LHEHT200to400' : [ 3.56776249e+04, 3.52132940e+04, 3.61437281e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet2_LHEHT200to400' : [ 3.88640805e+04, 3.82645600e+04, 3.74511699e+04, 3.62437146e+04, 3.56776249e+04, 3.49116373e+04, 3.41425023e+04, 3.36037596e+04, 3.28762606e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet2_LHEHT200to400' : [ 3.93481318e+04, 3.25276549e+04, ], 'CountWeightedFullL1PrefireNom_LHENjet2_LHEHT200to400' : [ 3.56776249e+04, 3.56635693e+04, 3.56705699e+04, ], 'CountWeightedFullL1Prefire_LHENjet2_LHEHT200to400' : [ 3.56776249e+04, 3.52132940e+04, 3.61437281e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet2_LHEHT200to400' : [ 3.88640805e+04, 3.82645600e+04, 3.74511699e+04, 3.62437146e+04, 3.56776249e+04, 3.49116373e+04, 3.41425023e+04, 3.36037596e+04, 3.28762606e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet2_LHEHT200to400' : [ 3.93481318e+04, 3.25276549e+04, ], 'Count_LHENjet2_LHEHT400to600' : [ 2283, ], 'CountWeighted_LHENjet2_LHEHT400to600' : [ 2.29227562e+03, 2.29077682e+03, 2.29133541e+03, ], 'CountWeightedLHEWeightScale_LHENjet2_LHEHT400to600' : [ 2.65385790e+03, 2.51461726e+03, 2.38489944e+03, 2.42032401e+03, 2.29227562e+03, 2.17315042e+03, 2.23206680e+03, 2.11309199e+03, 2.00254202e+03, ], 'CountWeightedLHEEnvelope_LHENjet2_LHEHT400to600' : [ 2.65809260e+03, 2.00043559e+03, ], 'CountWeightedFull_LHENjet2_LHEHT400to600' : [ 2.29227562e+03, 2.29077682e+03, 2.29133541e+03, ], 'CountWeightedFullLHEWeightScale_LHENjet2_LHEHT400to600' : [ 2.65385790e+03, 2.51461726e+03, 2.38489944e+03, 2.42032401e+03, 2.29227562e+03, 2.17315042e+03, 2.23206680e+03, 2.11309199e+03, 2.00254202e+03, ], 'CountWeightedFullLHEEnvelope_LHENjet2_LHEHT400to600' : [ 2.65809260e+03, 2.00043559e+03, ], 'CountWeightedL1PrefireNom_LHENjet2_LHEHT400to600' : [ 2.13052670e+03, 2.12941866e+03, 2.12899697e+03, ], 'CountWeightedL1Prefire_LHENjet2_LHEHT400to600' : [ 2.13052670e+03, 2.09720587e+03, 2.16435838e+03, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet2_LHEHT400to600' : [ 2.46055509e+03, 2.33561098e+03, 2.21856699e+03, 2.24557900e+03, 2.13052670e+03, 2.02291314e+03, 2.07222777e+03, 1.96520249e+03, 1.86522941e+03, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet2_LHEHT400to600' : [ 2.46477459e+03, 1.86312054e+03, ], 'CountWeightedFullL1PrefireNom_LHENjet2_LHEHT400to600' : [ 2.13052670e+03, 2.12941866e+03, 2.12899697e+03, ], 'CountWeightedFullL1Prefire_LHENjet2_LHEHT400to600' : [ 2.13052670e+03, 2.09720587e+03, 2.16435838e+03, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet2_LHEHT400to600' : [ 2.46055509e+03, 2.33561098e+03, 2.21856699e+03, 2.24557900e+03, 2.13052670e+03, 2.02291314e+03, 2.07222777e+03, 1.96520249e+03, 1.86522941e+03, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet2_LHEHT400to600' : [ 2.46477459e+03, 1.86312054e+03, ], 'Count_LHENjet2_LHEHT600to800' : [ 337, ], 'CountWeighted_LHENjet2_LHEHT600to800' : [ 3.22251168e+02, 3.25698850e+02, 3.18884018e+02, ], 'CountWeightedLHEWeightScale_LHENjet2_LHEHT600to800' : [ 3.81996048e+02, 3.56927697e+02, 3.34621796e+02, 3.44981184e+02, 3.22251168e+02, 3.02041301e+02, 3.15011377e+02, 2.94172590e+02, 2.75658240e+02, ], 'CountWeightedLHEEnvelope_LHENjet2_LHEHT600to800' : [ 3.82346451e+02, 2.75503158e+02, ], 'CountWeightedFull_LHENjet2_LHEHT600to800' : [ 3.22251168e+02, 3.25698850e+02, 3.18884018e+02, ], 'CountWeightedFullLHEWeightScale_LHENjet2_LHEHT600to800' : [ 3.81996048e+02, 3.56927697e+02, 3.34621796e+02, 3.44981184e+02, 3.22251168e+02, 3.02041301e+02, 3.15011377e+02, 2.94172590e+02, 2.75658240e+02, ], 'CountWeightedFullLHEEnvelope_LHENjet2_LHEHT600to800' : [ 3.82346451e+02, 2.75503158e+02, ], 'CountWeightedL1PrefireNom_LHENjet2_LHEHT600to800' : [ 2.99123111e+02, 3.02248206e+02, 2.95549138e+02, ], 'CountWeightedL1Prefire_LHENjet2_LHEHT600to800' : [ 2.99123111e+02, 2.94416338e+02, 3.03904000e+02, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet2_LHEHT600to800' : [ 3.53324822e+02, 3.31048192e+02, 3.11102820e+02, 3.19351603e+02, 2.99123111e+02, 2.81027629e+02, 2.91829250e+02, 2.73258181e+02, 2.56660154e+02, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet2_LHEHT600to800' : [ 3.53674008e+02, 2.56505567e+02, ], 'CountWeightedFullL1PrefireNom_LHENjet2_LHEHT600to800' : [ 2.99123111e+02, 3.02248206e+02, 2.95549138e+02, ], 'CountWeightedFullL1Prefire_LHENjet2_LHEHT600to800' : [ 2.99123111e+02, 2.94416338e+02, 3.03904000e+02, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet2_LHEHT600to800' : [ 3.53324822e+02, 3.31048192e+02, 3.11102820e+02, 3.19351603e+02, 2.99123111e+02, 2.81027629e+02, 2.91829250e+02, 2.73258181e+02, 2.56660154e+02, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet2_LHEHT600to800' : [ 3.53674008e+02, 2.56505567e+02, ], 'Count_LHENjet2_LHEHT800to1200' : [ 99, ], 'CountWeighted_LHENjet2_LHEHT800to1200' : [ 9.13844472e+01, 9.50293044e+01, 8.69236831e+01, ], 'CountWeightedLHEWeightScale_LHENjet2_LHEHT800to1200' : [ 1.09488112e+02, 1.01022790e+02, 9.36752109e+01, 9.90966050e+01, 9.13844472e+01, 8.46977253e+01, 9.06574297e+01, 8.35592005e+01, 7.74110778e+01, ], 'CountWeightedLHEEnvelope_LHENjet2_LHEHT800to1200' : [ 1.09650978e+02, 7.73399248e+01, ], 'CountWeightedFull_LHENjet2_LHEHT800to1200' : [ 9.13844472e+01, 9.50293044e+01, 8.69236831e+01, ], 'CountWeightedFullLHEWeightScale_LHENjet2_LHEHT800to1200' : [ 1.09488112e+02, 1.01022790e+02, 9.36752109e+01, 9.90966050e+01, 9.13844472e+01, 8.46977253e+01, 9.06574297e+01, 8.35592005e+01, 7.74110778e+01, ], 'CountWeightedFullLHEEnvelope_LHENjet2_LHEHT800to1200' : [ 1.09650978e+02, 7.73399248e+01, ], 'CountWeightedL1PrefireNom_LHENjet2_LHEHT800to1200' : [ 8.77596101e+01, 9.16079544e+01, 8.32243273e+01, ], 'CountWeightedL1Prefire_LHENjet2_LHEHT800to1200' : [ 8.77596101e+01, 8.70312543e+01, 8.84961055e+01, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet2_LHEHT800to1200' : [ 1.04855758e+02, 9.69771784e+01, 9.01019941e+01, 9.49470787e+01, 8.77596101e+01, 8.14954072e+01, 8.68999808e+01, 8.02761520e+01, 7.45100966e+01, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet2_LHEHT800to1200' : [ 1.05018624e+02, 7.44389435e+01, ], 'CountWeightedFullL1PrefireNom_LHENjet2_LHEHT800to1200' : [ 8.77596101e+01, 9.16079544e+01, 8.32243273e+01, ], 'CountWeightedFullL1Prefire_LHENjet2_LHEHT800to1200' : [ 8.77596101e+01, 8.70312543e+01, 8.84961055e+01, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet2_LHEHT800to1200' : [ 1.04855758e+02, 9.69771784e+01, 9.01019941e+01, 9.49470787e+01, 8.77596101e+01, 8.14954072e+01, 8.68999808e+01, 8.02761520e+01, 7.45100966e+01, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet2_LHEHT800to1200' : [ 1.05018624e+02, 7.44389435e+01, ], 'Count_LHENjet2_LHEHT1200to2500' : [ 13, ], 'CountWeighted_LHENjet2_LHEHT1200to2500' : [ 1.40307709e+01, 1.33234028e+01, 1.47810117e+01, ], 'CountWeightedLHEWeightScale_LHENjet2_LHEHT1200to2500' : [ 1.73104075e+01, 1.54392461e+01, 1.38952747e+01, 1.57234274e+01, 1.40307709e+01, 1.26328180e+01, 1.44158005e+01, 1.28690370e+01, 1.15905460e+01, ], 'CountWeightedLHEEnvelope_LHENjet2_LHEHT1200to2500' : [ 1.73104075e+01, 1.15905460e+01, ], 'CountWeightedFull_LHENjet2_LHEHT1200to2500' : [ 1.40307709e+01, 1.33234028e+01, 1.47810117e+01, ], 'CountWeightedFullLHEWeightScale_LHENjet2_LHEHT1200to2500' : [ 1.73104075e+01, 1.54392461e+01, 1.38952747e+01, 1.57234274e+01, 1.40307709e+01, 1.26328180e+01, 1.44158005e+01, 1.28690370e+01, 1.15905460e+01, ], 'CountWeightedFullLHEEnvelope_LHENjet2_LHEHT1200to2500' : [ 1.73104075e+01, 1.15905460e+01, ], 'CountWeightedL1PrefireNom_LHENjet2_LHEHT1200to2500' : [ 1.37482772e+01, 1.30646370e+01, 1.44721777e+01, ], 'CountWeightedL1Prefire_LHENjet2_LHEHT1200to2500' : [ 1.37482772e+01, 1.36829786e+01, 1.38135760e+01, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet2_LHEHT1200to2500' : [ 1.69324964e+01, 1.51043884e+01, 1.35958665e+01, 1.54046219e+01, 1.37482772e+01, 1.23802307e+01, 1.41431174e+01, 1.26274070e+01, 1.13744946e+01, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet2_LHEHT1200to2500' : [ 1.69324964e+01, 1.13744946e+01, ], 'CountWeightedFullL1PrefireNom_LHENjet2_LHEHT1200to2500' : [ 1.37482772e+01, 1.30646370e+01, 1.44721777e+01, ], 'CountWeightedFullL1Prefire_LHENjet2_LHEHT1200to2500' : [ 1.37482772e+01, 1.36829786e+01, 1.38135760e+01, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet2_LHEHT1200to2500' : [ 1.69324964e+01, 1.51043884e+01, 1.35958665e+01, 1.54046219e+01, 1.37482772e+01, 1.23802307e+01, 1.41431174e+01, 1.26274070e+01, 1.13744946e+01, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet2_LHEHT1200to2500' : [ 1.69324964e+01, 1.13744946e+01, ], 'Count_LHENjet2_LHEHT2500toInf' : [ 1, ], 'CountWeighted_LHENjet2_LHEHT2500toInf' : [ 1.08228719e+00, 8.13995719e-01, 1.43368959e+00, ], 'CountWeightedLHEWeightScale_LHENjet2_LHEHT2500toInf' : [ 1.30397642e+00, 1.16558576e+00, 1.04899418e+00, 1.21076918e+00, 1.08228719e+00, 9.74018812e-01, 1.13017893e+00, 1.01025140e+00, 9.09183323e-01, ], 'CountWeightedLHEEnvelope_LHENjet2_LHEHT2500toInf' : [ 1.30397642e+00, 9.09183323e-01, ], 'CountWeightedFull_LHENjet2_LHEHT2500toInf' : [ 1.08228719e+00, 8.13995719e-01, 1.43368959e+00, ], 'CountWeightedFullLHEWeightScale_LHENjet2_LHEHT2500toInf' : [ 1.30397642e+00, 1.16558576e+00, 1.04899418e+00, 1.21076918e+00, 1.08228719e+00, 9.74018812e-01, 1.13017893e+00, 1.01025140e+00, 9.09183323e-01, ], 'CountWeightedFullLHEEnvelope_LHENjet2_LHEHT2500toInf' : [ 1.30397642e+00, 9.09183323e-01, ], 'CountWeightedL1PrefireNom_LHENjet2_LHEHT2500toInf' : [ 1.08228719e+00, 8.13995719e-01, 1.43368959e+00, ], 'CountWeightedL1Prefire_LHENjet2_LHEHT2500toInf' : [ 1.08228719e+00, 1.08228719e+00, 1.08228719e+00, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet2_LHEHT2500toInf' : [ 1.30397642e+00, 1.16558576e+00, 1.04899418e+00, 1.21076918e+00, 1.08228719e+00, 9.74018812e-01, 1.13017893e+00, 1.01025140e+00, 9.09183323e-01, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet2_LHEHT2500toInf' : [ 1.30397642e+00, 9.09183323e-01, ], 'CountWeightedFullL1PrefireNom_LHENjet2_LHEHT2500toInf' : [ 1.08228719e+00, 8.13995719e-01, 1.43368959e+00, ], 'CountWeightedFullL1Prefire_LHENjet2_LHEHT2500toInf' : [ 1.08228719e+00, 1.08228719e+00, 1.08228719e+00, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet2_LHEHT2500toInf' : [ 1.30397642e+00, 1.16558576e+00, 1.04899418e+00, 1.21076918e+00, 1.08228719e+00, 9.74018812e-01, 1.13017893e+00, 1.01025140e+00, 9.09183323e-01, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet2_LHEHT2500toInf' : [ 1.30397642e+00, 9.09183323e-01, ], 'Count_LHENjet3_LHEHT0to70' : [ 42743, ], 'CountWeighted_LHENjet3_LHEHT0to70' : [ 4.26676369e+04, 4.27016896e+04, 4.26548079e+04, ], 'CountWeightedLHEWeightScale_LHENjet3_LHEHT0to70' : [ 4.06949850e+04, 4.43478798e+04, 4.66535039e+04, 3.91290898e+04, 4.26676369e+04, 4.49052186e+04, 3.78528742e+04, 4.12983295e+04, 4.34805404e+04, ], 'CountWeightedLHEEnvelope_LHENjet3_LHEHT0to70' : [ 4.68630550e+04, 3.76704158e+04, ], 'CountWeightedFull_LHENjet3_LHEHT0to70' : [ 4.26676369e+04, 4.27016896e+04, 4.26548079e+04, ], 'CountWeightedFullLHEWeightScale_LHENjet3_LHEHT0to70' : [ 4.06949850e+04, 4.43478798e+04, 4.66535039e+04, 3.91290898e+04, 4.26676369e+04, 4.49052186e+04, 3.78528742e+04, 4.12983295e+04, 4.34805404e+04, ], 'CountWeightedFullLHEEnvelope_LHENjet3_LHEHT0to70' : [ 4.68630550e+04, 3.76704158e+04, ], 'CountWeightedL1PrefireNom_LHENjet3_LHEHT0to70' : [ 4.23029688e+04, 4.23349811e+04, 4.22907676e+04, ], 'CountWeightedL1Prefire_LHENjet3_LHEHT0to70' : [ 4.23029688e+04, 4.21951949e+04, 4.24019577e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet3_LHEHT0to70' : [ 4.03443399e+04, 4.39678691e+04, 4.62552968e+04, 3.87928917e+04, 4.23029688e+04, 4.45228619e+04, 3.75284577e+04, 4.09461738e+04, 4.31111109e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet3_LHEHT0to70' : [ 4.64613322e+04, 3.73490534e+04, ], 'CountWeightedFullL1PrefireNom_LHENjet3_LHEHT0to70' : [ 4.23029688e+04, 4.23349811e+04, 4.22907676e+04, ], 'CountWeightedFullL1Prefire_LHENjet3_LHEHT0to70' : [ 4.23029688e+04, 4.21951949e+04, 4.24019577e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet3_LHEHT0to70' : [ 4.03443399e+04, 4.39678691e+04, 4.62552968e+04, 3.87928917e+04, 4.23029688e+04, 4.45228619e+04, 3.75284577e+04, 4.09461738e+04, 4.31111109e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet3_LHEHT0to70' : [ 4.64613322e+04, 3.73490534e+04, ], 'Count_LHENjet3_LHEHT70to100' : [ 152348, ], 'CountWeighted_LHENjet3_LHEHT70to100' : [ 1.52215169e+05, 1.52206189e+05, 1.52217509e+05, ], 'CountWeightedLHEWeightScale_LHENjet3_LHEHT70to100' : [ 1.49693202e+05, 1.58182043e+05, 1.62903944e+05, 1.43990013e+05, 1.52215169e+05, 1.56801889e+05, 1.39328204e+05, 1.47337813e+05, 1.51814118e+05, ], 'CountWeightedLHEEnvelope_LHENjet3_LHEHT70to100' : [ 1.65161797e+05, 1.37519510e+05, ], 'CountWeightedFull_LHENjet3_LHEHT70to100' : [ 1.52215169e+05, 1.52206189e+05, 1.52217509e+05, ], 'CountWeightedFullLHEWeightScale_LHENjet3_LHEHT70to100' : [ 1.49693202e+05, 1.58182043e+05, 1.62903944e+05, 1.43990013e+05, 1.52215169e+05, 1.56801889e+05, 1.39328204e+05, 1.47337813e+05, 1.51814118e+05, ], 'CountWeightedFullLHEEnvelope_LHENjet3_LHEHT70to100' : [ 1.65161797e+05, 1.37519510e+05, ], 'CountWeightedL1PrefireNom_LHENjet3_LHEHT70to100' : [ 1.50501953e+05, 1.50490193e+05, 1.50508231e+05, ], 'CountWeightedL1Prefire_LHENjet3_LHEHT70to100' : [ 1.50501953e+05, 1.50001740e+05, 1.50960024e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet3_LHEHT70to100' : [ 1.47994119e+05, 1.56401619e+05, 1.61082501e+05, 1.42355933e+05, 1.50501953e+05, 1.55048580e+05, 1.37747289e+05, 1.45679604e+05, 1.50116524e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet3_LHEHT70to100' : [ 1.63300760e+05, 1.35971719e+05, ], 'CountWeightedFullL1PrefireNom_LHENjet3_LHEHT70to100' : [ 1.50501953e+05, 1.50490193e+05, 1.50508231e+05, ], 'CountWeightedFullL1Prefire_LHENjet3_LHEHT70to100' : [ 1.50501953e+05, 1.50001740e+05, 1.50960024e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet3_LHEHT70to100' : [ 1.47994119e+05, 1.56401619e+05, 1.61082501e+05, 1.42355933e+05, 1.50501953e+05, 1.55048580e+05, 1.37747289e+05, 1.45679604e+05, 1.50116524e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet3_LHEHT70to100' : [ 1.63300760e+05, 1.35971719e+05, ], 'Count_LHENjet3_LHEHT100to200' : [ 281662, ], 'CountWeighted_LHENjet3_LHEHT100to200' : [ 2.81189245e+05, 2.81137380e+05, 2.81291567e+05, ], 'CountWeightedLHEWeightScale_LHENjet3_LHEHT100to200' : [ 2.87422759e+05, 2.92988414e+05, 2.93837956e+05, 2.75792864e+05, 2.81189245e+05, 2.82042572e+05, 2.66256354e+05, 2.71514084e+05, 2.72370503e+05, ], 'CountWeightedLHEEnvelope_LHENjet3_LHEHT100to200' : [ 3.03456984e+05, 2.58084845e+05, ], 'CountWeightedFull_LHENjet3_LHEHT100to200' : [ 2.81189245e+05, 2.81137380e+05, 2.81291567e+05, ], 'CountWeightedFullLHEWeightScale_LHENjet3_LHEHT100to200' : [ 2.87422759e+05, 2.92988414e+05, 2.93837956e+05, 2.75792864e+05, 2.81189245e+05, 2.82042572e+05, 2.66256354e+05, 2.71514084e+05, 2.72370503e+05, ], 'CountWeightedFullLHEEnvelope_LHENjet3_LHEHT100to200' : [ 3.03456984e+05, 2.58084845e+05, ], 'CountWeightedL1PrefireNom_LHENjet3_LHEHT100to200' : [ 2.74762205e+05, 2.74704171e+05, 2.74867697e+05, ], 'CountWeightedL1Prefire_LHENjet3_LHEHT100to200' : [ 2.74762205e+05, 2.73084519e+05, 2.76370351e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet3_LHEHT100to200' : [ 2.80770031e+05, 2.86287511e+05, 2.87183782e+05, 2.69413185e+05, 2.74762205e+05, 2.75659536e+05, 2.60100631e+05, 2.65311559e+05, 2.66209808e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet3_LHEHT100to200' : [ 2.96491183e+05, 2.52200463e+05, ], 'CountWeightedFullL1PrefireNom_LHENjet3_LHEHT100to200' : [ 2.74762205e+05, 2.74704171e+05, 2.74867697e+05, ], 'CountWeightedFullL1Prefire_LHENjet3_LHEHT100to200' : [ 2.74762205e+05, 2.73084519e+05, 2.76370351e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet3_LHEHT100to200' : [ 2.80770031e+05, 2.86287511e+05, 2.87183782e+05, 2.69413185e+05, 2.74762205e+05, 2.75659536e+05, 2.60100631e+05, 2.65311559e+05, 2.66209808e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet3_LHEHT100to200' : [ 2.96491183e+05, 2.52200463e+05, ], 'Count_LHENjet3_LHEHT200to400' : [ 69004, ], 'CountWeighted_LHENjet3_LHEHT200to400' : [ 6.90469459e+04, 6.89714075e+04, 6.91215109e+04, ], 'CountWeightedLHEWeightScale_LHENjet3_LHEHT200to400' : [ 7.59282028e+04, 7.39892809e+04, 7.16535288e+04, 7.08597822e+04, 6.90469459e+04, 6.68612110e+04, 6.68059885e+04, 6.50944541e+04, 6.30291964e+04, ], 'CountWeightedLHEEnvelope_LHENjet3_LHEHT200to400' : [ 7.70601523e+04, 6.21847246e+04, ], 'CountWeightedFull_LHENjet3_LHEHT200to400' : [ 6.90469459e+04, 6.89714075e+04, 6.91215109e+04, ], 'CountWeightedFullLHEWeightScale_LHENjet3_LHEHT200to400' : [ 7.59282028e+04, 7.39892809e+04, 7.16535288e+04, 7.08597822e+04, 6.90469459e+04, 6.68612110e+04, 6.68059885e+04, 6.50944541e+04, 6.30291964e+04, ], 'CountWeightedFullLHEEnvelope_LHENjet3_LHEHT200to400' : [ 7.70601523e+04, 6.21847246e+04, ], 'CountWeightedL1PrefireNom_LHENjet3_LHEHT200to400' : [ 6.54914866e+04, 6.54155530e+04, 6.55655356e+04, ], 'CountWeightedL1Prefire_LHENjet3_LHEHT200to400' : [ 6.54914866e+04, 6.46836358e+04, 6.62961724e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet3_LHEHT200to400' : [ 7.19299388e+04, 7.01585266e+04, 6.79960182e+04, 6.71484721e+04, 6.54914866e+04, 6.34670480e+04, 6.33231727e+04, 6.17581873e+04, 5.98446782e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet3_LHEHT200to400' : [ 7.30204108e+04, 5.90290079e+04, ], 'CountWeightedFullL1PrefireNom_LHENjet3_LHEHT200to400' : [ 6.54914866e+04, 6.54155530e+04, 6.55655356e+04, ], 'CountWeightedFullL1Prefire_LHENjet3_LHEHT200to400' : [ 6.54914866e+04, 6.46836358e+04, 6.62961724e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet3_LHEHT200to400' : [ 7.19299388e+04, 7.01585266e+04, 6.79960182e+04, 6.71484721e+04, 6.54914866e+04, 6.34670480e+04, 6.33231727e+04, 6.17581873e+04, 5.98446782e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet3_LHEHT200to400' : [ 7.30204108e+04, 5.90290079e+04, ], 'Count_LHENjet3_LHEHT400to600' : [ 6000, ], 'CountWeighted_LHENjet3_LHEHT400to600' : [ 5.97221874e+03, 5.95708536e+03, 5.99119461e+03, ], 'CountWeightedLHEWeightScale_LHENjet3_LHEHT400to600' : [ 7.04341108e+03, 6.60477537e+03, 6.20228342e+03, 6.37138315e+03, 5.97221874e+03, 5.60630755e+03, 5.83649347e+03, 5.46880210e+03, 5.13204896e+03, ], 'CountWeightedLHEEnvelope_LHENjet3_LHEHT400to600' : [ 7.06650801e+03, 5.11845919e+03, ], 'CountWeightedFull_LHENjet3_LHEHT400to600' : [ 5.97221874e+03, 5.95708536e+03, 5.99119461e+03, ], 'CountWeightedFullLHEWeightScale_LHENjet3_LHEHT400to600' : [ 7.04341108e+03, 6.60477537e+03, 6.20228342e+03, 6.37138315e+03, 5.97221874e+03, 5.60630755e+03, 5.83649347e+03, 5.46880210e+03, 5.13204896e+03, ], 'CountWeightedFullLHEEnvelope_LHENjet3_LHEHT400to600' : [ 7.06650801e+03, 5.11845919e+03, ], 'CountWeightedL1PrefireNom_LHENjet3_LHEHT400to600' : [ 5.52766578e+03, 5.51061819e+03, 5.54872836e+03, ], 'CountWeightedL1Prefire_LHENjet3_LHEHT400to600' : [ 5.52766578e+03, 5.43358490e+03, 5.62251590e+03, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet3_LHEHT400to600' : [ 6.50294568e+03, 6.10861985e+03, 5.74490210e+03, 5.88697295e+03, 5.52766578e+03, 5.19660567e+03, 5.39639331e+03, 5.06503849e+03, 4.76003502e+03, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet3_LHEHT400to600' : [ 6.52474904e+03, 4.74706338e+03, ], 'CountWeightedFullL1PrefireNom_LHENjet3_LHEHT400to600' : [ 5.52766578e+03, 5.51061819e+03, 5.54872836e+03, ], 'CountWeightedFullL1Prefire_LHENjet3_LHEHT400to600' : [ 5.52766578e+03, 5.43358490e+03, 5.62251590e+03, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet3_LHEHT400to600' : [ 6.50294568e+03, 6.10861985e+03, 5.74490210e+03, 5.88697295e+03, 5.52766578e+03, 5.19660567e+03, 5.39639331e+03, 5.06503849e+03, 4.76003502e+03, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet3_LHEHT400to600' : [ 6.52474904e+03, 4.74706338e+03, ], 'Count_LHENjet3_LHEHT600to800' : [ 1103, ], 'CountWeighted_LHENjet3_LHEHT600to800' : [ 1.09208005e+03, 1.09356331e+03, 1.09218947e+03, ], 'CountWeightedLHEWeightScale_LHENjet3_LHEHT600to800' : [ 1.32252219e+03, 1.21717730e+03, 1.12620999e+03, 1.18694871e+03, 1.09208005e+03, 1.01021147e+03, 1.07862615e+03, 9.92137245e+02, 9.17544917e+02, ], 'CountWeightedLHEEnvelope_LHENjet3_LHEHT600to800' : [ 1.32444553e+03, 9.16264833e+02, ], 'CountWeightedFull_LHENjet3_LHEHT600to800' : [ 1.09208005e+03, 1.09356331e+03, 1.09218947e+03, ], 'CountWeightedFullLHEWeightScale_LHENjet3_LHEHT600to800' : [ 1.32252219e+03, 1.21717730e+03, 1.12620999e+03, 1.18694871e+03, 1.09208005e+03, 1.01021147e+03, 1.07862615e+03, 9.92137245e+02, 9.17544917e+02, ], 'CountWeightedFullLHEEnvelope_LHENjet3_LHEHT600to800' : [ 1.32444553e+03, 9.16264833e+02, ], 'CountWeightedL1PrefireNom_LHENjet3_LHEHT600to800' : [ 1.01982837e+03, 1.02060870e+03, 1.02004306e+03, ], 'CountWeightedL1Prefire_LHENjet3_LHEHT600to800' : [ 1.01982837e+03, 1.00483555e+03, 1.03496774e+03, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet3_LHEHT600to800' : [ 1.23100817e+03, 1.13588367e+03, 1.05316687e+03, 1.10562059e+03, 1.01982837e+03, 9.45284082e+02, 1.00539358e+03, 9.27073017e+02, 8.59070131e+02, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet3_LHEHT600to800' : [ 1.23292585e+03, 8.57797480e+02, ], 'CountWeightedFullL1PrefireNom_LHENjet3_LHEHT600to800' : [ 1.01982837e+03, 1.02060870e+03, 1.02004306e+03, ], 'CountWeightedFullL1Prefire_LHENjet3_LHEHT600to800' : [ 1.01982837e+03, 1.00483555e+03, 1.03496774e+03, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet3_LHEHT600to800' : [ 1.23100817e+03, 1.13588367e+03, 1.05316687e+03, 1.10562059e+03, 1.01982837e+03, 9.45284082e+02, 1.00539358e+03, 9.27073017e+02, 8.59070131e+02, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet3_LHEHT600to800' : [ 1.23292585e+03, 8.57797480e+02, ], 'Count_LHENjet3_LHEHT800to1200' : [ 348, ], 'CountWeighted_LHENjet3_LHEHT800to1200' : [ 3.45183294e+02, 3.48076822e+02, 3.44287670e+02, ], 'CountWeightedLHEWeightScale_LHENjet3_LHEHT800to1200' : [ 4.24798724e+02, 3.85981538e+02, 3.53161271e+02, 3.80006568e+02, 3.45183294e+02, 3.15758036e+02, 3.43995972e+02, 3.12388058e+02, 2.85694697e+02, ], 'CountWeightedLHEEnvelope_LHENjet3_LHEHT800to1200' : [ 4.24925540e+02, 2.85651155e+02, ], 'CountWeightedFull_LHENjet3_LHEHT800to1200' : [ 3.45183294e+02, 3.48076822e+02, 3.44287670e+02, ], 'CountWeightedFullLHEWeightScale_LHENjet3_LHEHT800to1200' : [ 4.24798724e+02, 3.85981538e+02, 3.53161271e+02, 3.80006568e+02, 3.45183294e+02, 3.15758036e+02, 3.43995972e+02, 3.12388058e+02, 2.85694697e+02, ], 'CountWeightedFullLHEEnvelope_LHENjet3_LHEHT800to1200' : [ 4.24925540e+02, 2.85651155e+02, ], 'CountWeightedL1PrefireNom_LHENjet3_LHEHT800to1200' : [ 3.29636823e+02, 3.31919934e+02, 3.29292438e+02, ], 'CountWeightedL1Prefire_LHENjet3_LHEHT800to1200' : [ 3.29636823e+02, 3.26324141e+02, 3.32940324e+02, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet3_LHEHT800to1200' : [ 4.04652154e+02, 3.68221208e+02, 3.37350824e+02, 3.62360447e+02, 3.29636823e+02, 3.01925327e+02, 3.28326087e+02, 2.98590254e+02, 2.73423640e+02, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet3_LHEHT800to1200' : [ 4.04778971e+02, 2.73380098e+02, ], 'CountWeightedFullL1PrefireNom_LHENjet3_LHEHT800to1200' : [ 3.29636823e+02, 3.31919934e+02, 3.29292438e+02, ], 'CountWeightedFullL1Prefire_LHENjet3_LHEHT800to1200' : [ 3.29636823e+02, 3.26324141e+02, 3.32940324e+02, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet3_LHEHT800to1200' : [ 4.04652154e+02, 3.68221208e+02, 3.37350824e+02, 3.62360447e+02, 3.29636823e+02, 3.01925327e+02, 3.28326087e+02, 2.98590254e+02, 2.73423640e+02, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet3_LHEHT800to1200' : [ 4.04778971e+02, 2.73380098e+02, ], 'Count_LHENjet3_LHEHT1200to2500' : [ 59, ], 'CountWeighted_LHENjet3_LHEHT1200to2500' : [ 6.14484989e+01, 6.08562792e+01, 6.18000720e+01, ], 'CountWeightedLHEWeightScale_LHENjet3_LHEHT1200to2500' : [ 7.72736734e+01, 6.85748515e+01, 6.14754376e+01, 6.92170244e+01, 6.14484989e+01, 5.51053815e+01, 6.26773955e+01, 5.56613163e+01, 4.99298061e+01, ], 'CountWeightedLHEEnvelope_LHENjet3_LHEHT1200to2500' : [ 7.72736734e+01, 4.99298061e+01, ], 'CountWeightedFull_LHENjet3_LHEHT1200to2500' : [ 6.14484989e+01, 6.08562792e+01, 6.18000720e+01, ], 'CountWeightedFullLHEWeightScale_LHENjet3_LHEHT1200to2500' : [ 7.72736734e+01, 6.85748515e+01, 6.14754376e+01, 6.92170244e+01, 6.14484989e+01, 5.51053815e+01, 6.26773955e+01, 5.56613163e+01, 4.99298061e+01, ], 'CountWeightedFullLHEEnvelope_LHENjet3_LHEHT1200to2500' : [ 7.72736734e+01, 4.99298061e+01, ], 'CountWeightedL1PrefireNom_LHENjet3_LHEHT1200to2500' : [ 5.98111852e+01, 5.94017954e+01, 5.99645057e+01, ], 'CountWeightedL1Prefire_LHENjet3_LHEHT1200to2500' : [ 5.98111852e+01, 5.94428978e+01, 6.01727611e+01, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet3_LHEHT1200to2500' : [ 7.51247818e+01, 6.67685700e+01, 5.99326654e+01, 6.72690475e+01, 5.98111852e+01, 5.37069237e+01, 6.08957140e+01, 5.41638334e+01, 4.86508178e+01, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet3_LHEHT1200to2500' : [ 7.51247818e+01, 4.86508178e+01, ], 'CountWeightedFullL1PrefireNom_LHENjet3_LHEHT1200to2500' : [ 5.98111852e+01, 5.94017954e+01, 5.99645057e+01, ], 'CountWeightedFullL1Prefire_LHENjet3_LHEHT1200to2500' : [ 5.98111852e+01, 5.94428978e+01, 6.01727611e+01, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet3_LHEHT1200to2500' : [ 7.51247818e+01, 6.67685700e+01, 5.99326654e+01, 6.72690475e+01, 5.98111852e+01, 5.37069237e+01, 6.08957140e+01, 5.41638334e+01, 4.86508178e+01, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet3_LHEHT1200to2500' : [ 7.51247818e+01, 4.86508178e+01, ], 'Count_LHENjet3_LHEHT2500toInf' : [ 1, ], 'CountWeighted_LHENjet3_LHEHT2500toInf' : [ 1.13020372e+00, 8.70759249e-01, 1.43429089e+00, ], 'CountWeightedLHEWeightScale_LHENjet3_LHEHT2500toInf' : [ 1.54637313e+00, 1.22160506e+00, 9.87514138e-01, 1.43069005e+00, 1.13020372e+00, 9.13599730e-01, 1.33128667e+00, 1.05170202e+00, 8.50170612e-01, ], 'CountWeightedLHEEnvelope_LHENjet3_LHEHT2500toInf' : [ 1.54637313e+00, 8.50170612e-01, ], 'CountWeightedFull_LHENjet3_LHEHT2500toInf' : [ 1.13020372e+00, 8.70759249e-01, 1.43429089e+00, ], 'CountWeightedFullLHEWeightScale_LHENjet3_LHEHT2500toInf' : [ 1.54637313e+00, 1.22160506e+00, 9.87514138e-01, 1.43069005e+00, 1.13020372e+00, 9.13599730e-01, 1.33128667e+00, 1.05170202e+00, 8.50170612e-01, ], 'CountWeightedFullLHEEnvelope_LHENjet3_LHEHT2500toInf' : [ 1.54637313e+00, 8.50170612e-01, ], 'CountWeightedL1PrefireNom_LHENjet3_LHEHT2500toInf' : [ 1.13020372e+00, 8.70759249e-01, 1.43429089e+00, ], 'CountWeightedL1Prefire_LHENjet3_LHEHT2500toInf' : [ 1.13020372e+00, 1.13020372e+00, 1.13020372e+00, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet3_LHEHT2500toInf' : [ 1.54637313e+00, 1.22160506e+00, 9.87514138e-01, 1.43069005e+00, 1.13020372e+00, 9.13599730e-01, 1.33128667e+00, 1.05170202e+00, 8.50170612e-01, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet3_LHEHT2500toInf' : [ 1.54637313e+00, 8.50170612e-01, ], 'CountWeightedFullL1PrefireNom_LHENjet3_LHEHT2500toInf' : [ 1.13020372e+00, 8.70759249e-01, 1.43429089e+00, ], 'CountWeightedFullL1Prefire_LHENjet3_LHEHT2500toInf' : [ 1.13020372e+00, 1.13020372e+00, 1.13020372e+00, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet3_LHEHT2500toInf' : [ 1.54637313e+00, 1.22160506e+00, 9.87514138e-01, 1.43069005e+00, 1.13020372e+00, 9.13599730e-01, 1.33128667e+00, 1.05170202e+00, 8.50170612e-01, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet3_LHEHT2500toInf' : [ 1.54637313e+00, 8.50170612e-01, ], 'Count_LHENjet4_LHEHT0to70' : [ 234, ], 'CountWeighted_LHENjet4_LHEHT0to70' : [ 2.44012810e+02, 2.39029333e+02, 2.47699026e+02, ], 'CountWeightedLHEWeightScale_LHENjet4_LHEHT0to70' : [ 2.45517828e+02, 2.57329713e+02, 2.62371244e+02, 2.32633128e+02, 2.44012810e+02, 2.48919305e+02, 2.22147980e+02, 2.33174608e+02, 2.37970590e+02, ], 'CountWeightedLHEEnvelope_LHENjet4_LHEHT0to70' : [ 2.71286209e+02, 2.14723312e+02, ], 'CountWeightedFull_LHENjet4_LHEHT0to70' : [ 2.44012810e+02, 2.39029333e+02, 2.47699026e+02, ], 'CountWeightedFullLHEWeightScale_LHENjet4_LHEHT0to70' : [ 2.45517828e+02, 2.57329713e+02, 2.62371244e+02, 2.32633128e+02, 2.44012810e+02, 2.48919305e+02, 2.22147980e+02, 2.33174608e+02, 2.37970590e+02, ], 'CountWeightedFullLHEEnvelope_LHENjet4_LHEHT0to70' : [ 2.71286209e+02, 2.14723312e+02, ], 'CountWeightedL1PrefireNom_LHENjet4_LHEHT0to70' : [ 2.41253452e+02, 2.36341586e+02, 2.44862939e+02, ], 'CountWeightedL1Prefire_LHENjet4_LHEHT0to70' : [ 2.41253452e+02, 2.40477363e+02, 2.41979935e+02, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet4_LHEHT0to70' : [ 2.42789913e+02, 2.54452708e+02, 2.59426748e+02, 2.30009471e+02, 2.41253452e+02, 2.46100582e+02, 2.19609839e+02, 2.30511836e+02, 2.35255150e+02, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet4_LHEHT0to70' : [ 2.68229128e+02, 2.12301081e+02, ], 'CountWeightedFullL1PrefireNom_LHENjet4_LHEHT0to70' : [ 2.41253452e+02, 2.36341586e+02, 2.44862939e+02, ], 'CountWeightedFullL1Prefire_LHENjet4_LHEHT0to70' : [ 2.41253452e+02, 2.40477363e+02, 2.41979935e+02, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet4_LHEHT0to70' : [ 2.42789913e+02, 2.54452708e+02, 2.59426748e+02, 2.30009471e+02, 2.41253452e+02, 2.46100582e+02, 2.19609839e+02, 2.30511836e+02, 2.35255150e+02, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet4_LHEHT0to70' : [ 2.68229128e+02, 2.12301081e+02, ], 'Count_LHENjet4_LHEHT70to100' : [ 10619, ], 'CountWeighted_LHENjet4_LHEHT70to100' : [ 1.05633264e+04, 1.05791050e+04, 1.05491322e+04, ], 'CountWeightedLHEWeightScale_LHENjet4_LHEHT70to100' : [ 1.08380150e+04, 1.10353961e+04, 1.10153888e+04, 1.03710105e+04, 1.05633264e+04, 1.05465151e+04, 9.99052724e+03, 1.01786933e+04, 1.01644681e+04, ], 'CountWeightedLHEEnvelope_LHENjet4_LHEHT70to100' : [ 1.15979806e+04, 9.48164078e+03, ], 'CountWeightedFull_LHENjet4_LHEHT70to100' : [ 1.05633264e+04, 1.05791050e+04, 1.05491322e+04, ], 'CountWeightedFullLHEWeightScale_LHENjet4_LHEHT70to100' : [ 1.08380150e+04, 1.10353961e+04, 1.10153888e+04, 1.03710105e+04, 1.05633264e+04, 1.05465151e+04, 9.99052724e+03, 1.01786933e+04, 1.01644681e+04, ], 'CountWeightedFullLHEEnvelope_LHENjet4_LHEHT70to100' : [ 1.15979806e+04, 9.48164078e+03, ], 'CountWeightedL1PrefireNom_LHENjet4_LHEHT70to100' : [ 1.04620300e+04, 1.04774333e+04, 1.04478499e+04, ], 'CountWeightedL1Prefire_LHENjet4_LHEHT70to100' : [ 1.04620300e+04, 1.04315413e+04, 1.04897288e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet4_LHEHT70to100' : [ 1.07336246e+04, 1.09295250e+04, 1.09100670e+04, 1.02711777e+04, 1.04620300e+04, 1.04457113e+04, 9.89441063e+03, 1.00811279e+04, 1.00673496e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet4_LHEHT70to100' : [ 1.14867020e+04, 9.39066813e+03, ], 'CountWeightedFullL1PrefireNom_LHENjet4_LHEHT70to100' : [ 1.04620300e+04, 1.04774333e+04, 1.04478499e+04, ], 'CountWeightedFullL1Prefire_LHENjet4_LHEHT70to100' : [ 1.04620300e+04, 1.04315413e+04, 1.04897288e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet4_LHEHT70to100' : [ 1.07336246e+04, 1.09295250e+04, 1.09100670e+04, 1.02711777e+04, 1.04620300e+04, 1.04457113e+04, 9.89441063e+03, 1.00811279e+04, 1.00673496e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet4_LHEHT70to100' : [ 1.14867020e+04, 9.39066813e+03, ], 'Count_LHENjet4_LHEHT100to200' : [ 140999, ], 'CountWeighted_LHENjet4_LHEHT100to200' : [ 1.40674890e+05, 1.40739592e+05, 1.40624348e+05, ], 'CountWeightedLHEWeightScale_LHENjet4_LHEHT100to200' : [ 1.49150470e+05, 1.46891738e+05, 1.43141588e+05, 1.42820929e+05, 1.40674890e+05, 1.37093856e+05, 1.37645734e+05, 1.35591482e+05, 1.32148785e+05, ], 'CountWeightedLHEEnvelope_LHENjet4_LHEHT100to200' : [ 1.54478569e+05, 1.27502066e+05, ], 'CountWeightedFull_LHENjet4_LHEHT100to200' : [ 1.40674890e+05, 1.40739592e+05, 1.40624348e+05, ], 'CountWeightedFullLHEWeightScale_LHENjet4_LHEHT100to200' : [ 1.49150470e+05, 1.46891738e+05, 1.43141588e+05, 1.42820929e+05, 1.40674890e+05, 1.37093856e+05, 1.37645734e+05, 1.35591482e+05, 1.32148785e+05, ], 'CountWeightedFullLHEEnvelope_LHENjet4_LHEHT100to200' : [ 1.54478569e+05, 1.27502066e+05, ], 'CountWeightedL1PrefireNom_LHENjet4_LHEHT100to200' : [ 1.37735520e+05, 1.37794161e+05, 1.37689235e+05, ], 'CountWeightedL1Prefire_LHENjet4_LHEHT100to200' : [ 1.37735520e+05, 1.36934527e+05, 1.38490365e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet4_LHEHT100to200' : [ 1.45992142e+05, 1.43822881e+05, 1.40183559e+05, 1.39796142e+05, 1.37735520e+05, 1.34260548e+05, 1.34730222e+05, 1.32758151e+05, 1.29417544e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet4_LHEHT100to200' : [ 1.51229274e+05, 1.24849537e+05, ], 'CountWeightedFullL1PrefireNom_LHENjet4_LHEHT100to200' : [ 1.37735520e+05, 1.37794161e+05, 1.37689235e+05, ], 'CountWeightedFullL1Prefire_LHENjet4_LHEHT100to200' : [ 1.37735520e+05, 1.36934527e+05, 1.38490365e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet4_LHEHT100to200' : [ 1.45992142e+05, 1.43822881e+05, 1.40183559e+05, 1.39796142e+05, 1.37735520e+05, 1.34260548e+05, 1.34730222e+05, 1.32758151e+05, 1.29417544e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet4_LHEHT100to200' : [ 1.51229274e+05, 1.24849537e+05, ], 'Count_LHENjet4_LHEHT200to400' : [ 121566, ], 'CountWeighted_LHENjet4_LHEHT200to400' : [ 1.21315598e+05, 1.21307025e+05, 1.21309208e+05, ], 'CountWeightedLHEWeightScale_LHENjet4_LHEHT200to400' : [ 1.36816525e+05, 1.29770663e+05, 1.22826620e+05, 1.27904964e+05, 1.21315598e+05, 1.14818328e+05, 1.20783515e+05, 1.14559044e+05, 1.08419283e+05, ], 'CountWeightedLHEEnvelope_LHENjet4_LHEHT200to400' : [ 1.38248376e+05, 1.07339157e+05, ], 'CountWeightedFull_LHENjet4_LHEHT200to400' : [ 1.21315598e+05, 1.21307025e+05, 1.21309208e+05, ], 'CountWeightedFullLHEWeightScale_LHENjet4_LHEHT200to400' : [ 1.36816525e+05, 1.29770663e+05, 1.22826620e+05, 1.27904964e+05, 1.21315598e+05, 1.14818328e+05, 1.20783515e+05, 1.14559044e+05, 1.08419283e+05, ], 'CountWeightedFullLHEEnvelope_LHENjet4_LHEHT200to400' : [ 1.38248376e+05, 1.07339157e+05, ], 'CountWeightedL1PrefireNom_LHENjet4_LHEHT200to400' : [ 1.15306868e+05, 1.15276904e+05, 1.15318981e+05, ], 'CountWeightedL1Prefire_LHENjet4_LHEHT200to400' : [ 1.15306868e+05, 1.13884911e+05, 1.16707072e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet4_LHEHT200to400' : [ 1.29873621e+05, 1.23309703e+05, 1.16807527e+05, 1.21447745e+05, 1.15306868e+05, 1.09221008e+05, 1.14712612e+05, 1.08910109e+05, 1.03157444e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet4_LHEHT200to400' : [ 1.31255608e+05, 1.02112612e+05, ], 'CountWeightedFullL1PrefireNom_LHENjet4_LHEHT200to400' : [ 1.15306868e+05, 1.15276904e+05, 1.15318981e+05, ], 'CountWeightedFullL1Prefire_LHENjet4_LHEHT200to400' : [ 1.15306868e+05, 1.13884911e+05, 1.16707072e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet4_LHEHT200to400' : [ 1.29873621e+05, 1.23309703e+05, 1.16807527e+05, 1.21447745e+05, 1.15306868e+05, 1.09221008e+05, 1.14712612e+05, 1.08910109e+05, 1.03157444e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet4_LHEHT200to400' : [ 1.31255608e+05, 1.02112612e+05, ], 'Count_LHENjet4_LHEHT400to600' : [ 24567, ], 'CountWeighted_LHENjet4_LHEHT400to600' : [ 2.44579160e+04, 2.44522738e+04, 2.44823920e+04, ], 'CountWeightedLHEWeightScale_LHENjet4_LHEHT400to600' : [ 2.96050345e+04, 2.71597312e+04, 2.50241732e+04, 2.66698299e+04, 2.44579160e+04, 2.25274844e+04, 2.43571105e+04, 2.23293259e+04, 2.05607045e+04, ], 'CountWeightedLHEEnvelope_LHENjet4_LHEHT400to600' : [ 2.96754980e+04, 2.05188277e+04, ], 'CountWeightedFull_LHENjet4_LHEHT400to600' : [ 2.44579160e+04, 2.44522738e+04, 2.44823920e+04, ], 'CountWeightedFullLHEWeightScale_LHENjet4_LHEHT400to600' : [ 2.96050345e+04, 2.71597312e+04, 2.50241732e+04, 2.66698299e+04, 2.44579160e+04, 2.25274844e+04, 2.43571105e+04, 2.23293259e+04, 2.05607045e+04, ], 'CountWeightedFullLHEEnvelope_LHENjet4_LHEHT400to600' : [ 2.96754980e+04, 2.05188277e+04, ], 'CountWeightedL1PrefireNom_LHENjet4_LHEHT400to600' : [ 2.24735005e+04, 2.24603092e+04, 2.25027607e+04, ], 'CountWeightedL1Prefire_LHENjet4_LHEHT400to600' : [ 2.24735005e+04, 2.20417527e+04, 2.29065519e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet4_LHEHT400to600' : [ 2.71323657e+04, 2.49440234e+04, 2.30234522e+04, 2.44543992e+04, 2.24735005e+04, 2.07362278e+04, 2.23435870e+04, 2.05264449e+04, 1.89338404e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet4_LHEHT400to600' : [ 2.71997403e+04, 1.88935634e+04, ], 'CountWeightedFullL1PrefireNom_LHENjet4_LHEHT400to600' : [ 2.24735005e+04, 2.24603092e+04, 2.25027607e+04, ], 'CountWeightedFullL1Prefire_LHENjet4_LHEHT400to600' : [ 2.24735005e+04, 2.20417527e+04, 2.29065519e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet4_LHEHT400to600' : [ 2.71323657e+04, 2.49440234e+04, 2.30234522e+04, 2.44543992e+04, 2.24735005e+04, 2.07362278e+04, 2.23435870e+04, 2.05264449e+04, 1.89338404e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet4_LHEHT400to600' : [ 2.71997403e+04, 1.88935634e+04, ], 'Count_LHENjet4_LHEHT600to800' : [ 6767, ], 'CountWeighted_LHENjet4_LHEHT600to800' : [ 6.69303690e+03, 6.68494899e+03, 6.70298546e+03, ], 'CountWeightedLHEWeightScale_LHENjet4_LHEHT600to800' : [ 8.35213740e+03, 7.51917660e+03, 6.81985446e+03, 7.43708114e+03, 6.69303690e+03, 6.06872202e+03, 6.71540144e+03, 6.04158769e+03, 5.47650431e+03, ], 'CountWeightedLHEEnvelope_LHENjet4_LHEHT600to800' : [ 8.35796442e+03, 5.47400834e+03, ], 'CountWeightedFull_LHENjet4_LHEHT600to800' : [ 6.69303690e+03, 6.68494899e+03, 6.70298546e+03, ], 'CountWeightedFullLHEWeightScale_LHENjet4_LHEHT600to800' : [ 8.35213740e+03, 7.51917660e+03, 6.81985446e+03, 7.43708114e+03, 6.69303690e+03, 6.06872202e+03, 6.71540144e+03, 6.04158769e+03, 5.47650431e+03, ], 'CountWeightedFullLHEEnvelope_LHENjet4_LHEHT600to800' : [ 8.35796442e+03, 5.47400834e+03, ], 'CountWeightedL1PrefireNom_LHENjet4_LHEHT600to800' : [ 6.14796091e+03, 6.14119351e+03, 6.15707847e+03, ], 'CountWeightedL1Prefire_LHENjet4_LHEHT600to800' : [ 6.14796091e+03, 6.03172178e+03, 6.26473807e+03, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet4_LHEHT600to800' : [ 7.64948521e+03, 6.90437318e+03, 6.27585251e+03, 6.81393737e+03, 6.14796091e+03, 5.58653378e+03, 6.15472647e+03, 5.55128944e+03, 5.04287170e+03, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet4_LHEHT600to800' : [ 7.65526270e+03, 5.04030605e+03, ], 'CountWeightedFullL1PrefireNom_LHENjet4_LHEHT600to800' : [ 6.14796091e+03, 6.14119351e+03, 6.15707847e+03, ], 'CountWeightedFullL1Prefire_LHENjet4_LHEHT600to800' : [ 6.14796091e+03, 6.03172178e+03, 6.26473807e+03, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet4_LHEHT600to800' : [ 7.64948521e+03, 6.90437318e+03, 6.27585251e+03, 6.81393737e+03, 6.14796091e+03, 5.58653378e+03, 6.15472647e+03, 5.55128944e+03, 5.04287170e+03, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet4_LHEHT600to800' : [ 7.65526270e+03, 5.04030605e+03, ], 'Count_LHENjet4_LHEHT800to1200' : [ 3236, ], 'CountWeighted_LHENjet4_LHEHT800to1200' : [ 3.17672062e+03, 3.18427659e+03, 3.17461903e+03, ], 'CountWeightedLHEWeightScale_LHENjet4_LHEHT800to1200' : [ 4.05825954e+03, 3.59507263e+03, 3.21635521e+03, 3.58664000e+03, 3.17672062e+03, 2.84167707e+03, 3.21462350e+03, 2.84673735e+03, 2.54615183e+03, ], 'CountWeightedLHEEnvelope_LHENjet4_LHEHT800to1200' : [ 4.05983221e+03, 2.54539369e+03, ], 'CountWeightedFull_LHENjet4_LHEHT800to1200' : [ 3.17672062e+03, 3.18427659e+03, 3.17461903e+03, ], 'CountWeightedFullLHEWeightScale_LHENjet4_LHEHT800to1200' : [ 4.05825954e+03, 3.59507263e+03, 3.21635521e+03, 3.58664000e+03, 3.17672062e+03, 2.84167707e+03, 3.21462350e+03, 2.84673735e+03, 2.54615183e+03, ], 'CountWeightedFullLHEEnvelope_LHENjet4_LHEHT800to1200' : [ 4.05983221e+03, 2.54539369e+03, ], 'CountWeightedL1PrefireNom_LHENjet4_LHEHT800to1200' : [ 2.98023681e+03, 2.98604040e+03, 2.97885011e+03, ], 'CountWeightedL1Prefire_LHENjet4_LHEHT800to1200' : [ 2.98023681e+03, 2.93808404e+03, 3.02261781e+03, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet4_LHEHT800to1200' : [ 3.79523703e+03, 3.36932940e+03, 3.01982610e+03, 3.35771041e+03, 2.98023681e+03, 2.67062141e+03, 3.01212513e+03, 2.67293659e+03, 2.39484292e+03, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet4_LHEHT800to1200' : [ 3.79671869e+03, 2.39412095e+03, ], 'CountWeightedFullL1PrefireNom_LHENjet4_LHEHT800to1200' : [ 2.98023681e+03, 2.98604040e+03, 2.97885011e+03, ], 'CountWeightedFullL1Prefire_LHENjet4_LHEHT800to1200' : [ 2.98023681e+03, 2.93808404e+03, 3.02261781e+03, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet4_LHEHT800to1200' : [ 3.79523703e+03, 3.36932940e+03, 3.01982610e+03, 3.35771041e+03, 2.98023681e+03, 2.67062141e+03, 3.01212513e+03, 2.67293659e+03, 2.39484292e+03, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet4_LHEHT800to1200' : [ 3.79671869e+03, 2.39412095e+03, ], 'Count_LHENjet4_LHEHT1200to2500' : [ 741, ], 'CountWeighted_LHENjet4_LHEHT1200to2500' : [ 7.38361296e+02, 7.39627267e+02, 7.37593232e+02, ], 'CountWeightedLHEWeightScale_LHENjet4_LHEHT1200to2500' : [ 9.63960709e+02, 8.35476115e+02, 7.33714568e+02, 8.51926274e+02, 7.38361296e+02, 6.48418670e+02, 7.62588578e+02, 6.60917404e+02, 5.80397249e+02, ], 'CountWeightedLHEEnvelope_LHENjet4_LHEHT1200to2500' : [ 9.64000581e+02, 5.80412905e+02, ], 'CountWeightedFull_LHENjet4_LHEHT1200to2500' : [ 7.38361296e+02, 7.39627267e+02, 7.37593232e+02, ], 'CountWeightedFullLHEWeightScale_LHENjet4_LHEHT1200to2500' : [ 9.63960709e+02, 8.35476115e+02, 7.33714568e+02, 8.51926274e+02, 7.38361296e+02, 6.48418670e+02, 7.62588578e+02, 6.60917404e+02, 5.80397249e+02, ], 'CountWeightedFullLHEEnvelope_LHENjet4_LHEHT1200to2500' : [ 9.64000581e+02, 5.80412905e+02, ], 'CountWeightedL1PrefireNom_LHENjet4_LHEHT1200to2500' : [ 7.07192141e+02, 7.08592387e+02, 7.06521723e+02, ], 'CountWeightedL1Prefire_LHENjet4_LHEHT1200to2500' : [ 7.07192141e+02, 7.00073968e+02, 7.14205289e+02, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet4_LHEHT1200to2500' : [ 9.21892755e+02, 8.00163395e+02, 7.03545594e+02, 8.14812140e+02, 7.07192141e+02, 6.21779732e+02, 7.29429520e+02, 6.33058020e+02, 5.56579046e+02, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet4_LHEHT1200to2500' : [ 9.21932623e+02, 5.56594702e+02, ], 'CountWeightedFullL1PrefireNom_LHENjet4_LHEHT1200to2500' : [ 7.07192141e+02, 7.08592387e+02, 7.06521723e+02, ], 'CountWeightedFullL1Prefire_LHENjet4_LHEHT1200to2500' : [ 7.07192141e+02, 7.00073968e+02, 7.14205289e+02, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet4_LHEHT1200to2500' : [ 9.21892755e+02, 8.00163395e+02, 7.03545594e+02, 8.14812140e+02, 7.07192141e+02, 6.21779732e+02, 7.29429520e+02, 6.33058020e+02, 5.56579046e+02, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet4_LHEHT1200to2500' : [ 9.21932623e+02, 5.56594702e+02, ], 'Count_LHENjet4_LHEHT2500toInf' : [ 9, ], 'CountWeighted_LHENjet4_LHEHT2500toInf' : [ 9.41217850e+00, 9.73332387e+00, 8.84469432e+00, ], 'CountWeightedLHEWeightScale_LHENjet4_LHEHT2500toInf' : [ 1.25475200e+01, 1.05285822e+01, 8.98876123e+00, 1.12313464e+01, 9.41217850e+00, 8.02699444e+00, 1.01520456e+01, 8.49801286e+00, 7.24027421e+00, ], 'CountWeightedLHEEnvelope_LHENjet4_LHEHT2500toInf' : [ 1.25475200e+01, 7.24027421e+00, ], 'CountWeightedFull_LHENjet4_LHEHT2500toInf' : [ 9.41217850e+00, 9.73332387e+00, 8.84469432e+00, ], 'CountWeightedFullLHEWeightScale_LHENjet4_LHEHT2500toInf' : [ 1.25475200e+01, 1.05285822e+01, 8.98876123e+00, 1.12313464e+01, 9.41217850e+00, 8.02699444e+00, 1.01520456e+01, 8.49801286e+00, 7.24027421e+00, ], 'CountWeightedFullLHEEnvelope_LHENjet4_LHEHT2500toInf' : [ 1.25475200e+01, 7.24027421e+00, ], 'CountWeightedL1PrefireNom_LHENjet4_LHEHT2500toInf' : [ 9.38360424e+00, 9.69909513e+00, 8.81915639e+00, ], 'CountWeightedL1Prefire_LHENjet4_LHEHT2500toInf' : [ 9.38360424e+00, 9.36873071e+00, 9.39497019e+00, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet4_LHEHT2500toInf' : [ 1.25081885e+01, 1.04977601e+01, 8.96399035e+00, 1.11948832e+01, 9.38360424e+00, 8.00402915e+00, 1.01180557e+01, 8.47137593e+00, 7.21886604e+00, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet4_LHEHT2500toInf' : [ 1.25081885e+01, 7.21886604e+00, ], 'CountWeightedFullL1PrefireNom_LHENjet4_LHEHT2500toInf' : [ 9.38360424e+00, 9.69909513e+00, 8.81915639e+00, ], 'CountWeightedFullL1Prefire_LHENjet4_LHEHT2500toInf' : [ 9.38360424e+00, 9.36873071e+00, 9.39497019e+00, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet4_LHEHT2500toInf' : [ 1.25081885e+01, 1.04977601e+01, 8.96399035e+00, 1.11948832e+01, 9.38360424e+00, 8.00402915e+00, 1.01180557e+01, 8.47137593e+00, 7.21886604e+00, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet4_LHEHT2500toInf' : [ 1.25081885e+01, 7.21886604e+00, ], }), ("nof_tree_events", 30008250), ("nof_db_events", 30008250), ("fsize_local", 79379525900), # 79.38GB, avg file size 1.30GB ("fsize_db", 1182942851062), # 1.18TB, avg file size 2.41GB ("use_it", True), ("xsection", 61526.7), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Apr19_woPresel_nom_all_hh_multilepton/ntuples/WJetsToLNu_madgraphMLM"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/WJetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14_ext1-v2/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "EWK"), ("process_name_specific", "WJetsToLNu_madgraphMLM_ext1"), ("nof_files", 90), ("nof_db_files", 746), ("nof_events", { 'Count' : [ 44627200, ], 'CountWeighted' : [ 4.45860249e+07, 4.45883948e+07, 4.45867062e+07, ], 'CountWeightedLHEWeightScale' : [ 3.92399510e+07, 4.47889817e+07, 4.97643826e+07, 3.90450705e+07, 4.45860249e+07, 4.95563462e+07, 3.88861356e+07, 4.44204992e+07, 4.93866342e+07, ], 'CountWeightedLHEEnvelope' : [ 4.98071477e+07, 3.88529141e+07, ], 'CountWeightedFull' : [ 4.45860249e+07, 4.45883948e+07, 4.45867062e+07, ], 'CountWeightedFullLHEWeightScale' : [ 3.92399510e+07, 4.47889817e+07, 4.97643826e+07, 3.90450705e+07, 4.45860249e+07, 4.95563462e+07, 3.88861356e+07, 4.44204992e+07, 4.93866342e+07, ], 'CountWeightedFullLHEEnvelope' : [ 4.98071477e+07, 3.88529141e+07, ], 'CountWeightedL1PrefireNom' : [ 4.42323801e+07, 4.42336248e+07, 4.42339327e+07, ], 'CountWeightedL1Prefire' : [ 4.42323801e+07, 4.41312224e+07, 4.43284989e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 3.89164627e+07, 4.44306673e+07, 4.93754110e+07, 3.87262859e+07, 4.42323801e+07, 4.91719492e+07, 3.85711554e+07, 4.40706157e+07, 4.90059388e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 4.94136696e+07, 3.85417297e+07, ], 'CountWeightedFullL1PrefireNom' : [ 4.42323801e+07, 4.42336248e+07, 4.42339327e+07, ], 'CountWeightedFullL1Prefire' : [ 4.42323801e+07, 4.41312224e+07, 4.43284989e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 3.89164627e+07, 4.44306673e+07, 4.93754110e+07, 3.87262859e+07, 4.42323801e+07, 4.91719492e+07, 3.85711554e+07, 4.40706157e+07, 4.90059388e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 4.94136696e+07, 3.85417297e+07, ], 'Count_LHENjet0_LHEHT0to70' : [ 34259612, ], 'CountWeighted_LHENjet0_LHEHT0to70' : [ 3.42289555e+07, 3.42331484e+07, 3.42289923e+07, ], 'CountWeightedLHEWeightScale_LHENjet0_LHEHT0to70' : [ 2.98120322e+07, 3.42289555e+07, 3.82931090e+07, 2.98120322e+07, 3.42289555e+07, 3.82931090e+07, 2.98120322e+07, 3.42289555e+07, 3.82931090e+07, ], 'CountWeightedLHEEnvelope_LHENjet0_LHEHT0to70' : [ 3.82938354e+07, 2.98113229e+07, ], 'CountWeightedFull_LHENjet0_LHEHT0to70' : [ 3.42289555e+07, 3.42331484e+07, 3.42289923e+07, ], 'CountWeightedFullLHEWeightScale_LHENjet0_LHEHT0to70' : [ 2.98120322e+07, 3.42289555e+07, 3.82931090e+07, 2.98120322e+07, 3.42289555e+07, 3.82931090e+07, 2.98120322e+07, 3.42289555e+07, 3.82931090e+07, ], 'CountWeightedFullLHEEnvelope_LHENjet0_LHEHT0to70' : [ 3.82938354e+07, 2.98113229e+07, ], 'CountWeightedL1PrefireNom_LHENjet0_LHEHT0to70' : [ 3.40177898e+07, 3.40207838e+07, 3.40186411e+07, ], 'CountWeightedL1Prefire_LHENjet0_LHEHT0to70' : [ 3.40177898e+07, 3.39544677e+07, 3.40781247e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet0_LHEHT0to70' : [ 2.96272932e+07, 3.40177898e+07, 3.80573435e+07, 2.96272932e+07, 3.40177898e+07, 3.80573435e+07, 2.96272932e+07, 3.40177898e+07, 3.80573435e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet0_LHEHT0to70' : [ 3.80580694e+07, 2.96265850e+07, ], 'CountWeightedFullL1PrefireNom_LHENjet0_LHEHT0to70' : [ 3.40177898e+07, 3.40207838e+07, 3.40186411e+07, ], 'CountWeightedFullL1Prefire_LHENjet0_LHEHT0to70' : [ 3.40177898e+07, 3.39544677e+07, 3.40781247e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet0_LHEHT0to70' : [ 2.96272932e+07, 3.40177898e+07, 3.80573435e+07, 2.96272932e+07, 3.40177898e+07, 3.80573435e+07, 2.96272932e+07, 3.40177898e+07, 3.80573435e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet0_LHEHT0to70' : [ 3.80580694e+07, 2.96265850e+07, ], 'Count_LHENjet1_LHEHT0to70' : [ 6404881, ], 'CountWeighted_LHENjet1_LHEHT0to70' : [ 6.39997340e+06, 6.39963287e+06, 6.39991081e+06, ], 'CountWeightedLHEWeightScale_LHENjet1_LHEHT0to70' : [ 5.54187621e+06, 6.45609504e+06, 7.22806527e+06, 5.48967655e+06, 6.39997340e+06, 7.16880459e+06, 5.44698890e+06, 6.35406575e+06, 7.12035569e+06, ], 'CountWeightedLHEEnvelope_LHENjet1_LHEHT0to70' : [ 7.19877105e+06, 5.47565754e+06, ], 'CountWeightedFull_LHENjet1_LHEHT0to70' : [ 6.39997340e+06, 6.39963287e+06, 6.39991081e+06, ], 'CountWeightedFullLHEWeightScale_LHENjet1_LHEHT0to70' : [ 5.54187621e+06, 6.45609504e+06, 7.22806527e+06, 5.48967655e+06, 6.39997340e+06, 7.16880459e+06, 5.44698890e+06, 6.35406575e+06, 7.12035569e+06, ], 'CountWeightedFullLHEEnvelope_LHENjet1_LHEHT0to70' : [ 7.19877105e+06, 5.47565754e+06, ], 'CountWeightedL1PrefireNom_LHENjet1_LHEHT0to70' : [ 6.34141941e+06, 6.34100677e+06, 6.34151893e+06, ], 'CountWeightedL1Prefire_LHENjet1_LHEHT0to70' : [ 6.34141941e+06, 6.32491016e+06, 6.35697411e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet1_LHEHT0to70' : [ 5.49028964e+06, 6.39692797e+06, 7.16262495e+06, 5.43866725e+06, 6.34141941e+06, 7.10400868e+06, 5.39645260e+06, 6.29601789e+06, 7.05608716e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet1_LHEHT0to70' : [ 7.13360038e+06, 5.42484461e+06, ], 'CountWeightedFullL1PrefireNom_LHENjet1_LHEHT0to70' : [ 6.34141941e+06, 6.34100677e+06, 6.34151893e+06, ], 'CountWeightedFullL1Prefire_LHENjet1_LHEHT0to70' : [ 6.34141941e+06, 6.32491016e+06, 6.35697411e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet1_LHEHT0to70' : [ 5.49028964e+06, 6.39692797e+06, 7.16262495e+06, 5.43866725e+06, 6.34141941e+06, 7.10400868e+06, 5.39645260e+06, 6.29601789e+06, 7.05608716e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet1_LHEHT0to70' : [ 7.13360038e+06, 5.42484461e+06, ], 'Count_LHENjet1_LHEHT70to100' : [ 267577, ], 'CountWeighted_LHENjet1_LHEHT70to100' : [ 2.67142170e+05, 2.67191312e+05, 2.67107049e+05, ], 'CountWeightedLHEWeightScale_LHENjet1_LHEHT70to100' : [ 2.60200407e+05, 2.73686633e+05, 2.83360744e+05, 2.53859069e+05, 2.67142170e+05, 2.76682669e+05, 2.48606946e+05, 2.61722234e+05, 2.71152302e+05, ], 'CountWeightedLHEEnvelope_LHENjet1_LHEHT70to100' : [ 2.82541310e+05, 2.49803688e+05, ], 'CountWeightedFull_LHENjet1_LHEHT70to100' : [ 2.67142170e+05, 2.67191312e+05, 2.67107049e+05, ], 'CountWeightedFullLHEWeightScale_LHENjet1_LHEHT70to100' : [ 2.60200407e+05, 2.73686633e+05, 2.83360744e+05, 2.53859069e+05, 2.67142170e+05, 2.76682669e+05, 2.48606946e+05, 2.61722234e+05, 2.71152302e+05, ], 'CountWeightedFullLHEEnvelope_LHENjet1_LHEHT70to100' : [ 2.82541310e+05, 2.49803688e+05, ], 'CountWeightedL1PrefireNom_LHENjet1_LHEHT70to100' : [ 2.59874537e+05, 2.59918451e+05, 2.59841082e+05, ], 'CountWeightedL1Prefire_LHENjet1_LHEHT70to100' : [ 2.59874537e+05, 2.58133278e+05, 2.61600361e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet1_LHEHT70to100' : [ 2.53067116e+05, 2.66237683e+05, 2.75698655e+05, 2.46902610e+05, 2.59874537e+05, 2.69204492e+05, 2.41796989e+05, 2.54604798e+05, 2.63826466e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet1_LHEHT70to100' : [ 2.74878548e+05, 2.42982357e+05, ], 'CountWeightedFullL1PrefireNom_LHENjet1_LHEHT70to100' : [ 2.59874537e+05, 2.59918451e+05, 2.59841082e+05, ], 'CountWeightedFullL1Prefire_LHENjet1_LHEHT70to100' : [ 2.59874537e+05, 2.58133278e+05, 2.61600361e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet1_LHEHT70to100' : [ 2.53067116e+05, 2.66237683e+05, 2.75698655e+05, 2.46902610e+05, 2.59874537e+05, 2.69204492e+05, 2.41796989e+05, 2.54604798e+05, 2.63826466e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet1_LHEHT70to100' : [ 2.74878548e+05, 2.42982357e+05, ], 'Count_LHENjet1_LHEHT100to200' : [ 112434, ], 'CountWeighted_LHENjet1_LHEHT100to200' : [ 1.12370653e+05, 1.12373888e+05, 1.12327995e+05, ], 'CountWeightedLHEWeightScale_LHENjet1_LHEHT100to200' : [ 1.13519505e+05, 1.15557508e+05, 1.16492796e+05, 1.10350563e+05, 1.12370653e+05, 1.13310868e+05, 1.07703974e+05, 1.09709327e+05, 1.10653792e+05, ], 'CountWeightedLHEEnvelope_LHENjet1_LHEHT100to200' : [ 1.17551324e+05, 1.06871416e+05, ], 'CountWeightedFull_LHENjet1_LHEHT100to200' : [ 1.12370653e+05, 1.12373888e+05, 1.12327995e+05, ], 'CountWeightedFullLHEWeightScale_LHENjet1_LHEHT100to200' : [ 1.13519505e+05, 1.15557508e+05, 1.16492796e+05, 1.10350563e+05, 1.12370653e+05, 1.13310868e+05, 1.07703974e+05, 1.09709327e+05, 1.10653792e+05, ], 'CountWeightedFullLHEEnvelope_LHENjet1_LHEHT100to200' : [ 1.17551324e+05, 1.06871416e+05, ], 'CountWeightedL1PrefireNom_LHENjet1_LHEHT100to200' : [ 1.07604581e+05, 1.07598600e+05, 1.07567260e+05, ], 'CountWeightedL1Prefire_LHENjet1_LHEHT100to200' : [ 1.07604581e+05, 1.06554374e+05, 1.08659172e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet1_LHEHT100to200' : [ 1.08664565e+05, 1.10660834e+05, 1.11598394e+05, 1.05626528e+05, 1.07604581e+05, 1.08545875e+05, 1.03089299e+05, 1.05052340e+05, 1.05996893e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet1_LHEHT100to200' : [ 1.12570416e+05, 1.02331984e+05, ], 'CountWeightedFullL1PrefireNom_LHENjet1_LHEHT100to200' : [ 1.07604581e+05, 1.07598600e+05, 1.07567260e+05, ], 'CountWeightedFullL1Prefire_LHENjet1_LHEHT100to200' : [ 1.07604581e+05, 1.06554374e+05, 1.08659172e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet1_LHEHT100to200' : [ 1.08664565e+05, 1.10660834e+05, 1.11598394e+05, 1.05626528e+05, 1.07604581e+05, 1.08545875e+05, 1.03089299e+05, 1.05052340e+05, 1.05996893e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet1_LHEHT100to200' : [ 1.12570416e+05, 1.02331984e+05, ], 'Count_LHENjet1_LHEHT200to400' : [ 6131, ], 'CountWeighted_LHENjet1_LHEHT200to400' : [ 6.09148520e+03, 6.10433370e+03, 6.07703430e+03, ], 'CountWeightedLHEWeightScale_LHENjet1_LHEHT200to400' : [ 6.47324028e+03, 6.28886538e+03, 6.09490557e+03, 6.26875904e+03, 6.09148520e+03, 5.90466714e+03, 6.09571051e+03, 5.92445726e+03, 5.74369021e+03, ], 'CountWeightedLHEEnvelope_LHENjet1_LHEHT200to400' : [ 6.48555310e+03, 5.73209076e+03, ], 'CountWeightedFull_LHENjet1_LHEHT200to400' : [ 6.09148520e+03, 6.10433370e+03, 6.07703430e+03, ], 'CountWeightedFullLHEWeightScale_LHENjet1_LHEHT200to400' : [ 6.47324028e+03, 6.28886538e+03, 6.09490557e+03, 6.26875904e+03, 6.09148520e+03, 5.90466714e+03, 6.09571051e+03, 5.92445726e+03, 5.74369021e+03, ], 'CountWeightedFullLHEEnvelope_LHENjet1_LHEHT200to400' : [ 6.48555310e+03, 5.73209076e+03, ], 'CountWeightedL1PrefireNom_LHENjet1_LHEHT200to400' : [ 5.82818641e+03, 5.84104321e+03, 5.81196746e+03, ], 'CountWeightedL1Prefire_LHENjet1_LHEHT200to400' : [ 5.82818641e+03, 5.77339980e+03, 5.88360810e+03, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet1_LHEHT200to400' : [ 6.19023864e+03, 6.01800438e+03, 5.83607392e+03, 5.99368848e+03, 5.82818641e+03, 5.65304002e+03, 5.82735234e+03, 5.66755836e+03, 5.49815925e+03, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet1_LHEHT200to400' : [ 6.20245887e+03, 5.48664982e+03, ], 'CountWeightedFullL1PrefireNom_LHENjet1_LHEHT200to400' : [ 5.82818641e+03, 5.84104321e+03, 5.81196746e+03, ], 'CountWeightedFullL1Prefire_LHENjet1_LHEHT200to400' : [ 5.82818641e+03, 5.77339980e+03, 5.88360810e+03, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet1_LHEHT200to400' : [ 6.19023864e+03, 6.01800438e+03, 5.83607392e+03, 5.99368848e+03, 5.82818641e+03, 5.65304002e+03, 5.82735234e+03, 5.66755836e+03, 5.49815925e+03, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet1_LHEHT200to400' : [ 6.20245887e+03, 5.48664982e+03, ], 'Count_LHENjet1_LHEHT400to600' : [ 151, ], 'CountWeighted_LHENjet1_LHEHT400to600' : [ 1.51268357e+02, 1.51039595e+02, 1.51047101e+02, ], 'CountWeightedLHEWeightScale_LHENjet1_LHEHT400to600' : [ 1.68661341e+02, 1.57259976e+02, 1.47026743e+02, 1.62219267e+02, 1.51268357e+02, 1.41437682e+02, 1.56702071e+02, 1.46136681e+02, 1.36650641e+02, ], 'CountWeightedLHEEnvelope_LHENjet1_LHEHT400to600' : [ 1.68661341e+02, 1.36650641e+02, ], 'CountWeightedFull_LHENjet1_LHEHT400to600' : [ 1.51268357e+02, 1.51039595e+02, 1.51047101e+02, ], 'CountWeightedFullLHEWeightScale_LHENjet1_LHEHT400to600' : [ 1.68661341e+02, 1.57259976e+02, 1.47026743e+02, 1.62219267e+02, 1.51268357e+02, 1.41437682e+02, 1.56702071e+02, 1.46136681e+02, 1.36650641e+02, ], 'CountWeightedFullLHEEnvelope_LHENjet1_LHEHT400to600' : [ 1.68661341e+02, 1.36650641e+02, ], 'CountWeightedL1PrefireNom_LHENjet1_LHEHT400to600' : [ 1.48103908e+02, 1.47860160e+02, 1.47802284e+02, ], 'CountWeightedL1Prefire_LHENjet1_LHEHT400to600' : [ 1.48103908e+02, 1.47421448e+02, 1.48785131e+02, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet1_LHEHT400to600' : [ 1.65176176e+02, 1.54041233e+02, 1.44045708e+02, 1.58793046e+02, 1.48103908e+02, 1.38506846e+02, 1.53326286e+02, 1.43018692e+02, 1.33762756e+02, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet1_LHEHT400to600' : [ 1.65176176e+02, 1.33762756e+02, ], 'CountWeightedFullL1PrefireNom_LHENjet1_LHEHT400to600' : [ 1.48103908e+02, 1.47860160e+02, 1.47802284e+02, ], 'CountWeightedFullL1Prefire_LHENjet1_LHEHT400to600' : [ 1.48103908e+02, 1.47421448e+02, 1.48785131e+02, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet1_LHEHT400to600' : [ 1.65176176e+02, 1.54041233e+02, 1.44045708e+02, 1.58793046e+02, 1.48103908e+02, 1.38506846e+02, 1.53326286e+02, 1.43018692e+02, 1.33762756e+02, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet1_LHEHT400to600' : [ 1.65176176e+02, 1.33762756e+02, ], 'Count_LHENjet1_LHEHT600to800' : [ 13, ], 'CountWeighted_LHENjet1_LHEHT600to800' : [ 1.36503565e+01, 1.37357288e+01, 1.35505756e+01, ], 'CountWeightedLHEWeightScale_LHENjet1_LHEHT600to800' : [ 1.51964442e+01, 1.39309486e+01, 1.28321167e+01, 1.48855827e+01, 1.36503565e+01, 1.25774468e+01, 1.46177201e+01, 1.34085576e+01, 1.23580672e+01, ], 'CountWeightedLHEEnvelope_LHENjet1_LHEHT600to800' : [ 1.51964442e+01, 1.23580672e+01, ], 'CountWeightedFull_LHENjet1_LHEHT600to800' : [ 1.36503565e+01, 1.37357288e+01, 1.35505756e+01, ], 'CountWeightedFullLHEWeightScale_LHENjet1_LHEHT600to800' : [ 1.51964442e+01, 1.39309486e+01, 1.28321167e+01, 1.48855827e+01, 1.36503565e+01, 1.25774468e+01, 1.46177201e+01, 1.34085576e+01, 1.23580672e+01, ], 'CountWeightedFullLHEEnvelope_LHENjet1_LHEHT600to800' : [ 1.51964442e+01, 1.23580672e+01, ], 'CountWeightedL1PrefireNom_LHENjet1_LHEHT600to800' : [ 1.36464241e+01, 1.37282856e+01, 1.35489909e+01, ], 'CountWeightedL1Prefire_LHENjet1_LHEHT600to800' : [ 1.36464241e+01, 1.36455045e+01, 1.36473436e+01, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet1_LHEHT600to800' : [ 1.51922071e+01, 1.39270162e+01, 1.28284540e+01, 1.48813456e+01, 1.36464241e+01, 1.25737841e+01, 1.46134831e+01, 1.34046252e+01, 1.23544045e+01, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet1_LHEHT600to800' : [ 1.51922071e+01, 1.23544045e+01, ], 'CountWeightedFullL1PrefireNom_LHENjet1_LHEHT600to800' : [ 1.36464241e+01, 1.37282856e+01, 1.35489909e+01, ], 'CountWeightedFullL1Prefire_LHENjet1_LHEHT600to800' : [ 1.36464241e+01, 1.36455045e+01, 1.36473436e+01, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet1_LHEHT600to800' : [ 1.51922071e+01, 1.39270162e+01, 1.28284540e+01, 1.48813456e+01, 1.36464241e+01, 1.25737841e+01, 1.46134831e+01, 1.34046252e+01, 1.23544045e+01, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet1_LHEHT600to800' : [ 1.51922071e+01, 1.23544045e+01, ], 'Count_LHENjet1_LHEHT800to1200' : [ 3, ], 'CountWeighted_LHENjet1_LHEHT800to1200' : [ 2.77978891e+00, 2.81653112e+00, 2.84311384e+00, ], 'CountWeightedLHEWeightScale_LHENjet1_LHEHT800to1200' : [ 3.38838351e+00, 2.99104190e+00, 2.66306889e+00, 3.14902967e+00, 2.77978891e+00, 2.47495347e+00, 2.94172996e+00, 2.59677869e+00, 2.31201738e+00, ], 'CountWeightedLHEEnvelope_LHENjet1_LHEHT800to1200' : [ 3.38838351e+00, 2.31201738e+00, ], 'CountWeightedFull_LHENjet1_LHEHT800to1200' : [ 2.77978891e+00, 2.81653112e+00, 2.84311384e+00, ], 'CountWeightedFullLHEWeightScale_LHENjet1_LHEHT800to1200' : [ 3.38838351e+00, 2.99104190e+00, 2.66306889e+00, 3.14902967e+00, 2.77978891e+00, 2.47495347e+00, 2.94172996e+00, 2.59677869e+00, 2.31201738e+00, ], 'CountWeightedFullLHEEnvelope_LHENjet1_LHEHT800to1200' : [ 3.38838351e+00, 2.31201738e+00, ], 'CountWeightedL1PrefireNom_LHENjet1_LHEHT800to1200' : [ 2.77978891e+00, 2.81653112e+00, 2.84311384e+00, ], 'CountWeightedL1Prefire_LHENjet1_LHEHT800to1200' : [ 2.77978891e+00, 2.77978891e+00, 2.77978891e+00, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet1_LHEHT800to1200' : [ 3.38838351e+00, 2.99104190e+00, 2.66306889e+00, 3.14902967e+00, 2.77978891e+00, 2.47495347e+00, 2.94172996e+00, 2.59677869e+00, 2.31201738e+00, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet1_LHEHT800to1200' : [ 3.38838351e+00, 2.31201738e+00, ], 'CountWeightedFullL1PrefireNom_LHENjet1_LHEHT800to1200' : [ 2.77978891e+00, 2.81653112e+00, 2.84311384e+00, ], 'CountWeightedFullL1Prefire_LHENjet1_LHEHT800to1200' : [ 2.77978891e+00, 2.77978891e+00, 2.77978891e+00, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet1_LHEHT800to1200' : [ 3.38838351e+00, 2.99104190e+00, 2.66306889e+00, 3.14902967e+00, 2.77978891e+00, 2.47495347e+00, 2.94172996e+00, 2.59677869e+00, 2.31201738e+00, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet1_LHEHT800to1200' : [ 3.38838351e+00, 2.31201738e+00, ], 'Count_LHENjet2_LHEHT0to70' : [ 1230190, ], 'CountWeighted_LHENjet2_LHEHT0to70' : [ 1.22896734e+06, 1.22899281e+06, 1.22898321e+06, ], 'CountWeightedLHEWeightScale_LHENjet2_LHEHT0to70' : [ 1.11595181e+06, 1.26109803e+06, 1.36990200e+06, 1.08706270e+06, 1.22896734e+06, 1.33538935e+06, 1.06348211e+06, 1.20274366e+06, 1.30722601e+06, ], 'CountWeightedLHEEnvelope_LHENjet2_LHEHT0to70' : [ 1.35530394e+06, 1.07455811e+06, ], 'CountWeightedFull_LHENjet2_LHEHT0to70' : [ 1.22896734e+06, 1.22899281e+06, 1.22898321e+06, ], 'CountWeightedFullLHEWeightScale_LHENjet2_LHEHT0to70' : [ 1.11595181e+06, 1.26109803e+06, 1.36990200e+06, 1.08706270e+06, 1.22896734e+06, 1.33538935e+06, 1.06348211e+06, 1.20274366e+06, 1.30722601e+06, ], 'CountWeightedFullLHEEnvelope_LHENjet2_LHEHT0to70' : [ 1.35530394e+06, 1.07455811e+06, ], 'CountWeightedL1PrefireNom_LHENjet2_LHEHT0to70' : [ 1.21787487e+06, 1.21787262e+06, 1.21791803e+06, ], 'CountWeightedL1Prefire_LHENjet2_LHEHT0to70' : [ 1.21787487e+06, 1.21462544e+06, 1.22086930e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet2_LHEHT0to70' : [ 1.10581383e+06, 1.24971099e+06, 1.35759167e+06, 1.07719134e+06, 1.21787487e+06, 1.32339389e+06, 1.05382860e+06, 1.19189206e+06, 1.29548775e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet2_LHEHT0to70' : [ 1.34310913e+06, 1.06481644e+06, ], 'CountWeightedFullL1PrefireNom_LHENjet2_LHEHT0to70' : [ 1.21787487e+06, 1.21787262e+06, 1.21791803e+06, ], 'CountWeightedFullL1Prefire_LHENjet2_LHEHT0to70' : [ 1.21787487e+06, 1.21462544e+06, 1.22086930e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet2_LHEHT0to70' : [ 1.10581383e+06, 1.24971099e+06, 1.35759167e+06, 1.07719134e+06, 1.21787487e+06, 1.32339389e+06, 1.05382860e+06, 1.19189206e+06, 1.29548775e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet2_LHEHT0to70' : [ 1.34310913e+06, 1.06481644e+06, ], 'Count_LHENjet2_LHEHT70to100' : [ 577582, ], 'CountWeighted_LHENjet2_LHEHT70to100' : [ 5.77110569e+05, 5.77133562e+05, 5.77047934e+05, ], 'CountWeightedLHEWeightScale_LHENjet2_LHEHT70to100' : [ 5.54582781e+05, 5.95460559e+05, 6.23417679e+05, 5.37370013e+05, 5.77110569e+05, 6.04300958e+05, 5.23239004e+05, 5.62046885e+05, 5.88608705e+05, ], 'CountWeightedLHEEnvelope_LHENjet2_LHEHT70to100' : [ 6.21082821e+05, 5.25809226e+05, ], 'CountWeightedFull_LHENjet2_LHEHT70to100' : [ 5.77110569e+05, 5.77133562e+05, 5.77047934e+05, ], 'CountWeightedFullLHEWeightScale_LHENjet2_LHEHT70to100' : [ 5.54582781e+05, 5.95460559e+05, 6.23417679e+05, 5.37370013e+05, 5.77110569e+05, 6.04300958e+05, 5.23239004e+05, 5.62046885e+05, 5.88608705e+05, ], 'CountWeightedFullLHEEnvelope_LHENjet2_LHEHT70to100' : [ 6.21082821e+05, 5.25809226e+05, ], 'CountWeightedL1PrefireNom_LHENjet2_LHEHT70to100' : [ 5.68525189e+05, 5.68528032e+05, 5.68483106e+05, ], 'CountWeightedL1Prefire_LHENjet2_LHEHT70to100' : [ 5.68525189e+05, 5.66158810e+05, 5.70762853e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet2_LHEHT70to100' : [ 5.46286387e+05, 5.86600341e+05, 6.14185998e+05, 5.29332793e+05, 5.68525189e+05, 5.95354301e+05, 5.15414744e+05, 5.53687334e+05, 5.79896237e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet2_LHEHT70to100' : [ 6.11862155e+05, 5.17967813e+05, ], 'CountWeightedFullL1PrefireNom_LHENjet2_LHEHT70to100' : [ 5.68525189e+05, 5.68528032e+05, 5.68483106e+05, ], 'CountWeightedFullL1Prefire_LHENjet2_LHEHT70to100' : [ 5.68525189e+05, 5.66158810e+05, 5.70762853e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet2_LHEHT70to100' : [ 5.46286387e+05, 5.86600341e+05, 6.14185998e+05, 5.29332793e+05, 5.68525189e+05, 5.95354301e+05, 5.15414744e+05, 5.53687334e+05, 5.79896237e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet2_LHEHT70to100' : [ 6.11862155e+05, 5.17967813e+05, ], 'Count_LHENjet2_LHEHT100to200' : [ 430770, ], 'CountWeighted_LHENjet2_LHEHT100to200' : [ 4.30345594e+05, 4.30389420e+05, 4.30264683e+05, ], 'CountWeightedLHEWeightScale_LHENjet2_LHEHT100to200' : [ 4.32206271e+05, 4.46495117e+05, 4.53912729e+05, 4.16514739e+05, 4.30345594e+05, 4.37533095e+05, 4.03608261e+05, 4.17062580e+05, 4.24061722e+05, ], 'CountWeightedLHEEnvelope_LHENjet2_LHEHT100to200' : [ 4.58913949e+05, 3.99833088e+05, ], 'CountWeightedFull_LHENjet2_LHEHT100to200' : [ 4.30345594e+05, 4.30389420e+05, 4.30264683e+05, ], 'CountWeightedFullLHEWeightScale_LHENjet2_LHEHT100to200' : [ 4.32206271e+05, 4.46495117e+05, 4.53912729e+05, 4.16514739e+05, 4.30345594e+05, 4.37533095e+05, 4.03608261e+05, 4.17062580e+05, 4.24061722e+05, ], 'CountWeightedFullLHEEnvelope_LHENjet2_LHEHT100to200' : [ 4.58913949e+05, 3.99833088e+05, ], 'CountWeightedL1PrefireNom_LHENjet2_LHEHT100to200' : [ 4.17970261e+05, 4.17991172e+05, 4.17915169e+05, ], 'CountWeightedL1Prefire_LHENjet2_LHEHT100to200' : [ 4.17970261e+05, 4.14941552e+05, 4.20944633e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet2_LHEHT100to200' : [ 4.19619348e+05, 4.33641151e+05, 4.40973971e+05, 4.04398254e+05, 4.17970261e+05, 4.25075166e+05, 3.91878383e+05, 4.05080655e+05, 4.11998860e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet2_LHEHT100to200' : [ 4.45691767e+05, 3.88339587e+05, ], 'CountWeightedFullL1PrefireNom_LHENjet2_LHEHT100to200' : [ 4.17970261e+05, 4.17991172e+05, 4.17915169e+05, ], 'CountWeightedFullL1Prefire_LHENjet2_LHEHT100to200' : [ 4.17970261e+05, 4.14941552e+05, 4.20944633e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet2_LHEHT100to200' : [ 4.19619348e+05, 4.33641151e+05, 4.40973971e+05, 4.04398254e+05, 4.17970261e+05, 4.25075166e+05, 3.91878383e+05, 4.05080655e+05, 4.11998860e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet2_LHEHT100to200' : [ 4.45691767e+05, 3.88339587e+05, ], 'Count_LHENjet2_LHEHT200to400' : [ 55802, ], 'CountWeighted_LHENjet2_LHEHT200to400' : [ 5.56691548e+04, 5.56835885e+04, 5.56490737e+04, ], 'CountWeightedLHEWeightScale_LHENjet2_LHEHT200to400' : [ 6.07403267e+04, 5.97048950e+04, 5.83520511e+04, 5.66445891e+04, 5.56691548e+04, 5.43969204e+04, 5.33598491e+04, 5.24332052e+04, 5.12262389e+04, ], 'CountWeightedLHEEnvelope_LHENjet2_LHEHT200to400' : [ 6.14551882e+04, 5.07128238e+04, ], 'CountWeightedFull_LHENjet2_LHEHT200to400' : [ 5.56691548e+04, 5.56835885e+04, 5.56490737e+04, ], 'CountWeightedFullLHEWeightScale_LHENjet2_LHEHT200to400' : [ 6.07403267e+04, 5.97048950e+04, 5.83520511e+04, 5.66445891e+04, 5.56691548e+04, 5.43969204e+04, 5.33598491e+04, 5.24332052e+04, 5.12262389e+04, ], 'CountWeightedFullLHEEnvelope_LHENjet2_LHEHT200to400' : [ 6.14551882e+04, 5.07128238e+04, ], 'CountWeightedL1PrefireNom_LHENjet2_LHEHT200to400' : [ 5.25288992e+04, 5.25307374e+04, 5.25206395e+04, ], 'CountWeightedL1Prefire_LHENjet2_LHEHT200to400' : [ 5.25288992e+04, 5.18402336e+04, 5.32206386e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet2_LHEHT200to400' : [ 5.72444071e+04, 5.63250753e+04, 5.50958902e+04, 5.33957984e+04, 5.25288992e+04, 5.13722464e+04, 5.03089792e+04, 4.94847614e+04, 4.83868614e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet2_LHEHT200to400' : [ 5.79363476e+04, 4.78887796e+04, ], 'CountWeightedFullL1PrefireNom_LHENjet2_LHEHT200to400' : [ 5.25288992e+04, 5.25307374e+04, 5.25206395e+04, ], 'CountWeightedFullL1Prefire_LHENjet2_LHEHT200to400' : [ 5.25288992e+04, 5.18402336e+04, 5.32206386e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet2_LHEHT200to400' : [ 5.72444071e+04, 5.63250753e+04, 5.50958902e+04, 5.33957984e+04, 5.25288992e+04, 5.13722464e+04, 5.03089792e+04, 4.94847614e+04, 4.83868614e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet2_LHEHT200to400' : [ 5.79363476e+04, 4.78887796e+04, ], 'Count_LHENjet2_LHEHT400to600' : [ 3363, ], 'CountWeighted_LHENjet2_LHEHT400to600' : [ 3.37850643e+03, 3.36056273e+03, 3.39579443e+03, ], 'CountWeightedLHEWeightScale_LHENjet2_LHEHT400to600' : [ 3.91016621e+03, 3.70855261e+03, 3.52034244e+03, 3.56396412e+03, 3.37850643e+03, 3.20560819e+03, 3.28535843e+03, 3.11296771e+03, 2.95244226e+03, ], 'CountWeightedLHEEnvelope_LHENjet2_LHEHT400to600' : [ 3.91731598e+03, 2.94917766e+03, ], 'CountWeightedFull_LHENjet2_LHEHT400to600' : [ 3.37850643e+03, 3.36056273e+03, 3.39579443e+03, ], 'CountWeightedFullLHEWeightScale_LHENjet2_LHEHT400to600' : [ 3.91016621e+03, 3.70855261e+03, 3.52034244e+03, 3.56396412e+03, 3.37850643e+03, 3.20560819e+03, 3.28535843e+03, 3.11296771e+03, 2.95244226e+03, ], 'CountWeightedFullLHEEnvelope_LHENjet2_LHEHT400to600' : [ 3.91731598e+03, 2.94917766e+03, ], 'CountWeightedL1PrefireNom_LHENjet2_LHEHT400to600' : [ 3.14160177e+03, 3.12460188e+03, 3.15878684e+03, ], 'CountWeightedL1Prefire_LHENjet2_LHEHT400to600' : [ 3.14160177e+03, 3.09174856e+03, 3.19171374e+03, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet2_LHEHT400to600' : [ 3.62703751e+03, 3.44624493e+03, 3.27644512e+03, 3.30814899e+03, 3.14160177e+03, 2.98541058e+03, 3.05147172e+03, 2.89645468e+03, 2.75126670e+03, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet2_LHEHT400to600' : [ 3.63421430e+03, 2.74786213e+03, ], 'CountWeightedFullL1PrefireNom_LHENjet2_LHEHT400to600' : [ 3.14160177e+03, 3.12460188e+03, 3.15878684e+03, ], 'CountWeightedFullL1Prefire_LHENjet2_LHEHT400to600' : [ 3.14160177e+03, 3.09174856e+03, 3.19171374e+03, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet2_LHEHT400to600' : [ 3.62703751e+03, 3.44624493e+03, 3.27644512e+03, 3.30814899e+03, 3.14160177e+03, 2.98541058e+03, 3.05147172e+03, 2.89645468e+03, 2.75126670e+03, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet2_LHEHT400to600' : [ 3.63421430e+03, 2.74786213e+03, ], 'Count_LHENjet2_LHEHT600to800' : [ 536, ], 'CountWeighted_LHENjet2_LHEHT600to800' : [ 5.40074351e+02, 5.37867909e+02, 5.42883168e+02, ], 'CountWeightedLHEWeightScale_LHENjet2_LHEHT600to800' : [ 6.38617724e+02, 5.96820572e+02, 5.59518188e+02, 5.78209335e+02, 5.40074351e+02, 5.06084853e+02, 5.29355405e+02, 4.94188350e+02, 4.62881956e+02, ], 'CountWeightedLHEEnvelope_LHENjet2_LHEHT600to800' : [ 6.39306590e+02, 4.62629724e+02, ], 'CountWeightedFull_LHENjet2_LHEHT600to800' : [ 5.40074351e+02, 5.37867909e+02, 5.42883168e+02, ], 'CountWeightedFullLHEWeightScale_LHENjet2_LHEHT600to800' : [ 6.38617724e+02, 5.96820572e+02, 5.59518188e+02, 5.78209335e+02, 5.40074351e+02, 5.06084853e+02, 5.29355405e+02, 4.94188350e+02, 4.62881956e+02, ], 'CountWeightedFullLHEEnvelope_LHENjet2_LHEHT600to800' : [ 6.39306590e+02, 4.62629724e+02, ], 'CountWeightedL1PrefireNom_LHENjet2_LHEHT600to800' : [ 5.03167357e+02, 5.00884547e+02, 5.05934821e+02, ], 'CountWeightedL1Prefire_LHENjet2_LHEHT600to800' : [ 5.03167357e+02, 4.95401556e+02, 5.10943960e+02, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet2_LHEHT600to800' : [ 5.93525074e+02, 5.56108520e+02, 5.22520136e+02, 5.37319071e+02, 5.03167357e+02, 4.72552909e+02, 4.91898540e+02, 4.60391544e+02, 4.32184056e+02, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet2_LHEHT600to800' : [ 5.94213277e+02, 4.31931973e+02, ], 'CountWeightedFullL1PrefireNom_LHENjet2_LHEHT600to800' : [ 5.03167357e+02, 5.00884547e+02, 5.05934821e+02, ], 'CountWeightedFullL1Prefire_LHENjet2_LHEHT600to800' : [ 5.03167357e+02, 4.95401556e+02, 5.10943960e+02, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet2_LHEHT600to800' : [ 5.93525074e+02, 5.56108520e+02, 5.22520136e+02, 5.37319071e+02, 5.03167357e+02, 4.72552909e+02, 4.91898540e+02, 4.60391544e+02, 4.32184056e+02, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet2_LHEHT600to800' : [ 5.94213277e+02, 4.31931973e+02, ], 'Count_LHENjet2_LHEHT800to1200' : [ 150, ], 'CountWeighted_LHENjet2_LHEHT800to1200' : [ 1.48530692e+02, 1.49864277e+02, 1.47415367e+02, ], 'CountWeightedLHEWeightScale_LHENjet2_LHEHT800to1200' : [ 1.77566847e+02, 1.64032601e+02, 1.52218428e+02, 1.60783020e+02, 1.48530692e+02, 1.37836866e+02, 1.47058201e+02, 1.35852091e+02, 1.26073276e+02, ], 'CountWeightedLHEEnvelope_LHENjet2_LHEHT800to1200' : [ 1.77633930e+02, 1.26064604e+02, ], 'CountWeightedFull_LHENjet2_LHEHT800to1200' : [ 1.48530692e+02, 1.49864277e+02, 1.47415367e+02, ], 'CountWeightedFullLHEWeightScale_LHENjet2_LHEHT800to1200' : [ 1.77566847e+02, 1.64032601e+02, 1.52218428e+02, 1.60783020e+02, 1.48530692e+02, 1.37836866e+02, 1.47058201e+02, 1.35852091e+02, 1.26073276e+02, ], 'CountWeightedFullLHEEnvelope_LHENjet2_LHEHT800to1200' : [ 1.77633930e+02, 1.26064604e+02, ], 'CountWeightedL1PrefireNom_LHENjet2_LHEHT800to1200' : [ 1.41805638e+02, 1.43079141e+02, 1.41025254e+02, ], 'CountWeightedL1Prefire_LHENjet2_LHEHT800to1200' : [ 1.41805638e+02, 1.40411030e+02, 1.43212059e+02, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet2_LHEHT800to1200' : [ 1.69280092e+02, 1.56563504e+02, 1.45444677e+02, 1.53322491e+02, 1.41805638e+02, 1.31737482e+02, 1.40267896e+02, 1.29730686e+02, 1.20521060e+02, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet2_LHEHT800to1200' : [ 1.69347175e+02, 1.20512388e+02, ], 'CountWeightedFullL1PrefireNom_LHENjet2_LHEHT800to1200' : [ 1.41805638e+02, 1.43079141e+02, 1.41025254e+02, ], 'CountWeightedFullL1Prefire_LHENjet2_LHEHT800to1200' : [ 1.41805638e+02, 1.40411030e+02, 1.43212059e+02, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet2_LHEHT800to1200' : [ 1.69280092e+02, 1.56563504e+02, 1.45444677e+02, 1.53322491e+02, 1.41805638e+02, 1.31737482e+02, 1.40267896e+02, 1.29730686e+02, 1.20521060e+02, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet2_LHEHT800to1200' : [ 1.69347175e+02, 1.20512388e+02, ], 'Count_LHENjet2_LHEHT1200to2500' : [ 17, ], 'CountWeighted_LHENjet2_LHEHT1200to2500' : [ 1.69948128e+01, 1.72374017e+01, 1.69402741e+01, ], 'CountWeightedLHEWeightScale_LHENjet2_LHEHT1200to2500' : [ 2.14699070e+01, 1.90956567e+01, 1.71333676e+01, 1.90891760e+01, 1.69948128e+01, 1.52616038e+01, 1.71643092e+01, 1.52943611e+01, 1.37451814e+01, ], 'CountWeightedLHEEnvelope_LHENjet2_LHEHT1200to2500' : [ 2.14699070e+01, 1.37451814e+01, ], 'CountWeightedFull_LHENjet2_LHEHT1200to2500' : [ 1.69948128e+01, 1.72374017e+01, 1.69402741e+01, ], 'CountWeightedFullLHEWeightScale_LHENjet2_LHEHT1200to2500' : [ 2.14699070e+01, 1.90956567e+01, 1.71333676e+01, 1.90891760e+01, 1.69948128e+01, 1.52616038e+01, 1.71643092e+01, 1.52943611e+01, 1.37451814e+01, ], 'CountWeightedFullLHEEnvelope_LHENjet2_LHEHT1200to2500' : [ 2.14699070e+01, 1.37451814e+01, ], 'CountWeightedL1PrefireNom_LHENjet2_LHEHT1200to2500' : [ 1.68187960e+01, 1.70510030e+01, 1.67772841e+01, ], 'CountWeightedL1Prefire_LHENjet2_LHEHT1200to2500' : [ 1.68187960e+01, 1.67741363e+01, 1.68638631e+01, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet2_LHEHT1200to2500' : [ 2.12413769e+01, 1.88969589e+01, 1.69588161e+01, 1.88868638e+01, 1.68187960e+01, 1.51068899e+01, 1.69831294e+01, 1.51366402e+01, 1.36064768e+01, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet2_LHEHT1200to2500' : [ 2.12413769e+01, 1.36064768e+01, ], 'CountWeightedFullL1PrefireNom_LHENjet2_LHEHT1200to2500' : [ 1.68187960e+01, 1.70510030e+01, 1.67772841e+01, ], 'CountWeightedFullL1Prefire_LHENjet2_LHEHT1200to2500' : [ 1.68187960e+01, 1.67741363e+01, 1.68638631e+01, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet2_LHEHT1200to2500' : [ 2.12413769e+01, 1.88969589e+01, 1.69588161e+01, 1.88868638e+01, 1.68187960e+01, 1.51068899e+01, 1.69831294e+01, 1.51366402e+01, 1.36064768e+01, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet2_LHEHT1200to2500' : [ 2.12413769e+01, 1.36064768e+01, ], 'Count_LHENjet3_LHEHT0to70' : [ 63042, ], 'CountWeighted_LHENjet3_LHEHT0to70' : [ 6.32429857e+04, 6.31687462e+04, 6.32692588e+04, ], 'CountWeightedLHEWeightScale_LHENjet3_LHEHT0to70' : [ 6.03338370e+04, 6.57266401e+04, 6.91309813e+04, 5.80176152e+04, 6.32429857e+04, 6.65477466e+04, 5.61300297e+04, 6.12190316e+04, 6.44427136e+04, ], 'CountWeightedLHEEnvelope_LHENjet3_LHEHT0to70' : [ 6.94571283e+04, 5.58515762e+04, ], 'CountWeightedFull_LHENjet3_LHEHT0to70' : [ 6.32429857e+04, 6.31687462e+04, 6.32692588e+04, ], 'CountWeightedFullLHEWeightScale_LHENjet3_LHEHT0to70' : [ 6.03338370e+04, 6.57266401e+04, 6.91309813e+04, 5.80176152e+04, 6.32429857e+04, 6.65477466e+04, 5.61300297e+04, 6.12190316e+04, 6.44427136e+04, ], 'CountWeightedFullLHEEnvelope_LHENjet3_LHEHT0to70' : [ 6.94571283e+04, 5.58515762e+04, ], 'CountWeightedL1PrefireNom_LHENjet3_LHEHT0to70' : [ 6.27047263e+04, 6.26281331e+04, 6.27330693e+04, ], 'CountWeightedL1Prefire_LHENjet3_LHEHT0to70' : [ 6.27047263e+04, 6.25445810e+04, 6.28511078e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet3_LHEHT0to70' : [ 5.98173007e+04, 6.51668765e+04, 6.85443018e+04, 5.75212629e+04, 6.27047263e+04, 6.59833421e+04, 5.56501277e+04, 6.06982986e+04, 6.38964612e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet3_LHEHT0to70' : [ 6.88648416e+04, 5.53768057e+04, ], 'CountWeightedFullL1PrefireNom_LHENjet3_LHEHT0to70' : [ 6.27047263e+04, 6.26281331e+04, 6.27330693e+04, ], 'CountWeightedFullL1Prefire_LHENjet3_LHEHT0to70' : [ 6.27047263e+04, 6.25445810e+04, 6.28511078e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet3_LHEHT0to70' : [ 5.98173007e+04, 6.51668765e+04, 6.85443018e+04, 5.75212629e+04, 6.27047263e+04, 6.59833421e+04, 5.56501277e+04, 6.06982986e+04, 6.38964612e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet3_LHEHT0to70' : [ 6.88648416e+04, 5.53768057e+04, ], 'Count_LHENjet3_LHEHT70to100' : [ 226216, ], 'CountWeighted_LHENjet3_LHEHT70to100' : [ 2.25815387e+05, 2.25902758e+05, 2.25737174e+05, ], 'CountWeightedLHEWeightScale_LHENjet3_LHEHT70to100' : [ 2.21973018e+05, 2.34662318e+05, 2.41753242e+05, 2.13523364e+05, 2.25815387e+05, 2.32702052e+05, 2.06616991e+05, 2.18584653e+05, 2.25304387e+05, ], 'CountWeightedLHEEnvelope_LHENjet3_LHEHT70to100' : [ 2.45044943e+05, 2.03981011e+05, ], 'CountWeightedFull_LHENjet3_LHEHT70to100' : [ 2.25815387e+05, 2.25902758e+05, 2.25737174e+05, ], 'CountWeightedFullLHEWeightScale_LHENjet3_LHEHT70to100' : [ 2.21973018e+05, 2.34662318e+05, 2.41753242e+05, 2.13523364e+05, 2.25815387e+05, 2.32702052e+05, 2.06616991e+05, 2.18584653e+05, 2.25304387e+05, ], 'CountWeightedFullLHEEnvelope_LHENjet3_LHEHT70to100' : [ 2.45044943e+05, 2.03981011e+05, ], 'CountWeightedL1PrefireNom_LHENjet3_LHEHT70to100' : [ 2.23265559e+05, 2.23349149e+05, 2.23190672e+05, ], 'CountWeightedL1Prefire_LHENjet3_LHEHT70to100' : [ 2.23265559e+05, 2.22519674e+05, 2.23948539e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet3_LHEHT70to100' : [ 2.19447739e+05, 2.32012410e+05, 2.39039290e+05, 2.11094551e+05, 2.23265559e+05, 2.30089699e+05, 2.04267097e+05, 2.16116652e+05, 2.22775159e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet3_LHEHT70to100' : [ 2.42276094e+05, 2.01676698e+05, ], 'CountWeightedFullL1PrefireNom_LHENjet3_LHEHT70to100' : [ 2.23265559e+05, 2.23349149e+05, 2.23190672e+05, ], 'CountWeightedFullL1Prefire_LHENjet3_LHEHT70to100' : [ 2.23265559e+05, 2.22519674e+05, 2.23948539e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet3_LHEHT70to100' : [ 2.19447739e+05, 2.32012410e+05, 2.39039290e+05, 2.11094551e+05, 2.23265559e+05, 2.30089699e+05, 2.04267097e+05, 2.16116652e+05, 2.22775159e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet3_LHEHT70to100' : [ 2.42276094e+05, 2.01676698e+05, ], 'Count_LHENjet3_LHEHT100to200' : [ 416987, ], 'CountWeighted_LHENjet3_LHEHT100to200' : [ 4.16260090e+05, 4.16371364e+05, 4.16113018e+05, ], 'CountWeightedLHEWeightScale_LHENjet3_LHEHT100to200' : [ 4.25590468e+05, 4.33817132e+05, 4.35072510e+05, 4.08278611e+05, 4.16260090e+05, 4.17525506e+05, 3.94083873e+05, 4.01863972e+05, 4.03138040e+05, ], 'CountWeightedLHEEnvelope_LHENjet3_LHEHT100to200' : [ 4.49319518e+05, 3.81990828e+05, ], 'CountWeightedFull_LHENjet3_LHEHT100to200' : [ 4.16260090e+05, 4.16371364e+05, 4.16113018e+05, ], 'CountWeightedFullLHEWeightScale_LHENjet3_LHEHT100to200' : [ 4.25590468e+05, 4.33817132e+05, 4.35072510e+05, 4.08278611e+05, 4.16260090e+05, 4.17525506e+05, 3.94083873e+05, 4.01863972e+05, 4.03138040e+05, ], 'CountWeightedFullLHEEnvelope_LHENjet3_LHEHT100to200' : [ 4.49319518e+05, 3.81990828e+05, ], 'CountWeightedL1PrefireNom_LHENjet3_LHEHT100to200' : [ 4.06817620e+05, 4.06911864e+05, 4.06688460e+05, ], 'CountWeightedL1Prefire_LHENjet3_LHEHT100to200' : [ 4.06817620e+05, 4.04354067e+05, 4.09180657e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet3_LHEHT100to200' : [ 4.15795950e+05, 4.23966139e+05, 4.25301018e+05, 3.98891752e+05, 4.06817620e+05, 4.08158396e+05, 3.85031295e+05, 3.92756565e+05, 3.94102479e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet3_LHEHT100to200' : [ 4.39081001e+05, 3.73345620e+05, ], 'CountWeightedFullL1PrefireNom_LHENjet3_LHEHT100to200' : [ 4.06817620e+05, 4.06911864e+05, 4.06688460e+05, ], 'CountWeightedFullL1Prefire_LHENjet3_LHEHT100to200' : [ 4.06817620e+05, 4.04354067e+05, 4.09180657e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet3_LHEHT100to200' : [ 4.15795950e+05, 4.23966139e+05, 4.25301018e+05, 3.98891752e+05, 4.06817620e+05, 4.08158396e+05, 3.85031295e+05, 3.92756565e+05, 3.94102479e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet3_LHEHT100to200' : [ 4.39081001e+05, 3.73345620e+05, ], 'Count_LHENjet3_LHEHT200to400' : [ 103051, ], 'CountWeighted_LHENjet3_LHEHT200to400' : [ 1.02781109e+05, 1.02807392e+05, 1.02704061e+05, ], 'CountWeightedLHEWeightScale_LHENjet3_LHEHT200to400' : [ 1.13014818e+05, 1.10079842e+05, 1.06570472e+05, 1.05529648e+05, 1.02781109e+05, 9.94932868e+04, 9.95409252e+04, 9.69425063e+04, 9.38327726e+04, ], 'CountWeightedLHEEnvelope_LHENjet3_LHEHT200to400' : [ 1.14666739e+05, 9.25962178e+04, ], 'CountWeightedFull_LHENjet3_LHEHT200to400' : [ 1.02781109e+05, 1.02807392e+05, 1.02704061e+05, ], 'CountWeightedFullLHEWeightScale_LHENjet3_LHEHT200to400' : [ 1.13014818e+05, 1.10079842e+05, 1.06570472e+05, 1.05529648e+05, 1.02781109e+05, 9.94932868e+04, 9.95409252e+04, 9.69425063e+04, 9.38327726e+04, ], 'CountWeightedFullLHEEnvelope_LHENjet3_LHEHT200to400' : [ 1.14666739e+05, 9.25962178e+04, ], 'CountWeightedL1PrefireNom_LHENjet3_LHEHT200to400' : [ 9.74454231e+04, 9.74683771e+04, 9.73705560e+04, ], 'CountWeightedL1Prefire_LHENjet3_LHEHT200to400' : [ 9.74454231e+04, 9.62341080e+04, 9.86522602e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet3_LHEHT200to400' : [ 1.07021019e+05, 1.04339311e+05, 1.01091139e+05, 9.99574323e+04, 9.74454231e+04, 9.44014413e+04, 9.43050601e+04, 9.19297345e+04, 8.90499548e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet3_LHEHT200to400' : [ 1.08610625e+05, 8.78572747e+04, ], 'CountWeightedFullL1PrefireNom_LHENjet3_LHEHT200to400' : [ 9.74454231e+04, 9.74683771e+04, 9.73705560e+04, ], 'CountWeightedFullL1Prefire_LHENjet3_LHEHT200to400' : [ 9.74454231e+04, 9.62341080e+04, 9.86522602e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet3_LHEHT200to400' : [ 1.07021019e+05, 1.04339311e+05, 1.01091139e+05, 9.99574323e+04, 9.74454231e+04, 9.44014413e+04, 9.43050601e+04, 9.19297345e+04, 8.90499548e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet3_LHEHT200to400' : [ 1.08610625e+05, 8.78572747e+04, ], 'Count_LHENjet3_LHEHT400to600' : [ 9186, ], 'CountWeighted_LHENjet3_LHEHT400to600' : [ 9.18293612e+03, 9.16131679e+03, 9.20200978e+03, ], 'CountWeightedLHEWeightScale_LHENjet3_LHEHT400to600' : [ 1.08101570e+04, 1.01493304e+04, 9.53847283e+03, 9.78474329e+03, 9.18293612e+03, 8.62717619e+03, 8.96865257e+03, 8.41392933e+03, 7.90210305e+03, ], 'CountWeightedLHEEnvelope_LHENjet3_LHEHT400to600' : [ 1.08468315e+04, 7.87994550e+03, ], 'CountWeightedFull_LHENjet3_LHEHT400to600' : [ 9.18293612e+03, 9.16131679e+03, 9.20200978e+03, ], 'CountWeightedFullLHEWeightScale_LHENjet3_LHEHT400to600' : [ 1.08101570e+04, 1.01493304e+04, 9.53847283e+03, 9.78474329e+03, 9.18293612e+03, 8.62717619e+03, 8.96865257e+03, 8.41392933e+03, 7.90210305e+03, ], 'CountWeightedFullLHEEnvelope_LHENjet3_LHEHT400to600' : [ 1.08468315e+04, 7.87994550e+03, ], 'CountWeightedL1PrefireNom_LHENjet3_LHEHT400to600' : [ 8.50110949e+03, 8.48084595e+03, 8.51938815e+03, ], 'CountWeightedL1Prefire_LHENjet3_LHEHT400to600' : [ 8.50110949e+03, 8.35680708e+03, 8.64652952e+03, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet3_LHEHT400to600' : [ 9.98535252e+03, 9.38857587e+03, 8.83463902e+03, 9.04522520e+03, 8.50110949e+03, 7.99657203e+03, 8.29653908e+03, 7.79447723e+03, 7.32936592e+03, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet3_LHEHT400to600' : [ 1.00201170e+04, 7.30803988e+03, ], 'CountWeightedFullL1PrefireNom_LHENjet3_LHEHT400to600' : [ 8.50110949e+03, 8.48084595e+03, 8.51938815e+03, ], 'CountWeightedFullL1Prefire_LHENjet3_LHEHT400to600' : [ 8.50110949e+03, 8.35680708e+03, 8.64652952e+03, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet3_LHEHT400to600' : [ 9.98535252e+03, 9.38857587e+03, 8.83463902e+03, 9.04522520e+03, 8.50110949e+03, 7.99657203e+03, 8.29653908e+03, 7.79447723e+03, 7.32936592e+03, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet3_LHEHT400to600' : [ 1.00201170e+04, 7.30803988e+03, ], 'Count_LHENjet3_LHEHT600to800' : [ 1552, ], 'CountWeighted_LHENjet3_LHEHT600to800' : [ 1.54548544e+03, 1.54150240e+03, 1.54983730e+03, ], 'CountWeightedLHEWeightScale_LHENjet3_LHEHT600to800' : [ 1.86834444e+03, 1.72135702e+03, 1.59270675e+03, 1.67840309e+03, 1.54548544e+03, 1.42930710e+03, 1.52638032e+03, 1.40478461e+03, 1.29862927e+03, ], 'CountWeightedLHEEnvelope_LHENjet3_LHEHT600to800' : [ 1.87268008e+03, 1.29595014e+03, ], 'CountWeightedFull_LHENjet3_LHEHT600to800' : [ 1.54548544e+03, 1.54150240e+03, 1.54983730e+03, ], 'CountWeightedFullLHEWeightScale_LHENjet3_LHEHT600to800' : [ 1.86834444e+03, 1.72135702e+03, 1.59270675e+03, 1.67840309e+03, 1.54548544e+03, 1.42930710e+03, 1.52638032e+03, 1.40478461e+03, 1.29862927e+03, ], 'CountWeightedFullLHEEnvelope_LHENjet3_LHEHT600to800' : [ 1.87268008e+03, 1.29595014e+03, ], 'CountWeightedL1PrefireNom_LHENjet3_LHEHT600to800' : [ 1.44625353e+03, 1.44187383e+03, 1.45117974e+03, ], 'CountWeightedL1Prefire_LHENjet3_LHEHT600to800' : [ 1.44625353e+03, 1.42544873e+03, 1.46721412e+03, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet3_LHEHT600to800' : [ 1.74511423e+03, 1.61068226e+03, 1.49260686e+03, 1.56786471e+03, 1.44625353e+03, 1.33958943e+03, 1.42597651e+03, 1.31468725e+03, 1.21719763e+03, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet3_LHEHT600to800' : [ 1.74926711e+03, 1.21459971e+03, ], 'CountWeightedFullL1PrefireNom_LHENjet3_LHEHT600to800' : [ 1.44625353e+03, 1.44187383e+03, 1.45117974e+03, ], 'CountWeightedFullL1Prefire_LHENjet3_LHEHT600to800' : [ 1.44625353e+03, 1.42544873e+03, 1.46721412e+03, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet3_LHEHT600to800' : [ 1.74511423e+03, 1.61068226e+03, 1.49260686e+03, 1.56786471e+03, 1.44625353e+03, 1.33958943e+03, 1.42597651e+03, 1.31468725e+03, 1.21719763e+03, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet3_LHEHT600to800' : [ 1.74926711e+03, 1.21459971e+03, ], 'Count_LHENjet3_LHEHT800to1200' : [ 517, ], 'CountWeighted_LHENjet3_LHEHT800to1200' : [ 5.15352372e+02, 5.15346230e+02, 5.14111966e+02, ], 'CountWeightedLHEWeightScale_LHENjet3_LHEHT800to1200' : [ 6.31891865e+02, 5.74153875e+02, 5.25040449e+02, 5.67354474e+02, 5.15352372e+02, 4.71149609e+02, 5.15367728e+02, 4.67985671e+02, 4.27737543e+02, ], 'CountWeightedLHEEnvelope_LHENjet3_LHEHT800to1200' : [ 6.32697948e+02, 4.27206520e+02, ], 'CountWeightedFull_LHENjet3_LHEHT800to1200' : [ 5.15352372e+02, 5.15346230e+02, 5.14111966e+02, ], 'CountWeightedFullLHEWeightScale_LHENjet3_LHEHT800to1200' : [ 6.31891865e+02, 5.74153875e+02, 5.25040449e+02, 5.67354474e+02, 5.15352372e+02, 4.71149609e+02, 5.15367728e+02, 4.67985671e+02, 4.27737543e+02, ], 'CountWeightedFullLHEEnvelope_LHENjet3_LHEHT800to1200' : [ 6.32697948e+02, 4.27206520e+02, ], 'CountWeightedL1PrefireNom_LHENjet3_LHEHT800to1200' : [ 4.85062399e+02, 4.84371848e+02, 4.84792615e+02, ], 'CountWeightedL1Prefire_LHENjet3_LHEHT800to1200' : [ 4.85062399e+02, 4.78690120e+02, 4.91437958e+02, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet3_LHEHT800to1200' : [ 5.93448177e+02, 5.40163460e+02, 4.94740236e+02, 5.33118517e+02, 4.85062399e+02, 4.44133452e+02, 4.84501738e+02, 4.40661435e+02, 4.03355038e+02, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet3_LHEHT800to1200' : [ 5.94131636e+02, 4.02882529e+02, ], 'CountWeightedFullL1PrefireNom_LHENjet3_LHEHT800to1200' : [ 4.85062399e+02, 4.84371848e+02, 4.84792615e+02, ], 'CountWeightedFullL1Prefire_LHENjet3_LHEHT800to1200' : [ 4.85062399e+02, 4.78690120e+02, 4.91437958e+02, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet3_LHEHT800to1200' : [ 5.93448177e+02, 5.40163460e+02, 4.94740236e+02, 5.33118517e+02, 4.85062399e+02, 4.44133452e+02, 4.84501738e+02, 4.40661435e+02, 4.03355038e+02, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet3_LHEHT800to1200' : [ 5.94131636e+02, 4.02882529e+02, ], 'Count_LHENjet3_LHEHT1200to2500' : [ 79, ], 'CountWeighted_LHENjet3_LHEHT1200to2500' : [ 8.56492508e+01, 8.14015913e+01, 8.96772399e+01, ], 'CountWeightedLHEWeightScale_LHENjet3_LHEHT1200to2500' : [ 1.08312908e+02, 9.57594681e+01, 8.55995142e+01, 9.69037324e+01, 8.56492508e+01, 7.65462333e+01, 8.76613965e+01, 7.74601312e+01, 6.92132015e+01, ], 'CountWeightedLHEEnvelope_LHENjet3_LHEHT1200to2500' : [ 1.08315856e+02, 6.92132015e+01, ], 'CountWeightedFull_LHENjet3_LHEHT1200to2500' : [ 8.56492508e+01, 8.14015913e+01, 8.96772399e+01, ], 'CountWeightedFullLHEWeightScale_LHENjet3_LHEHT1200to2500' : [ 1.08312908e+02, 9.57594681e+01, 8.55995142e+01, 9.69037324e+01, 8.56492508e+01, 7.65462333e+01, 8.76613965e+01, 7.74601312e+01, 6.92132015e+01, ], 'CountWeightedFullLHEEnvelope_LHENjet3_LHEHT1200to2500' : [ 1.08315856e+02, 6.92132015e+01, ], 'CountWeightedL1PrefireNom_LHENjet3_LHEHT1200to2500' : [ 8.37168933e+01, 7.95885630e+01, 8.76540320e+01, ], 'CountWeightedL1Prefire_LHENjet3_LHEHT1200to2500' : [ 8.37168933e+01, 8.33013419e+01, 8.41335795e+01, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet3_LHEHT1200to2500' : [ 1.05792889e+02, 9.36271867e+01, 8.37650386e+01, 9.46188135e+01, 8.37168933e+01, 7.48844653e+01, 8.55715708e+01, 7.56935419e+01, 6.76945651e+01, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet3_LHEHT1200to2500' : [ 1.05795838e+02, 6.76945651e+01, ], 'CountWeightedFullL1PrefireNom_LHENjet3_LHEHT1200to2500' : [ 8.37168933e+01, 7.95885630e+01, 8.76540320e+01, ], 'CountWeightedFullL1Prefire_LHENjet3_LHEHT1200to2500' : [ 8.37168933e+01, 8.33013419e+01, 8.41335795e+01, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet3_LHEHT1200to2500' : [ 1.05792889e+02, 9.36271867e+01, 8.37650386e+01, 9.46188135e+01, 8.37168933e+01, 7.48844653e+01, 8.55715708e+01, 7.56935419e+01, 6.76945651e+01, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet3_LHEHT1200to2500' : [ 1.05795838e+02, 6.76945651e+01, ], 'Count_LHENjet4_LHEHT0to70' : [ 324, ], 'CountWeighted_LHENjet4_LHEHT0to70' : [ 3.27423405e+02, 3.24542943e+02, 3.27615448e+02, ], 'CountWeightedLHEWeightScale_LHENjet4_LHEHT0to70' : [ 3.22789635e+02, 3.43484325e+02, 3.53750303e+02, 3.07495905e+02, 3.27423405e+02, 3.37355687e+02, 2.95059288e+02, 3.14364329e+02, 3.24025501e+02, ], 'CountWeightedLHEEnvelope_LHENjet4_LHEHT0to70' : [ 3.62703595e+02, 2.87529445e+02, ], 'CountWeightedFull_LHENjet4_LHEHT0to70' : [ 3.27423405e+02, 3.24542943e+02, 3.27615448e+02, ], 'CountWeightedFullLHEWeightScale_LHENjet4_LHEHT0to70' : [ 3.22789635e+02, 3.43484325e+02, 3.53750303e+02, 3.07495905e+02, 3.27423405e+02, 3.37355687e+02, 2.95059288e+02, 3.14364329e+02, 3.24025501e+02, ], 'CountWeightedFullLHEEnvelope_LHENjet4_LHEHT0to70' : [ 3.62703595e+02, 2.87529445e+02, ], 'CountWeightedL1PrefireNom_LHENjet4_LHEHT0to70' : [ 3.22551250e+02, 3.19601639e+02, 3.22842600e+02, ], 'CountWeightedL1Prefire_LHENjet4_LHEHT0to70' : [ 3.22551250e+02, 3.21218274e+02, 3.23811799e+02, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet4_LHEHT0to70' : [ 3.17813460e+02, 3.38273075e+02, 3.48451657e+02, 3.02850492e+02, 3.22551250e+02, 3.32396310e+02, 2.90681103e+02, 3.09766102e+02, 3.19340177e+02, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet4_LHEHT0to70' : [ 3.57286260e+02, 2.83218891e+02, ], 'CountWeightedFullL1PrefireNom_LHENjet4_LHEHT0to70' : [ 3.22551250e+02, 3.19601639e+02, 3.22842600e+02, ], 'CountWeightedFullL1Prefire_LHENjet4_LHEHT0to70' : [ 3.22551250e+02, 3.21218274e+02, 3.23811799e+02, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet4_LHEHT0to70' : [ 3.17813460e+02, 3.38273075e+02, 3.48451657e+02, 3.02850492e+02, 3.22551250e+02, 3.32396310e+02, 2.90681103e+02, 3.09766102e+02, 3.19340177e+02, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet4_LHEHT0to70' : [ 3.57286260e+02, 2.83218891e+02, ], 'Count_LHENjet4_LHEHT70to100' : [ 15960, ], 'CountWeighted_LHENjet4_LHEHT70to100' : [ 1.59308766e+04, 1.59149227e+04, 1.59390869e+04, ], 'CountWeightedLHEWeightScale_LHENjet4_LHEHT70to100' : [ 1.63213349e+04, 1.66485879e+04, 1.66406758e+04, 1.56137760e+04, 1.59308766e+04, 1.59260095e+04, 1.50373061e+04, 1.53461371e+04, 1.53437475e+04, ], 'CountWeightedLHEEnvelope_LHENjet4_LHEHT70to100' : [ 1.74804043e+04, 1.43058678e+04, ], 'CountWeightedFull_LHENjet4_LHEHT70to100' : [ 1.59308766e+04, 1.59149227e+04, 1.59390869e+04, ], 'CountWeightedFullLHEWeightScale_LHENjet4_LHEHT70to100' : [ 1.63213349e+04, 1.66485879e+04, 1.66406758e+04, 1.56137760e+04, 1.59308766e+04, 1.59260095e+04, 1.50373061e+04, 1.53461371e+04, 1.53437475e+04, ], 'CountWeightedFullLHEEnvelope_LHENjet4_LHEHT70to100' : [ 1.74804043e+04, 1.43058678e+04, ], 'CountWeightedL1PrefireNom_LHENjet4_LHEHT70to100' : [ 1.57605733e+04, 1.57458198e+04, 1.57675457e+04, ], 'CountWeightedL1Prefire_LHENjet4_LHEHT70to100' : [ 1.57605733e+04, 1.57108534e+04, 1.58058550e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet4_LHEHT70to100' : [ 1.61436794e+04, 1.64704126e+04, 1.64648716e+04, 1.54440284e+04, 1.57605733e+04, 1.57579374e+04, 1.48740005e+04, 1.51822465e+04, 1.51819737e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet4_LHEHT70to100' : [ 1.72930134e+04, 1.41528144e+04, ], 'CountWeightedFullL1PrefireNom_LHENjet4_LHEHT70to100' : [ 1.57605733e+04, 1.57458198e+04, 1.57675457e+04, ], 'CountWeightedFullL1Prefire_LHENjet4_LHEHT70to100' : [ 1.57605733e+04, 1.57108534e+04, 1.58058550e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet4_LHEHT70to100' : [ 1.61436794e+04, 1.64704126e+04, 1.64648716e+04, 1.54440284e+04, 1.57605733e+04, 1.57579374e+04, 1.48740005e+04, 1.51822465e+04, 1.51819737e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet4_LHEHT70to100' : [ 1.72930134e+04, 1.41528144e+04, ], 'Count_LHENjet4_LHEHT100to200' : [ 208613, ], 'CountWeighted_LHENjet4_LHEHT100to200' : [ 2.08098369e+05, 2.08111438e+05, 2.08069555e+05, ], 'CountWeightedLHEWeightScale_LHENjet4_LHEHT100to200' : [ 2.20620238e+05, 2.17231867e+05, 2.11657132e+05, 2.11320253e+05, 2.08098369e+05, 2.02772940e+05, 2.03714122e+05, 2.00628298e+05, 1.95506510e+05, ], 'CountWeightedLHEEnvelope_LHENjet4_LHEHT100to200' : [ 2.28482744e+05, 1.88649488e+05, ], 'CountWeightedFull_LHENjet4_LHEHT100to200' : [ 2.08098369e+05, 2.08111438e+05, 2.08069555e+05, ], 'CountWeightedFullLHEWeightScale_LHENjet4_LHEHT100to200' : [ 2.20620238e+05, 2.17231867e+05, 2.11657132e+05, 2.11320253e+05, 2.08098369e+05, 2.02772940e+05, 2.03714122e+05, 2.00628298e+05, 1.95506510e+05, ], 'CountWeightedFullLHEEnvelope_LHENjet4_LHEHT100to200' : [ 2.28482744e+05, 1.88649488e+05, ], 'CountWeightedL1PrefireNom_LHENjet4_LHEHT100to200' : [ 2.03796681e+05, 2.03805704e+05, 2.03770625e+05, ], 'CountWeightedL1Prefire_LHENjet4_LHEHT100to200' : [ 2.03796681e+05, 2.02622143e+05, 2.04901515e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet4_LHEHT100to200' : [ 2.15992136e+05, 2.12739300e+05, 2.07329548e+05, 2.06889314e+05, 2.03796681e+05, 1.98628882e+05, 1.99444415e+05, 1.96482637e+05, 1.91512521e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet4_LHEHT100to200' : [ 2.23722520e+05, 1.84769519e+05, ], 'CountWeightedFullL1PrefireNom_LHENjet4_LHEHT100to200' : [ 2.03796681e+05, 2.03805704e+05, 2.03770625e+05, ], 'CountWeightedFullL1Prefire_LHENjet4_LHEHT100to200' : [ 2.03796681e+05, 2.02622143e+05, 2.04901515e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet4_LHEHT100to200' : [ 2.15992136e+05, 2.12739300e+05, 2.07329548e+05, 2.06889314e+05, 2.03796681e+05, 1.98628882e+05, 1.99444415e+05, 1.96482637e+05, 1.91512521e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet4_LHEHT100to200' : [ 2.23722520e+05, 1.84769519e+05, ], 'Count_LHENjet4_LHEHT200to400' : [ 180053, ], 'CountWeighted_LHENjet4_LHEHT200to400' : [ 1.79226606e+05, 1.79349111e+05, 1.79092928e+05, ], 'CountWeightedLHEWeightScale_LHENjet4_LHEHT200to400' : [ 2.02102545e+05, 1.91668826e+05, 1.81397500e+05, 1.88988935e+05, 1.79226606e+05, 1.69612616e+05, 1.78508250e+05, 1.69282513e+05, 1.60193839e+05, ], 'CountWeightedLHEEnvelope_LHENjet4_LHEHT200to400' : [ 2.04233739e+05, 1.58579851e+05, ], 'CountWeightedFull_LHENjet4_LHEHT200to400' : [ 1.79226606e+05, 1.79349111e+05, 1.79092928e+05, ], 'CountWeightedFullLHEWeightScale_LHENjet4_LHEHT200to400' : [ 2.02102545e+05, 1.91668826e+05, 1.81397500e+05, 1.88988935e+05, 1.79226606e+05, 1.69612616e+05, 1.78508250e+05, 1.69282513e+05, 1.60193839e+05, ], 'CountWeightedFullLHEEnvelope_LHENjet4_LHEHT200to400' : [ 2.04233739e+05, 1.58579851e+05, ], 'CountWeightedL1PrefireNom_LHENjet4_LHEHT200to400' : [ 1.70334922e+05, 1.70436981e+05, 1.70225571e+05, ], 'CountWeightedL1Prefire_LHENjet4_LHEHT200to400' : [ 1.70334922e+05, 1.68231713e+05, 1.72408116e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet4_LHEHT200to400' : [ 1.91835727e+05, 1.82115769e+05, 1.72499763e+05, 1.79432233e+05, 1.70334922e+05, 1.61331561e+05, 1.69516761e+05, 1.60917159e+05, 1.52403608e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet4_LHEHT200to400' : [ 1.93894063e+05, 1.50842069e+05, ], 'CountWeightedFullL1PrefireNom_LHENjet4_LHEHT200to400' : [ 1.70334922e+05, 1.70436981e+05, 1.70225571e+05, ], 'CountWeightedFullL1Prefire_LHENjet4_LHEHT200to400' : [ 1.70334922e+05, 1.68231713e+05, 1.72408116e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet4_LHEHT200to400' : [ 1.91835727e+05, 1.82115769e+05, 1.72499763e+05, 1.79432233e+05, 1.70334922e+05, 1.61331561e+05, 1.69516761e+05, 1.60917159e+05, 1.52403608e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet4_LHEHT200to400' : [ 1.93894063e+05, 1.50842069e+05, ], 'Count_LHENjet4_LHEHT400to600' : [ 36363, ], 'CountWeighted_LHENjet4_LHEHT400to600' : [ 3.63080631e+04, 3.63166821e+04, 3.62797888e+04, ], 'CountWeightedLHEWeightScale_LHENjet4_LHEHT400to600' : [ 4.40006563e+04, 4.03653989e+04, 3.71864101e+04, 3.95913130e+04, 3.63080631e+04, 3.34387269e+04, 3.61203668e+04, 3.31143594e+04, 3.04889018e+04, ], 'CountWeightedLHEEnvelope_LHENjet4_LHEHT400to600' : [ 4.41031588e+04, 3.04303460e+04, ], 'CountWeightedFull_LHENjet4_LHEHT400to600' : [ 3.63080631e+04, 3.63166821e+04, 3.62797888e+04, ], 'CountWeightedFullLHEWeightScale_LHENjet4_LHEHT400to600' : [ 4.40006563e+04, 4.03653989e+04, 3.71864101e+04, 3.95913130e+04, 3.63080631e+04, 3.34387269e+04, 3.61203668e+04, 3.31143594e+04, 3.04889018e+04, ], 'CountWeightedFullLHEEnvelope_LHENjet4_LHEHT400to600' : [ 4.41031588e+04, 3.04303460e+04, ], 'CountWeightedL1PrefireNom_LHENjet4_LHEHT400to600' : [ 3.33912145e+04, 3.33988170e+04, 3.33695176e+04, ], 'CountWeightedL1Prefire_LHENjet4_LHEHT400to600' : [ 3.33912145e+04, 3.27568366e+04, 3.40277223e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet4_LHEHT400to600' : [ 4.03644878e+04, 3.71042101e+04, 3.42395663e+04, 3.63376766e+04, 3.33912145e+04, 3.08039919e+04, 3.31666130e+04, 3.04674337e+04, 2.80988038e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet4_LHEHT400to600' : [ 4.04611578e+04, 2.80433568e+04, ], 'CountWeightedFullL1PrefireNom_LHENjet4_LHEHT400to600' : [ 3.33912145e+04, 3.33988170e+04, 3.33695176e+04, ], 'CountWeightedFullL1Prefire_LHENjet4_LHEHT400to600' : [ 3.33912145e+04, 3.27568366e+04, 3.40277223e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet4_LHEHT400to600' : [ 4.03644878e+04, 3.71042101e+04, 3.42395663e+04, 3.63376766e+04, 3.33912145e+04, 3.08039919e+04, 3.31666130e+04, 3.04674337e+04, 2.80988038e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet4_LHEHT400to600' : [ 4.04611578e+04, 2.80433568e+04, ], 'Count_LHENjet4_LHEHT600to800' : [ 10097, ], 'CountWeighted_LHENjet4_LHEHT600to800' : [ 1.00210840e+04, 1.00389670e+04, 1.00102634e+04, ], 'CountWeightedLHEWeightScale_LHENjet4_LHEHT600to800' : [ 1.25100883e+04, 1.12601914e+04, 1.02101533e+04, 1.11360361e+04, 1.00210840e+04, 9.08471833e+03, 1.00531974e+04, 9.04462215e+03, 8.19786818e+03, ], 'CountWeightedLHEEnvelope_LHENjet4_LHEHT600to800' : [ 1.25230280e+04, 8.19131048e+03, ], 'CountWeightedFull_LHENjet4_LHEHT600to800' : [ 1.00210840e+04, 1.00389670e+04, 1.00102634e+04, ], 'CountWeightedFullLHEWeightScale_LHENjet4_LHEHT600to800' : [ 1.25100883e+04, 1.12601914e+04, 1.02101533e+04, 1.11360361e+04, 1.00210840e+04, 9.08471833e+03, 1.00531974e+04, 9.04462215e+03, 8.19786818e+03, ], 'CountWeightedFullLHEEnvelope_LHENjet4_LHEHT600to800' : [ 1.25230280e+04, 8.19131048e+03, ], 'CountWeightedL1PrefireNom_LHENjet4_LHEHT600to800' : [ 9.19886492e+03, 9.21675099e+03, 9.18962803e+03, ], 'CountWeightedL1Prefire_LHENjet4_LHEHT600to800' : [ 9.19886492e+03, 9.02361457e+03, 9.37520859e+03, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet4_LHEHT600to800' : [ 1.14484978e+04, 1.03277984e+04, 9.38269699e+03, 1.01997001e+04, 9.19886492e+03, 8.35515990e+03, 9.21464589e+03, 8.30840331e+03, 7.54471955e+03, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet4_LHEHT600to800' : [ 1.14607567e+04, 7.53837522e+03, ], 'CountWeightedFullL1PrefireNom_LHENjet4_LHEHT600to800' : [ 9.19886492e+03, 9.21675099e+03, 9.18962803e+03, ], 'CountWeightedFullL1Prefire_LHENjet4_LHEHT600to800' : [ 9.19886492e+03, 9.02361457e+03, 9.37520859e+03, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet4_LHEHT600to800' : [ 1.14484978e+04, 1.03277984e+04, 9.38269699e+03, 1.01997001e+04, 9.19886492e+03, 8.35515990e+03, 9.21464589e+03, 8.30840331e+03, 7.54471955e+03, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet4_LHEHT600to800' : [ 1.14607567e+04, 7.53837522e+03, ], 'Count_LHENjet4_LHEHT800to1200' : [ 4805, ], 'CountWeighted_LHENjet4_LHEHT800to1200' : [ 4.79978605e+03, 4.78332278e+03, 4.81048208e+03, ], 'CountWeightedLHEWeightScale_LHENjet4_LHEHT800to1200' : [ 6.12271447e+03, 5.43155257e+03, 4.86461476e+03, 5.41177624e+03, 4.79978605e+03, 4.29800123e+03, 4.85107800e+03, 4.30157853e+03, 3.85120843e+03, ], 'CountWeightedLHEEnvelope_LHENjet4_LHEHT800to1200' : [ 6.12583328e+03, 3.84972980e+03, ], 'CountWeightedFull_LHENjet4_LHEHT800to1200' : [ 4.79978605e+03, 4.78332278e+03, 4.81048208e+03, ], 'CountWeightedFullLHEWeightScale_LHENjet4_LHEHT800to1200' : [ 6.12271447e+03, 5.43155257e+03, 4.86461476e+03, 5.41177624e+03, 4.79978605e+03, 4.29800123e+03, 4.85107800e+03, 4.30157853e+03, 3.85120843e+03, ], 'CountWeightedFullLHEEnvelope_LHENjet4_LHEHT800to1200' : [ 6.12583328e+03, 3.84972980e+03, ], 'CountWeightedL1PrefireNom_LHENjet4_LHEHT800to1200' : [ 4.47718687e+03, 4.46412722e+03, 4.48614810e+03, ], 'CountWeightedL1Prefire_LHENjet4_LHEHT800to1200' : [ 4.47718687e+03, 4.40752184e+03, 4.54683855e+03, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet4_LHEHT800to1200' : [ 5.69660320e+03, 5.06285434e+03, 4.54158679e+03, 5.03884903e+03, 4.47718687e+03, 4.01542375e+03, 4.51967561e+03, 4.01496395e+03, 3.60020024e+03, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet4_LHEHT800to1200' : [ 5.69970559e+03, 3.59872381e+03, ], 'CountWeightedFullL1PrefireNom_LHENjet4_LHEHT800to1200' : [ 4.47718687e+03, 4.46412722e+03, 4.48614810e+03, ], 'CountWeightedFullL1Prefire_LHENjet4_LHEHT800to1200' : [ 4.47718687e+03, 4.40752184e+03, 4.54683855e+03, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet4_LHEHT800to1200' : [ 5.69660320e+03, 5.06285434e+03, 4.54158679e+03, 5.03884903e+03, 4.47718687e+03, 4.01542375e+03, 4.51967561e+03, 4.01496395e+03, 3.60020024e+03, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet4_LHEHT800to1200' : [ 5.69970559e+03, 3.59872381e+03, ], 'Count_LHENjet4_LHEHT1200to2500' : [ 1126, ], 'CountWeighted_LHENjet4_LHEHT1200to2500' : [ 1.11645434e+03, 1.10803113e+03, 1.12608796e+03, ], 'CountWeightedLHEWeightScale_LHENjet4_LHEHT1200to2500' : [ 1.44861112e+03, 1.25722833e+03, 1.10514104e+03, 1.28681506e+03, 1.11645434e+03, 9.81165441e+02, 1.15752290e+03, 1.00398133e+03, 8.82125864e+02, ], 'CountWeightedLHEEnvelope_LHENjet4_LHEHT1200to2500' : [ 1.44911767e+03, 8.82020111e+02, ], 'CountWeightedFull_LHENjet4_LHEHT1200to2500' : [ 1.11645434e+03, 1.10803113e+03, 1.12608796e+03, ], 'CountWeightedFullLHEWeightScale_LHENjet4_LHEHT1200to2500' : [ 1.44861112e+03, 1.25722833e+03, 1.10514104e+03, 1.28681506e+03, 1.11645434e+03, 9.81165441e+02, 1.15752290e+03, 1.00398133e+03, 8.82125864e+02, ], 'CountWeightedFullLHEEnvelope_LHENjet4_LHEHT1200to2500' : [ 1.44911767e+03, 8.82020111e+02, ], 'CountWeightedL1PrefireNom_LHENjet4_LHEHT1200to2500' : [ 1.06672681e+03, 1.05745247e+03, 1.07688591e+03, ], 'CountWeightedL1Prefire_LHENjet4_LHEHT1200to2500' : [ 1.06672681e+03, 1.05570067e+03, 1.07762602e+03, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet4_LHEHT1200to2500' : [ 1.38152699e+03, 1.20062551e+03, 1.05662326e+03, 1.22784301e+03, 1.06672681e+03, 9.38561680e+02, 1.10491676e+03, 9.59647549e+02, 8.44160711e+02, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet4_LHEHT1200to2500' : [ 1.38200635e+03, 8.44063314e+02, ], 'CountWeightedFullL1PrefireNom_LHENjet4_LHEHT1200to2500' : [ 1.06672681e+03, 1.05745247e+03, 1.07688591e+03, ], 'CountWeightedFullL1Prefire_LHENjet4_LHEHT1200to2500' : [ 1.06672681e+03, 1.05570067e+03, 1.07762602e+03, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet4_LHEHT1200to2500' : [ 1.38152699e+03, 1.20062551e+03, 1.05662326e+03, 1.22784301e+03, 1.06672681e+03, 9.38561680e+02, 1.10491676e+03, 9.59647549e+02, 8.44160711e+02, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet4_LHEHT1200to2500' : [ 1.38200635e+03, 8.44063314e+02, ], 'Count_LHENjet4_LHEHT2500toInf' : [ 17, ], 'CountWeighted_LHENjet4_LHEHT2500toInf' : [ 2.05516790e+01, 1.95206683e+01, 2.08954833e+01, ], 'CountWeightedLHEWeightScale_LHENjet4_LHEHT2500toInf' : [ 2.74692914e+01, 2.33627962e+01, 2.01660674e+01, 2.41509477e+01, 2.05516790e+01, 1.77472639e+01, 2.15050352e+01, 1.83081911e+01, 1.58158225e+01, ], 'CountWeightedLHEEnvelope_LHENjet4_LHEHT2500toInf' : [ 2.74692914e+01, 1.58158225e+01, ], 'CountWeightedFull_LHENjet4_LHEHT2500toInf' : [ 2.05516790e+01, 1.95206683e+01, 2.08954833e+01, ], 'CountWeightedFullLHEWeightScale_LHENjet4_LHEHT2500toInf' : [ 2.74692914e+01, 2.33627962e+01, 2.01660674e+01, 2.41509477e+01, 2.05516790e+01, 1.77472639e+01, 2.15050352e+01, 1.83081911e+01, 1.58158225e+01, ], 'CountWeightedFullLHEEnvelope_LHENjet4_LHEHT2500toInf' : [ 2.74692914e+01, 1.58158225e+01, ], 'CountWeightedL1PrefireNom_LHENjet4_LHEHT2500toInf' : [ 2.02320230e+01, 1.92299283e+01, 2.05515093e+01, ], 'CountWeightedL1Prefire_LHENjet4_LHEHT2500toInf' : [ 2.02320230e+01, 2.01410412e+01, 2.03137612e+01, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet4_LHEHT2500toInf' : [ 2.69873512e+01, 2.29718571e+01, 1.98423235e+01, 2.37568365e+01, 2.02320230e+01, 1.74825686e+01, 2.11769533e+01, 1.80421151e+01, 1.55955042e+01, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet4_LHEHT2500toInf' : [ 2.69873512e+01, 1.55955042e+01, ], 'CountWeightedFullL1PrefireNom_LHENjet4_LHEHT2500toInf' : [ 2.02320230e+01, 1.92299283e+01, 2.05515093e+01, ], 'CountWeightedFullL1Prefire_LHENjet4_LHEHT2500toInf' : [ 2.02320230e+01, 2.01410412e+01, 2.03137612e+01, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet4_LHEHT2500toInf' : [ 2.69873512e+01, 2.29718571e+01, 1.98423235e+01, 2.37568365e+01, 2.02320230e+01, 1.74825686e+01, 2.11769533e+01, 1.80421151e+01, 1.55955042e+01, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet4_LHEHT2500toInf' : [ 2.69873512e+01, 1.55955042e+01, ], }), ("nof_tree_events", 44627200), ("nof_db_events", 44881137), ("fsize_local", 118038863397), # 118.04GB, avg file size 1.31GB ("fsize_db", 1766214547805), # 1.77TB, avg file size 2.37GB ("use_it", True), ("xsection", 61526.7), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Apr19_woPresel_nom_all_hh_multilepton/ntuples/WJetsToLNu_madgraphMLM_ext1"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/W1JetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v3/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "EWK"), ("process_name_specific", "W1JetsToLNu"), ("nof_files", 110), ("nof_db_files", 801), ("nof_events", { 'Count' : [ 54147812, ], 'CountWeighted' : [ 5.41101789e+07, 5.41085530e+07, 5.41015109e+07, ], 'CountWeightedLHEWeightScale' : [ 4.72349847e+07, 5.46442943e+07, 6.08762335e+07, 4.67343809e+07, 5.41101789e+07, 6.03150083e+07, 4.63240114e+07, 5.36716985e+07, 5.98553585e+07, ], 'CountWeightedLHEEnvelope' : [ 6.06430514e+07, 4.65555848e+07, ], 'CountWeightedFull' : [ 5.41101789e+07, 5.41085530e+07, 5.41015109e+07, ], 'CountWeightedFullLHEWeightScale' : [ 4.72349847e+07, 5.46442943e+07, 6.08762335e+07, 4.67343809e+07, 5.41101789e+07, 6.03150083e+07, 4.63240114e+07, 5.36716985e+07, 5.98553585e+07, ], 'CountWeightedFullLHEEnvelope' : [ 6.06430514e+07, 4.65555848e+07, ], 'CountWeightedL1PrefireNom' : [ 5.35425546e+07, 5.35403343e+07, 5.35369571e+07, ], 'CountWeightedL1Prefire' : [ 5.35425546e+07, 5.33877807e+07, 5.36895236e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 4.67235142e+07, 5.40692242e+07, 6.02505199e+07, 4.62301056e+07, 5.35425546e+07, 5.96970856e+07, 4.58256611e+07, 5.31104082e+07, 5.92438271e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 6.00185545e+07, 4.60558072e+07, ], 'CountWeightedFullL1PrefireNom' : [ 5.35425546e+07, 5.35403343e+07, 5.35369571e+07, ], 'CountWeightedFullL1Prefire' : [ 5.35425546e+07, 5.33877807e+07, 5.36895236e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 4.67235142e+07, 5.40692242e+07, 6.02505199e+07, 4.62301056e+07, 5.35425546e+07, 5.96970856e+07, 4.58256611e+07, 5.31104082e+07, 5.92438271e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 6.00185545e+07, 4.60558072e+07, ], 'Count_LHEHT0to70' : [ 51047052, ], 'CountWeighted_LHEHT0to70' : [ 5.10136424e+07, 5.10118659e+07, 5.10061546e+07, ], 'CountWeightedLHEWeightScale_LHEHT0to70' : [ 4.41810461e+07, 5.14681646e+07, 5.76179658e+07, 4.37583734e+07, 5.10136424e+07, 5.71373788e+07, 4.34127719e+07, 5.06414196e+07, 5.67446962e+07, ], 'CountWeightedLHEEnvelope_LHEHT0to70' : [ 5.73787639e+07, 4.36452970e+07, ], 'CountWeightedFull_LHEHT0to70' : [ 5.10136424e+07, 5.10118659e+07, 5.10061546e+07, ], 'CountWeightedFullLHEWeightScale_LHEHT0to70' : [ 4.41810461e+07, 5.14681646e+07, 5.76179658e+07, 4.37583734e+07, 5.10136424e+07, 5.71373788e+07, 4.34127719e+07, 5.06414196e+07, 5.67446962e+07, ], 'CountWeightedFullLHEEnvelope_LHEHT0to70' : [ 5.73787639e+07, 4.36452970e+07, ], 'CountWeightedL1PrefireNom_LHEHT0to70' : [ 5.05459322e+07, 5.05436886e+07, 5.05410923e+07, ], 'CountWeightedL1Prefire_LHEHT0to70' : [ 5.05459322e+07, 5.04142573e+07, 5.06699799e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT0to70' : [ 4.37691996e+07, 5.09955586e+07, 5.70961695e+07, 4.33511962e+07, 5.05459322e+07, 5.66208027e+07, 4.30094158e+07, 5.01778990e+07, 5.62323806e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT0to70' : [ 5.68591637e+07, 4.32397377e+07, ], 'CountWeightedFullL1PrefireNom_LHEHT0to70' : [ 5.05459322e+07, 5.05436886e+07, 5.05410923e+07, ], 'CountWeightedFullL1Prefire_LHEHT0to70' : [ 5.05459322e+07, 5.04142573e+07, 5.06699799e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT0to70' : [ 4.37691996e+07, 5.09955586e+07, 5.70961695e+07, 4.33511962e+07, 5.05459322e+07, 5.66208027e+07, 4.30094158e+07, 5.01778990e+07, 5.62323806e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT0to70' : [ 5.68591637e+07, 4.32397377e+07, ], 'Count_LHEHT70to100' : [ 2141632, ], 'CountWeighted_LHEHT70to100' : [ 2.13900259e+06, 2.13928536e+06, 2.13872228e+06, ], 'CountWeightedLHEWeightScale_LHEHT70to100' : [ 2.08406091e+06, 2.19163165e+06, 2.26871155e+06, 2.03306665e+06, 2.13900259e+06, 2.21500959e+06, 1.99083035e+06, 2.09541916e+06, 2.17053605e+06, ], 'CountWeightedLHEEnvelope_LHEHT70to100' : [ 2.26220800e+06, 2.00036385e+06, ], 'CountWeightedFull_LHEHT70to100' : [ 2.13900259e+06, 2.13928536e+06, 2.13872228e+06, ], 'CountWeightedFullLHEWeightScale_LHEHT70to100' : [ 2.08406091e+06, 2.19163165e+06, 2.26871155e+06, 2.03306665e+06, 2.13900259e+06, 2.21500959e+06, 1.99083035e+06, 2.09541916e+06, 2.17053605e+06, ], 'CountWeightedFullLHEEnvelope_LHEHT70to100' : [ 2.26220800e+06, 2.00036385e+06, ], 'CountWeightedL1PrefireNom_LHEHT70to100' : [ 2.08061189e+06, 2.08080065e+06, 2.08040496e+06, ], 'CountWeightedL1Prefire_LHEHT70to100' : [ 2.08061189e+06, 2.06664068e+06, 2.09446565e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT70to100' : [ 2.02676723e+06, 2.13180064e+06, 2.20716211e+06, 1.97717623e+06, 2.08061189e+06, 2.15492102e+06, 1.93610250e+06, 2.03821996e+06, 2.11165758e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT70to100' : [ 2.20065500e+06, 1.94554477e+06, ], 'CountWeightedFullL1PrefireNom_LHEHT70to100' : [ 2.08061189e+06, 2.08080065e+06, 2.08040496e+06, ], 'CountWeightedFullL1Prefire_LHEHT70to100' : [ 2.08061189e+06, 2.06664068e+06, 2.09446565e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT70to100' : [ 2.02676723e+06, 2.13180064e+06, 2.20716211e+06, 1.97717623e+06, 2.08061189e+06, 2.15492102e+06, 1.93610250e+06, 2.03821996e+06, 2.11165758e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT70to100' : [ 2.20065500e+06, 1.94554477e+06, ], 'Count_LHEHT100to200' : [ 903831, ], 'CountWeighted_LHEHT100to200' : [ 9.02206599e+05, 9.02081968e+05, 9.02414033e+05, ], 'CountWeightedLHEWeightScale_LHEHT100to200' : [ 9.11520105e+05, 9.27589439e+05, 9.34826994e+05, 8.86278649e+05, 9.02206599e+05, 9.09484176e+05, 8.65197462e+05, 8.81008484e+05, 8.88321469e+05, ], 'CountWeightedLHEEnvelope_LHEHT100to200' : [ 9.43622226e+05, 8.58208121e+05, ], 'CountWeightedFull_LHEHT100to200' : [ 9.02206599e+05, 9.02081968e+05, 9.02414033e+05, ], 'CountWeightedFullLHEWeightScale_LHEHT100to200' : [ 9.11520105e+05, 9.27589439e+05, 9.34826994e+05, 8.86278649e+05, 9.02206599e+05, 9.09484176e+05, 8.65197462e+05, 8.81008484e+05, 8.88321469e+05, ], 'CountWeightedFullLHEEnvelope_LHEHT100to200' : [ 9.43622226e+05, 8.58208121e+05, ], 'CountWeightedL1PrefireNom_LHEHT100to200' : [ 8.63285492e+05, 8.63103309e+05, 8.63561906e+05, ], 'CountWeightedL1Prefire_LHEHT100to200' : [ 8.63285492e+05, 8.54730589e+05, 8.71878547e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT100to200' : [ 8.71861670e+05, 8.87616378e+05, 8.94896430e+05, 8.47675110e+05, 8.63285492e+05, 8.70595891e+05, 8.27475211e+05, 8.42966352e+05, 8.50303766e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT100to200' : [ 9.02958957e+05, 8.21126360e+05, ], 'CountWeightedFullL1PrefireNom_LHEHT100to200' : [ 8.63285492e+05, 8.63103309e+05, 8.63561906e+05, ], 'CountWeightedFullL1Prefire_LHEHT100to200' : [ 8.63285492e+05, 8.54730589e+05, 8.71878547e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT100to200' : [ 8.71861670e+05, 8.87616378e+05, 8.94896430e+05, 8.47675110e+05, 8.63285492e+05, 8.70595891e+05, 8.27475211e+05, 8.42966352e+05, 8.50303766e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT100to200' : [ 9.02958957e+05, 8.21126360e+05, ], 'Count_LHEHT200to400' : [ 53680, ], 'CountWeighted_LHEHT200to400' : [ 5.33382680e+04, 5.33904606e+04, 5.33333826e+04, ], 'CountWeightedLHEWeightScale_LHEHT200to400' : [ 5.65846134e+04, 5.49365782e+04, 5.32098176e+04, 5.49290765e+04, 5.33382680e+04, 5.16691024e+04, 5.35280345e+04, 5.19857368e+04, 5.03653776e+04, ], 'CountWeightedLHEEnvelope_LHEHT200to400' : [ 5.66832951e+04, 5.02723874e+04, ], 'CountWeightedFull_LHEHT200to400' : [ 5.33382680e+04, 5.33904606e+04, 5.33333826e+04, ], 'CountWeightedFullLHEWeightScale_LHEHT200to400' : [ 5.65846134e+04, 5.49365782e+04, 5.32098176e+04, 5.49290765e+04, 5.33382680e+04, 5.16691024e+04, 5.35280345e+04, 5.19857368e+04, 5.03653776e+04, ], 'CountWeightedFullLHEEnvelope_LHEHT200to400' : [ 5.66832951e+04, 5.02723874e+04, ], 'CountWeightedL1PrefireNom_LHEHT200to400' : [ 5.08738657e+04, 5.09166818e+04, 5.08745366e+04, ], 'CountWeightedL1Prefire_LHEHT200to400' : [ 5.08738657e+04, 5.03604292e+04, 5.13922055e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT200to400' : [ 5.39348740e+04, 5.24043484e+04, 5.07933103e+04, 5.23506705e+04, 5.08738657e+04, 4.93170599e+04, 5.10100167e+04, 4.95787542e+04, 4.80679035e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT200to400' : [ 5.40337936e+04, 4.79746369e+04, ], 'CountWeightedFullL1PrefireNom_LHEHT200to400' : [ 5.08738657e+04, 5.09166818e+04, 5.08745366e+04, ], 'CountWeightedFullL1Prefire_LHEHT200to400' : [ 5.08738657e+04, 5.03604292e+04, 5.13922055e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT200to400' : [ 5.39348740e+04, 5.24043484e+04, 5.07933103e+04, 5.23506705e+04, 5.08738657e+04, 4.93170599e+04, 5.10100167e+04, 4.95787542e+04, 4.80679035e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT200to400' : [ 5.40337936e+04, 4.79746369e+04, ], 'Count_LHEHT400to600' : [ 1483, ], 'CountWeighted_LHEHT400to600' : [ 1.48488126e+03, 1.48912801e+03, 1.47860043e+03, ], 'CountWeightedLHEWeightScale_LHEHT400to600' : [ 1.64640455e+03, 1.53319425e+03, 1.43183601e+03, 1.59438132e+03, 1.48488126e+03, 1.38682651e+03, 1.54983449e+03, 1.44351171e+03, 1.34828577e+03, ], 'CountWeightedLHEEnvelope_LHEHT400to600' : [ 1.64643587e+03, 1.34826250e+03, ], 'CountWeightedFull_LHEHT400to600' : [ 1.48488126e+03, 1.48912801e+03, 1.47860043e+03, ], 'CountWeightedFullLHEWeightScale_LHEHT400to600' : [ 1.64640455e+03, 1.53319425e+03, 1.43183601e+03, 1.59438132e+03, 1.48488126e+03, 1.38682651e+03, 1.54983449e+03, 1.44351171e+03, 1.34828577e+03, ], 'CountWeightedFullLHEEnvelope_LHEHT400to600' : [ 1.64643587e+03, 1.34826250e+03, ], 'CountWeightedL1PrefireNom_LHEHT400to600' : [ 1.45625568e+03, 1.46131841e+03, 1.44948333e+03, ], 'CountWeightedL1Prefire_LHEHT400to600' : [ 1.45625568e+03, 1.45028459e+03, 1.46227034e+03, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT400to600' : [ 1.61385855e+03, 1.50365187e+03, 1.40489614e+03, 1.56285088e+03, 1.45625568e+03, 1.36071865e+03, 1.51917349e+03, 1.41567092e+03, 1.32289014e+03, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT400to600' : [ 1.61388987e+03, 1.32286686e+03, ], 'CountWeightedFullL1PrefireNom_LHEHT400to600' : [ 1.45625568e+03, 1.46131841e+03, 1.44948333e+03, ], 'CountWeightedFullL1Prefire_LHEHT400to600' : [ 1.45625568e+03, 1.45028459e+03, 1.46227034e+03, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT400to600' : [ 1.61385855e+03, 1.50365187e+03, 1.40489614e+03, 1.56285088e+03, 1.45625568e+03, 1.36071865e+03, 1.51917349e+03, 1.41567092e+03, 1.32289014e+03, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT400to600' : [ 1.61388987e+03, 1.32286686e+03, ], 'Count_LHEHT600to800' : [ 113, ], 'CountWeighted_LHEHT600to800' : [ 1.19909476e+02, 1.16751321e+02, 1.23318615e+02, ], 'CountWeightedLHEWeightScale_LHEHT600to800' : [ 1.34105684e+02, 1.22502400e+02, 1.12464912e+02, 1.31254927e+02, 1.19909476e+02, 1.10094474e+02, 1.28797440e+02, 1.17674673e+02, 1.08051375e+02, ], 'CountWeightedLHEEnvelope_LHEHT600to800' : [ 1.34105684e+02, 1.08051375e+02, ], 'CountWeightedFull_LHEHT600to800' : [ 1.19909476e+02, 1.16751321e+02, 1.23318615e+02, ], 'CountWeightedFullLHEWeightScale_LHEHT600to800' : [ 1.34105684e+02, 1.22502400e+02, 1.12464912e+02, 1.31254927e+02, 1.19909476e+02, 1.10094474e+02, 1.28797440e+02, 1.17674673e+02, 1.08051375e+02, ], 'CountWeightedFullLHEEnvelope_LHEHT600to800' : [ 1.34105684e+02, 1.08051375e+02, ], 'CountWeightedL1PrefireNom_LHEHT600to800' : [ 1.19790005e+02, 1.16618222e+02, 1.23202964e+02, ], 'CountWeightedL1Prefire_LHEHT600to800' : [ 1.19790005e+02, 1.19762077e+02, 1.19816788e+02, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT600to800' : [ 1.33970688e+02, 1.22382929e+02, 1.12358494e+02, 1.31119931e+02, 1.19790005e+02, 1.09988056e+02, 1.28662444e+02, 1.17555202e+02, 1.07944956e+02, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT600to800' : [ 1.33970688e+02, 1.07944956e+02, ], 'CountWeightedFullL1PrefireNom_LHEHT600to800' : [ 1.19790005e+02, 1.16618222e+02, 1.23202964e+02, ], 'CountWeightedFullL1Prefire_LHEHT600to800' : [ 1.19790005e+02, 1.19762077e+02, 1.19816788e+02, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT600to800' : [ 1.33970688e+02, 1.22382929e+02, 1.12358494e+02, 1.31119931e+02, 1.19790005e+02, 1.09988056e+02, 1.28662444e+02, 1.17555202e+02, 1.07944956e+02, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT600to800' : [ 1.33970688e+02, 1.07944956e+02, ], 'Count_LHEHT800to1200' : [ 20, ], 'CountWeighted_LHEHT800to1200' : [ 2.11561793e+01, 2.14150252e+01, 2.07284757e+01, ], 'CountWeightedLHEWeightScale_LHEHT800to1200' : [ 2.38450400e+01, 2.14799793e+01, 1.94796284e+01, 2.34828840e+01, 2.11561793e+01, 1.91882446e+01, 2.31698270e+01, 2.08762261e+01, 1.89363185e+01, ], 'CountWeightedLHEEnvelope_LHEHT800to1200' : [ 2.38450400e+01, 1.89363185e+01, ], 'CountWeightedFull_LHEHT800to1200' : [ 2.11561793e+01, 2.14150252e+01, 2.07284757e+01, ], 'CountWeightedFullLHEWeightScale_LHEHT800to1200' : [ 2.38450400e+01, 2.14799793e+01, 1.94796284e+01, 2.34828840e+01, 2.11561793e+01, 1.91882446e+01, 2.31698270e+01, 2.08762261e+01, 1.89363185e+01, ], 'CountWeightedFullLHEEnvelope_LHEHT800to1200' : [ 2.38450400e+01, 1.89363185e+01, ], 'CountWeightedL1PrefireNom_LHEHT800to1200' : [ 2.11561793e+01, 2.14150252e+01, 2.07284757e+01, ], 'CountWeightedL1Prefire_LHEHT800to1200' : [ 2.11561793e+01, 2.11561793e+01, 2.11561793e+01, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT800to1200' : [ 2.38450400e+01, 2.14799793e+01, 1.94796284e+01, 2.34828840e+01, 2.11561793e+01, 1.91882446e+01, 2.31698270e+01, 2.08762261e+01, 1.89363185e+01, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT800to1200' : [ 2.38450400e+01, 1.89363185e+01, ], 'CountWeightedFullL1PrefireNom_LHEHT800to1200' : [ 2.11561793e+01, 2.14150252e+01, 2.07284757e+01, ], 'CountWeightedFullL1Prefire_LHEHT800to1200' : [ 2.11561793e+01, 2.11561793e+01, 2.11561793e+01, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT800to1200' : [ 2.38450400e+01, 2.14799793e+01, 1.94796284e+01, 2.34828840e+01, 2.11561793e+01, 1.91882446e+01, 2.31698270e+01, 2.08762261e+01, 1.89363185e+01, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT800to1200' : [ 2.38450400e+01, 1.89363185e+01, ], 'Count_LHEHT1200to2500' : [ 1, ], 'CountWeighted_LHEHT1200to2500' : [ 1.16879284e+00, 1.17786717e+00, 1.12439358e+00, ], 'CountWeightedLHEWeightScale_LHEHT1200to2500' : [ 1.37923837e+00, 1.16879284e+00, 9.99794424e-01, 1.37923837e+00, 1.16879284e+00, 9.99794424e-01, 1.37923837e+00, 1.16879284e+00, 9.99794424e-01, ], 'CountWeightedLHEEnvelope_LHEHT1200to2500' : [ 1.37923837e+00, 9.99794424e-01, ], 'CountWeightedFull_LHEHT1200to2500' : [ 1.16879284e+00, 1.17786717e+00, 1.12439358e+00, ], 'CountWeightedFullLHEWeightScale_LHEHT1200to2500' : [ 1.37923837e+00, 1.16879284e+00, 9.99794424e-01, 1.37923837e+00, 1.16879284e+00, 9.99794424e-01, 1.37923837e+00, 1.16879284e+00, 9.99794424e-01, ], 'CountWeightedFullLHEEnvelope_LHEHT1200to2500' : [ 1.37923837e+00, 9.99794424e-01, ], 'CountWeightedL1PrefireNom_LHEHT1200to2500' : [ 1.16879284e+00, 1.17786717e+00, 1.12439358e+00, ], 'CountWeightedL1Prefire_LHEHT1200to2500' : [ 1.16879284e+00, 1.16879284e+00, 1.16879284e+00, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT1200to2500' : [ 1.37923837e+00, 1.16879284e+00, 9.99794424e-01, 1.37923837e+00, 1.16879284e+00, 9.99794424e-01, 1.37923837e+00, 1.16879284e+00, 9.99794424e-01, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT1200to2500' : [ 1.37923837e+00, 9.99794424e-01, ], 'CountWeightedFullL1PrefireNom_LHEHT1200to2500' : [ 1.16879284e+00, 1.17786717e+00, 1.12439358e+00, ], 'CountWeightedFullL1Prefire_LHEHT1200to2500' : [ 1.16879284e+00, 1.16879284e+00, 1.16879284e+00, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT1200to2500' : [ 1.37923837e+00, 1.16879284e+00, 9.99794424e-01, 1.37923837e+00, 1.16879284e+00, 9.99794424e-01, 1.37923837e+00, 1.16879284e+00, 9.99794424e-01, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT1200to2500' : [ 1.37923837e+00, 9.99794424e-01, ], }), ("nof_tree_events", 54147812), ("nof_db_events", 54147812), ("fsize_local", 162626903432), # 162.63GB, avg file size 1.48GB ("fsize_db", 2175397601720), # 2.18TB, avg file size 2.72GB ("use_it", False), ("xsection", 9442.49), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Apr19_woPresel_nom_all_hh_multilepton/ntuples/W1JetsToLNu"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/W2JetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v5/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "EWK"), ("process_name_specific", "W2JetsToLNu"), ("nof_files", 66), ("nof_db_files", 522), ("nof_events", { 'Count' : [ 32368249, ], 'CountWeighted' : [ 3.23343386e+07, 3.23284814e+07, 3.23369776e+07, ], 'CountWeightedLHEWeightScale' : [ 3.05510620e+07, 3.33495980e+07, 3.53541930e+07, 2.96043098e+07, 3.23343386e+07, 3.42911435e+07, 2.88302988e+07, 3.15037035e+07, 3.34223872e+07, ], 'CountWeightedLHEEnvelope' : [ 3.52332291e+07, 2.89273343e+07, ], 'CountWeightedFull' : [ 3.23343386e+07, 3.23284814e+07, 3.23369776e+07, ], 'CountWeightedFullLHEWeightScale' : [ 3.05510620e+07, 3.33495980e+07, 3.53541930e+07, 2.96043098e+07, 3.23343386e+07, 3.42911435e+07, 2.88302988e+07, 3.15037035e+07, 3.34223872e+07, ], 'CountWeightedFullLHEEnvelope' : [ 3.52332291e+07, 2.89273343e+07, ], 'CountWeightedL1PrefireNom' : [ 3.18333140e+07, 3.18285194e+07, 3.18360488e+07, ], 'CountWeightedL1Prefire' : [ 3.18333140e+07, 3.17009665e+07, 3.19596563e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 3.00587686e+07, 3.28298859e+07, 3.48176272e+07, 2.91302025e+07, 3.18333140e+07, 3.37736842e+07, 2.83710300e+07, 3.10182325e+07, 3.29205147e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 3.46899901e+07, 2.84737701e+07, ], 'CountWeightedFullL1PrefireNom' : [ 3.18333140e+07, 3.18285194e+07, 3.18360488e+07, ], 'CountWeightedFullL1Prefire' : [ 3.18333140e+07, 3.17009665e+07, 3.19596563e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 3.00587686e+07, 3.28298859e+07, 3.48176272e+07, 2.91302025e+07, 3.18333140e+07, 3.37736842e+07, 2.83710300e+07, 3.10182325e+07, 3.29205147e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 3.46899901e+07, 2.84737701e+07, ], 'Count_LHEHT0to70' : [ 17398400, ], 'CountWeighted_LHEHT0to70' : [ 1.73829726e+07, 1.73843209e+07, 1.73836361e+07, ], 'CountWeightedLHEWeightScale_LHEHT0to70' : [ 1.58036795e+07, 1.78514983e+07, 1.93882317e+07, 1.53828612e+07, 1.73829726e+07, 1.88850662e+07, 1.50395618e+07, 1.70012702e+07, 1.84747191e+07, ], 'CountWeightedLHEEnvelope_LHEHT0to70' : [ 1.91758970e+07, 1.52000559e+07, ], 'CountWeightedFull_LHEHT0to70' : [ 1.73829726e+07, 1.73843209e+07, 1.73836361e+07, ], 'CountWeightedFullLHEWeightScale_LHEHT0to70' : [ 1.58036795e+07, 1.78514983e+07, 1.93882317e+07, 1.53828612e+07, 1.73829726e+07, 1.88850662e+07, 1.50395618e+07, 1.70012702e+07, 1.84747191e+07, ], 'CountWeightedFullLHEEnvelope_LHEHT0to70' : [ 1.91758970e+07, 1.52000559e+07, ], 'CountWeightedL1PrefireNom_LHEHT0to70' : [ 1.72263020e+07, 1.72270516e+07, 1.72270450e+07, ], 'CountWeightedL1Prefire_LHEHT0to70' : [ 1.72263020e+07, 1.71804568e+07, 1.72686589e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT0to70' : [ 1.56600200e+07, 1.76904709e+07, 1.92140193e+07, 1.52430797e+07, 1.72263020e+07, 1.87154359e+07, 1.49029468e+07, 1.68480387e+07, 1.83088336e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT0to70' : [ 1.90033302e+07, 1.50621993e+07, ], 'CountWeightedFullL1PrefireNom_LHEHT0to70' : [ 1.72263020e+07, 1.72270516e+07, 1.72270450e+07, ], 'CountWeightedFullL1Prefire_LHEHT0to70' : [ 1.72263020e+07, 1.71804568e+07, 1.72686589e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT0to70' : [ 1.56600200e+07, 1.76904709e+07, 1.92140193e+07, 1.52430797e+07, 1.72263020e+07, 1.87154359e+07, 1.49029468e+07, 1.68480387e+07, 1.83088336e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT0to70' : [ 1.90033302e+07, 1.50621993e+07, ], 'Count_LHEHT70to100' : [ 8079775, ], 'CountWeighted_LHEHT70to100' : [ 8.07154599e+06, 8.07096910e+06, 8.07234160e+06, ], 'CountWeightedLHEWeightScale_LHEHT70to100' : [ 7.76015913e+06, 8.32901073e+06, 8.71815616e+06, 7.51868761e+06, 8.07154599e+06, 8.45000354e+06, 7.32054007e+06, 7.86039030e+06, 8.22999450e+06, ], 'CountWeightedLHEEnvelope_LHEHT70to100' : [ 8.68725357e+06, 7.35476698e+06, ], 'CountWeightedFull_LHEHT70to100' : [ 8.07154599e+06, 8.07096910e+06, 8.07234160e+06, ], 'CountWeightedFullLHEWeightScale_LHEHT70to100' : [ 7.76015913e+06, 8.32901073e+06, 8.71815616e+06, 7.51868761e+06, 8.07154599e+06, 8.45000354e+06, 7.32054007e+06, 7.86039030e+06, 8.22999450e+06, ], 'CountWeightedFullLHEEnvelope_LHEHT70to100' : [ 8.68725357e+06, 7.35476698e+06, ], 'CountWeightedL1PrefireNom_LHEHT70to100' : [ 7.95188407e+06, 7.95101772e+06, 7.95286318e+06, ], 'CountWeightedL1Prefire_LHEHT70to100' : [ 7.95188407e+06, 7.91884859e+06, 7.98310027e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT70to100' : [ 7.64437980e+06, 8.20549950e+06, 8.58949786e+06, 7.40651867e+06, 7.95188407e+06, 8.32530994e+06, 7.21133899e+06, 7.74385613e+06, 8.10855999e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT70to100' : [ 8.55865207e+06, 7.24541363e+06, ], 'CountWeightedFullL1PrefireNom_LHEHT70to100' : [ 7.95188407e+06, 7.95101772e+06, 7.95286318e+06, ], 'CountWeightedFullL1Prefire_LHEHT70to100' : [ 7.95188407e+06, 7.91884859e+06, 7.98310027e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT70to100' : [ 7.64437980e+06, 8.20549950e+06, 8.58949786e+06, 7.40651867e+06, 7.95188407e+06, 8.32530994e+06, 7.21133899e+06, 7.74385613e+06, 8.10855999e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT70to100' : [ 8.55865207e+06, 7.24541363e+06, ], 'Count_LHEHT100to200' : [ 6047459, ], 'CountWeighted_LHEHT100to200' : [ 6.03769188e+06, 6.03803574e+06, 6.03738915e+06, ], 'CountWeightedLHEWeightScale_LHEHT100to200' : [ 6.06729131e+06, 6.26536331e+06, 6.36768755e+06, 5.84610581e+06, 6.03769188e+06, 6.13683158e+06, 5.66431906e+06, 5.85066585e+06, 5.94711653e+06, ], 'CountWeightedLHEEnvelope_LHEHT100to200' : [ 6.44000811e+06, 5.60933218e+06, ], 'CountWeightedFull_LHEHT100to200' : [ 6.03769188e+06, 6.03803574e+06, 6.03738915e+06, ], 'CountWeightedFullLHEWeightScale_LHEHT100to200' : [ 6.06729131e+06, 6.26536331e+06, 6.36768755e+06, 5.84610581e+06, 6.03769188e+06, 6.13683158e+06, 5.66431906e+06, 5.85066585e+06, 5.94711653e+06, ], 'CountWeightedFullLHEEnvelope_LHEHT100to200' : [ 6.44000811e+06, 5.60933218e+06, ], 'CountWeightedL1PrefireNom_LHEHT100to200' : [ 5.86196167e+06, 5.86192689e+06, 5.86193819e+06, ], 'CountWeightedL1Prefire_LHEHT100to200' : [ 5.86196167e+06, 5.81897343e+06, 5.90418091e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT100to200' : [ 5.88835257e+06, 6.08279480e+06, 6.18398433e+06, 5.67387327e+06, 5.86196167e+06, 5.95997357e+06, 5.49759452e+06, 5.68051922e+06, 5.77588089e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT100to200' : [ 6.25219073e+06, 5.44604911e+06, ], 'CountWeightedFullL1PrefireNom_LHEHT100to200' : [ 5.86196167e+06, 5.86192689e+06, 5.86193819e+06, ], 'CountWeightedFullL1Prefire_LHEHT100to200' : [ 5.86196167e+06, 5.81897343e+06, 5.90418091e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT100to200' : [ 5.88835257e+06, 6.08279480e+06, 6.18398433e+06, 5.67387327e+06, 5.86196167e+06, 5.95997357e+06, 5.49759452e+06, 5.68051922e+06, 5.77588089e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT100to200' : [ 6.25219073e+06, 5.44604911e+06, ], 'Count_LHEHT200to400' : [ 786273, ], 'CountWeighted_LHEHT200to400' : [ 7.84118674e+05, 7.84229587e+05, 7.83988086e+05, ], 'CountWeightedLHEWeightScale_LHEHT200to400' : [ 8.54991298e+05, 8.40743958e+05, 8.21978092e+05, 7.97549593e+05, 7.84118674e+05, 7.66458425e+05, 7.51500712e+05, 7.38732990e+05, 7.21971429e+05, ], 'CountWeightedLHEEnvelope_LHEHT200to400' : [ 8.65250444e+05, 7.14570944e+05, ], 'CountWeightedFull_LHEHT200to400' : [ 7.84118674e+05, 7.84229587e+05, 7.83988086e+05, ], 'CountWeightedFullLHEWeightScale_LHEHT200to400' : [ 8.54991298e+05, 8.40743958e+05, 8.21978092e+05, 7.97549593e+05, 7.84118674e+05, 7.66458425e+05, 7.51500712e+05, 7.38732990e+05, 7.21971429e+05, ], 'CountWeightedFullLHEEnvelope_LHEHT200to400' : [ 8.65250444e+05, 7.14570944e+05, ], 'CountWeightedL1PrefireNom_LHEHT200to400' : [ 7.39724825e+05, 7.39754362e+05, 7.39680946e+05, ], 'CountWeightedL1Prefire_LHEHT200to400' : [ 7.39724825e+05, 7.29994102e+05, 7.49499297e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT200to400' : [ 8.05572032e+05, 7.92903337e+05, 7.75834409e+05, 7.51681340e+05, 7.39724825e+05, 7.23650289e+05, 7.08472892e+05, 6.97096748e+05, 6.81830106e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT200to400' : [ 8.15487186e+05, 6.74656642e+05, ], 'CountWeightedFullL1PrefireNom_LHEHT200to400' : [ 7.39724825e+05, 7.39754362e+05, 7.39680946e+05, ], 'CountWeightedFullL1Prefire_LHEHT200to400' : [ 7.39724825e+05, 7.29994102e+05, 7.49499297e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT200to400' : [ 8.05572032e+05, 7.92903337e+05, 7.75834409e+05, 7.51681340e+05, 7.39724825e+05, 7.23650289e+05, 7.08472892e+05, 6.97096748e+05, 6.81830106e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT200to400' : [ 8.15487186e+05, 6.74656642e+05, ], 'Count_LHEHT400to600' : [ 47359, ], 'CountWeighted_LHEHT400to600' : [ 4.70737545e+04, 4.71084173e+04, 4.70258830e+04, ], 'CountWeightedLHEWeightScale_LHEHT400to600' : [ 5.44452677e+04, 5.17170132e+04, 4.91564133e+04, 4.95814243e+04, 4.70737545e+04, 4.47235639e+04, 4.56705861e+04, 4.33410883e+04, 4.11606928e+04, ], 'CountWeightedLHEEnvelope_LHEHT400to600' : [ 5.45565617e+04, 4.11061611e+04, ], 'CountWeightedFull_LHEHT400to600' : [ 4.70737545e+04, 4.71084173e+04, 4.70258830e+04, ], 'CountWeightedFullLHEWeightScale_LHEHT400to600' : [ 5.44452677e+04, 5.17170132e+04, 4.91564133e+04, 4.95814243e+04, 4.70737545e+04, 4.47235639e+04, 4.56705861e+04, 4.33410883e+04, 4.11606928e+04, ], 'CountWeightedFullLHEEnvelope_LHEHT400to600' : [ 5.45565617e+04, 4.11061611e+04, ], 'CountWeightedL1PrefireNom_LHEHT400to600' : [ 4.38081894e+04, 4.38410409e+04, 4.37569435e+04, ], 'CountWeightedL1Prefire_LHEHT400to600' : [ 4.38081894e+04, 4.31277687e+04, 4.44959129e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT400to600' : [ 5.05555337e+04, 4.81007303e+04, 4.57841239e+04, 4.60675434e+04, 4.38081894e+04, 4.16793568e+04, 4.24581483e+04, 4.03567782e+04, 3.83795649e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT400to600' : [ 5.06636851e+04, 3.83262470e+04, ], 'CountWeightedFullL1PrefireNom_LHEHT400to600' : [ 4.38081894e+04, 4.38410409e+04, 4.37569435e+04, ], 'CountWeightedFullL1Prefire_LHEHT400to600' : [ 4.38081894e+04, 4.31277687e+04, 4.44959129e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT400to600' : [ 5.05555337e+04, 4.81007303e+04, 4.57841239e+04, 4.60675434e+04, 4.38081894e+04, 4.16793568e+04, 4.24581483e+04, 4.03567782e+04, 3.83795649e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT400to600' : [ 5.06636851e+04, 3.83262470e+04, ], 'Count_LHEHT600to800' : [ 6799, ], 'CountWeighted_LHEHT600to800' : [ 6.73139962e+03, 6.74289458e+03, 6.71720699e+03, ], 'CountWeightedLHEWeightScale_LHEHT600to800' : [ 7.96908210e+03, 7.44270908e+03, 6.97421561e+03, 7.21011804e+03, 6.73139962e+03, 6.30570492e+03, 6.59620102e+03, 6.15608841e+03, 5.76504928e+03, ], 'CountWeightedLHEEnvelope_LHEHT600to800' : [ 7.97470154e+03, 5.76277325e+03, ], 'CountWeightedFull_LHEHT600to800' : [ 6.73139962e+03, 6.74289458e+03, 6.71720699e+03, ], 'CountWeightedFullLHEWeightScale_LHEHT600to800' : [ 7.96908210e+03, 7.44270908e+03, 6.97421561e+03, 7.21011804e+03, 6.73139962e+03, 6.30570492e+03, 6.59620102e+03, 6.15608841e+03, 5.76504928e+03, ], 'CountWeightedFullLHEEnvelope_LHEHT600to800' : [ 7.97470154e+03, 5.76277325e+03, ], 'CountWeightedL1PrefireNom_LHEHT600to800' : [ 6.30052951e+03, 6.31019198e+03, 6.28676637e+03, ], 'CountWeightedL1Prefire_LHEHT600to800' : [ 6.30052951e+03, 6.21167770e+03, 6.39065699e+03, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT600to800' : [ 7.44028728e+03, 6.96253197e+03, 6.53554694e+03, 6.73553988e+03, 6.30052951e+03, 5.91213607e+03, 6.16534510e+03, 5.76497679e+03, 5.40784420e+03, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT600to800' : [ 7.44576919e+03, 5.40559483e+03, ], 'CountWeightedFullL1PrefireNom_LHEHT600to800' : [ 6.30052951e+03, 6.31019198e+03, 6.28676637e+03, ], 'CountWeightedFullL1Prefire_LHEHT600to800' : [ 6.30052951e+03, 6.21167770e+03, 6.39065699e+03, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT600to800' : [ 7.44028728e+03, 6.96253197e+03, 6.53554694e+03, 6.73553988e+03, 6.30052951e+03, 5.91213607e+03, 6.16534510e+03, 5.76497679e+03, 5.40784420e+03, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT600to800' : [ 7.44576919e+03, 5.40559483e+03, ], 'Count_LHEHT800to1200' : [ 1921, ], 'CountWeighted_LHEHT800to1200' : [ 1.89350601e+03, 1.90202956e+03, 1.88874097e+03, ], 'CountWeightedLHEWeightScale_LHEHT800to1200' : [ 2.26706963e+03, 2.09217423e+03, 1.94017277e+03, 2.05249259e+03, 1.89350601e+03, 1.75544379e+03, 1.87760677e+03, 1.73159833e+03, 1.60490168e+03, ], 'CountWeightedLHEEnvelope_LHEHT800to1200' : [ 2.26768574e+03, 1.60475534e+03, ], 'CountWeightedFull_LHEHT800to1200' : [ 1.89350601e+03, 1.90202956e+03, 1.88874097e+03, ], 'CountWeightedFullLHEWeightScale_LHEHT800to1200' : [ 2.26706963e+03, 2.09217423e+03, 1.94017277e+03, 2.05249259e+03, 1.89350601e+03, 1.75544379e+03, 1.87760677e+03, 1.73159833e+03, 1.60490168e+03, ], 'CountWeightedFullLHEEnvelope_LHEHT800to1200' : [ 2.26768574e+03, 1.60475534e+03, ], 'CountWeightedL1PrefireNom_LHEHT800to1200' : [ 1.83089073e+03, 1.83854842e+03, 1.82691124e+03, ], 'CountWeightedL1Prefire_LHEHT800to1200' : [ 1.83089073e+03, 1.81744014e+03, 1.84431085e+03, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT800to1200' : [ 2.18992044e+03, 2.02304268e+03, 1.87776508e+03, 1.98261820e+03, 1.83089073e+03, 1.69891750e+03, 1.81369860e+03, 1.67432812e+03, 1.55320017e+03, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT800to1200' : [ 2.19053201e+03, 1.55305460e+03, ], 'CountWeightedFullL1PrefireNom_LHEHT800to1200' : [ 1.83089073e+03, 1.83854842e+03, 1.82691124e+03, ], 'CountWeightedFullL1Prefire_LHEHT800to1200' : [ 1.83089073e+03, 1.81744014e+03, 1.84431085e+03, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT800to1200' : [ 2.18992044e+03, 2.02304268e+03, 1.87776508e+03, 1.98261820e+03, 1.83089073e+03, 1.69891750e+03, 1.81369860e+03, 1.67432812e+03, 1.55320017e+03, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT800to1200' : [ 2.19053201e+03, 1.55305460e+03, ], 'Count_LHEHT1200to2500' : [ 261, ], 'CountWeighted_LHEHT1200to2500' : [ 2.52708477e+02, 2.56946262e+02, 2.48168076e+02, ], 'CountWeightedLHEWeightScale_LHEHT1200to2500' : [ 3.09067721e+02, 2.80477787e+02, 2.56260974e+02, 2.78461521e+02, 2.52708477e+02, 2.30896349e+02, 2.53424869e+02, 2.29987498e+02, 2.10138207e+02, ], 'CountWeightedLHEEnvelope_LHEHT1200to2500' : [ 3.09144197e+02, 2.10109733e+02, ], 'CountWeightedFull_LHEHT1200to2500' : [ 2.52708477e+02, 2.56946262e+02, 2.48168076e+02, ], 'CountWeightedFullLHEWeightScale_LHEHT1200to2500' : [ 3.09067721e+02, 2.80477787e+02, 2.56260974e+02, 2.78461521e+02, 2.52708477e+02, 2.30896349e+02, 2.53424869e+02, 2.29987498e+02, 2.10138207e+02, ], 'CountWeightedFullLHEEnvelope_LHEHT1200to2500' : [ 3.09144197e+02, 2.10109733e+02, ], 'CountWeightedL1PrefireNom_LHEHT1200to2500' : [ 2.47871940e+02, 2.52135881e+02, 2.43237414e+02, ], 'CountWeightedL1Prefire_LHEHT1200to2500' : [ 2.47871940e+02, 2.46789525e+02, 2.48956730e+02, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT1200to2500' : [ 3.03011211e+02, 2.75100450e+02, 2.51447266e+02, 2.73014752e+02, 2.47871940e+02, 2.26566449e+02, 2.48476917e+02, 2.25593515e+02, 2.06204243e+02, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT1200to2500' : [ 3.03081910e+02, 2.06178450e+02, ], 'CountWeightedFullL1PrefireNom_LHEHT1200to2500' : [ 2.47871940e+02, 2.52135881e+02, 2.43237414e+02, ], 'CountWeightedFullL1Prefire_LHEHT1200to2500' : [ 2.47871940e+02, 2.46789525e+02, 2.48956730e+02, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT1200to2500' : [ 3.03011211e+02, 2.75100450e+02, 2.51447266e+02, 2.73014752e+02, 2.47871940e+02, 2.26566449e+02, 2.48476917e+02, 2.25593515e+02, 2.06204243e+02, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT1200to2500' : [ 3.03081910e+02, 2.06178450e+02, ], 'Count_LHEHT2500toInf' : [ 2, ], 'CountWeighted_LHEHT2500toInf' : [ 2.10151392e+00, 1.98064715e+00, 2.22568458e+00, ], 'CountWeightedLHEWeightScale_LHEHT2500toInf' : [ 2.66631699e+00, 2.36502445e+00, 2.11494190e+00, 2.36958742e+00, 2.10151392e+00, 1.87901562e+00, 2.12862724e+00, 1.88756728e+00, 1.68746954e+00, ], 'CountWeightedLHEEnvelope_LHEHT2500toInf' : [ 2.66631699e+00, 1.68746954e+00, ], 'CountWeightedFull_LHEHT2500toInf' : [ 2.10151392e+00, 1.98064715e+00, 2.22568458e+00, ], 'CountWeightedFullLHEWeightScale_LHEHT2500toInf' : [ 2.66631699e+00, 2.36502445e+00, 2.11494190e+00, 2.36958742e+00, 2.10151392e+00, 1.87901562e+00, 2.12862724e+00, 1.88756728e+00, 1.68746954e+00, ], 'CountWeightedFullLHEEnvelope_LHEHT2500toInf' : [ 2.66631699e+00, 1.68746954e+00, ], 'CountWeightedL1PrefireNom_LHEHT2500toInf' : [ 2.10151392e+00, 1.98064715e+00, 2.22568458e+00, ], 'CountWeightedL1Prefire_LHEHT2500toInf' : [ 2.10151392e+00, 2.10151392e+00, 2.10151392e+00, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT2500toInf' : [ 2.66631699e+00, 2.36502445e+00, 2.11494190e+00, 2.36958742e+00, 2.10151392e+00, 1.87901562e+00, 2.12862724e+00, 1.88756728e+00, 1.68746954e+00, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT2500toInf' : [ 2.66631699e+00, 1.68746954e+00, ], 'CountWeightedFullL1PrefireNom_LHEHT2500toInf' : [ 2.10151392e+00, 1.98064715e+00, 2.22568458e+00, ], 'CountWeightedFullL1Prefire_LHEHT2500toInf' : [ 2.10151392e+00, 2.10151392e+00, 2.10151392e+00, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT2500toInf' : [ 2.66631699e+00, 2.36502445e+00, 2.11494190e+00, 2.36958742e+00, 2.10151392e+00, 1.87901562e+00, 2.12862724e+00, 1.88756728e+00, 1.68746954e+00, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT2500toInf' : [ 2.66631699e+00, 1.68746954e+00, ], }), ("nof_tree_events", 32368249), ("nof_db_events", 32368249), ("fsize_local", 119695929697), # 119.70GB, avg file size 1.81GB ("fsize_db", 1391019305711), # 1.39TB, avg file size 2.66GB ("use_it", False), ("xsection", 3252.49), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Apr19_woPresel_nom_all_hh_multilepton/ntuples/W2JetsToLNu"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/W3JetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "EWK"), ("process_name_specific", "W3JetsToLNu"), ("nof_files", 40), ("nof_db_files", 250), ("nof_events", { 'Count' : [ 19700377, ], 'CountWeighted' : [ 1.96668330e+07, 1.96663579e+07, 1.96735715e+07, ], 'CountWeightedLHEWeightScale' : [ 2.00328850e+07, 2.05835666e+07, 2.07743225e+07, 1.91318243e+07, 1.96668330e+07, 1.98575272e+07, 1.83982779e+07, 1.89225536e+07, 1.91110100e+07, ], 'CountWeightedLHEEnvelope' : [ 2.14196787e+07, 1.78548725e+07, ], 'CountWeightedFull' : [ 1.96668330e+07, 1.96663579e+07, 1.96735715e+07, ], 'CountWeightedFullLHEWeightScale' : [ 2.00328850e+07, 2.05835666e+07, 2.07743225e+07, 1.91318243e+07, 1.96668330e+07, 1.98575272e+07, 1.83982779e+07, 1.89225536e+07, 1.91110100e+07, ], 'CountWeightedFullLHEEnvelope' : [ 2.14196787e+07, 1.78548725e+07, ], 'CountWeightedL1PrefireNom' : [ 1.92216480e+07, 1.92206644e+07, 1.92265144e+07, ], 'CountWeightedL1Prefire' : [ 1.92216480e+07, 1.91081524e+07, 1.93307421e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 1.95597279e+07, 2.01132093e+07, 2.03106573e+07, 1.86838204e+07, 1.92216480e+07, 1.94179694e+07, 1.79706101e+07, 1.84968292e+07, 1.86909460e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 2.09265658e+07, 1.74524549e+07, ], 'CountWeightedFullL1PrefireNom' : [ 1.92216480e+07, 1.92206644e+07, 1.92265144e+07, ], 'CountWeightedFullL1Prefire' : [ 1.92216480e+07, 1.91081524e+07, 1.93307421e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 1.95597279e+07, 2.01132093e+07, 2.03106573e+07, 1.86838204e+07, 1.92216480e+07, 1.94179694e+07, 1.79706101e+07, 1.84968292e+07, 1.86909460e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 2.09265658e+07, 1.74524549e+07, ], 'Count_LHEHT0to70' : [ 1615921, ], 'CountWeighted_LHEHT0to70' : [ 1.61525799e+06, 1.61526905e+06, 1.61508726e+06, ], 'CountWeightedLHEWeightScale_LHEHT0to70' : [ 1.55040456e+06, 1.68782318e+06, 1.77498062e+06, 1.48280877e+06, 1.61525799e+06, 1.69940632e+06, 1.42773387e+06, 1.55614789e+06, 1.63783972e+06, ], 'CountWeightedLHEEnvelope_LHEHT0to70' : [ 1.77780696e+06, 1.42565965e+06, ], 'CountWeightedFull_LHEHT0to70' : [ 1.61525799e+06, 1.61526905e+06, 1.61508726e+06, ], 'CountWeightedFullLHEWeightScale_LHEHT0to70' : [ 1.55040456e+06, 1.68782318e+06, 1.77498062e+06, 1.48280877e+06, 1.61525799e+06, 1.69940632e+06, 1.42773387e+06, 1.55614789e+06, 1.63783972e+06, ], 'CountWeightedFullLHEEnvelope_LHEHT0to70' : [ 1.77780696e+06, 1.42565965e+06, ], 'CountWeightedL1PrefireNom_LHEHT0to70' : [ 1.60054742e+06, 1.60051414e+06, 1.60041790e+06, ], 'CountWeightedL1Prefire_LHEHT0to70' : [ 1.60054742e+06, 1.59623039e+06, 1.60451578e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT0to70' : [ 1.53615181e+06, 1.67241622e+06, 1.75885856e+06, 1.46920820e+06, 1.60054742e+06, 1.68400457e+06, 1.41466521e+06, 1.54200274e+06, 1.62302548e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT0to70' : [ 1.76158924e+06, 1.41267020e+06, ], 'CountWeightedFullL1PrefireNom_LHEHT0to70' : [ 1.60054742e+06, 1.60051414e+06, 1.60041790e+06, ], 'CountWeightedFullL1Prefire_LHEHT0to70' : [ 1.60054742e+06, 1.59623039e+06, 1.60451578e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT0to70' : [ 1.53615181e+06, 1.67241622e+06, 1.75885856e+06, 1.46920820e+06, 1.60054742e+06, 1.68400457e+06, 1.41466521e+06, 1.54200274e+06, 1.62302548e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT0to70' : [ 1.76158924e+06, 1.41267020e+06, ], 'Count_LHEHT70to100' : [ 5426533, ], 'CountWeighted_LHEHT70to100' : [ 5.42095759e+06, 5.42104796e+06, 5.42100610e+06, ], 'CountWeightedLHEWeightScale_LHEHT70to100' : [ 5.33522218e+06, 5.63890213e+06, 5.80880220e+06, 5.12700784e+06, 5.42095759e+06, 5.58588585e+06, 4.95686999e+06, 5.24294040e+06, 5.40375369e+06, ], 'CountWeightedLHEEnvelope_LHEHT70to100' : [ 5.88605417e+06, 4.89566889e+06, ], 'CountWeightedFull_LHEHT70to100' : [ 5.42095759e+06, 5.42104796e+06, 5.42100610e+06, ], 'CountWeightedFullLHEWeightScale_LHEHT70to100' : [ 5.33522218e+06, 5.63890213e+06, 5.80880220e+06, 5.12700784e+06, 5.42095759e+06, 5.58588585e+06, 4.95686999e+06, 5.24294040e+06, 5.40375369e+06, ], 'CountWeightedFullLHEEnvelope_LHEHT70to100' : [ 5.88605417e+06, 4.89566889e+06, ], 'CountWeightedL1PrefireNom_LHEHT70to100' : [ 5.35988535e+06, 5.35983460e+06, 5.36005210e+06, ], 'CountWeightedL1Prefire_LHEHT70to100' : [ 5.35988535e+06, 5.34206027e+06, 5.37624484e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT70to100' : [ 5.27461616e+06, 5.57534031e+06, 5.74369248e+06, 5.06879219e+06, 5.35988535e+06, 5.52329894e+06, 4.90061108e+06, 5.18388634e+06, 5.34323024e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT70to100' : [ 5.81964602e+06, 4.84049336e+06, ], 'CountWeightedFullL1PrefireNom_LHEHT70to100' : [ 5.35988535e+06, 5.35983460e+06, 5.36005210e+06, ], 'CountWeightedFullL1Prefire_LHEHT70to100' : [ 5.35988535e+06, 5.34206027e+06, 5.37624484e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT70to100' : [ 5.27461616e+06, 5.57534031e+06, 5.74369248e+06, 5.06879219e+06, 5.35988535e+06, 5.52329894e+06, 4.90061108e+06, 5.18388634e+06, 5.34323024e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT70to100' : [ 5.81964602e+06, 4.84049336e+06, ], 'Count_LHEHT100to200' : [ 9948973, ], 'CountWeighted_LHEHT100to200' : [ 9.93167997e+06, 9.93179066e+06, 9.93120423e+06, ], 'CountWeightedLHEWeightScale_LHEHT100to200' : [ 1.01561594e+07, 1.03552514e+07, 1.03874809e+07, 9.73867581e+06, 9.93167997e+06, 9.96389859e+06, 9.39656083e+06, 9.58444708e+06, 9.61679792e+06, ], 'CountWeightedLHEEnvelope_LHEHT100to200' : [ 1.07241022e+07, 9.11128120e+06, ], 'CountWeightedFull_LHEHT100to200' : [ 9.93167997e+06, 9.93179066e+06, 9.93120423e+06, ], 'CountWeightedFullLHEWeightScale_LHEHT100to200' : [ 1.01561594e+07, 1.03552514e+07, 1.03874809e+07, 9.73867581e+06, 9.93167997e+06, 9.96389859e+06, 9.39656083e+06, 9.58444708e+06, 9.61679792e+06, ], 'CountWeightedFullLHEEnvelope_LHEHT100to200' : [ 1.07241022e+07, 9.11128120e+06, ], 'CountWeightedL1PrefireNom_LHEHT100to200' : [ 9.70578411e+06, 9.70573814e+06, 9.70575978e+06, ], 'CountWeightedL1Prefire_LHEHT100to200' : [ 9.70578411e+06, 9.64689928e+06, 9.76235555e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT100to200' : [ 9.92197764e+06, 1.01195619e+07, 1.01536990e+07, 9.51430356e+06, 9.70578411e+06, 9.73983658e+06, 9.18022312e+06, 9.36665078e+06, 9.40070277e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT100to200' : [ 1.04792026e+07, 8.90461703e+06, ], 'CountWeightedFullL1PrefireNom_LHEHT100to200' : [ 9.70578411e+06, 9.70573814e+06, 9.70575978e+06, ], 'CountWeightedFullL1Prefire_LHEHT100to200' : [ 9.70578411e+06, 9.64689928e+06, 9.76235555e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT100to200' : [ 9.92197764e+06, 1.01195619e+07, 1.01536990e+07, 9.51430356e+06, 9.70578411e+06, 9.73983658e+06, 9.18022312e+06, 9.36665078e+06, 9.40070277e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT100to200' : [ 1.04792026e+07, 8.90461703e+06, ], 'Count_LHEHT200to400' : [ 2447022, ], 'CountWeighted_LHEHT200to400' : [ 2.44077193e+06, 2.44069302e+06, 2.44091846e+06, ], 'CountWeightedLHEWeightScale_LHEHT200to400' : [ 2.68244545e+06, 2.61466655e+06, 2.53281134e+06, 2.50421958e+06, 2.44077193e+06, 2.36414293e+06, 2.36155974e+06, 2.30163064e+06, 2.22916985e+06, ], 'CountWeightedLHEEnvelope_LHEHT200to400' : [ 2.72238991e+06, 2.19921671e+06, ], 'CountWeightedFull_LHEHT200to400' : [ 2.44077193e+06, 2.44069302e+06, 2.44091846e+06, ], 'CountWeightedFullLHEWeightScale_LHEHT200to400' : [ 2.68244545e+06, 2.61466655e+06, 2.53281134e+06, 2.50421958e+06, 2.44077193e+06, 2.36414293e+06, 2.36155974e+06, 2.30163064e+06, 2.22916985e+06, ], 'CountWeightedFullLHEEnvelope_LHEHT200to400' : [ 2.72238991e+06, 2.19921671e+06, ], 'CountWeightedL1PrefireNom_LHEHT200to400' : [ 2.31436463e+06, 2.31411017e+06, 2.31464753e+06, ], 'CountWeightedL1Prefire_LHEHT200to400' : [ 2.31436463e+06, 2.28563357e+06, 2.34298368e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT200to400' : [ 2.54055249e+06, 2.47862518e+06, 2.40284770e+06, 2.37234708e+06, 2.31436463e+06, 2.24339386e+06, 2.23768145e+06, 2.18289184e+06, 2.11576936e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT200to400' : [ 2.57899882e+06, 2.08686730e+06, ], 'CountWeightedFullL1PrefireNom_LHEHT200to400' : [ 2.31436463e+06, 2.31411017e+06, 2.31464753e+06, ], 'CountWeightedFullL1Prefire_LHEHT200to400' : [ 2.31436463e+06, 2.28563357e+06, 2.34298368e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT200to400' : [ 2.54055249e+06, 2.47862518e+06, 2.40284770e+06, 2.37234708e+06, 2.31436463e+06, 2.24339386e+06, 2.23768145e+06, 2.18289184e+06, 2.11576936e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT200to400' : [ 2.57899882e+06, 2.08686730e+06, ], 'Count_LHEHT400to600' : [ 212467, ], 'CountWeighted_LHEHT400to600' : [ 2.11732502e+05, 2.11606994e+05, 2.11835748e+05, ], 'CountWeightedLHEWeightScale_LHEHT400to600' : [ 2.48972625e+05, 2.33880231e+05, 2.19916074e+05, 2.25494615e+05, 2.11732502e+05, 1.99012792e+05, 2.06809515e+05, 1.94108951e+05, 1.82381976e+05, ], 'CountWeightedLHEEnvelope_LHEHT400to600' : [ 2.49758265e+05, 1.81940649e+05, ], 'CountWeightedFull_LHEHT400to600' : [ 2.11732502e+05, 2.11606994e+05, 2.11835748e+05, ], 'CountWeightedFullLHEWeightScale_LHEHT400to600' : [ 2.48972625e+05, 2.33880231e+05, 2.19916074e+05, 2.25494615e+05, 2.11732502e+05, 1.99012792e+05, 2.06809515e+05, 1.94108951e+05, 1.82381976e+05, ], 'CountWeightedFullLHEEnvelope_LHEHT400to600' : [ 2.49758265e+05, 1.81940649e+05, ], 'CountWeightedL1PrefireNom_LHEHT400to600' : [ 1.96390677e+05, 1.96270255e+05, 1.96494440e+05, ], 'CountWeightedL1Prefire_LHEHT400to600' : [ 1.96390677e+05, 1.93137375e+05, 1.99667682e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT400to600' : [ 2.30396044e+05, 2.16794061e+05, 2.04142598e+05, 2.08808655e+05, 1.96390677e+05, 1.84853963e+05, 1.91621326e+05, 1.80148896e+05, 1.69502093e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT400to600' : [ 2.31145068e+05, 1.69079241e+05, ], 'CountWeightedFullL1PrefireNom_LHEHT400to600' : [ 1.96390677e+05, 1.96270255e+05, 1.96494440e+05, ], 'CountWeightedFullL1Prefire_LHEHT400to600' : [ 1.96390677e+05, 1.93137375e+05, 1.99667682e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT400to600' : [ 2.30396044e+05, 2.16794061e+05, 2.04142598e+05, 2.08808655e+05, 1.96390677e+05, 1.84853963e+05, 1.91621326e+05, 1.80148896e+05, 1.69502093e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT400to600' : [ 2.31145068e+05, 1.69079241e+05, ], 'Count_LHEHT600to800' : [ 36157, ], 'CountWeighted_LHEHT600to800' : [ 3.59455347e+04, 3.59494980e+04, 3.59167822e+04, ], 'CountWeightedLHEWeightScale_LHEHT600to800' : [ 4.34487650e+04, 4.00112071e+04, 3.70096129e+04, 3.90532835e+04, 3.59455347e+04, 3.32355320e+04, 3.55373197e+04, 3.26946188e+04, 3.02182387e+04, ], 'CountWeightedLHEEnvelope_LHEHT600to800' : [ 4.35005007e+04, 3.01950666e+04, ], 'CountWeightedFull_LHEHT600to800' : [ 3.59455347e+04, 3.59494980e+04, 3.59167822e+04, ], 'CountWeightedFullLHEWeightScale_LHEHT600to800' : [ 4.34487650e+04, 4.00112071e+04, 3.70096129e+04, 3.90532835e+04, 3.59455347e+04, 3.32355320e+04, 3.55373197e+04, 3.26946188e+04, 3.02182387e+04, ], 'CountWeightedFullLHEEnvelope_LHEHT600to800' : [ 4.35005007e+04, 3.01950666e+04, ], 'CountWeightedL1PrefireNom_LHEHT600to800' : [ 3.35890125e+04, 3.35870931e+04, 3.35690684e+04, ], 'CountWeightedL1Prefire_LHEHT600to800' : [ 3.35890125e+04, 3.30959239e+04, 3.40867640e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT600to800' : [ 4.04916211e+04, 3.73681188e+04, 3.46280112e+04, 3.64158982e+04, 3.35890125e+04, 3.11125207e+04, 3.31546922e+04, 3.05661220e+04, 2.83009690e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT600to800' : [ 4.05483721e+04, 2.82717280e+04, ], 'CountWeightedFullL1PrefireNom_LHEHT600to800' : [ 3.35890125e+04, 3.35870931e+04, 3.35690684e+04, ], 'CountWeightedFullL1Prefire_LHEHT600to800' : [ 3.35890125e+04, 3.30959239e+04, 3.40867640e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT600to800' : [ 4.04916211e+04, 3.73681188e+04, 3.46280112e+04, 3.64158982e+04, 3.35890125e+04, 3.11125207e+04, 3.31546922e+04, 3.05661220e+04, 2.83009690e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT600to800' : [ 4.05483721e+04, 2.82717280e+04, ], 'Count_LHEHT800to1200' : [ 11608, ], 'CountWeighted_LHEHT800to1200' : [ 1.15490642e+04, 1.15294367e+04, 1.15630617e+04, ], 'CountWeightedLHEWeightScale_LHEHT800to1200' : [ 1.42038233e+04, 1.28839310e+04, 1.17666784e+04, 1.27363640e+04, 1.15490642e+04, 1.05447650e+04, 1.15555121e+04, 1.04750221e+04, 9.56167764e+03, ], 'CountWeightedLHEEnvelope_LHEHT800to1200' : [ 1.42152285e+04, 9.55473615e+03, ], 'CountWeightedFull_LHEHT800to1200' : [ 1.15490642e+04, 1.15294367e+04, 1.15630617e+04, ], 'CountWeightedFullLHEWeightScale_LHEHT800to1200' : [ 1.42038233e+04, 1.28839310e+04, 1.17666784e+04, 1.27363640e+04, 1.15490642e+04, 1.05447650e+04, 1.15555121e+04, 1.04750221e+04, 9.56167764e+03, ], 'CountWeightedFullLHEEnvelope_LHEHT800to1200' : [ 1.42152285e+04, 9.55473615e+03, ], 'CountWeightedL1PrefireNom_LHEHT800to1200' : [ 1.10404694e+04, 1.10189843e+04, 1.10560763e+04, ], 'CountWeightedL1Prefire_LHEHT800to1200' : [ 1.10404694e+04, 1.09319693e+04, 1.11491203e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT800to1200' : [ 1.35568688e+04, 1.23139446e+04, 1.12598218e+04, 1.21590498e+04, 1.10404694e+04, 1.00925259e+04, 1.10338398e+04, 1.00154768e+04, 9.15307454e+03, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT800to1200' : [ 1.35682193e+04, 9.14611522e+03, ], 'CountWeightedFullL1PrefireNom_LHEHT800to1200' : [ 1.10404694e+04, 1.10189843e+04, 1.10560763e+04, ], 'CountWeightedFullL1Prefire_LHEHT800to1200' : [ 1.10404694e+04, 1.09319693e+04, 1.11491203e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT800to1200' : [ 1.35568688e+04, 1.23139446e+04, 1.12598218e+04, 1.21590498e+04, 1.10404694e+04, 1.00925259e+04, 1.10338398e+04, 1.00154768e+04, 9.15307454e+03, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT800to1200' : [ 1.35682193e+04, 9.14611522e+03, ], 'Count_LHEHT1200to2500' : [ 1674, ], 'CountWeighted_LHEHT1200to2500' : [ 1.65464819e+03, 1.65277669e+03, 1.65920887e+03, ], 'CountWeightedLHEWeightScale_LHEHT1200to2500' : [ 2.08042567e+03, 1.84763224e+03, 1.65743203e+03, 1.86322456e+03, 1.65464819e+03, 1.48426489e+03, 1.68697511e+03, 1.49803869e+03, 1.34372877e+03, ], 'CountWeightedLHEEnvelope_LHEHT1200to2500' : [ 2.08159232e+03, 1.34318452e+03, ], 'CountWeightedFull_LHEHT1200to2500' : [ 1.65464819e+03, 1.65277669e+03, 1.65920887e+03, ], 'CountWeightedFullLHEWeightScale_LHEHT1200to2500' : [ 2.08042567e+03, 1.84763224e+03, 1.65743203e+03, 1.86322456e+03, 1.65464819e+03, 1.48426489e+03, 1.68697511e+03, 1.49803869e+03, 1.34372877e+03, ], 'CountWeightedFullLHEEnvelope_LHEHT1200to2500' : [ 2.08159232e+03, 1.34318452e+03, ], 'CountWeightedL1PrefireNom_LHEHT1200to2500' : [ 1.61881233e+03, 1.61717711e+03, 1.62383153e+03, ], 'CountWeightedL1Prefire_LHEHT1200to2500' : [ 1.61881233e+03, 1.61079075e+03, 1.62679210e+03, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT1200to2500' : [ 2.03311832e+03, 1.80701542e+03, 1.62210504e+03, 1.82148344e+03, 1.61881233e+03, 1.45309874e+03, 1.64966567e+03, 1.46600924e+03, 1.31587509e+03, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT1200to2500' : [ 2.03434060e+03, 1.31529575e+03, ], 'CountWeightedFullL1PrefireNom_LHEHT1200to2500' : [ 1.61881233e+03, 1.61717711e+03, 1.62383153e+03, ], 'CountWeightedFullL1Prefire_LHEHT1200to2500' : [ 1.61881233e+03, 1.61079075e+03, 1.62679210e+03, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT1200to2500' : [ 2.03311832e+03, 1.80701542e+03, 1.62210504e+03, 1.82148344e+03, 1.61881233e+03, 1.45309874e+03, 1.64966567e+03, 1.46600924e+03, 1.31587509e+03, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT1200to2500' : [ 2.03434060e+03, 1.31529575e+03, ], 'Count_LHEHT2500toInf' : [ 22, ], 'CountWeighted_LHEHT2500toInf' : [ 2.17315357e+01, 2.09447798e+01, 2.26024849e+01, ], 'CountWeightedLHEWeightScale_LHEHT2500toInf' : [ 2.85273988e+01, 2.42026996e+01, 2.08513309e+01, 2.55803962e+01, 2.17315357e+01, 1.87432971e+01, 2.31610258e+01, 1.97002902e+01, 1.70085104e+01, ], 'CountWeightedLHEEnvelope_LHEHT2500toInf' : [ 2.85273988e+01, 1.70085104e+01, ], 'CountWeightedFull_LHEHT2500toInf' : [ 2.17315357e+01, 2.09447798e+01, 2.26024849e+01, ], 'CountWeightedFullLHEWeightScale_LHEHT2500toInf' : [ 2.85273988e+01, 2.42026996e+01, 2.08513309e+01, 2.55803962e+01, 2.17315357e+01, 1.87432971e+01, 2.31610258e+01, 1.97002902e+01, 1.70085104e+01, ], 'CountWeightedFullLHEEnvelope_LHEHT2500toInf' : [ 2.85273988e+01, 1.70085104e+01, ], 'CountWeightedL1PrefireNom_LHEHT2500toInf' : [ 2.16159065e+01, 2.08111037e+01, 2.25080411e+01, ], 'CountWeightedL1Prefire_LHEHT2500toInf' : [ 2.16159065e+01, 2.15795474e+01, 2.16523128e+01, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT2500toInf' : [ 2.83743899e+01, 2.40751212e+01, 2.07431670e+01, 2.54420099e+01, 2.16159065e+01, 1.86450981e+01, 2.30347601e+01, 1.95945871e+01, 1.69186060e+01, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT2500toInf' : [ 2.83743899e+01, 1.69186060e+01, ], 'CountWeightedFullL1PrefireNom_LHEHT2500toInf' : [ 2.16159065e+01, 2.08111037e+01, 2.25080411e+01, ], 'CountWeightedFullL1Prefire_LHEHT2500toInf' : [ 2.16159065e+01, 2.15795474e+01, 2.16523128e+01, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT2500toInf' : [ 2.83743899e+01, 2.40751212e+01, 2.07431670e+01, 2.54420099e+01, 2.16159065e+01, 1.86450981e+01, 2.30347601e+01, 1.95945871e+01, 1.69186060e+01, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT2500toInf' : [ 2.83743899e+01, 1.69186060e+01, ], }), ("nof_tree_events", 19700377), ("nof_db_events", 19700377), ("fsize_local", 87141810349), # 87.14GB, avg file size 2.18GB ("fsize_db", 868954430671), # 868.95GB, avg file size 3.48GB ("use_it", False), ("xsection", 1153.42), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Apr19_woPresel_nom_all_hh_multilepton/ntuples/W3JetsToLNu"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/W4JetsToLNu_TuneCP5_13TeV-madgraphMLM-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_new_pmx_94X_mc2017_realistic_v14-v2/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "EWK"), ("process_name_specific", "W4JetsToLNu"), ("nof_files", 23), ("nof_db_files", 185), ("nof_events", { 'Count' : [ 11103685, ], 'CountWeighted' : [ 1.10721515e+07, 1.10728770e+07, 1.10742422e+07, ], 'CountWeightedLHEWeightScale' : [ 1.22171698e+07, 1.17641622e+07, 1.12709168e+07, 1.14923847e+07, 1.10721515e+07, 1.06136248e+07, 1.09107564e+07, 1.05181897e+07, 1.00857601e+07, ], 'CountWeightedLHEEnvelope' : [ 1.24937947e+07, 9.85063162e+06, ], 'CountWeightedFull' : [ 1.10721515e+07, 1.10728770e+07, 1.10742422e+07, ], 'CountWeightedFullLHEWeightScale' : [ 1.22171698e+07, 1.17641622e+07, 1.12709168e+07, 1.14923847e+07, 1.10721515e+07, 1.06136248e+07, 1.09107564e+07, 1.05181897e+07, 1.00857601e+07, ], 'CountWeightedFullLHEEnvelope' : [ 1.24937947e+07, 9.85063162e+06, ], 'CountWeightedL1PrefireNom' : [ 1.06510178e+07, 1.06510442e+07, 1.06525518e+07, ], 'CountWeightedL1Prefire' : [ 1.06510178e+07, 1.05491044e+07, 1.07503124e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 1.17288901e+07, 1.13096710e+07, 1.08466127e+07, 1.10398091e+07, 1.06510178e+07, 1.02198309e+07, 1.04865047e+07, 1.01228076e+07, 9.71621620e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 1.20000410e+07, 9.48553978e+06, ], 'CountWeightedFullL1PrefireNom' : [ 1.06510178e+07, 1.06510442e+07, 1.06525518e+07, ], 'CountWeightedFullL1Prefire' : [ 1.06510178e+07, 1.05491044e+07, 1.07503124e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 1.17288901e+07, 1.13096710e+07, 1.08466127e+07, 1.10398091e+07, 1.06510178e+07, 1.02198309e+07, 1.04865047e+07, 1.01228076e+07, 9.71621620e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 1.20000410e+07, 9.48553978e+06, ], 'Count_LHEHT0to70' : [ 7456, ], 'CountWeighted_LHEHT0to70' : [ 7.47282160e+03, 7.45676696e+03, 7.48344356e+03, ], 'CountWeightedLHEWeightScale_LHEHT0to70' : [ 7.46479736e+03, 7.90657029e+03, 8.12168945e+03, 7.04947273e+03, 7.47282160e+03, 7.68049077e+03, 6.71162035e+03, 7.12007056e+03, 7.32160137e+03, ], 'CountWeightedLHEEnvelope_LHEHT0to70' : [ 8.30948236e+03, 6.55985415e+03, ], 'CountWeightedFull_LHEHT0to70' : [ 7.47282160e+03, 7.45676696e+03, 7.48344356e+03, ], 'CountWeightedFullLHEWeightScale_LHEHT0to70' : [ 7.46479736e+03, 7.90657029e+03, 8.12168945e+03, 7.04947273e+03, 7.47282160e+03, 7.68049077e+03, 6.71162035e+03, 7.12007056e+03, 7.32160137e+03, ], 'CountWeightedFullLHEEnvelope_LHEHT0to70' : [ 8.30948236e+03, 6.55985415e+03, ], 'CountWeightedL1PrefireNom_LHEHT0to70' : [ 7.40410878e+03, 7.38763844e+03, 7.41528214e+03, ], 'CountWeightedL1Prefire_LHEHT0to70' : [ 7.40410878e+03, 7.38414726e+03, 7.42261867e+03, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT0to70' : [ 7.39600768e+03, 7.83398290e+03, 8.04731286e+03, 6.98441030e+03, 7.40410878e+03, 7.61004050e+03, 6.64959560e+03, 7.05451412e+03, 7.25435023e+03, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT0to70' : [ 8.23304932e+03, 6.49952007e+03, ], 'CountWeightedFullL1PrefireNom_LHEHT0to70' : [ 7.40410878e+03, 7.38763844e+03, 7.41528214e+03, ], 'CountWeightedFullL1Prefire_LHEHT0to70' : [ 7.40410878e+03, 7.38414726e+03, 7.42261867e+03, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT0to70' : [ 7.39600768e+03, 7.83398290e+03, 8.04731286e+03, 6.98441030e+03, 7.40410878e+03, 7.61004050e+03, 6.64959560e+03, 7.05451412e+03, 7.25435023e+03, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT0to70' : [ 8.23304932e+03, 6.49952007e+03, ], 'Count_LHEHT70to100' : [ 376579, ], 'CountWeighted_LHEHT70to100' : [ 3.76026763e+05, 3.76015982e+05, 3.76012019e+05, ], 'CountWeightedLHEWeightScale_LHEHT70to100' : [ 3.83982897e+05, 3.92970978e+05, 3.93751185e+05, 3.67284800e+05, 3.76026763e+05, 3.76879102e+05, 3.53682308e+05, 3.62228113e+05, 3.63134335e+05, ], 'CountWeightedLHEEnvelope_LHEHT70to100' : [ 4.12367038e+05, 3.37615013e+05, ], 'CountWeightedFull_LHEHT70to100' : [ 3.76026763e+05, 3.76015982e+05, 3.76012019e+05, ], 'CountWeightedFullLHEWeightScale_LHEHT70to100' : [ 3.83982897e+05, 3.92970978e+05, 3.93751185e+05, 3.67284800e+05, 3.76026763e+05, 3.76879102e+05, 3.53682308e+05, 3.62228113e+05, 3.63134335e+05, ], 'CountWeightedFullLHEEnvelope_LHEHT70to100' : [ 4.12367038e+05, 3.37615013e+05, ], 'CountWeightedL1PrefireNom_LHEHT70to100' : [ 3.72133334e+05, 3.72109515e+05, 3.72131140e+05, ], 'CountWeightedL1Prefire_LHEHT70to100' : [ 3.72133334e+05, 3.70983694e+05, 3.73178651e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT70to100' : [ 3.79972906e+05, 3.88900801e+05, 3.89697924e+05, 3.63450752e+05, 3.72133334e+05, 3.73000207e+05, 3.49991777e+05, 3.58478466e+05, 3.59397643e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT70to100' : [ 4.08084907e+05, 3.34123358e+05, ], 'CountWeightedFullL1PrefireNom_LHEHT70to100' : [ 3.72133334e+05, 3.72109515e+05, 3.72131140e+05, ], 'CountWeightedFullL1Prefire_LHEHT70to100' : [ 3.72133334e+05, 3.70983694e+05, 3.73178651e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT70to100' : [ 3.79972906e+05, 3.88900801e+05, 3.89697924e+05, 3.63450752e+05, 3.72133334e+05, 3.73000207e+05, 3.49991777e+05, 3.58478466e+05, 3.59397643e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT70to100' : [ 4.08084907e+05, 3.34123358e+05, ], 'Count_LHEHT100to200' : [ 5072173, ], 'CountWeighted_LHEHT100to200' : [ 5.06313509e+06, 5.06348483e+06, 5.06335282e+06, ], 'CountWeightedLHEWeightScale_LHEHT100to200' : [ 5.36261091e+06, 5.28758323e+06, 5.15729680e+06, 5.13434168e+06, 5.06313509e+06, 4.93886696e+06, 4.94783474e+06, 4.87987200e+06, 4.76039270e+06, ], 'CountWeightedLHEEnvelope_LHEHT100to200' : [ 5.55488641e+06, 4.59288735e+06, ], 'CountWeightedFull_LHEHT100to200' : [ 5.06313509e+06, 5.06348483e+06, 5.06335282e+06, ], 'CountWeightedFullLHEWeightScale_LHEHT100to200' : [ 5.36261091e+06, 5.28758323e+06, 5.15729680e+06, 5.13434168e+06, 5.06313509e+06, 4.93886696e+06, 4.94783474e+06, 4.87987200e+06, 4.76039270e+06, ], 'CountWeightedFullLHEEnvelope_LHEHT100to200' : [ 5.55488641e+06, 4.59288735e+06, ], 'CountWeightedL1PrefireNom_LHEHT100to200' : [ 4.95890259e+06, 4.95898467e+06, 4.95908596e+06, ], 'CountWeightedL1Prefire_LHEHT100to200' : [ 4.95890259e+06, 4.93043236e+06, 4.98569629e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT100to200' : [ 5.25063164e+06, 5.17871504e+06, 5.05224631e+06, 5.02712452e+06, 4.95890259e+06, 4.83826580e+06, 4.84451264e+06, 4.77939301e+06, 4.66343044e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT100to200' : [ 5.43967026e+06, 4.49872735e+06, ], 'CountWeightedFullL1PrefireNom_LHEHT100to200' : [ 4.95890259e+06, 4.95898467e+06, 4.95908596e+06, ], 'CountWeightedFullL1Prefire_LHEHT100to200' : [ 4.95890259e+06, 4.93043236e+06, 4.98569629e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT100to200' : [ 5.25063164e+06, 5.17871504e+06, 5.05224631e+06, 5.02712452e+06, 4.95890259e+06, 4.83826580e+06, 4.84451264e+06, 4.77939301e+06, 4.66343044e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT100to200' : [ 5.43967026e+06, 4.49872735e+06, ], 'Count_LHEHT200to400' : [ 4378834, ], 'CountWeighted_LHEHT200to400' : [ 4.36514263e+06, 4.36541779e+06, 4.36540649e+06, ], 'CountWeightedLHEWeightScale_LHEHT200to400' : [ 4.91829725e+06, 4.66853066e+06, 4.42141667e+06, 4.59882072e+06, 4.36514263e+06, 4.13390468e+06, 4.34355943e+06, 4.12281677e+06, 3.90419398e+06, ], 'CountWeightedLHEEnvelope_LHEHT200to400' : [ 4.97055343e+06, 3.86454638e+06, ], 'CountWeightedFull_LHEHT200to400' : [ 4.36514263e+06, 4.36541779e+06, 4.36540649e+06, ], 'CountWeightedFullLHEWeightScale_LHEHT200to400' : [ 4.91829725e+06, 4.66853066e+06, 4.42141667e+06, 4.59882072e+06, 4.36514263e+06, 4.13390468e+06, 4.34355943e+06, 4.12281677e+06, 3.90419398e+06, ], 'CountWeightedFullLHEEnvelope_LHEHT200to400' : [ 4.97055343e+06, 3.86454638e+06, ], 'CountWeightedL1PrefireNom_LHEHT200to400' : [ 4.14941789e+06, 4.14930007e+06, 4.14981595e+06, ], 'CountWeightedL1Prefire_LHEHT200to400' : [ 4.14941789e+06, 4.09835398e+06, 4.19969879e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT200to400' : [ 4.66951354e+06, 4.43665082e+06, 4.20511365e+06, 4.36733250e+06, 4.14941789e+06, 3.93268755e+06, 4.12583124e+06, 3.91991861e+06, 3.71497887e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT200to400' : [ 4.71992645e+06, 3.67665093e+06, ], 'CountWeightedFullL1PrefireNom_LHEHT200to400' : [ 4.14941789e+06, 4.14930007e+06, 4.14981595e+06, ], 'CountWeightedFullL1Prefire_LHEHT200to400' : [ 4.14941789e+06, 4.09835398e+06, 4.19969879e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT200to400' : [ 4.66951354e+06, 4.43665082e+06, 4.20511365e+06, 4.36733250e+06, 4.14941789e+06, 3.93268755e+06, 4.12583124e+06, 3.91991861e+06, 3.71497887e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT200to400' : [ 4.71992645e+06, 3.67665093e+06, ], 'Count_LHEHT400to600' : [ 887939, ], 'CountWeighted_LHEHT400to600' : [ 8.84042748e+05, 8.84062587e+05, 8.84053051e+05, ], 'CountWeightedLHEWeightScale_LHEHT400to600' : [ 1.06926809e+06, 9.82391227e+05, 9.06171496e+05, 9.62548884e+05, 8.84042748e+05, 8.15228211e+05, 8.78542902e+05, 8.06650414e+05, 7.43647867e+05, ], 'CountWeightedLHEEnvelope_LHEHT400to600' : [ 1.07180705e+06, 7.42181292e+05, ], 'CountWeightedFull_LHEHT400to600' : [ 8.84042748e+05, 8.84062587e+05, 8.84053051e+05, ], 'CountWeightedFullLHEWeightScale_LHEHT400to600' : [ 1.06926809e+06, 9.82391227e+05, 9.06171496e+05, 9.62548884e+05, 8.84042748e+05, 8.15228211e+05, 8.78542902e+05, 8.06650414e+05, 7.43647867e+05, ], 'CountWeightedFullLHEEnvelope_LHEHT400to600' : [ 1.07180705e+06, 7.42181292e+05, ], 'CountWeightedL1PrefireNom_LHEHT400to600' : [ 8.13933240e+05, 8.13932570e+05, 8.13923720e+05, ], 'CountWeightedL1Prefire_LHEHT400to600' : [ 8.13933240e+05, 7.98648795e+05, 8.29260788e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT400to600' : [ 9.82082589e+05, 9.04017319e+05, 8.35224729e+05, 8.84525249e+05, 8.13933240e+05, 7.51780699e+05, 8.07699147e+05, 7.43013132e+05, 6.86076340e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT400to600' : [ 9.84489311e+05, 6.84679000e+05, ], 'CountWeightedFullL1PrefireNom_LHEHT400to600' : [ 8.13933240e+05, 8.13932570e+05, 8.13923720e+05, ], 'CountWeightedFullL1Prefire_LHEHT400to600' : [ 8.13933240e+05, 7.98648795e+05, 8.29260788e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT400to600' : [ 9.82082589e+05, 9.04017319e+05, 8.35224729e+05, 8.84525249e+05, 8.13933240e+05, 7.51780699e+05, 8.07699147e+05, 7.43013132e+05, 6.86076340e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT400to600' : [ 9.84489311e+05, 6.84679000e+05, ], 'Count_LHEHT600to800' : [ 242710, ], 'CountWeighted_LHEHT600to800' : [ 2.41111643e+05, 2.41205718e+05, 2.41010351e+05, ], 'CountWeightedLHEWeightScale_LHEHT600to800' : [ 3.00655337e+05, 2.71069316e+05, 2.46150687e+05, 2.67513133e+05, 2.41111643e+05, 2.18892543e+05, 2.41430570e+05, 2.17542274e+05, 1.97442918e+05, ], 'CountWeightedLHEEnvelope_LHEHT600to800' : [ 3.00987252e+05, 1.97262272e+05, ], 'CountWeightedFull_LHEHT600to800' : [ 2.41111643e+05, 2.41205718e+05, 2.41010351e+05, ], 'CountWeightedFullLHEWeightScale_LHEHT600to800' : [ 3.00655337e+05, 2.71069316e+05, 2.46150687e+05, 2.67513133e+05, 2.41111643e+05, 2.18892543e+05, 2.41430570e+05, 2.17542274e+05, 1.97442918e+05, ], 'CountWeightedFullLHEEnvelope_LHEHT600to800' : [ 3.00987252e+05, 1.97262272e+05, ], 'CountWeightedL1PrefireNom_LHEHT600to800' : [ 2.21670813e+05, 2.21735723e+05, 2.21593463e+05, ], 'CountWeightedL1Prefire_LHEHT600to800' : [ 2.21670813e+05, 2.17538270e+05, 2.25834948e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT600to800' : [ 2.75571992e+05, 2.49058533e+05, 2.26627942e+05, 2.45352270e+05, 2.21670813e+05, 2.01652445e+05, 2.21553983e+05, 2.00109086e+05, 1.81986711e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT600to800' : [ 2.75890204e+05, 1.81812216e+05, ], 'CountWeightedFullL1PrefireNom_LHEHT600to800' : [ 2.21670813e+05, 2.21735723e+05, 2.21593463e+05, ], 'CountWeightedFullL1Prefire_LHEHT600to800' : [ 2.21670813e+05, 2.17538270e+05, 2.25834948e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT600to800' : [ 2.75571992e+05, 2.49058533e+05, 2.26627942e+05, 2.45352270e+05, 2.21670813e+05, 2.01652445e+05, 2.21553983e+05, 2.00109086e+05, 1.81986711e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT600to800' : [ 2.75890204e+05, 1.81812216e+05, ], 'Count_LHEHT800to1200' : [ 112610, ], 'CountWeighted_LHEHT800to1200' : [ 1.11723896e+05, 1.11655525e+05, 1.11789473e+05, ], 'CountWeightedLHEWeightScale_LHEHT800to1200' : [ 1.42165752e+05, 1.26167923e+05, 1.13050160e+05, 1.25918843e+05, 1.11723896e+05, 1.00090957e+05, 1.13083937e+05, 1.00315745e+05, 8.98540984e+04, ], 'CountWeightedLHEEnvelope_LHEHT800to1200' : [ 1.42247368e+05, 8.98105611e+04, ], 'CountWeightedFull_LHEHT800to1200' : [ 1.11723896e+05, 1.11655525e+05, 1.11789473e+05, ], 'CountWeightedFullLHEWeightScale_LHEHT800to1200' : [ 1.42165752e+05, 1.26167923e+05, 1.13050160e+05, 1.25918843e+05, 1.11723896e+05, 1.00090957e+05, 1.13083937e+05, 1.00315745e+05, 8.98540984e+04, ], 'CountWeightedFullLHEEnvelope_LHEHT800to1200' : [ 1.42247368e+05, 8.98105611e+04, ], 'CountWeightedL1PrefireNom_LHEHT800to1200' : [ 1.04362188e+05, 1.04297281e+05, 1.04424885e+05, ], 'CountWeightedL1Prefire_LHEHT800to1200' : [ 1.04362188e+05, 1.02789089e+05, 1.05942545e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT800to1200' : [ 1.32444509e+05, 1.17786328e+05, 1.05727061e+05, 1.17379630e+05, 1.04362188e+05, 9.36594506e+04, 1.05468681e+05, 9.37512446e+04, 8.41195218e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT800to1200' : [ 1.32522521e+05, 8.40782704e+04, ], 'CountWeightedFullL1PrefireNom_LHEHT800to1200' : [ 1.04362188e+05, 1.04297281e+05, 1.04424885e+05, ], 'CountWeightedFullL1Prefire_LHEHT800to1200' : [ 1.04362188e+05, 1.02789089e+05, 1.05942545e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT800to1200' : [ 1.32444509e+05, 1.17786328e+05, 1.05727061e+05, 1.17379630e+05, 1.04362188e+05, 9.36594506e+04, 1.05468681e+05, 9.37512446e+04, 8.41195218e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT800to1200' : [ 1.32522521e+05, 8.40782704e+04, ], 'Count_LHEHT1200to2500' : [ 24960, ], 'CountWeighted_LHEHT1200to2500' : [ 2.46958268e+04, 2.46952004e+04, 2.46895092e+04, ], 'CountWeightedLHEWeightScale_LHEHT1200to2500' : [ 3.21680430e+04, 2.79436225e+04, 2.45827291e+04, 2.84315457e+04, 2.46958268e+04, 2.17248456e+04, 2.54604664e+04, 2.21139463e+04, 1.94524787e+04, ], 'CountWeightedLHEEnvelope_LHEHT1200to2500' : [ 3.21776411e+04, 1.94474738e+04, ], 'CountWeightedFull_LHEHT1200to2500' : [ 2.46958268e+04, 2.46952004e+04, 2.46895092e+04, ], 'CountWeightedFullLHEWeightScale_LHEHT1200to2500' : [ 3.21680430e+04, 2.79436225e+04, 2.45827291e+04, 2.84315457e+04, 2.46958268e+04, 2.17248456e+04, 2.54604664e+04, 2.21139463e+04, 1.94524787e+04, ], 'CountWeightedFullLHEEnvelope_LHEHT1200to2500' : [ 3.21776411e+04, 1.94474738e+04, ], 'CountWeightedL1PrefireNom_LHEHT1200to2500' : [ 2.36444618e+04, 2.36407883e+04, 2.36432731e+04, ], 'CountWeightedL1Prefire_LHEHT1200to2500' : [ 2.36444618e+04, 2.34104164e+04, 2.38769655e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT1200to2500' : [ 3.07496693e+04, 2.67405101e+04, 2.35467146e+04, 2.71919604e+04, 2.36444618e+04, 2.08195376e+04, 2.43608571e+04, 2.11813558e+04, 1.86494970e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT1200to2500' : [ 3.07583048e+04, 1.86451942e+04, ], 'CountWeightedFullL1PrefireNom_LHEHT1200to2500' : [ 2.36444618e+04, 2.36407883e+04, 2.36432731e+04, ], 'CountWeightedFullL1Prefire_LHEHT1200to2500' : [ 2.36444618e+04, 2.34104164e+04, 2.38769655e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT1200to2500' : [ 3.07496693e+04, 2.67405101e+04, 2.35467146e+04, 2.71919604e+04, 2.36444618e+04, 2.08195376e+04, 2.43608571e+04, 2.11813558e+04, 1.86494970e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT1200to2500' : [ 3.07583048e+04, 1.86451942e+04, ], 'Count_LHEHT2500toInf' : [ 424, ], 'CountWeighted_LHEHT2500toInf' : [ 4.26898895e+02, 4.22157622e+02, 4.28050226e+02, ], 'CountWeightedLHEWeightScale_LHEHT2500toInf' : [ 5.67951960e+02, 4.75944553e+02, 4.05554676e+02, 5.09303665e+02, 4.26898895e+02, 3.63840683e+02, 4.61342933e+02, 3.86787956e+02, 3.29708827e+02, ], 'CountWeightedLHEEnvelope_LHEHT2500toInf' : [ 5.68151072e+02, 3.29534236e+02, ], 'CountWeightedFull_LHEHT2500toInf' : [ 4.26898895e+02, 4.22157622e+02, 4.28050226e+02, ], 'CountWeightedFullLHEWeightScale_LHEHT2500toInf' : [ 5.67951960e+02, 4.75944553e+02, 4.05554676e+02, 5.09303665e+02, 4.26898895e+02, 3.63840683e+02, 4.61342933e+02, 3.86787956e+02, 3.29708827e+02, ], 'CountWeightedFullLHEEnvelope_LHEHT2500toInf' : [ 5.68151072e+02, 3.29534236e+02, ], 'CountWeightedL1PrefireNom_LHEHT2500toInf' : [ 4.18336569e+02, 4.13450668e+02, 4.19545728e+02, ], 'CountWeightedL1Prefire_LHEHT2500toInf' : [ 4.18336569e+02, 4.16281726e+02, 4.20328976e+02, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHEHT2500toInf' : [ 5.56314692e+02, 4.66387676e+02, 3.97554636e+02, 4.98878703e+02, 4.18336569e+02, 3.56672366e+02, 4.51908449e+02, 3.79038044e+02, 3.23220216e+02, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHEHT2500toInf' : [ 5.56485687e+02, 3.23070280e+02, ], 'CountWeightedFullL1PrefireNom_LHEHT2500toInf' : [ 4.18336569e+02, 4.13450668e+02, 4.19545728e+02, ], 'CountWeightedFullL1Prefire_LHEHT2500toInf' : [ 4.18336569e+02, 4.16281726e+02, 4.20328976e+02, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHEHT2500toInf' : [ 5.56314692e+02, 4.66387676e+02, 3.97554636e+02, 4.98878703e+02, 4.18336569e+02, 3.56672366e+02, 4.51908449e+02, 3.79038044e+02, 3.23220216e+02, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHEHT2500toInf' : [ 5.56485687e+02, 3.23070280e+02, ], }), ("nof_tree_events", 11103685), ("nof_db_events", 11103685), ("fsize_local", 63361562765), # 63.36GB, avg file size 2.75GB ("fsize_db", 544022661408), # 544.02GB, avg file size 2.94GB ("use_it", False), ("xsection", 634.05), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Apr19_woPresel_nom_all_hh_multilepton/ntuples/W4JetsToLNu"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/WJetsToLNu_HT-70To100_TuneCP5_13TeV-madgraphMLM-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "EWK"), ("process_name_specific", "WJetsToLNu_HT70To100"), ("nof_files", 45), ("nof_db_files", 403), ("nof_events", { 'Count' : [ 22255124, ], 'CountWeighted' : [ 2.22339198e+07, 2.22289168e+07, 2.22289588e+07, ], 'CountWeightedLHEWeightScale' : [ 2.15480429e+07, 2.29420439e+07, 2.38655379e+07, 2.08751395e+07, 2.22339198e+07, 2.31334266e+07, 2.03225507e+07, 2.16501902e+07, 2.25324197e+07, ], 'CountWeightedLHEEnvelope' : [ 2.38721562e+07, 2.03433600e+07, ], 'CountWeightedFull' : [ 2.22339198e+07, 2.22289168e+07, 2.22289588e+07, ], 'CountWeightedFullLHEWeightScale' : [ 2.15480429e+07, 2.29420439e+07, 2.38655379e+07, 2.08751395e+07, 2.22339198e+07, 2.31334266e+07, 2.03225507e+07, 2.16501902e+07, 2.25324197e+07, ], 'CountWeightedFullLHEEnvelope' : [ 2.38721562e+07, 2.03433600e+07, ], 'CountWeightedL1PrefireNom' : [ 2.18516687e+07, 2.18477390e+07, 2.18488332e+07, ], 'CountWeightedL1Prefire' : [ 2.18516687e+07, 2.17508758e+07, 2.19478974e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 2.11764193e+07, 2.25485955e+07, 2.34597379e+07, 2.05145676e+07, 2.18516687e+07, 2.27394992e+07, 1.99710974e+07, 2.12779701e+07, 2.21482342e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 2.34653238e+07, 1.99923483e+07, ], 'CountWeightedFullL1PrefireNom' : [ 2.18516687e+07, 2.18477390e+07, 2.18488332e+07, ], 'CountWeightedFullL1Prefire' : [ 2.18516687e+07, 2.17508758e+07, 2.19478974e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 2.11764193e+07, 2.25485955e+07, 2.34597379e+07, 2.05145676e+07, 2.18516687e+07, 2.27394992e+07, 1.99710974e+07, 2.12779701e+07, 2.21482342e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 2.34653238e+07, 1.99923483e+07, ], 'Count_LHENjet1' : [ 5495900, ], 'CountWeighted_LHENjet1' : [ 5.48923658e+06, 5.48917191e+06, 5.48886655e+06, ], 'CountWeightedLHEWeightScale_LHENjet1' : [ 5.34752316e+06, 5.62456408e+06, 5.82303963e+06, 5.21636599e+06, 5.48923658e+06, 5.68494895e+06, 5.10773750e+06, 5.37710184e+06, 5.57058495e+06, ], 'CountWeightedLHEEnvelope_LHENjet1' : [ 5.80591533e+06, 5.13266288e+06, ], 'CountWeightedFull_LHENjet1' : [ 5.48923658e+06, 5.48917191e+06, 5.48886655e+06, ], 'CountWeightedFullLHEWeightScale_LHENjet1' : [ 5.34752316e+06, 5.62456408e+06, 5.82303963e+06, 5.21636599e+06, 5.48923658e+06, 5.68494895e+06, 5.10773750e+06, 5.37710184e+06, 5.57058495e+06, ], 'CountWeightedFullLHEEnvelope_LHENjet1' : [ 5.80591533e+06, 5.13266288e+06, ], 'CountWeightedL1PrefireNom_LHENjet1' : [ 5.33890609e+06, 5.33876595e+06, 5.33874303e+06, ], 'CountWeightedL1Prefire_LHENjet1' : [ 5.33890609e+06, 5.30295125e+06, 5.37456440e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet1' : [ 5.20010891e+06, 5.47051774e+06, 5.66461345e+06, 5.07258527e+06, 5.33890609e+06, 5.53030502e+06, 4.96696639e+06, 5.22988209e+06, 5.41907474e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet1' : [ 5.64749633e+06, 4.99163448e+06, ], 'CountWeightedFullL1PrefireNom_LHENjet1' : [ 5.33890609e+06, 5.33876595e+06, 5.33874303e+06, ], 'CountWeightedFullL1Prefire_LHENjet1' : [ 5.33890609e+06, 5.30295125e+06, 5.37456440e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet1' : [ 5.20010891e+06, 5.47051774e+06, 5.66461345e+06, 5.07258527e+06, 5.33890609e+06, 5.53030502e+06, 4.96696639e+06, 5.22988209e+06, 5.41907474e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet1' : [ 5.64749633e+06, 4.99163448e+06, ], 'Count_LHENjet2' : [ 11914618, ], 'CountWeighted_LHENjet2' : [ 1.19006125e+07, 1.19007868e+07, 1.18999524e+07, ], 'CountWeightedLHEWeightScale_LHENjet2' : [ 1.14351550e+07, 1.22794849e+07, 1.28581873e+07, 1.10799812e+07, 1.19006125e+07, 1.24634180e+07, 1.07884934e+07, 1.15899149e+07, 1.21394816e+07, ], 'CountWeightedLHEEnvelope_LHENjet2' : [ 1.28087816e+07, 1.08423847e+07, ], 'CountWeightedFull_LHENjet2' : [ 1.19006125e+07, 1.19007868e+07, 1.18999524e+07, ], 'CountWeightedFullLHEWeightScale_LHENjet2' : [ 1.14351550e+07, 1.22794849e+07, 1.28581873e+07, 1.10799812e+07, 1.19006125e+07, 1.24634180e+07, 1.07884934e+07, 1.15899149e+07, 1.21394816e+07, ], 'CountWeightedFullLHEEnvelope_LHENjet2' : [ 1.28087816e+07, 1.08423847e+07, ], 'CountWeightedL1PrefireNom_LHENjet2' : [ 1.17239693e+07, 1.17236594e+07, 1.17239063e+07, ], 'CountWeightedL1Prefire_LHENjet2' : [ 1.17239693e+07, 1.16751579e+07, 1.17700671e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet2' : [ 1.12643315e+07, 1.20971707e+07, 1.26681852e+07, 1.09144888e+07, 1.17239693e+07, 1.22792735e+07, 1.06273797e+07, 1.14178772e+07, 1.19601525e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet2' : [ 1.26189393e+07, 1.06809829e+07, ], 'CountWeightedFullL1PrefireNom_LHENjet2' : [ 1.17239693e+07, 1.17236594e+07, 1.17239063e+07, ], 'CountWeightedFullL1Prefire_LHENjet2' : [ 1.17239693e+07, 1.16751579e+07, 1.17700671e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet2' : [ 1.12643315e+07, 1.20971707e+07, 1.26681852e+07, 1.09144888e+07, 1.17239693e+07, 1.22792735e+07, 1.06273797e+07, 1.14178772e+07, 1.19601525e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet2' : [ 1.26189393e+07, 1.06809829e+07, ], 'Count_LHENjet3' : [ 4551865, ], 'CountWeighted_LHENjet3' : [ 4.54762734e+06, 4.54723063e+06, 4.54789752e+06, ], 'CountWeightedLHEWeightScale_LHENjet3' : [ 4.46742312e+06, 4.72891082e+06, 4.87681416e+06, 4.29434827e+06, 4.54762734e+06, 4.69130015e+06, 4.15291830e+06, 4.39949268e+06, 4.53971797e+06, ], 'CountWeightedLHEEnvelope_LHENjet3' : [ 4.93679380e+06, 4.10610571e+06, ], 'CountWeightedFull_LHENjet3' : [ 4.54762734e+06, 4.54723063e+06, 4.54789752e+06, ], 'CountWeightedFullLHEWeightScale_LHENjet3' : [ 4.46742312e+06, 4.72891082e+06, 4.87681416e+06, 4.29434827e+06, 4.54762734e+06, 4.69130015e+06, 4.15291830e+06, 4.39949268e+06, 4.53971797e+06, ], 'CountWeightedFullLHEEnvelope_LHENjet3' : [ 4.93679380e+06, 4.10610571e+06, ], 'CountWeightedL1PrefireNom_LHENjet3' : [ 4.49677834e+06, 4.49635149e+06, 4.49712105e+06, ], 'CountWeightedL1Prefire_LHENjet3' : [ 4.49677834e+06, 4.48192142e+06, 4.51039197e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet3' : [ 4.41713657e+06, 4.67602825e+06, 4.82259432e+06, 4.24602344e+06, 4.49677834e+06, 4.63915374e+06, 4.10619874e+06, 4.35032395e+06, 4.48926832e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet3' : [ 4.88157889e+06, 4.06020515e+06, ], 'CountWeightedFullL1PrefireNom_LHENjet3' : [ 4.49677834e+06, 4.49635149e+06, 4.49712105e+06, ], 'CountWeightedFullL1Prefire_LHENjet3' : [ 4.49677834e+06, 4.48192142e+06, 4.51039197e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet3' : [ 4.41713657e+06, 4.67602825e+06, 4.82259432e+06, 4.24602344e+06, 4.49677834e+06, 4.63915374e+06, 4.10619874e+06, 4.35032395e+06, 4.48926832e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet3' : [ 4.88157889e+06, 4.06020515e+06, ], 'Count_LHENjet4' : [ 292741, ], 'CountWeighted_LHENjet4' : [ 2.92357647e+05, 2.92450330e+05, 2.92202154e+05, ], 'CountWeightedLHEWeightScale_LHENjet4' : [ 2.97987446e+05, 3.06111096e+05, 3.07610653e+05, 2.84454069e+05, 2.92357647e+05, 2.93899758e+05, 2.73428987e+05, 2.81156189e+05, 2.82729463e+05, ], 'CountWeightedLHEEnvelope_LHENjet4' : [ 3.20724694e+05, 2.62328005e+05, ], 'CountWeightedFull_LHENjet4' : [ 2.92357647e+05, 2.92450330e+05, 2.92202154e+05, ], 'CountWeightedFullLHEWeightScale_LHENjet4' : [ 2.97987446e+05, 3.06111096e+05, 3.07610653e+05, 2.84454069e+05, 2.92357647e+05, 2.93899758e+05, 2.73428987e+05, 2.81156189e+05, 2.82729463e+05, ], 'CountWeightedFullLHEEnvelope_LHENjet4' : [ 3.20724694e+05, 2.62328005e+05, ], 'CountWeightedL1PrefireNom_LHENjet4' : [ 2.89328431e+05, 2.89408898e+05, 2.89187085e+05, ], 'CountWeightedL1Prefire_LHENjet4' : [ 2.89328431e+05, 2.88435177e+05, 2.90141382e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet4' : [ 2.94878013e+05, 3.02940725e+05, 3.04442431e+05, 2.81484670e+05, 2.89328431e+05, 2.90871441e+05, 2.70573839e+05, 2.78242104e+05, 2.79815250e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet4' : [ 3.17396381e+05, 2.59610535e+05, ], 'CountWeightedFullL1PrefireNom_LHENjet4' : [ 2.89328431e+05, 2.89408898e+05, 2.89187085e+05, ], 'CountWeightedFullL1Prefire_LHENjet4' : [ 2.89328431e+05, 2.88435177e+05, 2.90141382e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet4' : [ 2.94878013e+05, 3.02940725e+05, 3.04442431e+05, 2.81484670e+05, 2.89328431e+05, 2.90871441e+05, 2.70573839e+05, 2.78242104e+05, 2.79815250e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet4' : [ 3.17396381e+05, 2.59610535e+05, ], }), ("nof_tree_events", 22255124), ("nof_db_events", 22255124), ("fsize_local", 83668016822), # 83.67GB, avg file size 1.86GB ("fsize_db", 957900452414), # 957.90GB, avg file size 2.38GB ("use_it", False), ("xsection", 1504.92), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Apr19_woPresel_nom_all_hh_multilepton/ntuples/WJetsToLNu_HT70To100"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/WJetsToLNu_HT-100To200_TuneCP5_13TeV-madgraphMLM-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v2/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "EWK"), ("process_name_specific", "WJetsToLNu_HT100To200"), ("nof_files", 72), ("nof_db_files", 735), ("nof_events", { 'Count' : [ 35862893, ], 'CountWeighted' : [ 3.58067165e+07, 3.58036152e+07, 3.58056375e+07, ], 'CountWeightedLHEWeightScale' : [ 3.65433232e+07, 3.72271551e+07, 3.73762974e+07, 3.51406302e+07, 3.58067165e+07, 3.59559200e+07, 3.39889692e+07, 3.46392324e+07, 3.47897349e+07, ], 'CountWeightedLHEEnvelope' : [ 3.84666788e+07, 3.30623462e+07, ], 'CountWeightedFull' : [ 3.58067165e+07, 3.58036152e+07, 3.58056375e+07, ], 'CountWeightedFullLHEWeightScale' : [ 3.65433232e+07, 3.72271551e+07, 3.73762974e+07, 3.51406302e+07, 3.58067165e+07, 3.59559200e+07, 3.39889692e+07, 3.46392324e+07, 3.47897349e+07, ], 'CountWeightedFullLHEEnvelope' : [ 3.84666788e+07, 3.30623462e+07, ], 'CountWeightedL1PrefireNom' : [ 3.48479805e+07, 3.48451248e+07, 3.48485882e+07, ], 'CountWeightedL1Prefire' : [ 3.48479805e+07, 3.46088224e+07, 3.50797636e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 3.55561682e+07, 3.62312991e+07, 3.63855612e+07, 3.41907379e+07, 3.48479805e+07, 3.50022332e+07, 3.30697012e+07, 3.37117219e+07, 3.38664899e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 3.74379329e+07, 3.21760954e+07, ], 'CountWeightedFullL1PrefireNom' : [ 3.48479805e+07, 3.48451248e+07, 3.48485882e+07, ], 'CountWeightedFullL1Prefire' : [ 3.48479805e+07, 3.46088224e+07, 3.50797636e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 3.55561682e+07, 3.62312991e+07, 3.63855612e+07, 3.41907379e+07, 3.48479805e+07, 3.50022332e+07, 3.30697012e+07, 3.37117219e+07, 3.38664899e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 3.74379329e+07, 3.21760954e+07, ], 'Count_LHENjet1' : [ 3573239, ], 'CountWeighted_LHENjet1' : [ 3.56834744e+06, 3.56793048e+06, 3.56889359e+06, ], 'CountWeightedLHEWeightScale_LHENjet1' : [ 3.60299991e+06, 3.66687251e+06, 3.69587996e+06, 3.50502602e+06, 3.56834744e+06, 3.59754612e+06, 3.42319905e+06, 3.48611188e+06, 3.51543020e+06, ], 'CountWeightedLHEEnvelope_LHENjet1' : [ 3.73076751e+06, 3.39533739e+06, ], 'CountWeightedFull_LHENjet1' : [ 3.56834744e+06, 3.56793048e+06, 3.56889359e+06, ], 'CountWeightedFullLHEWeightScale_LHENjet1' : [ 3.60299991e+06, 3.66687251e+06, 3.69587996e+06, 3.50502602e+06, 3.56834744e+06, 3.59754612e+06, 3.42319905e+06, 3.48611188e+06, 3.51543020e+06, ], 'CountWeightedFullLHEEnvelope_LHENjet1' : [ 3.73076751e+06, 3.39533739e+06, ], 'CountWeightedL1PrefireNom_LHENjet1' : [ 3.41405516e+06, 3.41341356e+06, 3.41476376e+06, ], 'CountWeightedL1Prefire_LHENjet1' : [ 3.41405516e+06, 3.38015247e+06, 3.44810757e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet1' : [ 3.44582150e+06, 3.50846637e+06, 3.53762182e+06, 3.35196837e+06, 3.41405516e+06, 3.44335688e+06, 3.27358430e+06, 3.33524402e+06, 3.36464022e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet1' : [ 3.56959376e+06, 3.24827659e+06, ], 'CountWeightedFullL1PrefireNom_LHENjet1' : [ 3.41405516e+06, 3.41341356e+06, 3.41476376e+06, ], 'CountWeightedFullL1Prefire_LHENjet1' : [ 3.41405516e+06, 3.38015247e+06, 3.44810757e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet1' : [ 3.44582150e+06, 3.50846637e+06, 3.53762182e+06, 3.35196837e+06, 3.41405516e+06, 3.44335688e+06, 3.27358430e+06, 3.33524402e+06, 3.36464022e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet1' : [ 3.56959376e+06, 3.24827659e+06, ], 'Count_LHENjet2' : [ 13403945, ], 'CountWeighted_LHENjet2' : [ 1.33823878e+07, 1.33827377e+07, 1.33822738e+07, ], 'CountWeightedLHEWeightScale_LHENjet2' : [ 1.34430875e+07, 1.38872790e+07, 1.41189642e+07, 1.29528051e+07, 1.33823878e+07, 1.36068725e+07, 1.25497920e+07, 1.29677491e+07, 1.31859731e+07, ], 'CountWeightedLHEEnvelope_LHENjet2' : [ 1.42735026e+07, 1.24332969e+07, ], 'CountWeightedFull_LHENjet2' : [ 1.33823878e+07, 1.33827377e+07, 1.33822738e+07, ], 'CountWeightedFullLHEWeightScale_LHENjet2' : [ 1.34430875e+07, 1.38872790e+07, 1.41189642e+07, 1.29528051e+07, 1.33823878e+07, 1.36068725e+07, 1.25497920e+07, 1.29677491e+07, 1.31859731e+07, ], 'CountWeightedFullLHEEnvelope_LHENjet2' : [ 1.42735026e+07, 1.24332969e+07, ], 'CountWeightedL1PrefireNom_LHENjet2' : [ 1.29926839e+07, 1.29923941e+07, 1.29929347e+07, ], 'CountWeightedL1Prefire_LHENjet2' : [ 1.29926839e+07, 1.28973938e+07, 1.30862939e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet2' : [ 1.30463810e+07, 1.34823929e+07, 1.37113080e+07, 1.25709735e+07, 1.29926839e+07, 1.32144152e+07, 1.21801757e+07, 1.25903815e+07, 1.28059949e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet2' : [ 1.38569985e+07, 1.20710587e+07, ], 'CountWeightedFullL1PrefireNom_LHENjet2' : [ 1.29926839e+07, 1.29923941e+07, 1.29929347e+07, ], 'CountWeightedFullL1Prefire_LHENjet2' : [ 1.29926839e+07, 1.28973938e+07, 1.30862939e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet2' : [ 1.30463810e+07, 1.34823929e+07, 1.37113080e+07, 1.25709735e+07, 1.29926839e+07, 1.32144152e+07, 1.21801757e+07, 1.25903815e+07, 1.28059949e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet2' : [ 1.38569985e+07, 1.20710587e+07, ], 'Count_LHENjet3' : [ 12672374, ], 'CountWeighted_LHENjet3' : [ 1.26505274e+07, 1.26509732e+07, 1.26505396e+07, ], 'CountWeightedLHEWeightScale_LHENjet3' : [ 1.29303923e+07, 1.31879343e+07, 1.32325710e+07, 1.24008170e+07, 1.26505274e+07, 1.26953091e+07, 1.19668373e+07, 1.22103749e+07, 1.22550453e+07, ], 'CountWeightedLHEEnvelope_LHENjet3' : [ 1.36567598e+07, 1.16080162e+07, ], 'CountWeightedFull_LHENjet3' : [ 1.26505274e+07, 1.26509732e+07, 1.26505396e+07, ], 'CountWeightedFullLHEWeightScale_LHENjet3' : [ 1.29303923e+07, 1.31879343e+07, 1.32325710e+07, 1.24008170e+07, 1.26505274e+07, 1.26953091e+07, 1.19668373e+07, 1.22103749e+07, 1.22550453e+07, ], 'CountWeightedFullLHEEnvelope_LHENjet3' : [ 1.36567598e+07, 1.16080162e+07, ], 'CountWeightedL1PrefireNom_LHENjet3' : [ 1.23647764e+07, 1.23648313e+07, 1.23649998e+07, ], 'CountWeightedL1Prefire_LHENjet3' : [ 1.23647764e+07, 1.22901595e+07, 1.24363607e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet3' : [ 1.26341603e+07, 1.28898095e+07, 1.29365410e+07, 1.21169218e+07, 1.23647764e+07, 1.24115073e+07, 1.16930542e+07, 1.19346916e+07, 1.19812700e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet3' : [ 1.33468584e+07, 1.13463074e+07, ], 'CountWeightedFullL1PrefireNom_LHENjet3' : [ 1.23647764e+07, 1.23648313e+07, 1.23649998e+07, ], 'CountWeightedFullL1Prefire_LHENjet3' : [ 1.23647764e+07, 1.22901595e+07, 1.24363607e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet3' : [ 1.26341603e+07, 1.28898095e+07, 1.29365410e+07, 1.21169218e+07, 1.23647764e+07, 1.24115073e+07, 1.16930542e+07, 1.19346916e+07, 1.19812700e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet3' : [ 1.33468584e+07, 1.13463074e+07, ], 'Count_LHENjet4' : [ 6213335, ], 'CountWeighted_LHENjet4' : [ 6.20255355e+06, 6.20261216e+06, 6.20301896e+06, ], 'CountWeightedLHEWeightScale_LHENjet4' : [ 6.56692696e+06, 6.48285421e+06, 6.32902559e+06, 6.28199695e+06, 6.20255355e+06, 6.05626738e+06, 6.04915639e+06, 5.97373195e+06, 5.83336865e+06, ], 'CountWeightedLHEEnvelope_LHENjet4' : [ 6.80553280e+06, 5.62571889e+06, ], 'CountWeightedFull_LHENjet4' : [ 6.20255355e+06, 6.20261216e+06, 6.20301896e+06, ], 'CountWeightedFullLHEWeightScale_LHENjet4' : [ 6.56692696e+06, 6.48285421e+06, 6.32902559e+06, 6.28199695e+06, 6.20255355e+06, 6.05626738e+06, 6.04915639e+06, 5.97373195e+06, 5.83336865e+06, ], 'CountWeightedFullLHEEnvelope_LHENjet4' : [ 6.80553280e+06, 5.62571889e+06, ], 'CountWeightedL1PrefireNom_LHENjet4' : [ 6.07497295e+06, 6.07479241e+06, 6.07547317e+06, ], 'CountWeightedL1Prefire_LHENjet4' : [ 6.07497295e+06, 6.04014893e+06, 6.10778247e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet4' : [ 6.42988454e+06, 6.34947123e+06, 6.20021845e+06, 6.15089492e+06, 6.07497295e+06, 5.93301142e+06, 5.92291123e+06, 5.85083757e+06, 5.71465094e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet4' : [ 6.66447362e+06, 5.51047207e+06, ], 'CountWeightedFullL1PrefireNom_LHENjet4' : [ 6.07497295e+06, 6.07479241e+06, 6.07547317e+06, ], 'CountWeightedFullL1Prefire_LHENjet4' : [ 6.07497295e+06, 6.04014893e+06, 6.10778247e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet4' : [ 6.42988454e+06, 6.34947123e+06, 6.20021845e+06, 6.15089492e+06, 6.07497295e+06, 5.93301142e+06, 5.92291123e+06, 5.85083757e+06, 5.71465094e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet4' : [ 6.66447362e+06, 5.51047207e+06, ], }), ("nof_tree_events", 35862893), ("nof_db_events", 35862893), ("fsize_local", 161202999979), # 161.20GB, avg file size 2.24GB ("fsize_db", 1632440553612), # 1.63TB, avg file size 2.22GB ("use_it", False), ("xsection", 1625.08), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Apr19_woPresel_nom_all_hh_multilepton/ntuples/WJetsToLNu_HT100To200"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/WJetsToLNu_HT-200To400_TuneCP5_13TeV-madgraphMLM-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "EWK"), ("process_name_specific", "WJetsToLNu_HT200To400"), ("nof_files", 43), ("nof_db_files", 400), ("nof_events", { 'Count' : [ 21250517, ], 'CountWeighted' : [ 2.11917228e+07, 2.11902161e+07, 2.11868707e+07, ], 'CountWeightedLHEWeightScale' : [ 2.35332858e+07, 2.26696090e+07, 2.17513899e+07, 2.20003778e+07, 2.11917228e+07, 2.03318975e+07, 2.07730694e+07, 2.00085800e+07, 1.91954853e+07, ], 'CountWeightedLHEEnvelope' : [ 2.38158248e+07, 1.89836777e+07, ], 'CountWeightedFull' : [ 2.11917228e+07, 2.11902161e+07, 2.11868707e+07, ], 'CountWeightedFullLHEWeightScale' : [ 2.35332858e+07, 2.26696090e+07, 2.17513899e+07, 2.20003778e+07, 2.11917228e+07, 2.03318975e+07, 2.07730694e+07, 2.00085800e+07, 1.91954853e+07, ], 'CountWeightedFullLHEEnvelope' : [ 2.38158248e+07, 1.89836777e+07, ], 'CountWeightedL1PrefireNom' : [ 2.01047941e+07, 2.01026993e+07, 2.01038966e+07, ], 'CountWeightedL1Prefire' : [ 2.01047941e+07, 1.98548556e+07, 2.03528688e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 2.22999407e+07, 2.15011590e+07, 2.06459257e+07, 2.08529027e+07, 2.01047941e+07, 1.93036297e+07, 1.96940479e+07, 1.89867138e+07, 1.82288043e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 2.25723238e+07, 1.80241421e+07, ], 'CountWeightedFullL1PrefireNom' : [ 2.01047941e+07, 2.01026993e+07, 2.01038966e+07, ], 'CountWeightedFullL1Prefire' : [ 2.01047941e+07, 1.98548556e+07, 2.03528688e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 2.22999407e+07, 2.15011590e+07, 2.06459257e+07, 2.08529027e+07, 2.01047941e+07, 1.93036297e+07, 1.96940479e+07, 1.89867138e+07, 1.82288043e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 2.25723238e+07, 1.80241421e+07, ], 'Count_LHENjet1' : [ 430646, ], 'CountWeighted_LHENjet1' : [ 4.29527510e+05, 4.29425036e+05, 4.29670125e+05, ], 'CountWeightedLHEWeightScale_LHENjet1' : [ 4.55259508e+05, 4.42124620e+05, 4.28344798e+05, 4.42210489e+05, 4.29527510e+05, 4.16202410e+05, 4.31167348e+05, 4.18867530e+05, 4.05927547e+05, ], 'CountWeightedLHEEnvelope_LHENjet1' : [ 4.56061431e+05, 4.05171140e+05, ], 'CountWeightedFull_LHENjet1' : [ 4.29527510e+05, 4.29425036e+05, 4.29670125e+05, ], 'CountWeightedFullLHEWeightScale_LHENjet1' : [ 4.55259508e+05, 4.42124620e+05, 4.28344798e+05, 4.42210489e+05, 4.29527510e+05, 4.16202410e+05, 4.31167348e+05, 4.18867530e+05, 4.05927547e+05, ], 'CountWeightedFullLHEEnvelope_LHENjet1' : [ 4.56061431e+05, 4.05171140e+05, ], 'CountWeightedL1PrefireNom_LHENjet1' : [ 4.09784620e+05, 4.09684020e+05, 4.09915784e+05, ], 'CountWeightedL1Prefire_LHENjet1' : [ 4.09784620e+05, 4.05679333e+05, 4.13931777e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet1' : [ 4.34055461e+05, 4.21852322e+05, 4.08990292e+05, 4.21562840e+05, 4.09784620e+05, 3.97351354e+05, 4.10990733e+05, 3.99572780e+05, 3.87502643e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet1' : [ 4.34854347e+05, 3.86748702e+05, ], 'CountWeightedFullL1PrefireNom_LHENjet1' : [ 4.09784620e+05, 4.09684020e+05, 4.09915784e+05, ], 'CountWeightedFullL1Prefire_LHENjet1' : [ 4.09784620e+05, 4.05679333e+05, 4.13931777e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet1' : [ 4.34055461e+05, 4.21852322e+05, 4.08990292e+05, 4.21562840e+05, 4.09784620e+05, 3.97351354e+05, 4.10990733e+05, 3.99572780e+05, 3.87502643e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet1' : [ 4.34854347e+05, 3.86748702e+05, ], 'Count_LHENjet2' : [ 3548173, ], 'CountWeighted_LHENjet2' : [ 3.53864697e+06, 3.53854221e+06, 3.53887569e+06, ], 'CountWeightedLHEWeightScale_LHENjet2' : [ 3.85676004e+06, 3.79286340e+06, 3.70850084e+06, 3.59886695e+06, 3.53864697e+06, 3.45918074e+06, 3.39208196e+06, 3.33478255e+06, 3.25936351e+06, ], 'CountWeightedLHEEnvelope_LHENjet2' : [ 3.90319537e+06, 3.22579663e+06, ], 'CountWeightedFull_LHENjet2' : [ 3.53864697e+06, 3.53854221e+06, 3.53887569e+06, ], 'CountWeightedFullLHEWeightScale_LHENjet2' : [ 3.85676004e+06, 3.79286340e+06, 3.70850084e+06, 3.59886695e+06, 3.53864697e+06, 3.45918074e+06, 3.39208196e+06, 3.33478255e+06, 3.25936351e+06, ], 'CountWeightedFullLHEEnvelope_LHENjet2' : [ 3.90319537e+06, 3.22579663e+06, ], 'CountWeightedL1PrefireNom_LHENjet2' : [ 3.33786386e+06, 3.33756517e+06, 3.33830274e+06, ], 'CountWeightedL1Prefire_LHENjet2' : [ 3.33786386e+06, 3.29387009e+06, 3.38205423e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet2' : [ 3.63347482e+06, 3.57665766e+06, 3.49991927e+06, 3.39148746e+06, 3.33786386e+06, 3.26554894e+06, 3.19742652e+06, 3.14636969e+06, 3.07768598e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet2' : [ 3.67833500e+06, 3.04516212e+06, ], 'CountWeightedFullL1PrefireNom_LHENjet2' : [ 3.33786386e+06, 3.33756517e+06, 3.33830274e+06, ], 'CountWeightedFullL1Prefire_LHENjet2' : [ 3.33786386e+06, 3.29387009e+06, 3.38205423e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet2' : [ 3.63347482e+06, 3.57665766e+06, 3.49991927e+06, 3.39148746e+06, 3.33786386e+06, 3.26554894e+06, 3.19742652e+06, 3.14636969e+06, 3.07768598e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet2' : [ 3.67833500e+06, 3.04516212e+06, ], 'Count_LHENjet3' : [ 6352832, ], 'CountWeighted_LHENjet3' : [ 6.33544759e+06, 6.33605988e+06, 6.33503907e+06, ], 'CountWeightedLHEWeightScale_LHENjet3' : [ 6.96034805e+06, 6.78575427e+06, 6.57432241e+06, 6.49891693e+06, 6.33544759e+06, 6.13752021e+06, 6.12952477e+06, 5.97515202e+06, 5.78795147e+06, ], 'CountWeightedLHEEnvelope_LHENjet3' : [ 7.06443177e+06, 5.70979485e+06, ], 'CountWeightedFull_LHENjet3' : [ 6.33544759e+06, 6.33605988e+06, 6.33503907e+06, ], 'CountWeightedFullLHEWeightScale_LHENjet3' : [ 6.96034805e+06, 6.78575427e+06, 6.57432241e+06, 6.49891693e+06, 6.33544759e+06, 6.13752021e+06, 6.12952477e+06, 5.97515202e+06, 5.78795147e+06, ], 'CountWeightedFullLHEEnvelope_LHENjet3' : [ 7.06443177e+06, 5.70979485e+06, ], 'CountWeightedL1PrefireNom_LHENjet3' : [ 6.00690791e+06, 6.00690893e+06, 6.00703325e+06, ], 'CountWeightedL1Prefire_LHENjet3' : [ 6.00690791e+06, 5.93220842e+06, 6.08129513e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet3' : [ 6.59163600e+06, 6.43214859e+06, 6.23641084e+06, 6.15625291e+06, 6.00690791e+06, 5.82356247e+06, 5.80764043e+06, 5.66652405e+06, 5.49309432e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet3' : [ 6.69178173e+06, 5.41772747e+06, ], 'CountWeightedFullL1PrefireNom_LHENjet3' : [ 6.00690791e+06, 6.00690893e+06, 6.00703325e+06, ], 'CountWeightedFullL1Prefire_LHENjet3' : [ 6.00690791e+06, 5.93220842e+06, 6.08129513e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet3' : [ 6.59163600e+06, 6.43214859e+06, 6.23641084e+06, 6.15625291e+06, 6.00690791e+06, 5.82356247e+06, 5.80764043e+06, 5.66652405e+06, 5.49309432e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet3' : [ 6.69178173e+06, 5.41772747e+06, ], 'Count_LHENjet4' : [ 10918866, ], 'CountWeighted_LHENjet4' : [ 1.08880494e+07, 1.08878023e+07, 1.08877549e+07, ], 'CountWeightedLHEWeightScale_LHENjet4' : [ 1.22609537e+07, 1.16488529e+07, 1.10402827e+07, 1.14604572e+07, 1.08880494e+07, 1.03189818e+07, 1.08203298e+07, 1.02799782e+07, 9.74225227e+06, ], 'CountWeightedLHEEnvelope_LHENjet4' : [ 1.23921492e+07, 9.64294458e+06, ], 'CountWeightedFull_LHENjet4' : [ 1.08880494e+07, 1.08878023e+07, 1.08877549e+07, ], 'CountWeightedFullLHEWeightScale_LHENjet4' : [ 1.22609537e+07, 1.16488529e+07, 1.10402827e+07, 1.14604572e+07, 1.08880494e+07, 1.03189818e+07, 1.08203298e+07, 1.02799782e+07, 9.74225227e+06, ], 'CountWeightedFullLHEEnvelope_LHENjet4' : [ 1.23921492e+07, 9.64294458e+06, ], 'CountWeightedL1PrefireNom_LHENjet4' : [ 1.03502895e+07, 1.03492878e+07, 1.03510260e+07, ], 'CountWeightedL1Prefire_LHENjet4' : [ 1.03502895e+07, 1.02231001e+07, 1.04756941e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet4' : [ 1.16408164e+07, 1.10705628e+07, 1.05006393e+07, 1.08836414e+07, 1.03502895e+07, 9.81715392e+06, 1.02780145e+07, 9.77439005e+06, 9.27051642e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet4' : [ 1.17673876e+07, 9.17450759e+06, ], 'CountWeightedFullL1PrefireNom_LHENjet4' : [ 1.03502895e+07, 1.03492878e+07, 1.03510260e+07, ], 'CountWeightedFullL1Prefire_LHENjet4' : [ 1.03502895e+07, 1.02231001e+07, 1.04756941e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet4' : [ 1.16408164e+07, 1.10705628e+07, 1.05006393e+07, 1.08836414e+07, 1.03502895e+07, 9.81715392e+06, 1.02780145e+07, 9.77439005e+06, 9.27051642e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet4' : [ 1.17673876e+07, 9.17450759e+06, ], }), ("nof_tree_events", 21250517), ("nof_db_events", 21250517), ("fsize_local", 126623117788), # 126.62GB, avg file size 2.94GB ("fsize_db", 1058111782457), # 1.06TB, avg file size 2.65GB ("use_it", False), ("xsection", 477.96), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Apr19_woPresel_nom_all_hh_multilepton/ntuples/WJetsToLNu_HT200To400"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/WJetsToLNu_HT-400To600_TuneCP5_13TeV-madgraphMLM-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "EWK"), ("process_name_specific", "WJetsToLNu_HT400To600"), ("nof_files", 29), ("nof_db_files", 314), ("nof_events", { 'Count' : [ 14313274, ], 'CountWeighted' : [ 1.42494275e+07, 1.42488675e+07, 1.42524302e+07, ], 'CountWeightedLHEWeightScale' : [ 1.70650689e+07, 1.57845759e+07, 1.46478847e+07, 1.54111379e+07, 1.42494275e+07, 1.32201407e+07, 1.41023242e+07, 1.30354612e+07, 1.20902919e+07, ], 'CountWeightedLHEEnvelope' : [ 1.71066355e+07, 1.20668315e+07, ], 'CountWeightedFull' : [ 1.42494275e+07, 1.42488675e+07, 1.42524302e+07, ], 'CountWeightedFullLHEWeightScale' : [ 1.70650689e+07, 1.57845759e+07, 1.46478847e+07, 1.54111379e+07, 1.42494275e+07, 1.32201407e+07, 1.41023242e+07, 1.30354612e+07, 1.20902919e+07, ], 'CountWeightedFullLHEEnvelope' : [ 1.71066355e+07, 1.20668315e+07, ], 'CountWeightedL1PrefireNom' : [ 1.31445637e+07, 1.31431028e+07, 1.31471587e+07, ], 'CountWeightedL1Prefire' : [ 1.31445637e+07, 1.29059472e+07, 1.33841703e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 1.57017290e+07, 1.45522405e+07, 1.35266980e+07, 1.41880134e+07, 1.31445637e+07, 1.22148537e+07, 1.29896109e+07, 1.20305990e+07, 1.11763304e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 1.57413399e+07, 1.11538395e+07, ], 'CountWeightedFullL1PrefireNom' : [ 1.31445637e+07, 1.31431028e+07, 1.31471587e+07, ], 'CountWeightedFullL1Prefire' : [ 1.31445637e+07, 1.29059472e+07, 1.33841703e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 1.57017290e+07, 1.45522405e+07, 1.35266980e+07, 1.41880134e+07, 1.31445637e+07, 1.22148537e+07, 1.29896109e+07, 1.20305990e+07, 1.11763304e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 1.57413399e+07, 1.11538395e+07, ], 'Count_LHENjet1' : [ 45709, ], 'CountWeighted_LHENjet1' : [ 4.55952234e+04, 4.55729069e+04, 4.56126499e+04, ], 'CountWeightedLHEWeightScale_LHENjet1' : [ 5.06910270e+04, 4.72217603e+04, 4.41116640e+04, 4.89419874e+04, 4.55952234e+04, 4.25950465e+04, 4.74441891e+04, 4.42028813e+04, 4.12963516e+04, ], 'CountWeightedLHEEnvelope_LHENjet1' : [ 5.06878165e+04, 4.12995540e+04, ], 'CountWeightedFull_LHENjet1' : [ 4.55952234e+04, 4.55729069e+04, 4.56126499e+04, ], 'CountWeightedFullLHEWeightScale_LHENjet1' : [ 5.06910270e+04, 4.72217603e+04, 4.41116640e+04, 4.89419874e+04, 4.55952234e+04, 4.25950465e+04, 4.74441891e+04, 4.42028813e+04, 4.12963516e+04, ], 'CountWeightedFullLHEEnvelope_LHENjet1' : [ 5.06878165e+04, 4.12995540e+04, ], 'CountWeightedL1PrefireNom_LHENjet1' : [ 4.48571281e+04, 4.48342462e+04, 4.48733427e+04, ], 'CountWeightedL1Prefire_LHENjet1' : [ 4.48571281e+04, 4.46988596e+04, 4.50151105e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet1' : [ 4.98513528e+04, 4.64600942e+04, 4.34175767e+04, 4.81282830e+04, 4.48571281e+04, 4.19224435e+04, 4.66527482e+04, 4.34849818e+04, 4.06421639e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet1' : [ 4.98491676e+04, 4.06443539e+04, ], 'CountWeightedFullL1PrefireNom_LHENjet1' : [ 4.48571281e+04, 4.48342462e+04, 4.48733427e+04, ], 'CountWeightedFullL1Prefire_LHENjet1' : [ 4.48571281e+04, 4.46988596e+04, 4.50151105e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet1' : [ 4.98513528e+04, 4.64600942e+04, 4.34175767e+04, 4.81282830e+04, 4.48571281e+04, 4.19224435e+04, 4.66527482e+04, 4.34849818e+04, 4.06421639e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet1' : [ 4.98491676e+04, 4.06443539e+04, ], 'Count_LHENjet2' : [ 1050932, ], 'CountWeighted_LHENjet2' : [ 1.04633915e+06, 1.04626831e+06, 1.04629761e+06, ], 'CountWeightedLHEWeightScale_LHENjet2' : [ 1.20833844e+06, 1.14639842e+06, 1.08844400e+06, 1.10346147e+06, 1.04633915e+06, 9.92978529e+05, 1.01902800e+06, 9.65812730e+05, 9.16157266e+05, ], 'CountWeightedLHEEnvelope_LHENjet2' : [ 1.21068487e+06, 9.14997348e+05, ], 'CountWeightedFull_LHENjet2' : [ 1.04633915e+06, 1.04626831e+06, 1.04629761e+06, ], 'CountWeightedFullLHEWeightScale_LHENjet2' : [ 1.20833844e+06, 1.14639842e+06, 1.08844400e+06, 1.10346147e+06, 1.04633915e+06, 9.92978529e+05, 1.01902800e+06, 9.65812730e+05, 9.16157266e+05, ], 'CountWeightedFullLHEEnvelope_LHENjet2' : [ 1.21068487e+06, 9.14997348e+05, ], 'CountWeightedL1PrefireNom_LHENjet2' : [ 9.73645785e+05, 9.73538803e+05, 9.73680102e+05, ], 'CountWeightedL1Prefire_LHENjet2' : [ 9.73645785e+05, 9.58521742e+05, 9.88933186e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet2' : [ 1.12180021e+06, 1.06600584e+06, 1.01353055e+06, 1.02518356e+06, 9.73645785e+05, 9.25264693e+05, 9.47377854e+05, 8.99300938e+05, 8.54218920e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet2' : [ 1.12408838e+06, 8.53077135e+05, ], 'CountWeightedFullL1PrefireNom_LHENjet2' : [ 9.73645785e+05, 9.73538803e+05, 9.73680102e+05, ], 'CountWeightedFullL1Prefire_LHENjet2' : [ 9.73645785e+05, 9.58521742e+05, 9.88933186e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet2' : [ 1.12180021e+06, 1.06600584e+06, 1.01353055e+06, 1.02518356e+06, 9.73645785e+05, 9.25264693e+05, 9.47377854e+05, 8.99300938e+05, 8.54218920e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet2' : [ 1.12408838e+06, 8.53077135e+05, ], 'Count_LHENjet3' : [ 2732735, ], 'CountWeighted_LHENjet3' : [ 2.72084824e+06, 2.72094624e+06, 2.72100494e+06, ], 'CountWeightedLHEWeightScale_LHENjet3' : [ 3.19862512e+06, 3.00438758e+06, 2.82482938e+06, 2.89814414e+06, 2.72084824e+06, 2.55719014e+06, 2.65876863e+06, 2.49506087e+06, 2.34405627e+06, ], 'CountWeightedLHEEnvelope_LHENjet3' : [ 3.20889624e+06, 2.33821791e+06, ], 'CountWeightedFull_LHENjet3' : [ 2.72084824e+06, 2.72094624e+06, 2.72100494e+06, ], 'CountWeightedFullLHEWeightScale_LHENjet3' : [ 3.19862512e+06, 3.00438758e+06, 2.82482938e+06, 2.89814414e+06, 2.72084824e+06, 2.55719014e+06, 2.65876863e+06, 2.49506087e+06, 2.34405627e+06, ], 'CountWeightedFullLHEEnvelope_LHENjet3' : [ 3.20889624e+06, 2.33821791e+06, ], 'CountWeightedL1PrefireNom_LHENjet3' : [ 2.52100844e+06, 2.52084638e+06, 2.52138043e+06, ], 'CountWeightedL1Prefire_LHENjet3' : [ 2.52100844e+06, 2.47869774e+06, 2.56365187e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet3' : [ 2.95650122e+06, 2.78183806e+06, 2.61947404e+06, 2.68062709e+06, 2.52100844e+06, 2.37284179e+06, 2.46075644e+06, 2.31319684e+06, 2.17635530e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet3' : [ 2.96630591e+06, 2.17074480e+06, ], 'CountWeightedFullL1PrefireNom_LHENjet3' : [ 2.52100844e+06, 2.52084638e+06, 2.52138043e+06, ], 'CountWeightedFullL1Prefire_LHENjet3' : [ 2.52100844e+06, 2.47869774e+06, 2.56365187e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet3' : [ 2.95650122e+06, 2.78183806e+06, 2.61947404e+06, 2.68062709e+06, 2.52100844e+06, 2.37284179e+06, 2.46075644e+06, 2.31319684e+06, 2.17635530e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet3' : [ 2.96630591e+06, 2.17074480e+06, ], 'Count_LHENjet4' : [ 10483898, ], 'CountWeighted_LHENjet4' : [ 1.04372494e+07, 1.04372694e+07, 1.04385707e+07, ], 'CountWeightedLHEWeightScale_LHENjet4' : [ 1.26074143e+07, 1.15866653e+07, 1.06905267e+07, 1.13606669e+07, 1.04372494e+07, 9.62738145e+06, 1.03770903e+07, 9.53092020e+06, 8.78878225e+06, ], 'CountWeightedLHEEnvelope_LHENjet4' : [ 1.26363636e+07, 8.77232703e+06, ], 'CountWeightedFull_LHENjet4' : [ 1.04372494e+07, 1.04372694e+07, 1.04385707e+07, ], 'CountWeightedFullLHEWeightScale_LHENjet4' : [ 1.26074143e+07, 1.15866653e+07, 1.06905267e+07, 1.13606669e+07, 1.04372494e+07, 9.62738145e+06, 1.03770903e+07, 9.53092020e+06, 8.78878225e+06, ], 'CountWeightedFullLHEEnvelope_LHENjet4' : [ 1.26363636e+07, 8.77232703e+06, ], 'CountWeightedL1PrefireNom_LHENjet4' : [ 9.60539234e+06, 9.60446598e+06, 9.60681930e+06, ], 'CountWeightedL1Prefire_LHENjet4' : [ 9.60539234e+06, 9.42435206e+06, 9.78696461e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet4' : [ 1.15735878e+07, 1.06580070e+07, 9.85028991e+06, 1.04341298e+07, 9.60539234e+06, 8.87483183e+06, 9.53483247e+06, 8.77484994e+06, 8.10511609e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet4' : [ 1.16011087e+07, 8.08938031e+06, ], 'CountWeightedFullL1PrefireNom_LHENjet4' : [ 9.60539234e+06, 9.60446598e+06, 9.60681930e+06, ], 'CountWeightedFullL1Prefire_LHENjet4' : [ 9.60539234e+06, 9.42435206e+06, 9.78696461e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet4' : [ 1.15735878e+07, 1.06580070e+07, 9.85028991e+06, 1.04341298e+07, 9.60539234e+06, 8.87483183e+06, 9.53483247e+06, 8.77484994e+06, 8.10511609e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet4' : [ 1.16011087e+07, 8.08938031e+06, ], }), ("nof_tree_events", 14313274), ("nof_db_events", 14313274), ("fsize_local", 105245406380), # 105.25GB, avg file size 3.63GB ("fsize_db", 780224610750), # 780.22GB, avg file size 2.48GB ("use_it", False), ("xsection", 67.441), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Apr19_woPresel_nom_all_hh_multilepton/ntuples/WJetsToLNu_HT400To600"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/WJetsToLNu_HT-600To800_TuneCP5_13TeV-madgraphMLM-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "EWK"), ("process_name_specific", "WJetsToLNu_HT600To800"), ("nof_files", 44), ("nof_db_files", 488), ("nof_events", { 'Count' : [ 21709087, ], 'CountWeighted' : [ 2.15827509e+07, 2.15834621e+07, 2.15797609e+07, ], 'CountWeightedLHEWeightScale' : [ 2.66086623e+07, 2.41149546e+07, 2.19997070e+07, 2.38207038e+07, 2.15827509e+07, 1.96842053e+07, 2.16042279e+07, 1.95682678e+07, 1.78432496e+07, ], 'CountWeightedLHEEnvelope' : [ 2.66356156e+07, 1.78290483e+07, ], 'CountWeightedFull' : [ 2.15827509e+07, 2.15834621e+07, 2.15797609e+07, ], 'CountWeightedFullLHEWeightScale' : [ 2.66086623e+07, 2.41149546e+07, 2.19997070e+07, 2.38207038e+07, 2.15827509e+07, 1.96842053e+07, 2.16042279e+07, 1.95682678e+07, 1.78432496e+07, ], 'CountWeightedFullLHEEnvelope' : [ 2.66356156e+07, 1.78290483e+07, ], 'CountWeightedL1PrefireNom' : [ 1.99167927e+07, 1.99153538e+07, 1.99167110e+07, ], 'CountWeightedL1Prefire' : [ 1.99167927e+07, 1.95640342e+07, 2.02721707e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 2.44811858e+07, 2.22404131e+07, 2.03309215e+07, 2.19299886e+07, 1.99167927e+07, 1.82016522e+07, 1.99004083e+07, 1.80677663e+07, 1.65077698e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 2.45070709e+07, 1.64940615e+07, ], 'CountWeightedFullL1PrefireNom' : [ 1.99167927e+07, 1.99153538e+07, 1.99167110e+07, ], 'CountWeightedFullL1Prefire' : [ 1.99167927e+07, 1.95640342e+07, 2.02721707e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 2.44811858e+07, 2.22404131e+07, 2.03309215e+07, 2.19299886e+07, 1.99167927e+07, 1.82016522e+07, 1.99004083e+07, 1.80677663e+07, 1.65077698e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 2.45070709e+07, 1.64940615e+07, ], 'Count_LHENjet1' : [ 11368, ], 'CountWeighted_LHENjet1' : [ 1.12863398e+04, 1.12562286e+04, 1.13362583e+04, ], 'CountWeightedLHEWeightScale_LHENjet1' : [ 1.33684386e+04, 1.21767177e+04, 1.11467676e+04, 1.23911283e+04, 1.12863398e+04, 1.03317060e+04, 1.15489813e+04, 1.05192859e+04, 9.62938983e+03, ], 'CountWeightedLHEEnvelope_LHENjet1' : [ 1.33682905e+04, 9.62947949e+03, ], 'CountWeightedFull_LHENjet1' : [ 1.12863398e+04, 1.12562286e+04, 1.13362583e+04, ], 'CountWeightedFullLHEWeightScale_LHENjet1' : [ 1.33684386e+04, 1.21767177e+04, 1.11467676e+04, 1.23911283e+04, 1.12863398e+04, 1.03317060e+04, 1.15489813e+04, 1.05192859e+04, 9.62938983e+03, ], 'CountWeightedFullLHEEnvelope_LHENjet1' : [ 1.33682905e+04, 9.62947949e+03, ], 'CountWeightedL1PrefireNom_LHENjet1' : [ 1.12439208e+04, 1.12134614e+04, 1.12939209e+04, ], 'CountWeightedL1Prefire_LHENjet1' : [ 1.12439208e+04, 1.12339681e+04, 1.12535773e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet1' : [ 1.33169866e+04, 1.21309895e+04, 1.11058897e+04, 1.23433990e+04, 1.12439208e+04, 1.02937860e+04, 1.15044647e+04, 1.04797226e+04, 9.59402295e+03, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet1' : [ 1.33168392e+04, 9.59411229e+03, ], 'CountWeightedFullL1PrefireNom_LHENjet1' : [ 1.12439208e+04, 1.12134614e+04, 1.12939209e+04, ], 'CountWeightedFullL1Prefire_LHENjet1' : [ 1.12439208e+04, 1.12339681e+04, 1.12535773e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet1' : [ 1.33169866e+04, 1.21309895e+04, 1.11058897e+04, 1.23433990e+04, 1.12439208e+04, 1.02937860e+04, 1.15044647e+04, 1.04797226e+04, 9.59402295e+03, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet1' : [ 1.33168392e+04, 9.59411229e+03, ], 'Count_LHENjet2' : [ 1108939, ], 'CountWeighted_LHENjet2' : [ 1.10255523e+06, 1.10235351e+06, 1.10267945e+06, ], 'CountWeightedLHEWeightScale_LHENjet2' : [ 1.30217918e+06, 1.21542639e+06, 1.13828444e+06, 1.18182569e+06, 1.10255523e+06, 1.03216390e+06, 1.08427610e+06, 1.01110074e+06, 9.46173614e+05, ], 'CountWeightedLHEEnvelope_LHENjet2' : [ 1.30307952e+06, 9.45857489e+05, ], 'CountWeightedFull_LHENjet2' : [ 1.10255523e+06, 1.10235351e+06, 1.10267945e+06, ], 'CountWeightedFullLHEWeightScale_LHENjet2' : [ 1.30217918e+06, 1.21542639e+06, 1.13828444e+06, 1.18182569e+06, 1.10255523e+06, 1.03216390e+06, 1.08427610e+06, 1.01110074e+06, 9.46173614e+05, ], 'CountWeightedFullLHEEnvelope_LHENjet2' : [ 1.30307952e+06, 9.45857489e+05, ], 'CountWeightedL1PrefireNom_LHENjet2' : [ 1.03731376e+06, 1.03707438e+06, 1.03746730e+06, ], 'CountWeightedL1Prefire_LHENjet2' : [ 1.03731376e+06, 1.02385002e+06, 1.05094195e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet2' : [ 1.22233733e+06, 1.14294599e+06, 1.07208977e+06, 1.10994557e+06, 1.03731376e+06, 9.72589450e+05, 1.01882920e+06, 9.51709143e+05, 8.91948907e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet2' : [ 1.22322776e+06, 8.91633115e+05, ], 'CountWeightedFullL1PrefireNom_LHENjet2' : [ 1.03731376e+06, 1.03707438e+06, 1.03746730e+06, ], 'CountWeightedFullL1Prefire_LHENjet2' : [ 1.03731376e+06, 1.02385002e+06, 1.05094195e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet2' : [ 1.22233733e+06, 1.14294599e+06, 1.07208977e+06, 1.10994557e+06, 1.03731376e+06, 9.72589450e+05, 1.01882920e+06, 9.51709143e+05, 8.91948907e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet2' : [ 1.22322776e+06, 8.91633115e+05, ], 'Count_LHENjet3' : [ 3111270, ], 'CountWeighted_LHENjet3' : [ 3.09180476e+06, 3.09207091e+06, 3.09144873e+06, ], 'CountWeightedLHEWeightScale_LHENjet3' : [ 3.72599088e+06, 3.43372106e+06, 3.17825046e+06, 3.35646502e+06, 3.09180476e+06, 2.86068036e+06, 3.05978459e+06, 2.81731496e+06, 2.60579721e+06, ], 'CountWeightedLHEEnvelope_LHENjet3' : [ 3.73153909e+06, 2.60273954e+06, ], 'CountWeightedFull_LHENjet3' : [ 3.09180476e+06, 3.09207091e+06, 3.09144873e+06, ], 'CountWeightedFullLHEWeightScale_LHENjet3' : [ 3.72599088e+06, 3.43372106e+06, 3.17825046e+06, 3.35646502e+06, 3.09180476e+06, 2.86068036e+06, 3.05978459e+06, 2.81731496e+06, 2.60579721e+06, ], 'CountWeightedFullLHEEnvelope_LHENjet3' : [ 3.73153909e+06, 2.60273954e+06, ], 'CountWeightedL1PrefireNom_LHENjet3' : [ 2.88740839e+06, 2.88747127e+06, 2.88727518e+06, ], 'CountWeightedL1Prefire_LHENjet3' : [ 2.88740839e+06, 2.84478896e+06, 2.93046141e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet3' : [ 3.47069629e+06, 3.20493702e+06, 2.97163749e+06, 3.12835207e+06, 2.88740839e+06, 2.67613264e+06, 2.85337499e+06, 2.63241294e+06, 2.43886633e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet3' : [ 3.47603879e+06, 2.43591461e+06, ], 'CountWeightedFullL1PrefireNom_LHENjet3' : [ 2.88740839e+06, 2.88747127e+06, 2.88727518e+06, ], 'CountWeightedFullL1Prefire_LHENjet3' : [ 2.88740839e+06, 2.84478896e+06, 2.93046141e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet3' : [ 3.47069629e+06, 3.20493702e+06, 2.97163749e+06, 3.12835207e+06, 2.88740839e+06, 2.67613264e+06, 2.85337499e+06, 2.63241294e+06, 2.43886633e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet3' : [ 3.47603879e+06, 2.43591461e+06, ], 'Count_LHENjet4' : [ 17477510, ], 'CountWeighted_LHENjet4' : [ 1.73768630e+07, 1.73753901e+07, 1.73750128e+07, ], 'CountWeightedLHEWeightScale_LHENjet4' : [ 2.15670806e+07, 1.94537513e+07, 1.76720439e+07, 1.92701214e+07, 1.73768630e+07, 1.57810563e+07, 1.74486344e+07, 1.57296883e+07, 1.42816531e+07, ], 'CountWeightedLHEEnvelope_LHENjet4' : [ 2.15875908e+07, 1.42708322e+07, ], 'CountWeightedFull_LHENjet4' : [ 1.73768630e+07, 1.73753901e+07, 1.73750128e+07, ], 'CountWeightedFullLHEWeightScale_LHENjet4' : [ 2.15670806e+07, 1.94537513e+07, 1.76720439e+07, 1.92701214e+07, 1.73768630e+07, 1.57810563e+07, 1.74486344e+07, 1.57296883e+07, 1.42816531e+07, ], 'CountWeightedFullLHEEnvelope_LHENjet4' : [ 2.15875908e+07, 1.42708322e+07, ], 'CountWeightedL1PrefireNom_LHENjet4' : [ 1.59807096e+07, 1.59782861e+07, 1.59812194e+07, ], 'CountWeightedL1Prefire_LHENjet4' : [ 1.59807096e+07, 1.56840320e+07, 1.62795321e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet4' : [ 1.97748055e+07, 1.78804985e+07, 1.62761013e+07, 1.76794295e+07, 1.59807096e+07, 1.45426525e+07, 1.60167112e+07, 1.44733646e+07, 1.31673597e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet4' : [ 1.97944650e+07, 1.31569206e+07, ], 'CountWeightedFullL1PrefireNom_LHENjet4' : [ 1.59807096e+07, 1.59782861e+07, 1.59812194e+07, ], 'CountWeightedFullL1Prefire_LHENjet4' : [ 1.59807096e+07, 1.56840320e+07, 1.62795321e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet4' : [ 1.97748055e+07, 1.78804985e+07, 1.62761013e+07, 1.76794295e+07, 1.59807096e+07, 1.45426525e+07, 1.60167112e+07, 1.44733646e+07, 1.31673597e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet4' : [ 1.97944650e+07, 1.31569206e+07, ], }), ("nof_tree_events", 21709087), ("nof_db_events", 21709087), ("fsize_local", 172735101058), # 172.74GB, avg file size 3.93GB ("fsize_db", 1256446599197), # 1.26TB, avg file size 2.57GB ("use_it", False), ("xsection", 15.096), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Apr19_woPresel_nom_all_hh_multilepton/ntuples/WJetsToLNu_HT600To800"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/WJetsToLNu_HT-800To1200_TuneCP5_13TeV-madgraphMLM-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "EWK"), ("process_name_specific", "WJetsToLNu_HT800To1200"), ("nof_files", 41), ("nof_db_files", 488), ("nof_events", { 'Count' : [ 20432728, ], 'CountWeighted' : [ 2.02740198e+07, 2.02750995e+07, 2.02693883e+07, ], 'CountWeightedLHEWeightScale' : [ 2.54844118e+07, 2.26991679e+07, 2.04062670e+07, 2.27654457e+07, 2.02740198e+07, 1.82220016e+07, 2.05905001e+07, 1.83325106e+07, 1.64748401e+07, ], 'CountWeightedLHEEnvelope' : [ 2.54967748e+07, 1.64689335e+07, ], 'CountWeightedFull' : [ 2.02740198e+07, 2.02750995e+07, 2.02693883e+07, ], 'CountWeightedFullLHEWeightScale' : [ 2.54844118e+07, 2.26991679e+07, 2.04062670e+07, 2.27654457e+07, 2.02740198e+07, 1.82220016e+07, 2.05905001e+07, 1.83325106e+07, 1.64748401e+07, ], 'CountWeightedFullLHEEnvelope' : [ 2.54967748e+07, 1.64689335e+07, ], 'CountWeightedL1PrefireNom' : [ 1.90056519e+07, 1.90051772e+07, 1.90038877e+07, ], 'CountWeightedL1Prefire' : [ 1.90056519e+07, 1.87352660e+07, 1.92771599e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 2.38278972e+07, 2.12683348e+07, 1.91541329e+07, 2.12973009e+07, 1.90056519e+07, 1.71124780e+07, 1.92715716e+07, 1.71934630e+07, 1.54782413e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 2.38399075e+07, 1.54724784e+07, ], 'CountWeightedFullL1PrefireNom' : [ 1.90056519e+07, 1.90051772e+07, 1.90038877e+07, ], 'CountWeightedFullL1Prefire' : [ 1.90056519e+07, 1.87352660e+07, 1.92771599e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 2.38278972e+07, 2.12683348e+07, 1.91541329e+07, 2.12973009e+07, 1.90056519e+07, 1.71124780e+07, 1.92715716e+07, 1.71934630e+07, 1.54782413e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 2.38399075e+07, 1.54724784e+07, ], 'Count_LHENjet1' : [ 4822, ], 'CountWeighted_LHENjet1' : [ 4.78428162e+03, 4.79407177e+03, 4.77187288e+03, ], 'CountWeightedLHEWeightScale_LHENjet1' : [ 5.75156757e+03, 5.14888107e+03, 4.64005624e+03, 5.34433524e+03, 4.78428162e+03, 4.31145458e+03, 4.99174292e+03, 4.46860851e+03, 4.02695238e+03, ], 'CountWeightedLHEEnvelope_LHENjet1' : [ 5.75136936e+03, 4.02714323e+03, ], 'CountWeightedFull_LHENjet1' : [ 4.78428162e+03, 4.79407177e+03, 4.77187288e+03, ], 'CountWeightedFullLHEWeightScale_LHENjet1' : [ 5.75156757e+03, 5.14888107e+03, 4.64005624e+03, 5.34433524e+03, 4.78428162e+03, 4.31145458e+03, 4.99174292e+03, 4.46860851e+03, 4.02695238e+03, ], 'CountWeightedFullLHEEnvelope_LHENjet1' : [ 5.75136936e+03, 4.02714323e+03, ], 'CountWeightedL1PrefireNom_LHENjet1' : [ 4.77764481e+03, 4.78699759e+03, 4.76570320e+03, ], 'CountWeightedL1Prefire_LHENjet1' : [ 4.77764481e+03, 4.77594621e+03, 4.77923463e+03, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet1' : [ 5.74336343e+03, 5.14174453e+03, 4.63379228e+03, 5.33670536e+03, 4.77764481e+03, 4.30562933e+03, 4.98461120e+03, 4.46240508e+03, 4.02150756e+03, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet1' : [ 5.74316522e+03, 4.02169839e+03, ], 'CountWeightedFullL1PrefireNom_LHENjet1' : [ 4.77764481e+03, 4.78699759e+03, 4.76570320e+03, ], 'CountWeightedFullL1Prefire_LHENjet1' : [ 4.77764481e+03, 4.77594621e+03, 4.77923463e+03, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet1' : [ 5.74336343e+03, 5.14174453e+03, 4.63379228e+03, 5.33670536e+03, 4.77764481e+03, 4.30562933e+03, 4.98461120e+03, 4.46240508e+03, 4.02150756e+03, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet1' : [ 5.74316522e+03, 4.02169839e+03, ], 'Count_LHENjet2' : [ 663079, ], 'CountWeighted_LHENjet2' : [ 6.57467738e+05, 6.57230527e+05, 6.57837321e+05, ], 'CountWeightedLHEWeightScale_LHENjet2' : [ 7.83750393e+05, 7.22812723e+05, 6.69995484e+05, 7.13123133e+05, 6.57467738e+05, 6.09259548e+05, 6.55055646e+05, 6.03742528e+05, 5.59331425e+05, ], 'CountWeightedLHEEnvelope_LHENjet2' : [ 7.83854773e+05, 5.59332293e+05, ], 'CountWeightedFull_LHENjet2' : [ 6.57467738e+05, 6.57230527e+05, 6.57837321e+05, ], 'CountWeightedFullLHEWeightScale_LHENjet2' : [ 7.83750393e+05, 7.22812723e+05, 6.69995484e+05, 7.13123133e+05, 6.57467738e+05, 6.09259548e+05, 6.55055646e+05, 6.03742528e+05, 5.59331425e+05, ], 'CountWeightedFullLHEEnvelope_LHENjet2' : [ 7.83854773e+05, 5.59332293e+05, ], 'CountWeightedL1PrefireNom_LHENjet2' : [ 6.33299146e+05, 6.33081447e+05, 6.33655567e+05, ], 'CountWeightedL1Prefire_LHENjet2' : [ 6.33299146e+05, 6.28211295e+05, 6.38409206e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet2' : [ 7.53842855e+05, 6.96140746e+05, 6.46017400e+05, 6.86022572e+05, 6.33299146e+05, 5.87533161e+05, 6.30257146e+05, 5.81628504e+05, 5.39452101e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet2' : [ 7.53956592e+05, 5.39443816e+05, ], 'CountWeightedFullL1PrefireNom_LHENjet2' : [ 6.33299146e+05, 6.33081447e+05, 6.33655567e+05, ], 'CountWeightedFullL1Prefire_LHENjet2' : [ 6.33299146e+05, 6.28211295e+05, 6.38409206e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet2' : [ 7.53842855e+05, 6.96140746e+05, 6.46017400e+05, 6.86022572e+05, 6.33299146e+05, 5.87533161e+05, 6.30257146e+05, 5.81628504e+05, 5.39452101e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet2' : [ 7.53956592e+05, 5.39443816e+05, ], 'Count_LHENjet3' : [ 2172888, ], 'CountWeighted_LHENjet3' : [ 2.15454876e+06, 2.15485910e+06, 2.15423341e+06, ], 'CountWeightedLHEWeightScale_LHENjet3' : [ 2.63653127e+06, 2.39051719e+06, 2.18278511e+06, 2.37713388e+06, 2.15454876e+06, 1.96673123e+06, 2.16683156e+06, 1.96324576e+06, 1.79160285e+06, ], 'CountWeightedLHEEnvelope_LHENjet3' : [ 2.63812916e+06, 1.79082508e+06, ], 'CountWeightedFull_LHENjet3' : [ 2.15454876e+06, 2.15485910e+06, 2.15423341e+06, ], 'CountWeightedFullLHEWeightScale_LHENjet3' : [ 2.63653127e+06, 2.39051719e+06, 2.18278511e+06, 2.37713388e+06, 2.15454876e+06, 1.96673123e+06, 2.16683156e+06, 1.96324576e+06, 1.79160285e+06, ], 'CountWeightedFullLHEEnvelope_LHENjet3' : [ 2.63812916e+06, 1.79082508e+06, ], 'CountWeightedL1PrefireNom_LHENjet3' : [ 2.05768932e+06, 2.05790575e+06, 2.05746087e+06, ], 'CountWeightedL1Prefire_LHENjet3' : [ 2.05768932e+06, 2.03716735e+06, 2.07829257e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet3' : [ 2.51336147e+06, 2.28235956e+06, 2.08679204e+06, 2.26682174e+06, 2.05768932e+06, 1.88077011e+06, 2.06687917e+06, 1.87548937e+06, 1.71372548e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet3' : [ 2.51493728e+06, 1.71295273e+06, ], 'CountWeightedFullL1PrefireNom_LHENjet3' : [ 2.05768932e+06, 2.05790575e+06, 2.05746087e+06, ], 'CountWeightedFullL1Prefire_LHENjet3' : [ 2.05768932e+06, 2.03716735e+06, 2.07829257e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet3' : [ 2.51336147e+06, 2.28235956e+06, 2.08679204e+06, 2.26682174e+06, 2.05768932e+06, 1.88077011e+06, 2.06687917e+06, 1.87548937e+06, 1.71372548e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet3' : [ 2.51493728e+06, 1.71295273e+06, ], 'Count_LHENjet4' : [ 17591939, ], 'CountWeighted_LHENjet4' : [ 1.74571172e+07, 1.74574305e+07, 1.74534259e+07, ], 'CountWeightedLHEWeightScale_LHENjet4' : [ 2.20583347e+07, 1.95807591e+07, 1.75488629e+07, 1.96698901e+07, 1.74571172e+07, 1.56417296e+07, 1.77636385e+07, 1.57611160e+07, 1.41198823e+07, ], 'CountWeightedLHEEnvelope_LHENjet4' : [ 2.20689958e+07, 1.41147529e+07, ], 'CountWeightedFull_LHENjet4' : [ 1.74571172e+07, 1.74574305e+07, 1.74534259e+07, ], 'CountWeightedFullLHEWeightScale_LHENjet4' : [ 2.20583347e+07, 1.95807591e+07, 1.75488629e+07, 1.96698901e+07, 1.74571172e+07, 1.56417296e+07, 1.77636385e+07, 1.57611160e+07, 1.41198823e+07, ], 'CountWeightedFullLHEEnvelope_LHENjet4' : [ 2.20689958e+07, 1.41147529e+07, ], 'CountWeightedL1PrefireNom_LHENjet4' : [ 1.63098075e+07, 1.63089034e+07, 1.63087288e+07, ], 'CountWeightedL1Prefire_LHENjet4' : [ 1.63098075e+07, 1.60650339e+07, 1.65557023e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet4' : [ 2.05549134e+07, 1.82847521e+07, 1.64167021e+07, 1.83391703e+07, 1.63098075e+07, 1.46398972e+07, 1.65694613e+07, 1.47319450e+07, 1.32210461e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet4' : [ 2.05652348e+07, 1.32160631e+07, ], 'CountWeightedFullL1PrefireNom_LHENjet4' : [ 1.63098075e+07, 1.63089034e+07, 1.63087288e+07, ], 'CountWeightedFullL1Prefire_LHENjet4' : [ 1.63098075e+07, 1.60650339e+07, 1.65557023e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet4' : [ 2.05549134e+07, 1.82847521e+07, 1.64167021e+07, 1.83391703e+07, 1.63098075e+07, 1.46398972e+07, 1.65694613e+07, 1.47319450e+07, 1.32210461e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet4' : [ 2.05652348e+07, 1.32160631e+07, ], }), ("nof_tree_events", 20432728), ("nof_db_events", 20466692), ("fsize_local", 170672523525), # 170.67GB, avg file size 4.16GB ("fsize_db", 1227636244434), # 1.23TB, avg file size 2.52GB ("use_it", False), ("xsection", 6.3626), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Apr19_woPresel_nom_all_hh_multilepton/ntuples/WJetsToLNu_HT800To1200"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/WJetsToLNu_HT-1200To2500_TuneCP5_13TeV-madgraphMLM-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "EWK"), ("process_name_specific", "WJetsToLNu_HT1200To2500"), ("nof_files", 41), ("nof_db_files", 551), ("nof_events", { 'Count' : [ 20258624, ], 'CountWeighted' : [ 1.99911900e+07, 1.99927126e+07, 1.99907661e+07, ], 'CountWeightedLHEWeightScale' : [ 2.56066089e+07, 2.23106562e+07, 1.96808413e+07, 2.29485982e+07, 1.99911900e+07, 1.76332738e+07, 2.07956047e+07, 1.81140304e+07, 1.59749859e+07, ], 'CountWeightedLHEEnvelope' : [ 2.56089468e+07, 1.59748154e+07, ], 'CountWeightedFull' : [ 1.99911900e+07, 1.99927126e+07, 1.99907661e+07, ], 'CountWeightedFullLHEWeightScale' : [ 2.56066089e+07, 2.23106562e+07, 1.96808413e+07, 2.29485982e+07, 1.99911900e+07, 1.76332738e+07, 2.07956047e+07, 1.81140304e+07, 1.59749859e+07, ], 'CountWeightedFullLHEEnvelope' : [ 2.56089468e+07, 1.59748154e+07, ], 'CountWeightedL1PrefireNom' : [ 1.92375430e+07, 1.92377614e+07, 1.92378039e+07, ], 'CountWeightedL1Prefire' : [ 1.92375430e+07, 1.90693285e+07, 1.94042396e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 2.46085807e+07, 2.14634254e+07, 1.89505628e+07, 2.20603861e+07, 1.92375430e+07, 1.69834189e+07, 1.99954029e+07, 1.74346798e+07, 1.53895510e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 2.46109561e+07, 1.53893104e+07, ], 'CountWeightedFullL1PrefireNom' : [ 1.92375430e+07, 1.92377614e+07, 1.92378039e+07, ], 'CountWeightedFullL1Prefire' : [ 1.92375430e+07, 1.90693285e+07, 1.94042396e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 2.46085807e+07, 2.14634254e+07, 1.89505628e+07, 2.20603861e+07, 1.92375430e+07, 1.69834189e+07, 1.99954029e+07, 1.74346798e+07, 1.53895510e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 2.46109561e+07, 1.53893104e+07, ], 'Count_LHENjet1' : [ 107, ], 'CountWeighted_LHENjet1' : [ 9.54803349e+01, 9.64743612e+01, 9.51232908e+01, ], 'CountWeightedLHEWeightScale_LHENjet1' : [ 1.17289282e+02, 1.02467701e+02, 9.02955922e+01, 1.09291993e+02, 9.54803349e+01, 8.41378231e+01, 1.02330333e+02, 8.93977477e+01, 7.87774109e+01, ], 'CountWeightedLHEEnvelope_LHENjet1' : [ 1.17289282e+02, 7.87774109e+01, ], 'CountWeightedFull_LHENjet1' : [ 9.54803349e+01, 9.64743612e+01, 9.51232908e+01, ], 'CountWeightedFullLHEWeightScale_LHENjet1' : [ 1.17289282e+02, 1.02467701e+02, 9.02955922e+01, 1.09291993e+02, 9.54803349e+01, 8.41378231e+01, 1.02330333e+02, 8.93977477e+01, 7.87774109e+01, ], 'CountWeightedFullLHEEnvelope_LHENjet1' : [ 1.17289282e+02, 7.87774109e+01, ], 'CountWeightedL1PrefireNom_LHENjet1' : [ 9.54624295e+01, 9.64545676e+01, 9.51074574e+01, ], 'CountWeightedL1Prefire_LHENjet1' : [ 9.54624295e+01, 9.54570898e+01, 9.54685693e+01, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet1' : [ 1.17267062e+02, 1.02448505e+02, 9.02788533e+01, 1.09271266e+02, 9.54624295e+01, 8.41222106e+01, 1.02310910e+02, 8.93809679e+01, 7.87627808e+01, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet1' : [ 1.17267062e+02, 7.87627808e+01, ], 'CountWeightedFullL1PrefireNom_LHENjet1' : [ 9.54624295e+01, 9.64545676e+01, 9.51074574e+01, ], 'CountWeightedFullL1Prefire_LHENjet1' : [ 9.54624295e+01, 9.54570898e+01, 9.54685693e+01, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet1' : [ 1.17267062e+02, 1.02448505e+02, 9.02788533e+01, 1.09271266e+02, 9.54624295e+01, 8.41222106e+01, 1.02310910e+02, 8.93809679e+01, 7.87627808e+01, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet1' : [ 1.17267062e+02, 7.87627808e+01, ], 'Count_LHENjet2' : [ 397926, ], 'CountWeighted_LHENjet2' : [ 3.92265904e+05, 3.92331200e+05, 3.92184947e+05, ], 'CountWeightedLHEWeightScale_LHENjet2' : [ 4.75989043e+05, 4.31863309e+05, 3.94537161e+05, 4.32373243e+05, 3.92265904e+05, 3.58343751e+05, 3.96280556e+05, 3.59495898e+05, 3.28389547e+05, ], 'CountWeightedLHEEnvelope_LHENjet2' : [ 4.75976375e+05, 3.28420087e+05, ], 'CountWeightedFull_LHENjet2' : [ 3.92265904e+05, 3.92331200e+05, 3.92184947e+05, ], 'CountWeightedFullLHEWeightScale_LHENjet2' : [ 4.75989043e+05, 4.31863309e+05, 3.94537161e+05, 4.32373243e+05, 3.92265904e+05, 3.58343751e+05, 3.96280556e+05, 3.59495898e+05, 3.28389547e+05, ], 'CountWeightedFullLHEEnvelope_LHENjet2' : [ 4.75976375e+05, 3.28420087e+05, ], 'CountWeightedL1PrefireNom_LHENjet2' : [ 3.86138476e+05, 3.86201158e+05, 3.86064593e+05, ], 'CountWeightedL1Prefire_LHENjet2' : [ 3.86138476e+05, 3.84749179e+05, 3.87512722e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet2' : [ 4.68290119e+05, 4.25088162e+05, 3.88516002e+05, 4.25410696e+05, 3.86138476e+05, 3.52898181e+05, 3.89924355e+05, 3.53902076e+05, 3.23418050e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet2' : [ 4.68278752e+05, 3.23447120e+05, ], 'CountWeightedFullL1PrefireNom_LHENjet2' : [ 3.86138476e+05, 3.86201158e+05, 3.86064593e+05, ], 'CountWeightedFullL1Prefire_LHENjet2' : [ 3.86138476e+05, 3.84749179e+05, 3.87512722e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet2' : [ 4.68290119e+05, 4.25088162e+05, 3.88516002e+05, 4.25410696e+05, 3.86138476e+05, 3.52898181e+05, 3.89924355e+05, 3.53902076e+05, 3.23418050e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet2' : [ 4.68278752e+05, 3.23447120e+05, ], 'Count_LHENjet3' : [ 1557359, ], 'CountWeighted_LHENjet3' : [ 1.53693110e+06, 1.53646635e+06, 1.53731369e+06, ], 'CountWeightedLHEWeightScale_LHENjet3' : [ 1.90906616e+06, 1.70034520e+06, 1.52920693e+06, 1.72586854e+06, 1.53693110e+06, 1.38203151e+06, 1.57538001e+06, 1.40265574e+06, 1.26114942e+06, ], 'CountWeightedLHEEnvelope_LHENjet3' : [ 1.90932760e+06, 1.26110230e+06, ], 'CountWeightedFull_LHENjet3' : [ 1.53693110e+06, 1.53646635e+06, 1.53731369e+06, ], 'CountWeightedFullLHEWeightScale_LHENjet3' : [ 1.90906616e+06, 1.70034520e+06, 1.52920693e+06, 1.72586854e+06, 1.53693110e+06, 1.38203151e+06, 1.57538001e+06, 1.40265574e+06, 1.26114942e+06, ], 'CountWeightedFullLHEEnvelope_LHENjet3' : [ 1.90932760e+06, 1.26110230e+06, ], 'CountWeightedL1PrefireNom_LHENjet3' : [ 1.50577903e+06, 1.50528448e+06, 1.50621100e+06, ], 'CountWeightedL1Prefire_LHENjet3' : [ 1.50577903e+06, 1.49875445e+06, 1.51272233e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet3' : [ 1.86898784e+06, 1.66575375e+06, 1.49896262e+06, 1.68977973e+06, 1.50577903e+06, 1.35479948e+06, 1.54254702e+06, 1.37432029e+06, 1.23637596e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet3' : [ 1.86924431e+06, 1.23633151e+06, ], 'CountWeightedFullL1PrefireNom_LHENjet3' : [ 1.50577903e+06, 1.50528448e+06, 1.50621100e+06, ], 'CountWeightedFullL1Prefire_LHENjet3' : [ 1.50577903e+06, 1.49875445e+06, 1.51272233e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet3' : [ 1.86898784e+06, 1.66575375e+06, 1.49896262e+06, 1.68977973e+06, 1.50577903e+06, 1.35479948e+06, 1.54254702e+06, 1.37432029e+06, 1.23637596e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet3' : [ 1.86924431e+06, 1.23633151e+06, ], 'Count_LHENjet4' : [ 18303232, ], 'CountWeighted_LHENjet4' : [ 1.80621078e+07, 1.80639130e+07, 1.80613708e+07, ], 'CountWeightedLHEWeightScale_LHENjet4' : [ 2.32213993e+07, 2.01784342e+07, 1.77570143e+07, 2.07902716e+07, 1.80621078e+07, 1.58928290e+07, 1.88238666e+07, 1.63517965e+07, 1.43853765e+07, ], 'CountWeightedLHEEnvelope_LHENjet4' : [ 2.32234882e+07, 1.43852225e+07, ], 'CountWeightedFull_LHENjet4' : [ 1.80621078e+07, 1.80639130e+07, 1.80613708e+07, ], 'CountWeightedFullLHEWeightScale_LHENjet4' : [ 2.32213993e+07, 2.01784342e+07, 1.77570143e+07, 2.07902716e+07, 1.80621078e+07, 1.58928290e+07, 1.88238666e+07, 1.63517965e+07, 1.43853765e+07, ], 'CountWeightedFullLHEEnvelope_LHENjet4' : [ 2.32234882e+07, 1.43852225e+07, ], 'CountWeightedL1PrefireNom_LHENjet4' : [ 1.73456875e+07, 1.73462215e+07, 1.73456432e+07, ], 'CountWeightedL1Prefire_LHENjet4' : [ 1.73456875e+07, 1.71858589e+07, 1.75041124e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet4' : [ 2.22711591e+07, 1.93725596e+07, 1.70629969e+07, 1.99451167e+07, 1.73456875e+07, 1.52756506e+07, 1.80628403e+07, 1.57063842e+07, 1.38296856e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet4' : [ 2.22732894e+07, 1.38294601e+07, ], 'CountWeightedFullL1PrefireNom_LHENjet4' : [ 1.73456875e+07, 1.73462215e+07, 1.73456432e+07, ], 'CountWeightedFullL1Prefire_LHENjet4' : [ 1.73456875e+07, 1.71858589e+07, 1.75041124e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet4' : [ 2.22711591e+07, 1.93725596e+07, 1.70629969e+07, 1.99451167e+07, 1.73456875e+07, 1.52756506e+07, 1.80628403e+07, 1.57063842e+07, 1.38296856e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet4' : [ 2.22732894e+07, 1.38294601e+07, ], }), ("nof_tree_events", 20258624), ("nof_db_events", 20258624), ("fsize_local", 176100027649), # 176.10GB, avg file size 4.30GB ("fsize_db", 1289100671636), # 1.29TB, avg file size 2.34GB ("use_it", False), ("xsection", 1.2658), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Apr19_woPresel_nom_all_hh_multilepton/ntuples/WJetsToLNu_HT1200To2500"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/WJetsToLNu_HT-2500ToInf_TuneCP5_13TeV-madgraphMLM-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v3/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "EWK"), ("process_name_specific", "WJetsToLNu_HT2500ToInf"), ("nof_files", 87), ("nof_db_files", 616), ("nof_events", { 'Count' : [ 21495421, ], 'CountWeighted' : [ 2.06305593e+07, 2.06307724e+07, 2.06293620e+07, ], 'CountWeightedLHEWeightScale' : [ 2.69707861e+07, 2.27000546e+07, 1.94141130e+07, 2.45107857e+07, 2.06305593e+07, 1.76440800e+07, 2.24621589e+07, 1.89055623e+07, 1.61697790e+07, ], 'CountWeightedLHEEnvelope' : [ 2.69660027e+07, 1.61742900e+07, ], 'CountWeightedFull' : [ 2.06305593e+07, 2.06307724e+07, 2.06293620e+07, ], 'CountWeightedFullLHEWeightScale' : [ 2.69707861e+07, 2.27000546e+07, 1.94141130e+07, 2.45107857e+07, 2.06305593e+07, 1.76440800e+07, 2.24621589e+07, 1.89055623e+07, 1.61697790e+07, ], 'CountWeightedFullLHEEnvelope' : [ 2.69660027e+07, 1.61742900e+07, ], 'CountWeightedL1PrefireNom' : [ 2.01857528e+07, 2.01851873e+07, 2.01855217e+07, ], 'CountWeightedL1Prefire' : [ 2.01857528e+07, 2.00808138e+07, 2.02883632e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 2.63761867e+07, 2.22096323e+07, 1.90023868e+07, 2.39717494e+07, 2.01857528e+07, 1.72707732e+07, 2.19691829e+07, 1.84989828e+07, 1.58283473e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 2.63714431e+07, 1.58328250e+07, ], 'CountWeightedFullL1PrefireNom' : [ 2.01857528e+07, 2.01851873e+07, 2.01855217e+07, ], 'CountWeightedFullL1Prefire' : [ 2.01857528e+07, 2.00808138e+07, 2.02883632e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 2.63761867e+07, 2.22096323e+07, 1.90023868e+07, 2.39717494e+07, 2.01857528e+07, 1.72707732e+07, 2.19691829e+07, 1.84989828e+07, 1.58283473e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 2.63714431e+07, 1.58328250e+07, ], 'Count_LHENjet2' : [ 28288, ], 'CountWeighted_LHENjet2' : [ 2.10092484e+04, 2.10040215e+04, 2.10025287e+04, ], 'CountWeightedLHEWeightScale_LHENjet2' : [ 2.58594455e+04, 2.26434297e+04, 1.99949051e+04, 2.39935826e+04, 2.10092484e+04, 1.85517440e+04, 2.23826238e+04, 1.95985417e+04, 1.73057853e+04, ], 'CountWeightedLHEEnvelope_LHENjet2' : [ 2.58349295e+04, 1.73263466e+04, ], 'CountWeightedFull_LHENjet2' : [ 2.10092484e+04, 2.10040215e+04, 2.10025287e+04, ], 'CountWeightedFullLHEWeightScale_LHENjet2' : [ 2.58594455e+04, 2.26434297e+04, 1.99949051e+04, 2.39935826e+04, 2.10092484e+04, 1.85517440e+04, 2.23826238e+04, 1.95985417e+04, 1.73057853e+04, ], 'CountWeightedFullLHEEnvelope_LHENjet2' : [ 2.58349295e+04, 1.73263466e+04, ], 'CountWeightedL1PrefireNom_LHENjet2' : [ 2.08546705e+04, 2.08509512e+04, 2.08465858e+04, ], 'CountWeightedL1Prefire_LHENjet2' : [ 2.08546705e+04, 2.08175785e+04, 2.08909693e+04, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet2' : [ 2.56673683e+04, 2.24770313e+04, 1.98493917e+04, 2.38151470e+04, 2.08546705e+04, 1.84165680e+04, 2.22159934e+04, 1.94541915e+04, 1.71795550e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet2' : [ 2.56427371e+04, 1.72002429e+04, ], 'CountWeightedFullL1PrefireNom_LHENjet2' : [ 2.08546705e+04, 2.08509512e+04, 2.08465858e+04, ], 'CountWeightedFullL1Prefire_LHENjet2' : [ 2.08546705e+04, 2.08175785e+04, 2.08909693e+04, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet2' : [ 2.56673683e+04, 2.24770313e+04, 1.98493917e+04, 2.38151470e+04, 2.08546705e+04, 1.84165680e+04, 2.22159934e+04, 1.94541915e+04, 1.71795550e+04, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet2' : [ 2.56427371e+04, 1.72002429e+04, ], 'Count_LHENjet3' : [ 559409, ], 'CountWeighted_LHENjet3' : [ 5.25623090e+05, 5.25401550e+05, 5.25935210e+05, ], 'CountWeightedLHEWeightScale_LHENjet3' : [ 6.58779425e+05, 5.68032432e+05, 4.96109744e+05, 6.09601582e+05, 5.25623090e+05, 4.59073676e+05, 5.67370553e+05, 4.89210267e+05, 4.27268176e+05, ], 'CountWeightedLHEEnvelope_LHENjet3' : [ 6.58492363e+05, 4.27531705e+05, ], 'CountWeightedFull_LHENjet3' : [ 5.25623090e+05, 5.25401550e+05, 5.25935210e+05, ], 'CountWeightedFullLHEWeightScale_LHENjet3' : [ 6.58779425e+05, 5.68032432e+05, 4.96109744e+05, 6.09601582e+05, 5.25623090e+05, 4.59073676e+05, 5.67370553e+05, 4.89210267e+05, 4.27268176e+05, ], 'CountWeightedFullLHEEnvelope_LHENjet3' : [ 6.58492363e+05, 4.27531705e+05, ], 'CountWeightedL1PrefireNom_LHENjet3' : [ 5.21449283e+05, 5.21227190e+05, 5.21760539e+05, ], 'CountWeightedL1Prefire_LHENjet3' : [ 5.21449283e+05, 5.20423957e+05, 5.22443396e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet3' : [ 6.53439945e+05, 5.63529413e+05, 4.92253996e+05, 6.04652480e+05, 5.21449283e+05, 4.55499702e+05, 5.62757692e+05, 4.85319918e+05, 4.23936935e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet3' : [ 6.53154396e+05, 4.24199145e+05, ], 'CountWeightedFullL1PrefireNom_LHENjet3' : [ 5.21449283e+05, 5.21227190e+05, 5.21760539e+05, ], 'CountWeightedFullL1Prefire_LHENjet3' : [ 5.21449283e+05, 5.20423957e+05, 5.22443396e+05, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet3' : [ 6.53439945e+05, 5.63529413e+05, 4.92253996e+05, 6.04652480e+05, 5.21449283e+05, 4.55499702e+05, 5.62757692e+05, 4.85319918e+05, 4.23936935e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet3' : [ 6.53154396e+05, 4.24199145e+05, ], 'Count_LHENjet4' : [ 20907724, ], 'CountWeighted_LHENjet4' : [ 2.00838750e+07, 2.00842698e+07, 2.00824128e+07, ], 'CountWeightedLHEWeightScale_LHENjet4' : [ 2.62861463e+07, 2.21093765e+07, 1.88980099e+07, 2.38771892e+07, 2.00838750e+07, 1.71664506e+07, 2.18724041e+07, 1.83967599e+07, 1.57252046e+07, ], 'CountWeightedLHEEnvelope_LHENjet4' : [ 2.62816742e+07, 1.57294312e+07, ], 'CountWeightedFull_LHENjet4' : [ 2.00838750e+07, 2.00842698e+07, 2.00824128e+07, ], 'CountWeightedFullLHEWeightScale_LHENjet4' : [ 2.62861463e+07, 2.21093765e+07, 1.88980099e+07, 2.38771892e+07, 2.00838750e+07, 1.71664506e+07, 2.18724041e+07, 1.83967599e+07, 1.57252046e+07, ], 'CountWeightedFullLHEEnvelope_LHENjet4' : [ 2.62816742e+07, 1.57294312e+07, ], 'CountWeightedL1PrefireNom_LHENjet4' : [ 1.96434065e+07, 1.96430313e+07, 1.96429070e+07, ], 'CountWeightedL1Prefire_LHENjet4' : [ 1.96434065e+07, 1.95395296e+07, 1.97449826e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom_LHENjet4' : [ 2.56970795e+07, 2.16236260e+07, 1.84902856e+07, 2.33432805e+07, 1.96434065e+07, 1.67968546e+07, 2.13842067e+07, 1.79942147e+07, 1.53872298e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom_LHENjet4' : [ 2.56926459e+07, 1.53914247e+07, ], 'CountWeightedFullL1PrefireNom_LHENjet4' : [ 1.96434065e+07, 1.96430313e+07, 1.96429070e+07, ], 'CountWeightedFullL1Prefire_LHENjet4' : [ 1.96434065e+07, 1.95395296e+07, 1.97449826e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom_LHENjet4' : [ 2.56970795e+07, 2.16236260e+07, 1.84902856e+07, 2.33432805e+07, 1.96434065e+07, 1.67968546e+07, 2.13842067e+07, 1.79942147e+07, 1.53872298e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom_LHENjet4' : [ 2.56926459e+07, 1.53914247e+07, ], }), ("nof_tree_events", 21495421), ("nof_db_events", 21495421), ("fsize_local", 195081203932), # 195.08GB, avg file size 2.24GB ("fsize_db", 1489610697179), # 1.49TB, avg file size 2.42GB ("use_it", False), ("xsection", 0.009405), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Apr19_woPresel_nom_all_hh_multilepton/ntuples/WJetsToLNu_HT2500ToInf"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/WWTo2L2Nu_NNPDF31_TuneCP5_13TeV-powheg-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "WW"), ("process_name_specific", "WWTo2L2Nu"), ("nof_files", 5), ("nof_db_files", 25), ("nof_events", { 'Count' : [ 2000000, ], 'CountWeighted' : [ 1.99250851e+06, 1.99265106e+06, 1.99213570e+06, ], 'CountWeightedLHEWeightScale' : [ 2.01605642e+06, 2.04083861e+06, 2.06115996e+06, 1.96473388e+06, 1.99286590e+06, 2.01525802e+06, 1.92198961e+06, 1.95228972e+06, 1.97698902e+06, ], 'CountWeightedLHEEnvelope' : [ 2.08127958e+06, 1.91040660e+06, ], 'CountWeightedFull' : [ 2.21565764e+07, 2.21514205e+07, 2.21544600e+07, ], 'CountWeightedFullLHEWeightScale' : [ 2.24175449e+07, 2.26931331e+07, 2.29193036e+07, 2.18467676e+07, 2.21570152e+07, 2.24085928e+07, 2.13715177e+07, 2.17082689e+07, 2.19830187e+07, ], 'CountWeightedFullLHEEnvelope' : [ 2.31429694e+07, 2.12428271e+07, ], 'CountWeightedL1PrefireNom' : [ 1.94410725e+06, 1.94417754e+06, 1.94389309e+06, ], 'CountWeightedL1Prefire' : [ 1.94410725e+06, 1.93210966e+06, 1.95588584e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 1.96675998e+06, 1.99111709e+06, 2.01109309e+06, 1.91680898e+06, 1.94438182e+06, 1.96646918e+06, 1.87520633e+06, 1.90499128e+06, 1.92927085e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 2.03064082e+06, 1.86403197e+06, ], 'CountWeightedFullL1PrefireNom' : [ 2.16180696e+07, 2.16143129e+07, 2.16166853e+07, ], 'CountWeightedFullL1Prefire' : [ 2.16180696e+07, 2.14845101e+07, 2.17486779e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 2.18693582e+07, 2.21402347e+07, 2.23625155e+07, 2.13138819e+07, 2.16186720e+07, 2.18660737e+07, 2.08513295e+07, 2.11824064e+07, 2.14524302e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 2.25798469e+07, 2.07271451e+07, ], }), ("nof_tree_events", 2000000), ("nof_db_events", 2000000), ("fsize_local", 7768825016), # 7.77GB, avg file size 1.55GB ("fsize_db", 85721560743), # 85.72GB, avg file size 3.43GB ("use_it", True), ("xsection", 12.2), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/WWTo2L2Nu"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/WWTo2L2Nu_NNPDF31_TuneCP5_PSweights_13TeV-powheg-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14_ext1-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "WW"), ("process_name_specific", "WWTo2L2Nu_PSweights_ext1"), ("nof_files", 5), ("nof_db_files", 25), ("nof_events", { 'Count' : [ 2000000, ], 'CountWeighted' : [ 1.99240941e+06, 1.99211410e+06, 1.99243149e+06, ], 'CountWeightedLHEWeightScale' : [ 2.01596703e+06, 2.04084785e+06, 2.06128881e+06, 1.96458872e+06, 1.99251809e+06, 2.01528769e+06, 1.92179527e+06, 1.95217395e+06, 1.97693412e+06, ], 'CountWeightedLHEEnvelope' : [ 2.08109704e+06, 1.91046472e+06, ], 'CountWeightedPSWeight' : [ 1.99261718e+06, 1.99268101e+06, 2.58092422e+06, 1.99222180e+06, 1.99164446e+06, 1.44657594e+06, ], 'CountWeightedPSWeightOriginalXWGTUP' : [ 1.98536266e+07, 1.87550164e+07, 2.00029507e+07, 1.98623318e+07, 1.73206166e+07, 1.60274217e+07, ], 'CountWeightedFull' : [ 2.21489094e+07, 2.21491241e+07, 2.21457840e+07, ], 'CountWeightedFullLHEWeightScale' : [ 2.24090887e+07, 2.26855858e+07, 2.29132400e+07, 2.18380532e+07, 2.21500133e+07, 2.24015274e+07, 2.13625051e+07, 2.17000663e+07, 2.19753475e+07, ], 'CountWeightedFullLHEEnvelope' : [ 2.31333390e+07, 2.12367307e+07, ], 'CountWeightedFullPSWeight' : [ 2.21499445e+07, 2.21504592e+07, 2.86890859e+07, 2.21455085e+07, 2.21389730e+07, 1.60802084e+07, ], 'CountWeightedFullPSWeightOriginalXWGTUP' : [ 2.20662501e+08, 2.08456451e+08, 2.22318747e+08, 2.20759970e+08, 1.92516187e+08, 1.78155287e+08, ], 'CountWeightedL1PrefireNom' : [ 1.94411234e+06, 1.94389711e+06, 1.94415219e+06, ], 'CountWeightedL1Prefire' : [ 1.94411234e+06, 1.93214343e+06, 1.95585743e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 1.96677364e+06, 1.99122343e+06, 2.01131779e+06, 1.91676927e+06, 1.94423084e+06, 1.96658969e+06, 1.87511385e+06, 1.90496942e+06, 1.92930169e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 2.03056245e+06, 1.86418241e+06, ], 'CountWeightedPSWeightL1PrefireNom' : [ 1.94438787e+06, 1.94431385e+06, 2.51773059e+06, 1.94382225e+06, 1.94347393e+06, 1.41204862e+06, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNom' : [ 1.93724259e+07, 1.83016928e+07, 1.95174057e+07, 1.93810268e+07, 1.69044245e+07, 1.56445910e+07, ], 'CountWeightedFullL1PrefireNom' : [ 2.16118809e+07, 2.16115358e+07, 2.16096900e+07, ], 'CountWeightedFullL1Prefire' : [ 2.16118809e+07, 2.14787681e+07, 2.17424920e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 2.18623716e+07, 2.21340222e+07, 2.23577143e+07, 2.13065549e+07, 2.16130405e+07, 2.18602550e+07, 2.08436247e+07, 2.11754653e+07, 2.14459402e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 2.25715920e+07, 2.07222783e+07, ], 'CountWeightedFullPSWeightL1PrefireNom' : [ 2.16138556e+07, 2.16128262e+07, 2.79866839e+07, 2.16075424e+07, 2.16035782e+07, 1.56964245e+07, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNom' : [ 2.15320174e+08, 2.03423047e+08, 2.16928978e+08, 2.15416369e+08, 1.87894448e+08, 1.73901198e+08, ], }), ("nof_tree_events", 2000000), ("nof_db_events", 2000000), ("fsize_local", 7784714152), # 7.78GB, avg file size 1.56GB ("fsize_db", 85800202496), # 85.80GB, avg file size 3.43GB ("use_it", True), ("xsection", 12.2), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 4), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/WWTo2L2Nu_PSweights_ext1"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/WWToLNuQQ_NNPDF31_TuneCP5_13TeV-powheg-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_new_pmx_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "WW"), ("process_name_specific", "WWToLNuQQ"), ("nof_files", 18), ("nof_db_files", 122), ("nof_events", { 'Count' : [ 8782525, ], 'CountWeighted' : [ 8.75051994e+06, 8.74707888e+06, 8.74953700e+06, ], 'CountWeightedLHEWeightScale' : [ 8.85242669e+06, 8.96142828e+06, 9.05085125e+06, 8.62709069e+06, 8.75051994e+06, 8.84926350e+06, 8.43940838e+06, 8.57260681e+06, 8.68119100e+06, ], 'CountWeightedLHEEnvelope' : [ 9.13869712e+06, 8.38894962e+06, ], 'CountWeightedFull' : [ 4.03847477e+08, 4.03829481e+08, 4.03847205e+08, ], 'CountWeightedFullLHEWeightScale' : [ 4.08628180e+08, 4.13658656e+08, 4.17791612e+08, 3.98223107e+08, 4.03847477e+08, 4.08481630e+08, 3.89559000e+08, 3.95709422e+08, 4.00721257e+08, ], 'CountWeightedFullLHEEnvelope' : [ 4.21845472e+08, 3.87227069e+08, ], 'CountWeightedL1PrefireNom' : [ 8.55411794e+06, 8.55180025e+06, 8.55374669e+06, ], 'CountWeightedL1Prefire' : [ 8.55411794e+06, 8.50385897e+06, 8.60253500e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 8.65234034e+06, 8.75999634e+06, 8.84836503e+06, 8.43271378e+06, 8.55411794e+06, 8.65212772e+06, 8.24980325e+06, 8.38131447e+06, 8.48852816e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 8.93355197e+06, 8.20134725e+06, ], 'CountWeightedFullL1PrefireNom' : [ 3.94811014e+08, 3.94793605e+08, 3.94828730e+08, ], 'CountWeightedFullL1Prefire' : [ 3.94811014e+08, 3.92491401e+08, 3.97045650e+08, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 3.99390704e+08, 4.04360026e+08, 4.08442972e+08, 3.89250695e+08, 3.94811014e+08, 3.99380843e+08, 3.80807662e+08, 3.86878435e+08, 3.91827826e+08, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 4.12374401e+08, 3.78568954e+08, ], }), ("nof_tree_events", 8782525), ("nof_db_events", 8782525), ("fsize_local", 37717575133), # 37.72GB, avg file size 2.10GB ("fsize_db", 386260476875), # 386.26GB, avg file size 3.17GB ("use_it", False), ("xsection", 50.45), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/WWToLNuQQ"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/WWToLNuQQ_NNPDF31_TuneCP5_13TeV-powheg-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14_ext1-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "WW"), ("process_name_specific", "WWToLNuQQ_ext1"), ("nof_files", 21), ("nof_db_files", 127), ("nof_events", { 'Count' : [ 9994191, ], 'CountWeighted' : [ 9.95691034e+06, 9.95579235e+06, 9.95632759e+06, ], 'CountWeightedLHEWeightScale' : [ 1.00741679e+07, 1.01978122e+07, 1.02996450e+07, 9.81762586e+06, 9.95691034e+06, 1.00699781e+07, 9.60397431e+06, 9.75551952e+06, 9.87871960e+06, ], 'CountWeightedLHEEnvelope' : [ 1.04001583e+07, 9.54604732e+06, ], 'CountWeightedFull' : [ 4.59521752e+08, 4.59642780e+08, 4.59564638e+08, ], 'CountWeightedFullLHEWeightScale' : [ 4.65025032e+08, 4.70737560e+08, 4.75435124e+08, 4.53179960e+08, 4.59521752e+08, 4.64834630e+08, 4.43315513e+08, 4.50312088e+08, 4.56002008e+08, ], 'CountWeightedFullLHEEnvelope' : [ 4.80076120e+08, 4.40640856e+08, ], 'CountWeightedL1PrefireNom' : [ 9.73425168e+06, 9.73318668e+06, 9.73409702e+06, ], 'CountWeightedL1Prefire' : [ 9.73425168e+06, 9.67712049e+06, 9.78908903e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 9.84681017e+06, 9.96897811e+06, 1.00695454e+07, 9.59678216e+06, 9.73425168e+06, 9.84603875e+06, 9.38855348e+06, 9.53817853e+06, 9.65986177e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 1.01670562e+07, 9.33289638e+06, ], 'CountWeightedFullL1PrefireNom' : [ 4.49268624e+08, 4.49336933e+08, 4.49303702e+08, ], 'CountWeightedFullL1Prefire' : [ 4.49268624e+08, 4.46633594e+08, 4.51810390e+08, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 4.54528704e+08, 4.60172187e+08, 4.64813254e+08, 4.42985314e+08, 4.49268624e+08, 4.54494970e+08, 4.33371603e+08, 4.40279015e+08, 4.45898268e+08, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 4.69314980e+08, 4.30801994e+08, ], }), ("nof_tree_events", 9994191), ("nof_db_events", 9994191), ("fsize_local", 42740311619), # 42.74GB, avg file size 2.04GB ("fsize_db", 429884785891), # 429.88GB, avg file size 3.38GB ("use_it", False), ("xsection", 50.45), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/WWToLNuQQ_ext1"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/WWToLNuQQ_NNPDF31_TuneCP5_PSweights_13TeV-powheg-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14_ext1-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "WW"), ("process_name_specific", "WWToLNuQQ_PSweights_ext1"), ("nof_files", 18), ("nof_db_files", 100), ("nof_events", { 'Count' : [ 8785360, ], 'CountWeighted' : [ 8.75147488e+06, 8.75315172e+06, 8.75280184e+06, ], 'CountWeightedLHEWeightScale' : [ 8.85521722e+06, 8.96414641e+06, 9.05356725e+06, 8.62980209e+06, 8.75147488e+06, 8.85193072e+06, 8.44206881e+06, 8.57522625e+06, 8.68379591e+06, ], 'CountWeightedLHEEnvelope' : [ 9.14199344e+06, 8.39106194e+06, ], 'CountWeightedPSWeight' : [ 8.75193828e+06, 8.75092553e+06, 1.17779828e+07, 8.75185834e+06, 8.74986244e+06, 5.94620603e+06, ], 'CountWeightedPSWeightOriginalXWGTUP' : [ 8.78525812e+07, 8.78487535e+07, 8.78526318e+07, 8.78525828e+07, 8.77452350e+07, 8.77413048e+07, ], 'CountWeightedFull' : [ 4.03904262e+08, 4.03875861e+08, 4.03872456e+08, ], 'CountWeightedFullLHEWeightScale' : [ 4.08621976e+08, 4.13650528e+08, 4.17780466e+08, 3.98217118e+08, 4.03904262e+08, 4.08473207e+08, 3.89554688e+08, 3.95701035e+08, 4.00712551e+08, ], 'CountWeightedFullLHEEnvelope' : [ 4.21860948e+08, 3.87199744e+08, ], 'CountWeightedFullPSWeight' : [ 4.03869016e+08, 4.03811105e+08, 5.43490718e+08, 4.03864985e+08, 4.03761087e+08, 2.74390647e+08, ], 'CountWeightedFullPSWeightOriginalXWGTUP' : [ 4.05415283e+09, 4.05397400e+09, 4.05415286e+09, 4.05415283e+09, 4.04919726e+09, 4.04901821e+09, ], 'CountWeightedL1PrefireNom' : [ 8.55592953e+06, 8.55661156e+06, 8.55695778e+06, ], 'CountWeightedL1Prefire' : [ 8.55592953e+06, 8.50558247e+06, 8.60411412e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 8.65519475e+06, 8.76280953e+06, 8.85116100e+06, 8.43548725e+06, 8.55592953e+06, 8.65487125e+06, 8.25252716e+06, 8.38400800e+06, 8.49120712e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 8.93691725e+06, 8.20353566e+06, ], 'CountWeightedPSWeightL1PrefireNom' : [ 8.55648762e+06, 8.55323134e+06, 1.15124617e+07, 8.55563131e+06, 8.55724662e+06, 5.81576036e+06, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNom' : [ 8.58890520e+07, 8.58853168e+07, 8.58890950e+07, 8.58890530e+07, 8.57849012e+07, 8.57810785e+07, ], 'CountWeightedFullL1PrefireNom' : [ 3.94857097e+08, 3.94817171e+08, 3.94841345e+08, ], 'CountWeightedFullL1Prefire' : [ 3.94857097e+08, 3.92538335e+08, 3.97091267e+08, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 3.99392735e+08, 4.04359919e+08, 4.08440391e+08, 3.89252016e+08, 3.94857097e+08, 3.99379901e+08, 3.80810640e+08, 3.86877803e+08, 3.91826760e+08, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 4.12397666e+08, 3.78549189e+08, ], 'CountWeightedFullPSWeightL1PrefireNom' : [ 3.94847324e+08, 3.94689739e+08, 5.31240094e+08, 3.94807265e+08, 3.94873768e+08, 2.68372077e+08, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNom' : [ 3.96348549e+09, 3.96331104e+09, 3.96348549e+09, 3.96348549e+09, 3.95867845e+09, 3.95850403e+09, ], }), ("nof_tree_events", 8785360), ("nof_db_events", 8785360), ("fsize_local", 37823896234), # 37.82GB, avg file size 2.10GB ("fsize_db", 386842370187), # 386.84GB, avg file size 3.87GB ("use_it", False), ("xsection", 50.45), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 4), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/WWToLNuQQ_PSweights_ext1"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/WWTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "WW"), ("process_name_specific", "WWTo1L1Nu2Q"), ("nof_files", 11), ("nof_db_files", 62), ("nof_events", { 'Count' : [ 5054286, ], 'CountWeighted' : [ 3.17078922e+06, 3.17021473e+06, 3.17067002e+06, ], 'CountWeightedLHEWeightScale' : [ 3.28881098e+06, 3.31668604e+06, 3.34408382e+06, 3.13395711e+06, 3.17070438e+06, 3.20101770e+06, 3.00304495e+06, 3.04618710e+06, 3.07913800e+06, ], 'CountWeightedLHEEnvelope' : [ 3.63365964e+06, 2.76291584e+06, ], 'CountWeightedFull' : [ 7.45518108e+08, 7.45500250e+08, 7.45580513e+08, ], 'CountWeightedFullLHEWeightScale' : [ 7.73288687e+08, 7.79842532e+08, 7.86285299e+08, 7.36878108e+08, 7.45514801e+08, 7.52648666e+08, 7.06098094e+08, 7.16241113e+08, 7.23990529e+08, ], 'CountWeightedFullLHEEnvelope' : [ 8.54373803e+08, 6.49637450e+08, ], 'CountWeightedL1PrefireNom' : [ 3.09754568e+06, 3.09695815e+06, 3.09761922e+06, ], 'CountWeightedL1Prefire' : [ 3.09754568e+06, 3.07897665e+06, 3.11554096e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 3.21168368e+06, 3.23948407e+06, 3.26657432e+06, 3.06089285e+06, 3.09747304e+06, 3.12754290e+06, 2.93346059e+06, 2.97635824e+06, 3.00909672e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 3.54805684e+06, 2.70036904e+06, ], 'CountWeightedFullL1PrefireNom' : [ 7.28304010e+08, 7.28243918e+08, 7.28378054e+08, ], 'CountWeightedFullL1Prefire' : [ 7.28304010e+08, 7.23938811e+08, 7.32538154e+08, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 7.55153707e+08, 7.61689724e+08, 7.68061378e+08, 7.19699263e+08, 7.28298002e+08, 7.35373237e+08, 6.89736881e+08, 6.99822276e+08, 7.07521582e+08, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 8.34246375e+08, 6.34931119e+08, ], }), ("nof_tree_events", 5054286), ("nof_db_events", 5054286), ("fsize_local", 22922837222), # 22.92GB, avg file size 2.08GB ("fsize_db", 215173204051), # 215.17GB, avg file size 3.47GB ("use_it", False), ("xsection", 50.45), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 306000 - 306102 -> NNPDF31_nnlo_hessian_pdfas PDF set, expecting 103 weights (counted 103 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/WWTo1L1Nu2Q"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/WWTo4Q_NNPDF31_TuneCP5_13TeV-powheg-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_new_pmx_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "WW"), ("process_name_specific", "WWTo4Q"), ("nof_files", 5), ("nof_db_files", 24), ("nof_events", { 'Count' : [ 2000000, ], 'CountWeighted' : [ 1.99270649e+06, 1.99234746e+06, 1.99250688e+06, ], 'CountWeightedLHEWeightScale' : [ 2.01588301e+06, 2.04070124e+06, 2.06108929e+06, 1.96459368e+06, 1.99255421e+06, 2.01523281e+06, 1.92189005e+06, 1.95226054e+06, 1.97699235e+06, ], 'CountWeightedLHEEnvelope' : [ 2.08113549e+06, 1.91036852e+06, ], 'CountWeightedFull' : [ 9.54580308e+07, 9.54486421e+07, 9.54425737e+07, ], 'CountWeightedFullLHEWeightScale' : [ 9.65719902e+07, 9.77605446e+07, 9.87382206e+07, 9.41145154e+07, 9.54553960e+07, 9.65407485e+07, 9.20683625e+07, 9.35244454e+07, 9.47083442e+07, ], 'CountWeightedFullLHEEnvelope' : [ 9.96990792e+07, 9.15166758e+07, ], 'CountWeightedL1PrefireNom' : [ 1.95177218e+06, 1.95153245e+06, 1.95171086e+06, ], 'CountWeightedL1Prefire' : [ 1.95177218e+06, 1.94089049e+06, 1.96206356e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 1.97405763e+06, 1.99869462e+06, 2.01892958e+06, 1.92399854e+06, 1.95165436e+06, 1.97423187e+06, 1.88232384e+06, 1.91243832e+06, 1.93695840e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 2.03833904e+06, 1.87130765e+06, ], 'CountWeightedFullL1PrefireNom' : [ 9.34990632e+07, 9.34897462e+07, 9.34922042e+07, ], 'CountWeightedFullL1Prefire' : [ 9.34990632e+07, 9.29776977e+07, 9.39913374e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 9.45682102e+07, 9.57480869e+07, 9.67182388e+07, 9.21694268e+07, 9.34962803e+07, 9.45764188e+07, 9.01728299e+07, 9.16163304e+07, 9.27903839e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 9.76484199e+07, 8.96451253e+07, ], }), ("nof_tree_events", 2000000), ("nof_db_events", 2000000), ("fsize_local", 9110640508), # 9.11GB, avg file size 1.82GB ("fsize_db", 89197790862), # 89.20GB, avg file size 3.72GB ("use_it", False), ("xsection", 52.15), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/WWTo4Q"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/WWTo4Q_NNPDF31_TuneCP5_PSweights_13TeV-powheg-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14_ext1-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "WW"), ("process_name_specific", "WWTo4Q_PSweights_ext1"), ("nof_files", 4), ("nof_db_files", 26), ("nof_events", { 'Count' : [ 1976360, ], 'CountWeighted' : [ 1.96917406e+06, 1.96917362e+06, 1.96896794e+06, ], 'CountWeightedLHEWeightScale' : [ 1.99225603e+06, 2.01671456e+06, 2.03675953e+06, 1.94149812e+06, 1.96884888e+06, 1.99139088e+06, 1.89925306e+06, 1.92915522e+06, 1.95353425e+06, ], 'CountWeightedLHEEnvelope' : [ 2.05680991e+06, 1.88765012e+06, ], 'CountWeightedPSWeight' : [ 1.96898166e+06, 1.96813897e+06, 2.72908469e+06, 1.96895819e+06, 1.96812369e+06, 1.26476494e+06, ], 'CountWeightedPSWeightOriginalXWGTUP' : [ 1.97625775e+07, 1.97612285e+07, 1.97626055e+07, 1.97625755e+07, 1.97256180e+07, 1.97242120e+07, ], 'CountWeightedFull' : [ 9.42719900e+07, 9.42974540e+07, 9.42820860e+07, ], 'CountWeightedFullLHEWeightScale' : [ 9.54086140e+07, 9.65803900e+07, 9.75407840e+07, 9.29775080e+07, 9.42710600e+07, 9.53677920e+07, 9.09540160e+07, 9.23865520e+07, 9.35546060e+07, ], 'CountWeightedFullLHEEnvelope' : [ 9.85011120e+07, 9.03983320e+07, ], 'CountWeightedFullPSWeight' : [ 9.42893940e+07, 9.42530560e+07, 1.30692856e+08, 9.42878320e+07, 9.42525280e+07, 6.05696240e+07, ], 'CountWeightedFullPSWeightOriginalXWGTUP' : [ 9.46504336e+08, 9.46438352e+08, 9.46504352e+08, 9.46504304e+08, 9.44732304e+08, 9.44666320e+08, ], 'CountWeightedL1PrefireNom' : [ 1.92859378e+06, 1.92853953e+06, 1.92856978e+06, ], 'CountWeightedL1Prefire' : [ 1.92859378e+06, 1.91781447e+06, 1.93880241e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 1.95078819e+06, 1.97506191e+06, 1.99496075e+06, 1.90124550e+06, 1.92838050e+06, 1.95074075e+06, 1.86002078e+06, 1.88966984e+06, 1.91384656e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 2.01437988e+06, 1.84891869e+06, ], 'CountWeightedPSWeightL1PrefireNom' : [ 1.92857516e+06, 1.92697088e+06, 2.67259400e+06, 1.92836694e+06, 1.92883809e+06, 1.23942462e+06, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNom' : [ 1.93571375e+07, 1.93558160e+07, 1.93571580e+07, 1.93571360e+07, 1.93212455e+07, 1.93198820e+07, ], 'CountWeightedFullL1PrefireNom' : [ 9.23419260e+07, 9.23542760e+07, 9.23515420e+07, ], 'CountWeightedFullL1Prefire' : [ 9.23419260e+07, 9.18259740e+07, 9.28297380e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 9.34226120e+07, 9.45857900e+07, 9.55393880e+07, 9.10499620e+07, 9.23403320e+07, 9.34211000e+07, 8.90753180e+07, 9.04955800e+07, 9.16541820e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 9.64690860e+07, 8.85437760e+07, ], 'CountWeightedFullPSWeightL1PrefireNom' : [ 9.23563800e+07, 9.22819840e+07, 1.27988392e+08, 9.23458580e+07, 9.23714780e+07, 5.93562760e+07, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNom' : [ 9.27046752e+08, 9.26982576e+08, 9.27046784e+08, 9.27046736e+08, 9.25326992e+08, 9.25262768e+08, ], }), ("nof_tree_events", 1976360), ("nof_db_events", 1976360), ("fsize_local", 9022029450), # 9.02GB, avg file size 2.26GB ("fsize_db", 88368465560), # 88.37GB, avg file size 3.40GB ("use_it", False), ("xsection", 52.15), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 4), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/WWTo4Q_PSweights_ext1"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/WZTo3LNu_TuneCP5_13TeV-amcatnloFXFX-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_new_pmx_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "WZ"), ("process_name_specific", "WZTo3LNu"), ("nof_files", 23), ("nof_db_files", 131), ("nof_events", { 'Count' : [ 10987679, ], 'CountWeighted' : [ 6.88822240e+06, 6.88873323e+06, 6.88926870e+06, ], 'CountWeightedLHEWeightScale' : [ 7.04516730e+06, 7.07153133e+06, 7.04761465e+06, 6.79791384e+06, 6.88821845e+06, 6.91650190e+06, 6.57635995e+06, 6.71489796e+06, 6.78465654e+06, ], 'CountWeightedLHEEnvelope' : [ 8.04510820e+06, 5.78137890e+06, ], 'CountWeightedFull' : [ 9.45815080e+07, 9.45747010e+07, 9.45877154e+07, ], 'CountWeightedFullLHEWeightScale' : [ 9.67292391e+07, 9.70915930e+07, 9.67627162e+07, 9.33344313e+07, 9.45814541e+07, 9.49625960e+07, 9.02925026e+07, 9.21945376e+07, 9.31523893e+07, ], 'CountWeightedFullLHEEnvelope' : [ 1.10458224e+08, 7.93774773e+07, ], 'CountWeightedL1PrefireNom' : [ 6.75422454e+06, 6.75420879e+06, 6.75525693e+06, ], 'CountWeightedL1Prefire' : [ 6.75422454e+06, 6.72082754e+06, 6.78688000e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 6.90421150e+06, 6.93019582e+06, 6.90572716e+06, 6.66448824e+06, 6.75422081e+06, 6.78182479e+06, 6.44940191e+06, 6.58703108e+06, 6.65618710e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 7.88775343e+06, 5.66776480e+06, ], 'CountWeightedFullL1PrefireNom' : [ 9.27396231e+07, 9.27294395e+07, 9.27483429e+07, ], 'CountWeightedFullL1Prefire' : [ 9.27396231e+07, 9.22807659e+07, 9.31878075e+07, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 9.47939526e+07, 9.51509286e+07, 9.48145636e+07, 9.15024679e+07, 9.27395693e+07, 9.31135304e+07, 8.85493095e+07, 9.04389994e+07, 9.13885232e+07, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 1.08297739e+08, 7.78175918e+07, ], }), ("nof_tree_events", 10987679), ("nof_db_events", 10987679), ("fsize_local", 44054060152), # 44.05GB, avg file size 1.92GB ("fsize_db", 478392232798), # 478.39GB, avg file size 3.65GB ("use_it", True), ("xsection", 4.9173), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/WZTo3LNu"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/WZTo3LNu_13TeV-powheg-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v2/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "WZ"), ("process_name_specific", "WZTo3LNu_powheg"), ("nof_files", 2), ("nof_db_files", 41), ("nof_events", { 'Count' : [ 976400, ], 'CountWeighted' : [ 9.65983656e+05, 9.66165688e+05, 9.66085500e+05, ], 'CountWeightedLHEWeightScale' : [ 9.62100688e+05, 9.91502125e+05, 1.00972947e+06, 9.32890594e+05, 9.65978938e+05, 9.88421781e+05, 9.08903062e+05, 9.45128188e+05, 9.70867812e+05, ], 'CountWeightedLHEEnvelope' : [ 1.02315869e+06, 9.04219156e+05, ], 'CountWeightedFull' : [ 4.54808375e+06, 4.54828850e+06, 4.54828625e+06, ], 'CountWeightedFullLHEWeightScale' : [ 4.53011075e+06, 4.66861300e+06, 4.75441300e+06, 4.39253400e+06, 4.54785900e+06, 4.65405900e+06, 4.27955600e+06, 4.45011950e+06, 4.57140425e+06, ], 'CountWeightedFullLHEEnvelope' : [ 4.81762725e+06, 4.25750475e+06, ], 'CountWeightedL1PrefireNom' : [ 9.49069250e+05, 9.49171531e+05, 9.49163938e+05, ], 'CountWeightedL1Prefire' : [ 9.49069250e+05, 9.44814000e+05, 9.53217156e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 9.44757438e+05, 9.73959375e+05, 9.92064781e+05, 9.16181656e+05, 9.49058625e+05, 9.71336719e+05, 8.92718844e+05, 9.28696594e+05, 9.54265094e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 1.00526025e+06, 8.88179844e+05, ], 'CountWeightedFullL1PrefireNom' : [ 4.46849100e+06, 4.46850200e+06, 4.46876250e+06, ], 'CountWeightedFullL1Prefire' : [ 4.46849100e+06, 4.44849225e+06, 4.48802425e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 4.44844375e+06, 4.58600600e+06, 4.67122225e+06, 4.31385225e+06, 4.46829025e+06, 4.57360975e+06, 4.20335925e+06, 4.37275425e+06, 4.49322575e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 4.73335825e+06, 4.18198250e+06, ], }), ("nof_tree_events", 976400), ("nof_db_events", 976400), ("fsize_local", 3554681475), # 3.55GB, avg file size 1.78GB ("fsize_db", 42009768335), # 42.01GB, avg file size 1.02GB ("use_it", False), ("xsection", 4.9173), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/WZTo3LNu_powheg"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/WZTo3LNu_mllmin01_NNPDF31_TuneCP5_13TeV_powheg_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v4/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "WZ"), ("process_name_specific", "WZTo3LNu_mllmin01"), ("nof_files", 281), ("nof_db_files", 1679), ("nof_events", { 'Count' : [ 8569246, ], 'CountWeighted' : [ 8.47453089e+06, 8.47547430e+06, 8.47410192e+06, ], 'CountWeightedLHEWeightScale' : [ 8.43785839e+06, 8.69762825e+06, 8.85872581e+06, 8.18147458e+06, 8.47429183e+06, 8.67212956e+06, 7.97126442e+06, 8.29144344e+06, 8.51883863e+06, ], 'CountWeightedLHEEnvelope' : [ 8.97558359e+06, 7.93127005e+06, ], 'CountWeightedFull' : [ 5.78134024e+08, 5.78192305e+08, 5.78103617e+08, ], 'CountWeightedFullLHEWeightScale' : [ 5.75634007e+08, 5.93355654e+08, 6.04345746e+08, 5.58143501e+08, 5.78110290e+08, 5.91616017e+08, 5.43802884e+08, 5.65645524e+08, 5.81158510e+08, ], 'CountWeightedFullLHEEnvelope' : [ 6.12317789e+08, 5.41074474e+08, ], 'CountWeightedL1PrefireNom' : [ 8.32795350e+06, 8.32855438e+06, 8.32779684e+06, ], 'CountWeightedL1Prefire' : [ 8.32795350e+06, 8.29099127e+06, 8.36395721e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 8.28775351e+06, 8.54574969e+06, 8.70572982e+06, 8.03688031e+06, 8.32771199e+06, 8.52419318e+06, 7.83123654e+06, 8.14922693e+06, 8.37509828e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 8.82062840e+06, 7.79244710e+06, ], 'CountWeightedFullL1PrefireNom' : [ 5.68134700e+08, 5.68171198e+08, 5.68123727e+08, ], 'CountWeightedFullL1Prefire' : [ 5.68134700e+08, 5.65613036e+08, 5.70590771e+08, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 5.65393794e+08, 5.82994439e+08, 5.93908303e+08, 5.48279229e+08, 5.68112650e+08, 5.81523784e+08, 5.34250125e+08, 5.55943458e+08, 5.71352504e+08, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 6.01746691e+08, 5.31603924e+08, ], }), ("nof_tree_events", 8569246), ("nof_db_events", 81866838), ("fsize_local", 31774551052), # 31.77GB, avg file size 113.08MB ("fsize_db", 3283174355042), # 3.28TB, avg file size 1.96GB ("use_it", False), ("xsection", 4.9173), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/WZTo3LNu_mllmin01"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/WZTo3LNu_0Jets_MLL-4to50_TuneCP5_13TeV-madgraphMLM-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "WZ"), ("process_name_specific", "WZTo3LNu_0Jets_MLL-4to50"), ("nof_files", 1), ("nof_db_files", 24), ("nof_events", { 'Count' : [ 488461, ], 'CountWeighted' : [ 4.87987938e+05, 4.88021281e+05, 4.88030938e+05, ], 'CountWeightedLHEEnvelope' : [ 4.87987938e+05, 4.87987938e+05, ], 'CountWeightedFull' : [ 4.87987938e+05, 4.88021281e+05, 4.88030938e+05, ], 'CountWeightedFullLHEEnvelope' : [ 4.87987938e+05, 4.87987938e+05, ], 'CountWeightedL1PrefireNom' : [ 4.85521531e+05, 4.85534656e+05, 4.85573125e+05, ], 'CountWeightedL1Prefire' : [ 4.85521531e+05, 4.84746688e+05, 4.86246000e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 4.85521531e+05, 4.85521531e+05, ], 'CountWeightedFullL1PrefireNom' : [ 4.85521531e+05, 4.85534656e+05, 4.85573125e+05, ], 'CountWeightedFullL1Prefire' : [ 4.85521531e+05, 4.84746688e+05, 4.86246000e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 4.85521531e+05, 4.85521531e+05, ], }), ("nof_tree_events", 488461), ("nof_db_events", 488461), ("fsize_local", 1317996829), # 1.32GB, avg file size 1.32GB ("fsize_db", 21565472983), # 21.57GB, avg file size 898.56MB ("use_it", False), ("xsection", 2.8309), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", False), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/WZTo3LNu_0Jets_MLL-4to50"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/WZTo3LNu_0Jets_MLL-50_TuneCP5_13TeV-madgraphMLM-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v3/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "WZ"), ("process_name_specific", "WZTo3LNu_0Jets_MLL-50"), ("nof_files", 1), ("nof_db_files", 24), ("nof_events", { 'Count' : [ 473818, ], 'CountWeighted' : [ 4.73097625e+05, 4.73012250e+05, 4.73001750e+05, ], 'CountWeightedLHEEnvelope' : [ 4.73097625e+05, 4.73097625e+05, ], 'CountWeightedFull' : [ 4.73097625e+05, 4.73012250e+05, 4.73001750e+05, ], 'CountWeightedFullLHEEnvelope' : [ 4.73097625e+05, 4.73097625e+05, ], 'CountWeightedL1PrefireNom' : [ 4.58185688e+05, 4.58108312e+05, 4.58129094e+05, ], 'CountWeightedL1Prefire' : [ 4.58185688e+05, 4.54567125e+05, 4.61757562e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 4.58185688e+05, 4.58185688e+05, ], 'CountWeightedFullL1PrefireNom' : [ 4.58185688e+05, 4.58108312e+05, 4.58129094e+05, ], 'CountWeightedFullL1Prefire' : [ 4.58185688e+05, 4.54567125e+05, 4.61757562e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 4.58185688e+05, 4.58185688e+05, ], }), ("nof_tree_events", 473818), ("nof_db_events", 473818), ("fsize_local", 1904419921), # 1.90GB, avg file size 1.90GB ("fsize_db", 23217296859), # 23.22GB, avg file size 967.39MB ("use_it", False), ("xsection", 0.716), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", False), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/WZTo3LNu_0Jets_MLL-50"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/WZTo3LNu_1Jets_MLL-4to50_TuneCP5_13TeV-madgraphMLM-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "WZ"), ("process_name_specific", "WZTo3LNu_1Jets_MLL-4to50"), ("nof_files", 2), ("nof_db_files", 22), ("nof_events", { 'Count' : [ 506673, ], 'CountWeighted' : [ 5.06065675e+05, 5.06208842e+05, 5.06159581e+05, ], 'CountWeightedLHEEnvelope' : [ 5.06065675e+05, 5.06065675e+05, ], 'CountWeightedFull' : [ 5.06065675e+05, 5.06208842e+05, 5.06159581e+05, ], 'CountWeightedFullLHEEnvelope' : [ 5.06065675e+05, 5.06065675e+05, ], 'CountWeightedL1PrefireNom' : [ 4.98774774e+05, 4.98869829e+05, 4.98858000e+05, ], 'CountWeightedL1Prefire' : [ 4.98774774e+05, 4.96832807e+05, 5.00640792e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 4.98774774e+05, 4.98774774e+05, ], 'CountWeightedFullL1PrefireNom' : [ 4.98774774e+05, 4.98869829e+05, 4.98858000e+05, ], 'CountWeightedFullL1Prefire' : [ 4.98774774e+05, 4.96832807e+05, 5.00640792e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 4.98774774e+05, 4.98774774e+05, ], }), ("nof_tree_events", 506673), ("nof_db_events", 506673), ("fsize_local", 1898115070), # 1.90GB, avg file size 949.06MB ("fsize_db", 24141156011), # 24.14GB, avg file size 1.10GB ("use_it", False), ("xsection", 0.5442), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", False), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/WZTo3LNu_1Jets_MLL-4to50"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/WZTo3LNu_1Jets_MLL-50_TuneCP5_13TeV-madgraphMLM-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v2/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "WZ"), ("process_name_specific", "WZTo3LNu_1Jets_MLL-50"), ("nof_files", 1), ("nof_db_files", 26), ("nof_events", { 'Count' : [ 486727, ], 'CountWeighted' : [ 4.85682250e+05, 4.85838281e+05, 4.85728938e+05, ], 'CountWeightedLHEEnvelope' : [ 4.85682250e+05, 4.85682250e+05, ], 'CountWeightedFull' : [ 4.85682250e+05, 4.85838281e+05, 4.85728938e+05, ], 'CountWeightedFullLHEEnvelope' : [ 4.85682250e+05, 4.85682250e+05, ], 'CountWeightedL1PrefireNom' : [ 4.66410125e+05, 4.66482312e+05, 4.66453000e+05, ], 'CountWeightedL1Prefire' : [ 4.66410125e+05, 4.61861156e+05, 4.70926844e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 4.66410125e+05, 4.66410125e+05, ], 'CountWeightedFullL1PrefireNom' : [ 4.66410125e+05, 4.66482312e+05, 4.66453000e+05, ], 'CountWeightedFullL1Prefire' : [ 4.66410125e+05, 4.61861156e+05, 4.70926844e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 4.66410125e+05, 4.66410125e+05, ], }), ("nof_tree_events", 486727), ("nof_db_events", 486727), ("fsize_local", 2523382283), # 2.52GB, avg file size 2.52GB ("fsize_db", 25784953540), # 25.78GB, avg file size 991.73MB ("use_it", False), ("xsection", 0.3807), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", False), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/WZTo3LNu_1Jets_MLL-50"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/WZTo3LNu_2Jets_MLL-4to50_TuneCP5_13TeV-madgraphMLM-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "WZ"), ("process_name_specific", "WZTo3LNu_2Jets_MLL-4to50"), ("nof_files", 3), ("nof_db_files", 75), ("nof_events", { 'Count' : [ 1433913, ], 'CountWeighted' : [ 1.43136050e+06, 1.43143838e+06, 1.43146888e+06, ], 'CountWeightedLHEEnvelope' : [ 1.43136050e+06, 1.43136050e+06, ], 'CountWeightedFull' : [ 1.43136050e+06, 1.43143838e+06, 1.43146888e+06, ], 'CountWeightedFullLHEEnvelope' : [ 1.43136050e+06, 1.43136050e+06, ], 'CountWeightedL1PrefireNom' : [ 1.39521009e+06, 1.39519359e+06, 1.39532262e+06, ], 'CountWeightedL1Prefire' : [ 1.39521009e+06, 1.38609712e+06, 1.40405844e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 1.39521009e+06, 1.39521009e+06, ], 'CountWeightedFullL1PrefireNom' : [ 1.39521009e+06, 1.39519359e+06, 1.39532262e+06, ], 'CountWeightedFullL1Prefire' : [ 1.39521009e+06, 1.38609712e+06, 1.40405844e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 1.39521009e+06, 1.39521009e+06, ], }), ("nof_tree_events", 1433913), ("nof_db_events", 1433913), ("fsize_local", 6859590616), # 6.86GB, avg file size 2.29GB ("fsize_db", 73675561875), # 73.68GB, avg file size 982.34MB ("use_it", False), ("xsection", 0.1842), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", False), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/WZTo3LNu_2Jets_MLL-4to50"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/WZTo3LNu_2Jets_MLL-50_TuneCP5_13TeV-madgraphMLM-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v2/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "WZ"), ("process_name_specific", "WZTo3LNu_2Jets_MLL-50"), ("nof_files", 4), ("nof_db_files", 80), ("nof_events", { 'Count' : [ 1835965, ], 'CountWeighted' : [ 1.83095000e+06, 1.83132912e+06, 1.83072584e+06, ], 'CountWeightedLHEEnvelope' : [ 1.83095000e+06, 1.83095000e+06, ], 'CountWeightedFull' : [ 1.83095000e+06, 1.83132912e+06, 1.83072584e+06, ], 'CountWeightedFullLHEEnvelope' : [ 1.83095000e+06, 1.83095000e+06, ], 'CountWeightedL1PrefireNom' : [ 1.72476603e+06, 1.72485819e+06, 1.72471375e+06, ], 'CountWeightedL1Prefire' : [ 1.72476603e+06, 1.70064816e+06, 1.74890072e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 1.72476603e+06, 1.72476603e+06, ], 'CountWeightedFullL1PrefireNom' : [ 1.72476603e+06, 1.72485819e+06, 1.72471375e+06, ], 'CountWeightedFullL1Prefire' : [ 1.72476603e+06, 1.70064816e+06, 1.74890072e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 1.72476603e+06, 1.72476603e+06, ], }), ("nof_tree_events", 1835965), ("nof_db_events", 1835965), ("fsize_local", 11962745238), # 11.96GB, avg file size 2.99GB ("fsize_db", 107485243900), # 107.49GB, avg file size 1.34GB ("use_it", False), ("xsection", 0.07452), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", False), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/WZTo3LNu_2Jets_MLL-50"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/WZTo3LNu_3Jets_MLL-4to50_TuneCP5_13TeV-madgraphMLM-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "WZ"), ("process_name_specific", "WZTo3LNu_3Jets_MLL-4to50"), ("nof_files", 5), ("nof_db_files", 110), ("nof_events", { 'Count' : [ 2069899, ], 'CountWeighted' : [ 2.06400463e+06, 2.06388810e+06, 2.06379789e+06, ], 'CountWeightedLHEEnvelope' : [ 2.06400463e+06, 2.06400463e+06, ], 'CountWeightedFull' : [ 2.06400463e+06, 2.06388810e+06, 2.06379789e+06, ], 'CountWeightedFullLHEEnvelope' : [ 2.06400463e+06, 2.06400463e+06, ], 'CountWeightedL1PrefireNom' : [ 1.97584924e+06, 1.97569436e+06, 1.97587043e+06, ], 'CountWeightedL1Prefire' : [ 1.97584924e+06, 1.95475739e+06, 1.99652907e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 1.97584924e+06, 1.97584924e+06, ], 'CountWeightedFullL1PrefireNom' : [ 1.97584924e+06, 1.97569436e+06, 1.97587043e+06, ], 'CountWeightedFullL1Prefire' : [ 1.97584924e+06, 1.95475739e+06, 1.99652907e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 1.97584924e+06, 1.97584924e+06, ], }), ("nof_tree_events", 2069899), ("nof_db_events", 2069899), ("fsize_local", 13112404759), # 13.11GB, avg file size 2.62GB ("fsize_db", 117165529475), # 117.17GB, avg file size 1.07GB ("use_it", False), ("xsection", 0.0799), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", False), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/WZTo3LNu_3Jets_MLL-4to50"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/WZTo3LNu_3Jets_MLL-50_TuneCP5_13TeV-madgraphMLM-pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v2/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "WZ"), ("process_name_specific", "WZTo3LNu_3Jets_MLL-50"), ("nof_files", 8), ("nof_db_files", 98), ("nof_events", { 'Count' : [ 1832414, ], 'CountWeighted' : [ 1.82464433e+06, 1.82458214e+06, 1.82462755e+06, ], 'CountWeightedLHEEnvelope' : [ 1.82464433e+06, 1.82464433e+06, ], 'CountWeightedFull' : [ 1.82464433e+06, 1.82458214e+06, 1.82462755e+06, ], 'CountWeightedFullLHEEnvelope' : [ 1.82464433e+06, 1.82464433e+06, ], 'CountWeightedL1PrefireNom' : [ 1.71074536e+06, 1.71058859e+06, 1.71086339e+06, ], 'CountWeightedL1Prefire' : [ 1.71074536e+06, 1.68493441e+06, 1.73648125e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 1.71074536e+06, 1.71074536e+06, ], 'CountWeightedFullL1PrefireNom' : [ 1.71074536e+06, 1.71058859e+06, 1.71086339e+06, ], 'CountWeightedFullL1Prefire' : [ 1.71074536e+06, 1.68493441e+06, 1.73648125e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 1.71074536e+06, 1.71074536e+06, ], }), ("nof_tree_events", 1832414), ("nof_db_events", 1832414), ("fsize_local", 14585029049), # 14.59GB, avg file size 1.82GB ("fsize_db", 115010601689), # 115.01GB, avg file size 1.17GB ("use_it", False), ("xsection", 0.1068), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", False), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/WZTo3LNu_3Jets_MLL-50"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/WZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "WZ"), ("process_name_specific", "WZTo2L2Q"), ("nof_files", 56), ("nof_db_files", 406), ("nof_events", { 'Count' : [ 27582164, ], 'CountWeighted' : [ 1.66623886e+07, 1.66656546e+07, 1.66637100e+07, ], 'CountWeightedLHEWeightScale' : [ 1.71533145e+07, 1.74672813e+07, 1.77113551e+07, 1.62957298e+07, 1.66623707e+07, 1.69395136e+07, 1.55746545e+07, 1.59819236e+07, 1.62815855e+07, ], 'CountWeightedLHEEnvelope' : [ 1.92663752e+07, 1.43064840e+07, ], 'CountWeightedFull' : [ 2.69148655e+08, 2.69182736e+08, 2.69136851e+08, ], 'CountWeightedFullLHEWeightScale' : [ 2.77052119e+08, 2.82123159e+08, 2.86065162e+08, 2.63200860e+08, 2.69148412e+08, 2.73599003e+08, 2.51554504e+08, 2.58133306e+08, 2.62972334e+08, ], 'CountWeightedFullLHEEnvelope' : [ 3.11181439e+08, 2.31071460e+08, ], 'CountWeightedL1PrefireNom' : [ 1.62157850e+07, 1.62173084e+07, 1.62169634e+07, ], 'CountWeightedL1Prefire' : [ 1.62157850e+07, 1.61052556e+07, 1.63233979e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 1.66793798e+07, 1.69935943e+07, 1.72363145e+07, 1.58484850e+07, 1.62157680e+07, 1.64910653e+07, 1.51501821e+07, 1.55567334e+07, 1.58557538e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 1.87397000e+07, 1.39271796e+07, ], 'CountWeightedFullL1PrefireNom' : [ 2.61924577e+08, 2.61938848e+08, 2.61922827e+08, ], 'CountWeightedFullL1Prefire' : [ 2.61924577e+08, 2.60138542e+08, 2.63663171e+08, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 2.69397314e+08, 2.74472412e+08, 2.78392614e+08, 2.55977096e+08, 2.61924364e+08, 2.66355905e+08, 2.44698464e+08, 2.51265513e+08, 2.56094540e+08, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 3.02674783e+08, 2.24945171e+08, ], }), ("nof_tree_events", 27582164), ("nof_db_events", 27582164), ("fsize_local", 135161778082), # 135.16GB, avg file size 2.41GB ("fsize_db", 1286368112175), # 1.29TB, avg file size 3.17GB ("use_it", False), ("xsection", 5.6), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/WZTo2L2Q"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/WZTo1L1Nu2Q_13TeV_amcatnloFXFX_madspin_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v2/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "WZ"), ("process_name_specific", "WZTo1L1Nu2Q"), ("nof_files", 39), ("nof_db_files", 309), ("nof_events", { 'Count' : [ 19086373, ], 'CountWeighted' : [ 1.13483405e+07, 1.13466909e+07, 1.13478264e+07, ], 'CountWeightedLHEWeightScale' : [ 1.18015698e+07, 1.18679576e+07, 1.19544780e+07, 1.12621505e+07, 1.13482788e+07, 1.14303388e+07, 1.07929848e+07, 1.08916445e+07, 1.09742609e+07, ], 'CountWeightedLHEEnvelope' : [ 1.30277174e+07, 9.86479480e+06, ], 'CountWeightedFull' : [ 3.52354613e+08, 3.52303263e+08, 3.52301006e+08, ], 'CountWeightedFullLHEWeightScale' : [ 3.66446180e+08, 3.68508906e+08, 3.71194336e+08, 3.49697019e+08, 3.52343154e+08, 3.54919726e+08, 3.35129247e+08, 3.38192640e+08, 3.40758091e+08, ], 'CountWeightedFullLHEEnvelope' : [ 4.04519556e+08, 3.06308707e+08, ], 'CountWeightedL1PrefireNom' : [ 1.10584293e+07, 1.10568109e+07, 1.10585273e+07, ], 'CountWeightedL1Prefire' : [ 1.10584293e+07, 1.09855758e+07, 1.11289544e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 1.14941309e+07, 1.15621630e+07, 1.16487153e+07, 1.09711955e+07, 1.10583461e+07, 1.11413411e+07, 1.05163460e+07, 1.06162243e+07, 1.06996862e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 1.26873278e+07, 9.61902077e+06, ], 'CountWeightedFullL1PrefireNom' : [ 3.43357930e+08, 3.43313716e+08, 3.43340748e+08, ], 'CountWeightedFullL1Prefire' : [ 3.43357930e+08, 3.41097192e+08, 3.45549216e+08, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 3.56900159e+08, 3.59013386e+08, 3.61700430e+08, 3.40662848e+08, 3.43349650e+08, 3.45946177e+08, 3.26539434e+08, 3.29640719e+08, 3.32232214e+08, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 3.93949975e+08, 2.98677218e+08, ], }), ("nof_tree_events", 19086373), ("nof_db_events", 19086373), ("fsize_local", 93832077240), # 93.83GB, avg file size 2.41GB ("fsize_db", 888745631538), # 888.75GB, avg file size 2.88GB ("use_it", False), ("xsection", 10.71), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/WZTo1L1Nu2Q"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/ZZTo4L_13TeV_powheg_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_new_pmx_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "ZZ"), ("process_name_specific", "ZZTo4L"), ("nof_files", 15), ("nof_db_files", 80), ("nof_events", { 'Count' : [ 6964071, ], 'CountWeighted' : [ 6.89432496e+06, 6.89342016e+06, 6.89418545e+06, ], 'CountWeightedLHEWeightScale' : [ 6.61333904e+06, 7.03923265e+06, 7.27458338e+06, 6.42766576e+06, 6.89432496e+06, 7.19003389e+06, 6.27996432e+06, 6.77801003e+06, 7.12255795e+06, ], 'CountWeightedLHEEnvelope' : [ 7.34020519e+06, 6.30490910e+06, ], 'CountWeightedFull' : [ 9.22740638e+06, 9.22632710e+06, 9.22674098e+06, ], 'CountWeightedFullLHEWeightScale' : [ 8.85128319e+06, 9.42117847e+06, 9.73635345e+06, 8.60276692e+06, 9.22740638e+06, 9.62313773e+06, 8.40514428e+06, 9.07162948e+06, 9.53282738e+06, ], 'CountWeightedFullLHEEnvelope' : [ 9.82409703e+06, 8.43846120e+06, ], 'CountWeightedL1PrefireNom' : [ 6.78704918e+06, 6.78624079e+06, 6.78712160e+06, ], 'CountWeightedL1Prefire' : [ 6.78704918e+06, 6.75931240e+06, 6.81409114e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 6.50704061e+06, 6.92997001e+06, 7.16339142e+06, 6.32387017e+06, 6.78704918e+06, 7.08061503e+06, 6.17823704e+06, 6.67270457e+06, 7.01460401e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 7.22881363e+06, 6.20269703e+06, ], 'CountWeightedFullL1PrefireNom' : [ 9.08384105e+06, 9.08282608e+06, 9.08359496e+06, ], 'CountWeightedFullL1Prefire' : [ 9.08384105e+06, 9.04667579e+06, 9.12008633e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 8.70901942e+06, 9.27498602e+06, 9.58751723e+06, 8.46386106e+06, 9.08384105e+06, 9.47669057e+06, 8.26898384e+06, 8.93068571e+06, 9.38834607e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 9.67502604e+06, 8.30168042e+06, ], }), ("nof_tree_events", 6964071), ("nof_db_events", 6964071), ("fsize_local", 23911060237), # 23.91GB, avg file size 1.59GB ("fsize_db", 292257995604), # 292.26GB, avg file size 3.65GB ("use_it", True), ("xsection", 1.3816), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/ZZTo4L"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/ZZTo4L_13TeV_powheg_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14_ext1-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "ZZ"), ("process_name_specific", "ZZTo4L_ext1"), ("nof_files", 197), ("nof_db_files", 1128), ("nof_events", { 'Count' : [ 98091559, ], 'CountWeighted' : [ 9.70835575e+07, 9.71172775e+07, 9.71032800e+07, ], 'CountWeightedLHEWeightScale' : [ 9.31470151e+07, 9.91479214e+07, 1.02465235e+08, 9.05305055e+07, 9.70835575e+07, 1.01272579e+08, 8.84509397e+07, 9.54656554e+07, 1.00322586e+08, ], 'CountWeightedLHEEnvelope' : [ 1.03385264e+08, 8.88066926e+07, ], 'CountWeightedFull' : [ 1.29934461e+08, 1.29926563e+08, 1.29954783e+08, ], 'CountWeightedFullLHEWeightScale' : [ 1.24667912e+08, 1.32699896e+08, 1.37139968e+08, 1.21166230e+08, 1.29934461e+08, 1.35543739e+08, 1.18382634e+08, 1.27771763e+08, 1.34272395e+08, ], 'CountWeightedFullLHEEnvelope' : [ 1.38371467e+08, 1.18858915e+08, ], 'CountWeightedL1PrefireNom' : [ 9.55779489e+07, 9.56021510e+07, 9.55961373e+07, ], 'CountWeightedL1Prefire' : [ 9.55779489e+07, 9.51877842e+07, 9.59588030e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 9.16502904e+07, 9.76096299e+07, 1.00899556e+08, 8.90688257e+07, 9.55779489e+07, 9.97318664e+07, 8.70181315e+07, 9.39828310e+07, 9.88025155e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 1.01816764e+08, 8.73672765e+07, ], 'CountWeightedFullL1PrefireNom' : [ 1.27920262e+08, 1.27910719e+08, 1.27939248e+08, ], 'CountWeightedFullL1Prefire' : [ 1.27920262e+08, 1.27397661e+08, 1.28428454e+08, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 1.22664713e+08, 1.30641143e+08, 1.35044333e+08, 1.19209874e+08, 1.27920262e+08, 1.33481546e+08, 1.16464992e+08, 1.25786821e+08, 1.32237743e+08, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 1.36272149e+08, 1.16932408e+08, ], }), ("nof_tree_events", 98091559), ("nof_db_events", 98091559), ("fsize_local", 333776325757), # 333.78GB, avg file size 1.69GB ("fsize_db", 4014158215850), # 4.01TB, avg file size 3.56GB ("use_it", True), ("xsection", 1.3816), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/ZZTo4L_ext1"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/ZZTo4L_13TeV_powheg_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14_ext2-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "ZZ"), ("process_name_specific", "ZZTo4L_ext2"), ("nof_files", 175), ("nof_db_files", 1623), ("nof_events", { 'Count' : [ 86763486, ], 'CountWeighted' : [ 8.58936216e+07, 8.58819794e+07, 8.58782507e+07, ], 'CountWeightedLHEWeightScale' : [ 8.23909269e+07, 8.76983502e+07, 9.06298879e+07, 8.00762899e+07, 8.58936216e+07, 8.95755041e+07, 7.82364046e+07, 8.44402160e+07, 8.87350126e+07, ], 'CountWeightedLHEEnvelope' : [ 9.14458504e+07, 7.85488960e+07, ], 'CountWeightedPSWeight' : [ 8.58848290e+07, 8.58867213e+07, 1.08412672e+08, 8.58856233e+07, 8.58610282e+07, 6.47240886e+07, ], 'CountWeightedPSWeightOriginalXWGTUP' : [ 1.16124366e+08, 1.16129848e+08, 1.46547612e+08, 1.16124815e+08, 1.16057617e+08, 8.75202599e+07, ], 'CountWeightedFull' : [ 1.14941057e+08, 1.14942374e+08, 1.14946722e+08, ], 'CountWeightedFullLHEWeightScale' : [ 1.10266514e+08, 1.17369422e+08, 1.21293635e+08, 1.07168569e+08, 1.14941057e+08, 1.19882149e+08, 1.04706744e+08, 1.13009240e+08, 1.18757336e+08, ], 'CountWeightedFullLHEEnvelope' : [ 1.22385201e+08, 1.05124306e+08, ], 'CountWeightedFullPSWeight' : [ 1.14940041e+08, 1.14945183e+08, 1.45091659e+08, 1.14940714e+08, 1.14910536e+08, 8.66227448e+07, ], 'CountWeightedFullPSWeightOriginalXWGTUP' : [ 1.55404853e+08, 1.55420018e+08, 1.96127817e+08, 1.55406115e+08, 1.55323675e+08, 1.17131587e+08, ], 'CountWeightedL1PrefireNom' : [ 8.45571248e+07, 8.45464529e+07, 8.45476410e+07, ], 'CountWeightedL1Prefire' : [ 8.45571248e+07, 8.42111846e+07, 8.48934827e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 8.10670689e+07, 8.63378442e+07, 8.92452298e+07, 7.87834932e+07, 8.45571248e+07, 8.82128495e+07, 7.69692011e+07, 8.31286857e+07, 8.73905860e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 9.00587630e+07, 7.72758098e+07, ], 'CountWeightedPSWeightL1PrefireNom' : [ 8.45519892e+07, 8.45515875e+07, 1.06690263e+08, 8.45495872e+07, 8.45302123e+07, 6.37516959e+07, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNom' : [ 1.14335010e+08, 1.14336688e+08, 1.44235081e+08, 1.14331063e+08, 1.14271002e+08, 8.62142704e+07, ], 'CountWeightedFullL1PrefireNom' : [ 1.13155992e+08, 1.13154481e+08, 1.13164012e+08, ], 'CountWeightedFullL1Prefire' : [ 1.13155992e+08, 1.12693256e+08, 1.13605915e+08, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 1.08494826e+08, 1.15548924e+08, 1.19440451e+08, 1.05438580e+08, 1.13155992e+08, 1.18058555e+08, 1.03010918e+08, 1.11253881e+08, 1.16958109e+08, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 1.20528928e+08, 1.03420732e+08, ], 'CountWeightedFullPSWeightL1PrefireNom' : [ 1.13156967e+08, 1.13158418e+08, 1.42786730e+08, 1.13153353e+08, 1.13129572e+08, 8.53213909e+07, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNom' : [ 1.53011675e+08, 1.53020387e+08, 1.93033235e+08, 1.53006956e+08, 1.52932743e+08, 1.15383851e+08, ], }), ("nof_tree_events", 86763486), ("nof_db_events", 86763486), ("fsize_local", 298740202758), # 298.74GB, avg file size 1.71GB ("fsize_db", 3665584889110), # 3.67TB, avg file size 2.26GB ("use_it", True), ("xsection", 1.3816), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 4), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/ZZTo4L_ext2"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/ZZTo2L2Nu_13TeV_powheg_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "ZZ"), ("process_name_specific", "ZZTo2L2Nu"), ("nof_files", 18), ("nof_db_files", 112), ("nof_events", { 'Count' : [ 8744768, ], 'CountWeighted' : [ 8.73338109e+06, 8.73295306e+06, 8.73555331e+06, ], 'CountWeightedLHEWeightScale' : [ 8.78415831e+06, 8.89445231e+06, 8.99105672e+06, 8.60982922e+06, 8.73338109e+06, 8.84052522e+06, 8.46426850e+06, 8.59944472e+06, 8.71471550e+06, ], 'CountWeightedLHEEnvelope' : [ 8.99000256e+06, 8.49073047e+06, ], 'CountWeightedFull' : [ 5.25509528e+06, 5.25412562e+06, 5.25455864e+06, ], 'CountWeightedFullLHEWeightScale' : [ 5.28488475e+06, 5.35112673e+06, 5.40934200e+06, 5.18001819e+06, 5.25509528e+06, 5.31878731e+06, 5.09237931e+06, 5.17386395e+06, 5.24313381e+06, ], 'CountWeightedFullLHEEnvelope' : [ 5.40869298e+06, 5.10842144e+06, ], 'CountWeightedL1PrefireNom' : [ 8.50751278e+06, 8.50700841e+06, 8.50935166e+06, ], 'CountWeightedL1Prefire' : [ 8.50751278e+06, 8.45334684e+06, 8.56109103e+06, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 8.55611197e+06, 8.66402759e+06, 8.75851200e+06, 8.38647912e+06, 8.50751278e+06, 8.61236259e+06, 8.24484294e+06, 8.37734753e+06, 8.49024775e+06, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 8.75766934e+06, 8.27081847e+06, ], 'CountWeightedFullL1PrefireNom' : [ 5.11902562e+06, 5.11817098e+06, 5.11880202e+06, ], 'CountWeightedFullL1Prefire' : [ 5.11902562e+06, 5.08632312e+06, 5.15115911e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 5.14767238e+06, 5.21251794e+06, 5.26942656e+06, 5.04561712e+06, 5.11902562e+06, 5.18151000e+06, 4.96035044e+06, 5.04018900e+06, 5.10806131e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 5.26891111e+06, 4.97606080e+06, ], }), ("nof_tree_events", 8744768), ("nof_db_events", 8744768), ("fsize_local", 33988754097), # 33.99GB, avg file size 1.89GB ("fsize_db", 380491063113), # 380.49GB, avg file size 3.40GB ("use_it", False), ("xsection", 0.6204), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/ZZTo2L2Nu"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/ZZTo2L2Q_13TeV_amcatnloFXFX_madspin_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "ZZ"), ("process_name_specific", "ZZTo2L2Q"), ("nof_files", 56), ("nof_db_files", 409), ("nof_events", { 'Count' : [ 27840918, ], 'CountWeighted' : [ 1.77684303e+07, 1.77692112e+07, 1.77675896e+07, ], 'CountWeightedLHEWeightScale' : [ 1.81293777e+07, 1.84314184e+07, 1.86558831e+07, 1.73897751e+07, 1.77680772e+07, 1.80450002e+07, 1.67612702e+07, 1.71943556e+07, 1.75133420e+07, ], 'CountWeightedLHEEnvelope' : [ 2.02849817e+07, 1.54492196e+07, ], 'CountWeightedFull' : [ 1.56973013e+08, 1.56956074e+08, 1.56974113e+08, ], 'CountWeightedFullLHEWeightScale' : [ 1.60163414e+08, 1.62832940e+08, 1.64814924e+08, 1.53629340e+08, 1.56965558e+08, 1.59418072e+08, 1.48076884e+08, 1.51902571e+08, 1.54721221e+08, ], 'CountWeightedFullLHEEnvelope' : [ 1.79207575e+08, 1.36485465e+08, ], 'CountWeightedL1PrefireNom' : [ 1.72948903e+07, 1.72950596e+07, 1.72947818e+07, ], 'CountWeightedL1Prefire' : [ 1.72948903e+07, 1.71768359e+07, 1.74096866e+07, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 1.76358237e+07, 1.79358771e+07, 1.81574534e+07, 1.69193669e+07, 1.72944845e+07, 1.75689111e+07, 1.63107632e+07, 1.67403289e+07, 1.70564720e+07, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 1.97369492e+07, 1.50417704e+07, ], 'CountWeightedFullL1PrefireNom' : [ 1.52789805e+08, 1.52776418e+08, 1.52794984e+08, ], 'CountWeightedFullL1Prefire' : [ 1.52789805e+08, 1.51746834e+08, 1.53803221e+08, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 1.55803082e+08, 1.58454851e+08, 1.60411564e+08, 1.49473532e+08, 1.52783770e+08, 1.55212075e+08, 1.44096788e+08, 1.47891820e+08, 1.50684983e+08, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 1.74365834e+08, 1.32885925e+08, ], }), ("nof_tree_events", 27840918), ("nof_db_events", 27840918), ("fsize_local", 134422894348), # 134.42GB, avg file size 2.40GB ("fsize_db", 1296656277482), # 1.30TB, avg file size 3.17GB ("use_it", False), ("xsection", 6.072), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/ZZTo2L2Q"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/GluGluToContinToZZTo4tau_13TeV_MCFM701_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "ZZ"), ("process_name_specific", "ggZZTo4tau"), ("nof_files", 1), ("nof_db_files", 30), ("nof_events", { 'Count' : [ 485420, ], 'CountWeighted' : [ 4.85408062e+05, 4.85358625e+05, 4.85347188e+05, ], 'CountWeightedLHEEnvelope' : [ 4.85408062e+05, 4.85408062e+05, ], 'CountWeightedPSWeight' : [ 4.79658125e+05, 4.79699156e+05, 6.57554625e+05, 4.79815531e+05, 4.79592031e+05, 3.21117688e+05, ], 'CountWeightedPSWeightOriginalXWGTUP' : [ 4.85344281e+05, 4.85394312e+05, 6.65382125e+05, 4.85529344e+05, 4.85279125e+05, 3.24908750e+05, ], 'CountWeightedFull' : [ 4.85383438e+05, 4.85333750e+05, 4.85322656e+05, ], 'CountWeightedFullLHEEnvelope' : [ 4.85383438e+05, 4.85383438e+05, ], 'CountWeightedFullPSWeight' : [ 4.79635312e+05, 4.79674906e+05, 6.57519438e+05, 4.79788219e+05, 4.79566719e+05, 3.21101812e+05, ], 'CountWeightedFullPSWeightOriginalXWGTUP' : [ 4.85321250e+05, 4.85369781e+05, 6.65346500e+05, 4.85501625e+05, 4.85253656e+05, 3.24892656e+05, ], 'CountWeightedL1PrefireNom' : [ 4.77838312e+05, 4.77790250e+05, 4.77802844e+05, ], 'CountWeightedL1Prefire' : [ 4.77838312e+05, 4.75914812e+05, 4.79680375e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 4.77838312e+05, 4.77838312e+05, ], 'CountWeightedPSWeightL1PrefireNom' : [ 4.72583375e+05, 4.72166031e+05, 6.47072750e+05, 4.71868125e+05, 4.72229781e+05, 3.16317875e+05, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNom' : [ 4.78166625e+05, 4.77753906e+05, 6.54750938e+05, 4.77468938e+05, 4.77810375e+05, 3.20040062e+05, ], 'CountWeightedFullL1PrefireNom' : [ 4.77814469e+05, 4.77766500e+05, 4.77779156e+05, ], 'CountWeightedFullL1Prefire' : [ 4.77814469e+05, 4.75891156e+05, 4.79656312e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 4.77814469e+05, 4.77814469e+05, ], 'CountWeightedFullPSWeightL1PrefireNom' : [ 4.72561625e+05, 4.72142875e+05, 6.47039250e+05, 4.71842062e+05, 4.72205562e+05, 3.16302688e+05, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNom' : [ 4.78144625e+05, 4.77730531e+05, 6.54717000e+05, 4.77442562e+05, 4.77785906e+05, 3.20024688e+05, ], }), ("nof_tree_events", 485420), ("nof_db_events", 485420), ("fsize_local", 2385787055), # 2.39GB, avg file size 2.39GB ("fsize_db", 21715964564), # 21.72GB, avg file size 723.87MB ("use_it", True), ("xsection", 0.002703), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", False), ("nof_PSweights", 4), ("LHE_set", "LHEPdfWeight[nLHEPdfWeight]/F"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/ggZZTo4tau"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/GluGluToContinToZZTo4tau_13TeV_MCFM701_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14_ext1-v2/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "ZZ"), ("process_name_specific", "ggZZTo4tau_ext1"), ("nof_files", 1), ("nof_db_files", 44), ("nof_events", { 'Count' : [ 476400, ], 'CountWeighted' : [ 4.76315062e+05, 4.76455875e+05, 4.76398375e+05, ], 'CountWeightedLHEEnvelope' : [ 4.76315062e+05, 4.76315062e+05, ], 'CountWeightedPSWeight' : [ 4.70859031e+05, 4.70788500e+05, 6.37111625e+05, 4.70860250e+05, 4.70732938e+05, 3.22137219e+05, ], 'CountWeightedPSWeightOriginalXWGTUP' : [ 4.76402844e+05, 4.76368625e+05, 6.44637812e+05, 4.76425500e+05, 4.76237000e+05, 3.25908812e+05, ], 'CountWeightedFull' : [ 4.76299000e+05, 4.76439469e+05, 4.76382125e+05, ], 'CountWeightedFullLHEEnvelope' : [ 4.76299000e+05, 4.76299000e+05, ], 'CountWeightedFullPSWeight' : [ 4.70844281e+05, 4.70773125e+05, 6.37088875e+05, 4.70842500e+05, 4.70716156e+05, 3.22126438e+05, ], 'CountWeightedFullPSWeightOriginalXWGTUP' : [ 4.76387812e+05, 4.76353000e+05, 6.44614750e+05, 4.76407500e+05, 4.76219906e+05, 3.25897875e+05, ], 'CountWeightedL1PrefireNom' : [ 4.72324781e+05, 4.72424500e+05, 4.72404500e+05, ], 'CountWeightedL1Prefire' : [ 4.72324781e+05, 4.71169875e+05, 4.73397469e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 4.72324781e+05, 4.72324781e+05, ], 'CountWeightedPSWeightL1PrefireNom' : [ 4.67052344e+05, 4.66823562e+05, 6.31707812e+05, 4.66762000e+05, 4.66855875e+05, 3.19515406e+05, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNom' : [ 4.72526656e+05, 4.72331406e+05, 6.39135000e+05, 4.72252719e+05, 4.72289062e+05, 3.23239219e+05, ], 'CountWeightedFullL1PrefireNom' : [ 4.72308938e+05, 4.72408531e+05, 4.72388469e+05, ], 'CountWeightedFullL1Prefire' : [ 4.72308938e+05, 4.71154125e+05, 4.73381625e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 4.72308938e+05, 4.72308938e+05, ], 'CountWeightedFullPSWeightL1PrefireNom' : [ 4.67037969e+05, 4.66808562e+05, 6.31685688e+05, 4.66744688e+05, 4.66839219e+05, 3.19504812e+05, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNom' : [ 4.72512000e+05, 4.72316188e+05, 6.39112562e+05, 4.72235156e+05, 4.72272219e+05, 3.23228469e+05, ], }), ("nof_tree_events", 476400), ("nof_db_events", 477200), ("fsize_local", 2075001859), # 2.08GB, avg file size 2.08GB ("fsize_db", 20745472369), # 20.75GB, avg file size 471.49MB ("use_it", True), ("xsection", 0.002703), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", False), ("nof_PSweights", 4), ("LHE_set", "LHEPdfWeight[nLHEPdfWeight]/F"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/ggZZTo4tau_ext1"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/GluGluToContinToZZTo4mu_13TeV_MCFM701_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v2/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "ZZ"), ("process_name_specific", "ggZZTo4mu"), ("nof_files", 4), ("nof_db_files", 56), ("nof_events", { 'Count' : [ 971500, ], 'CountWeighted' : [ 9.71548828e+05, 9.71502312e+05, 9.71491422e+05, ], 'CountWeightedLHEEnvelope' : [ 9.71548828e+05, 9.71548828e+05, ], 'CountWeightedPSWeight' : [ 9.59986234e+05, 9.60071453e+05, 1.31464219e+06, 9.59909906e+05, 9.58928312e+05, 6.42850750e+05, ], 'CountWeightedPSWeightOriginalXWGTUP' : [ 9.71535188e+05, 9.71621031e+05, 1.33052375e+06, 9.71451031e+05, 9.70484844e+05, 6.50535797e+05, ], 'CountWeightedFull' : [ 9.71495484e+05, 9.71449297e+05, 9.71438453e+05, ], 'CountWeightedFullLHEEnvelope' : [ 9.71495484e+05, 9.71495484e+05, ], 'CountWeightedFullPSWeight' : [ 9.59938859e+05, 9.60021422e+05, 1.31456906e+06, 9.59853875e+05, 9.58874984e+05, 6.42817500e+05, ], 'CountWeightedFullPSWeightOriginalXWGTUP' : [ 9.71487203e+05, 9.71568859e+05, 1.33044841e+06, 9.71394344e+05, 9.70430703e+05, 6.50502062e+05, ], 'CountWeightedL1PrefireNom' : [ 9.56759953e+05, 9.56705625e+05, 9.56761469e+05, ], 'CountWeightedL1Prefire' : [ 9.56759953e+05, 9.52908406e+05, 9.60383219e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 9.56759953e+05, 9.56759953e+05, ], 'CountWeightedPSWeightL1PrefireNom' : [ 9.46198234e+05, 9.45413047e+05, 1.29417309e+06, 9.44379000e+05, 9.44518766e+05, 6.33492172e+05, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNom' : [ 9.57540312e+05, 9.56741047e+05, 1.30974647e+06, 9.55690656e+05, 9.55860875e+05, 6.41038859e+05, ], 'CountWeightedFullL1PrefireNom' : [ 9.56708938e+05, 9.56654969e+05, 9.56710609e+05, ], 'CountWeightedFullL1Prefire' : [ 9.56708938e+05, 9.52858109e+05, 9.60331797e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 9.56708938e+05, 9.56708938e+05, ], 'CountWeightedFullPSWeightL1PrefireNom' : [ 9.46152844e+05, 9.45365047e+05, 1.29410322e+06, 9.44325562e+05, 9.44467734e+05, 6.33460250e+05, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNom' : [ 9.57494250e+05, 9.56691047e+05, 1.30967444e+06, 9.55636531e+05, 9.55809031e+05, 6.41006516e+05, ], }), ("nof_tree_events", 971500), ("nof_db_events", 971500), ("fsize_local", 5597407887), # 5.60GB, avg file size 1.40GB ("fsize_db", 47581811116), # 47.58GB, avg file size 849.68MB ("use_it", True), ("xsection", 0.002703), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", False), ("nof_PSweights", 4), ("LHE_set", "LHEPdfWeight[nLHEPdfWeight]/F"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/ggZZTo4mu"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/GluGluToContinToZZTo4mu_13TeV_MCFM701_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14_ext1-v2/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "ZZ"), ("process_name_specific", "ggZZTo4mu_ext1"), ("nof_files", 2), ("nof_db_files", 46), ("nof_events", { 'Count' : [ 995200, ], 'CountWeighted' : [ 9.95252750e+05, 9.95078656e+05, 9.95116312e+05, ], 'CountWeightedLHEEnvelope' : [ 9.95252750e+05, 9.95252750e+05, ], 'CountWeightedPSWeight' : [ 9.83004625e+05, 9.83157062e+05, 1.33053094e+06, 9.83121062e+05, 9.82937406e+05, 6.72295906e+05, ], 'CountWeightedPSWeightOriginalXWGTUP' : [ 9.95137500e+05, 9.95345375e+05, 1.34703931e+06, 9.95269281e+05, 9.95052781e+05, 6.80544250e+05, ], 'CountWeightedFull' : [ 9.95219250e+05, 9.95045094e+05, 9.95083938e+05, ], 'CountWeightedFullLHEEnvelope' : [ 9.95219250e+05, 9.95219250e+05, ], 'CountWeightedFullPSWeight' : [ 9.82974500e+05, 9.83124844e+05, 1.33048375e+06, 9.83084531e+05, 9.82903375e+05, 6.72274531e+05, ], 'CountWeightedFullPSWeightOriginalXWGTUP' : [ 9.95107000e+05, 9.95312656e+05, 1.34699138e+06, 9.95232375e+05, 9.95018188e+05, 6.80522500e+05, ], 'CountWeightedL1PrefireNom' : [ 9.86785094e+05, 9.86638875e+05, 9.86681250e+05, ], 'CountWeightedL1Prefire' : [ 9.86785094e+05, 9.84235375e+05, 9.89075031e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 9.86785094e+05, 9.86785094e+05, ], 'CountWeightedPSWeightL1PrefireNom' : [ 9.74975500e+05, 9.74761500e+05, 1.31910694e+06, 9.74474719e+05, 9.74777031e+05, 6.66783062e+05, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNom' : [ 9.86956250e+05, 9.86792188e+05, 1.33539606e+06, 9.86459688e+05, 9.86734000e+05, 6.74926625e+05, ], 'CountWeightedFullL1PrefireNom' : [ 9.86752344e+05, 9.86605875e+05, 9.86649250e+05, ], 'CountWeightedFullL1Prefire' : [ 9.86752344e+05, 9.84202781e+05, 9.89042219e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 9.86752344e+05, 9.86752344e+05, ], 'CountWeightedFullPSWeightL1PrefireNom' : [ 9.74946062e+05, 9.74729844e+05, 1.31906088e+06, 9.74439156e+05, 9.74743656e+05, 6.66762125e+05, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNom' : [ 9.86926406e+05, 9.86760062e+05, 1.33534925e+06, 9.86423750e+05, 9.86700156e+05, 6.74905344e+05, ], }), ("nof_tree_events", 995200), ("nof_db_events", 1001800), ("fsize_local", 5192520191), # 5.19GB, avg file size 2.60GB ("fsize_db", 47080495649), # 47.08GB, avg file size 1.02GB ("use_it", True), ("xsection", 0.002703), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", False), ("nof_PSweights", 4), ("LHE_set", "LHEPdfWeight[nLHEPdfWeight]/F"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/ggZZTo4mu_ext1"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/GluGluToContinToZZTo4mu_13TeV_MCFM701_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14_ext2-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "ZZ"), ("process_name_specific", "ggZZTo4mu_ext2"), ("nof_files", 2), ("nof_db_files", 39), ("nof_events", { 'Count' : [ 960481, ], 'CountWeighted' : [ 9.60405906e+05, 9.60542156e+05, 9.60526438e+05, ], 'CountWeightedLHEEnvelope' : [ 9.60405906e+05, 9.60405906e+05, ], 'CountWeightedPSWeight' : [ 9.60184750e+05, 9.60471812e+05, 1.29965656e+06, 9.60092969e+05, 9.59470531e+05, 6.56261125e+05, ], 'CountWeightedPSWeightOriginalXWGTUP' : [ 9.60512281e+05, 9.60806781e+05, 1.30010475e+06, 9.60420781e+05, 9.59783406e+05, 6.56476750e+05, ], 'CountWeightedFull' : [ 9.60374656e+05, 9.60509719e+05, 9.60494500e+05, ], 'CountWeightedFullLHEEnvelope' : [ 9.60374656e+05, 9.60374656e+05, ], 'CountWeightedFullPSWeight' : [ 9.60155406e+05, 9.60440688e+05, 1.29961138e+06, 9.60058000e+05, 9.59437719e+05, 6.56239969e+05, ], 'CountWeightedFullPSWeightOriginalXWGTUP' : [ 9.60482875e+05, 9.60775562e+05, 1.30005950e+06, 9.60385750e+05, 9.59750594e+05, 6.56455594e+05, ], 'CountWeightedL1PrefireNom' : [ 9.51794719e+05, 9.51873250e+05, 9.51906156e+05, ], 'CountWeightedL1Prefire' : [ 9.51794719e+05, 9.49227438e+05, 9.54109281e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 9.51794719e+05, 9.51794719e+05, ], 'CountWeightedPSWeightL1PrefireNom' : [ 9.51835969e+05, 9.51758750e+05, 1.28782281e+06, 9.51129938e+05, 9.51008344e+05, 6.50533219e+05, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNom' : [ 9.52153656e+05, 9.52083688e+05, 1.28825731e+06, 9.51447062e+05, 9.51311000e+05, 6.50742188e+05, ], 'CountWeightedFullL1PrefireNom' : [ 9.51763969e+05, 9.51841656e+05, 9.51874969e+05, ], 'CountWeightedFullL1Prefire' : [ 9.51763969e+05, 9.49196594e+05, 9.54078156e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 9.51763969e+05, 9.51763969e+05, ], 'CountWeightedFullPSWeightL1PrefireNom' : [ 9.51807312e+05, 9.51728156e+05, 1.28777875e+06, 9.51095750e+05, 9.50976062e+05, 6.50512531e+05, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNom' : [ 9.52124969e+05, 9.52053188e+05, 1.28821306e+06, 9.51412781e+05, 9.51278750e+05, 6.50721438e+05, ], }), ("nof_tree_events", 960481), ("nof_db_events", 960481), ("fsize_local", 5035135031), # 5.04GB, avg file size 2.52GB ("fsize_db", 45395004312), # 45.40GB, avg file size 1.16GB ("use_it", True), ("xsection", 0.002703), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", False), ("nof_PSweights", 4), ("LHE_set", "LHEPdfWeight[nLHEPdfWeight]/F"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/ggZZTo4mu_ext2"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/GluGluToContinToZZTo4e_13TeV_MCFM701_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v2/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "ZZ"), ("process_name_specific", "ggZZTo4e"), ("nof_files", 2), ("nof_db_files", 65), ("nof_events", { 'Count' : [ 976928, ], 'CountWeighted' : [ 9.77024094e+05, 9.77071656e+05, 9.76829562e+05, ], 'CountWeightedLHEEnvelope' : [ 9.77024094e+05, 9.77024094e+05, ], 'CountWeightedPSWeight' : [ 9.65086344e+05, 9.64998375e+05, 1.32162281e+06, 9.65002969e+05, 9.64264906e+05, 6.46466844e+05, ], 'CountWeightedPSWeightOriginalXWGTUP' : [ 9.76974094e+05, 9.76853062e+05, 1.33794431e+06, 9.76895844e+05, 9.76173969e+05, 6.54392688e+05, ], 'CountWeightedFull' : [ 9.76969125e+05, 9.77015906e+05, 9.76776000e+05, ], 'CountWeightedFullLHEEnvelope' : [ 9.76969125e+05, 9.76969125e+05, ], 'CountWeightedFullPSWeight' : [ 9.65037469e+05, 9.64945812e+05, 1.32154656e+06, 9.64944812e+05, 9.64209406e+05, 6.46433062e+05, ], 'CountWeightedFullPSWeightOriginalXWGTUP' : [ 9.76924719e+05, 9.76799969e+05, 1.33786719e+06, 9.76837094e+05, 9.76117844e+05, 6.54358500e+05, ], 'CountWeightedL1PrefireNom' : [ 9.40643281e+05, 9.40614281e+05, 9.40554594e+05, ], 'CountWeightedL1Prefire' : [ 9.40643281e+05, 9.32028250e+05, 9.49250094e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 9.40643281e+05, 9.40643281e+05, ], 'CountWeightedPSWeightL1PrefireNom' : [ 9.29926031e+05, 9.29158688e+05, 1.27230694e+06, 9.28542219e+05, 9.28734312e+05, 6.22835438e+05, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNom' : [ 9.41196125e+05, 9.40391719e+05, 1.28776975e+06, 9.39806938e+05, 9.40022062e+05, 6.30351375e+05, ], 'CountWeightedFullL1PrefireNom' : [ 9.40592625e+05, 9.40563562e+05, 9.40504688e+05, ], 'CountWeightedFullL1Prefire' : [ 9.40592625e+05, 9.31978438e+05, 9.49198594e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 9.40592625e+05, 9.40592625e+05, ], 'CountWeightedFullPSWeightL1PrefireNom' : [ 9.29880469e+05, 9.29109875e+05, 1.27223594e+06, 9.28488219e+05, 9.28682781e+05, 6.22803688e+05, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNom' : [ 9.41150031e+05, 9.40342375e+05, 1.28769806e+06, 9.39752438e+05, 9.39969844e+05, 6.30319375e+05, ], }), ("nof_tree_events", 976928), ("nof_db_events", 976928), ("fsize_local", 5843093632), # 5.84GB, avg file size 2.92GB ("fsize_db", 52618761774), # 52.62GB, avg file size 809.52MB ("use_it", True), ("xsection", 0.002703), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", False), ("nof_PSweights", 4), ("LHE_set", "LHEPdfWeight[nLHEPdfWeight]/F"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/ggZZTo4e"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/GluGluToContinToZZTo4e_13TeV_MCFM701_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14_ext1-v2/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "ZZ"), ("process_name_specific", "ggZZTo4e_ext1"), ("nof_files", 2), ("nof_db_files", 41), ("nof_events", { 'Count' : [ 957300, ], 'CountWeighted' : [ 9.57270906e+05, 9.57479062e+05, 9.57265906e+05, ], 'CountWeightedLHEEnvelope' : [ 9.57270906e+05, 9.57270906e+05, ], 'CountWeightedPSWeight' : [ 9.45836562e+05, 9.45872406e+05, 1.27992019e+06, 9.45831906e+05, 9.45572062e+05, 6.46908375e+05, ], 'CountWeightedPSWeightOriginalXWGTUP' : [ 9.57308688e+05, 9.57375406e+05, 1.29548988e+06, 9.57297625e+05, 9.56987156e+05, 6.54697500e+05, ], 'CountWeightedFull' : [ 9.57238344e+05, 9.57444875e+05, 9.57233000e+05, ], 'CountWeightedFullLHEEnvelope' : [ 9.57238344e+05, 9.57238344e+05, ], 'CountWeightedFullPSWeight' : [ 9.45806500e+05, 9.45840344e+05, 1.27987406e+06, 9.45796125e+05, 9.45538656e+05, 6.46886969e+05, ], 'CountWeightedFullPSWeightOriginalXWGTUP' : [ 9.57278125e+05, 9.57342750e+05, 1.29544288e+06, 9.57261219e+05, 9.56953094e+05, 6.54675812e+05, ], 'CountWeightedL1PrefireNom' : [ 9.27703438e+05, 9.27800031e+05, 9.27728594e+05, ], 'CountWeightedL1Prefire' : [ 9.27703438e+05, 9.20395312e+05, 9.34976406e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 9.27703438e+05, 9.27703438e+05, ], 'CountWeightedPSWeightL1PrefireNom' : [ 9.16878438e+05, 9.16806781e+05, 1.24052600e+06, 9.16724062e+05, 9.16655375e+05, 6.27196594e+05, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNom' : [ 9.27797281e+05, 9.27750031e+05, 1.25533300e+06, 9.27632250e+05, 9.27519500e+05, 6.34612781e+05, ], 'CountWeightedFullL1PrefireNom' : [ 9.27672281e+05, 9.27767719e+05, 9.27697344e+05, ], 'CountWeightedFullL1Prefire' : [ 9.27672281e+05, 9.20364438e+05, 9.34944938e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 9.27672281e+05, 9.27672281e+05, ], 'CountWeightedFullPSWeightL1PrefireNom' : [ 9.16849688e+05, 9.16776031e+05, 1.24048206e+06, 9.16689938e+05, 9.16623625e+05, 6.27176219e+05, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNom' : [ 9.27768062e+05, 9.27718875e+05, 1.25528831e+06, 9.27597531e+05, 9.27487094e+05, 6.34592062e+05, ], }), ("nof_tree_events", 957300), ("nof_db_events", 957300), ("fsize_local", 5219488668), # 5.22GB, avg file size 2.61GB ("fsize_db", 49825784818), # 49.83GB, avg file size 1.22GB ("use_it", True), ("xsection", 0.002703), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", False), ("nof_PSweights", 4), ("LHE_set", "LHEPdfWeight[nLHEPdfWeight]/F"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/ggZZTo4e_ext1"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/GluGluToContinToZZTo4e_13TeV_MCFM701_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14_ext2-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "ZZ"), ("process_name_specific", "ggZZTo4e_ext2"), ("nof_files", 2), ("nof_db_files", 47), ("nof_events", { 'Count' : [ 866000, ], 'CountWeighted' : [ 8.66013250e+05, 8.66019062e+05, 8.66140438e+05, ], 'CountWeightedLHEEnvelope' : [ 8.66013250e+05, 8.66013250e+05, ], 'CountWeightedPSWeight' : [ 8.65126500e+05, 8.65506344e+05, 1.17086722e+06, 8.65198875e+05, 8.64201000e+05, 5.91307094e+05, ], 'CountWeightedPSWeightOriginalXWGTUP' : [ 8.65983344e+05, 8.66364312e+05, 1.17205000e+06, 8.66054375e+05, 8.65064562e+05, 5.91877750e+05, ], 'CountWeightedFull' : [ 8.65983188e+05, 8.65989094e+05, 8.66109875e+05, ], 'CountWeightedFullLHEEnvelope' : [ 8.65983188e+05, 8.65983188e+05, ], 'CountWeightedFullPSWeight' : [ 8.65099312e+05, 8.65477219e+05, 1.17082569e+06, 8.65166344e+05, 8.64170625e+05, 5.91287453e+05, ], 'CountWeightedFullPSWeightOriginalXWGTUP' : [ 8.65956062e+05, 8.66335188e+05, 1.17200838e+06, 8.66021844e+05, 8.65034062e+05, 5.91858156e+05, ], 'CountWeightedL1PrefireNom' : [ 8.37591781e+05, 8.37578094e+05, 8.37702438e+05, ], 'CountWeightedL1Prefire' : [ 8.37591781e+05, 8.30631594e+05, 8.44535312e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 8.37591781e+05, 8.37591781e+05, ], 'CountWeightedPSWeightL1PrefireNom' : [ 8.36816125e+05, 8.37086938e+05, 1.13239466e+06, 8.36798812e+05, 8.36001344e+05, 5.72057828e+05, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNom' : [ 8.37604000e+05, 8.37875906e+05, 1.13348178e+06, 8.37586312e+05, 8.36797562e+05, 5.72584125e+05, ], 'CountWeightedFullL1PrefireNom' : [ 8.37563312e+05, 8.37549562e+05, 8.37673656e+05, ], 'CountWeightedFullL1Prefire' : [ 8.37563312e+05, 8.30603688e+05, 8.44506656e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 8.37563312e+05, 8.37563312e+05, ], 'CountWeightedFullPSWeightL1PrefireNom' : [ 8.36790250e+05, 8.37059375e+05, 1.13235503e+06, 8.36767844e+05, 8.35972344e+05, 5.72039062e+05, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNom' : [ 8.37578031e+05, 8.37848281e+05, 1.13344212e+06, 8.37555312e+05, 8.36768531e+05, 5.72565375e+05, ], }), ("nof_tree_events", 866000), ("nof_db_events", 866000), ("fsize_local", 4745107433), # 4.75GB, avg file size 2.37GB ("fsize_db", 45339904259), # 45.34GB, avg file size 964.68MB ("use_it", True), ("xsection", 0.002703), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", False), ("nof_PSweights", 4), ("LHE_set", "LHEPdfWeight[nLHEPdfWeight]/F"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/ggZZTo4e_ext2"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/GluGluToContinToZZTo2e2tau_13TeV_MCFM701_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v3/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "ZZ"), ("process_name_specific", "ggZZTo2e2tau"), ("nof_files", 1), ("nof_db_files", 25), ("nof_events", { 'Count' : [ 400000, ], 'CountWeighted' : [ 3.99908312e+05, 4.00067625e+05, 3.99958156e+05, ], 'CountWeightedLHEEnvelope' : [ 3.99908312e+05, 3.99908312e+05, ], 'CountWeightedPSWeight' : [ 3.99886719e+05, 3.99562406e+05, 5.47963562e+05, 3.99860125e+05, 4.00122344e+05, 2.67840094e+05, ], 'CountWeightedPSWeightOriginalXWGTUP' : [ 4.00020625e+05, 3.99696875e+05, 5.48140000e+05, 3.99993875e+05, 4.00250312e+05, 2.67931562e+05, ], 'CountWeightedFull' : [ 3.99886875e+05, 4.00045750e+05, 3.99936531e+05, ], 'CountWeightedFullLHEEnvelope' : [ 3.99886875e+05, 3.99886875e+05, ], 'CountWeightedFullPSWeight' : [ 3.99866594e+05, 3.99541469e+05, 5.47932688e+05, 3.99836562e+05, 4.00099625e+05, 2.67826000e+05, ], 'CountWeightedFullPSWeightOriginalXWGTUP' : [ 4.00000438e+05, 3.99675906e+05, 5.48109188e+05, 3.99970281e+05, 4.00227625e+05, 2.67917438e+05, ], 'CountWeightedL1PrefireNom' : [ 3.88995719e+05, 3.89086406e+05, 3.89035344e+05, ], 'CountWeightedL1Prefire' : [ 3.88995719e+05, 3.86342219e+05, 3.91613094e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 3.88995719e+05, 3.88995719e+05, ], 'CountWeightedPSWeightL1PrefireNom' : [ 3.89222719e+05, 3.88566781e+05, 5.32796688e+05, 3.88560031e+05, 3.89279781e+05, 2.60657656e+05, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNom' : [ 3.89353812e+05, 3.88698312e+05, 5.32969500e+05, 3.88690938e+05, 3.89405344e+05, 2.60747312e+05, ], 'CountWeightedFullL1PrefireNom' : [ 3.88975375e+05, 3.89065938e+05, 3.89014938e+05, ], 'CountWeightedFullL1Prefire' : [ 3.88975375e+05, 3.86322281e+05, 3.91592562e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 3.88975375e+05, 3.88975375e+05, ], 'CountWeightedFullPSWeightL1PrefireNom' : [ 3.89203750e+05, 3.88547188e+05, 5.32767750e+05, 3.88537781e+05, 3.89258375e+05, 2.60644469e+05, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNom' : [ 3.89334812e+05, 3.88678656e+05, 5.32940500e+05, 3.88668719e+05, 3.89383969e+05, 2.60734094e+05, ], }), ("nof_tree_events", 400000), ("nof_db_events", 500000), ("fsize_local", 2240627484), # 2.24GB, avg file size 2.24GB ("fsize_db", 24799309356), # 24.80GB, avg file size 991.97MB ("use_it", True), ("xsection", 0.005406), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", False), ("nof_PSweights", 4), ("LHE_set", "LHEPdfWeight[nLHEPdfWeight]/F"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/ggZZTo2e2tau"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/GluGluToContinToZZTo2e2tau_13TeV_MCFM701_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14_ext1-v2/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "ZZ"), ("process_name_specific", "ggZZTo2e2tau_ext1"), ("nof_files", 1), ("nof_db_files", 21), ("nof_events", { 'Count' : [ 496000, ], 'CountWeighted' : [ 4.95978656e+05, 4.95967406e+05, 4.96021688e+05, ], 'CountWeightedLHEEnvelope' : [ 4.95978656e+05, 4.95978656e+05, ], 'CountWeightedPSWeight' : [ 4.95734000e+05, 4.95490125e+05, 6.71477375e+05, 4.95926312e+05, 4.96216719e+05, 3.38994969e+05, ], 'CountWeightedPSWeightOriginalXWGTUP' : [ 4.95924250e+05, 4.95681188e+05, 6.71723562e+05, 4.96115250e+05, 4.96399750e+05, 3.39129500e+05, ], 'CountWeightedFull' : [ 4.95961250e+05, 4.95949469e+05, 4.96003562e+05, ], 'CountWeightedFullLHEEnvelope' : [ 4.95961250e+05, 4.95961250e+05, ], 'CountWeightedFullPSWeight' : [ 4.95717750e+05, 4.95472781e+05, 6.71451438e+05, 4.95907156e+05, 4.96196844e+05, 3.38983188e+05, ], 'CountWeightedFullPSWeightOriginalXWGTUP' : [ 4.95907969e+05, 4.95663844e+05, 6.71697625e+05, 4.96096125e+05, 4.96379844e+05, 3.39117688e+05, ], 'CountWeightedL1PrefireNom' : [ 4.85565562e+05, 4.85537844e+05, 4.85609938e+05, ], 'CountWeightedL1Prefire' : [ 4.85565562e+05, 4.82898469e+05, 4.88172062e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 4.85565562e+05, 4.85565562e+05, ], 'CountWeightedPSWeightL1PrefireNom' : [ 4.85394656e+05, 4.85022594e+05, 6.57293750e+05, 4.85407062e+05, 4.85892250e+05, 3.31960562e+05, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNom' : [ 4.85582625e+05, 4.85211125e+05, 6.57536875e+05, 4.85593625e+05, 4.86073406e+05, 3.32093656e+05, ], 'CountWeightedFullL1PrefireNom' : [ 4.85548688e+05, 4.85520625e+05, 4.85592562e+05, ], 'CountWeightedFullL1Prefire' : [ 4.85548688e+05, 4.82881812e+05, 4.88154938e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 4.85548688e+05, 4.85548688e+05, ], 'CountWeightedFullPSWeightL1PrefireNom' : [ 4.85379000e+05, 4.85006031e+05, 6.57268750e+05, 4.85388562e+05, 4.85873188e+05, 3.31949312e+05, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNom' : [ 4.85567000e+05, 4.85194562e+05, 6.57511812e+05, 4.85575188e+05, 4.86054281e+05, 3.32082375e+05, ], }), ("nof_tree_events", 496000), ("nof_db_events", 496000), ("fsize_local", 2503471975), # 2.50GB, avg file size 2.50GB ("fsize_db", 23839960820), # 23.84GB, avg file size 1.14GB ("use_it", True), ("xsection", 0.005406), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", False), ("nof_PSweights", 4), ("LHE_set", "LHEPdfWeight[nLHEPdfWeight]/F"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/ggZZTo2e2tau_ext1"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/GluGluToContinToZZTo2e2mu_13TeV_MCFM701_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v3/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "ZZ"), ("process_name_specific", "ggZZTo2e2mu"), ("nof_files", 3), ("nof_db_files", 28), ("nof_events", { 'Count' : [ 500000, ], 'CountWeighted' : [ 4.99970189e+05, 4.99963144e+05, 5.00000066e+05, ], 'CountWeightedLHEEnvelope' : [ 4.99970189e+05, 4.99970189e+05, ], 'CountWeightedPSWeight' : [ 4.99688173e+05, 4.99807225e+05, 6.84444439e+05, 4.99819007e+05, 4.99132118e+05, 3.34634203e+05, ], 'CountWeightedPSWeightOriginalXWGTUP' : [ 4.99939759e+05, 5.00051406e+05, 6.84787461e+05, 5.00068433e+05, 4.99393759e+05, 3.34806960e+05, ], 'CountWeightedFull' : [ 4.99942768e+05, 4.99936261e+05, 4.99972451e+05, ], 'CountWeightedFullLHEEnvelope' : [ 4.99942768e+05, 4.99942768e+05, ], 'CountWeightedFullPSWeight' : [ 4.99662894e+05, 4.99779968e+05, 6.84405773e+05, 4.99788700e+05, 4.99104688e+05, 3.34616542e+05, ], 'CountWeightedFullPSWeightOriginalXWGTUP' : [ 4.99914433e+05, 5.00024103e+05, 6.84748793e+05, 5.00038110e+05, 4.99366346e+05, 3.34789284e+05, ], 'CountWeightedL1PrefireNom' : [ 4.86281509e+05, 4.86256631e+05, 4.86317755e+05, ], 'CountWeightedL1Prefire' : [ 4.86281509e+05, 4.82930743e+05, 4.89570158e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 4.86281509e+05, 4.86281509e+05, ], 'CountWeightedPSWeightL1PrefireNom' : [ 4.86338781e+05, 4.86035171e+05, 6.65494408e+05, 4.85689482e+05, 4.85599537e+05, 3.25641767e+05, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNom' : [ 4.86583566e+05, 4.86273130e+05, 6.65827982e+05, 4.85932154e+05, 4.85853672e+05, 3.25809879e+05, ], 'CountWeightedFullL1PrefireNom' : [ 4.86255673e+05, 4.86231173e+05, 4.86291805e+05, ], 'CountWeightedFullL1Prefire' : [ 4.86255673e+05, 4.82905273e+05, 4.89543952e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 4.86255673e+05, 4.86255673e+05, ], 'CountWeightedFullPSWeightL1PrefireNom' : [ 4.86314988e+05, 4.86009541e+05, 6.65458104e+05, 4.85660993e+05, 4.85573661e+05, 3.25625130e+05, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNom' : [ 4.86559759e+05, 4.86247482e+05, 6.65791586e+05, 4.85903663e+05, 4.85827812e+05, 3.25793228e+05, ], }), ("nof_tree_events", 500000), ("nof_db_events", 500000), ("fsize_local", 3035480426), # 3.04GB, avg file size 1.01GB ("fsize_db", 26095529769), # 26.10GB, avg file size 931.98MB ("use_it", True), ("xsection", 0.005406), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", False), ("nof_PSweights", 4), ("LHE_set", "LHEPdfWeight[nLHEPdfWeight]/F"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/ggZZTo2e2mu"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/GluGluToContinToZZTo2e2mu_13TeV_MCFM701_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14_ext1-v2/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "ZZ"), ("process_name_specific", "ggZZTo2e2mu_ext1"), ("nof_files", 1), ("nof_db_files", 26), ("nof_events", { 'Count' : [ 480700, ], 'CountWeighted' : [ 4.80757062e+05, 4.80765344e+05, 4.80679812e+05, ], 'CountWeightedLHEEnvelope' : [ 4.80757062e+05, 4.80757062e+05, ], 'CountWeightedPSWeight' : [ 4.80515125e+05, 4.80626812e+05, 6.49796500e+05, 4.80539688e+05, 4.79685906e+05, 3.28579500e+05, ], 'CountWeightedPSWeightOriginalXWGTUP' : [ 4.80708875e+05, 4.80821938e+05, 6.50056312e+05, 4.80735625e+05, 4.79879969e+05, 3.28716125e+05, ], 'CountWeightedFull' : [ 4.80739250e+05, 4.80747812e+05, 4.80662469e+05, ], 'CountWeightedFullLHEEnvelope' : [ 4.80739250e+05, 4.80739250e+05, ], 'CountWeightedFullPSWeight' : [ 4.80499469e+05, 4.80609625e+05, 6.49772375e+05, 4.80520625e+05, 4.79668125e+05, 3.28568031e+05, ], 'CountWeightedFullPSWeightOriginalXWGTUP' : [ 4.80693250e+05, 4.80804719e+05, 6.50032250e+05, 4.80716562e+05, 4.79862250e+05, 3.28704625e+05, ], 'CountWeightedL1PrefireNom' : [ 4.70551781e+05, 4.70547031e+05, 4.70504062e+05, ], 'CountWeightedL1Prefire' : [ 4.70551781e+05, 4.67915469e+05, 4.73101562e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 4.70551781e+05, 4.70551781e+05, ], 'CountWeightedPSWeightL1PrefireNom' : [ 4.70399125e+05, 4.70423750e+05, 6.35947688e+05, 4.70260938e+05, 4.69553500e+05, 3.21679969e+05, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNom' : [ 4.70589188e+05, 4.70615250e+05, 6.36202562e+05, 4.70453219e+05, 4.69743875e+05, 3.21814000e+05, ], 'CountWeightedFullL1PrefireNom' : [ 4.70534938e+05, 4.70530344e+05, 4.70487156e+05, ], 'CountWeightedFullL1Prefire' : [ 4.70534938e+05, 4.67898781e+05, 4.73084562e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 4.70534938e+05, 4.70534938e+05, ], 'CountWeightedFullPSWeightL1PrefireNom' : [ 4.70383938e+05, 4.70407250e+05, 6.35924250e+05, 4.70242406e+05, 4.69536406e+05, 3.21668844e+05, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNom' : [ 4.70573969e+05, 4.70598719e+05, 6.36179188e+05, 4.70434688e+05, 4.69726781e+05, 3.21802906e+05, ], }), ("nof_tree_events", 480700), ("nof_db_events", 480700), ("fsize_local", 2662763912), # 2.66GB, avg file size 2.66GB ("fsize_db", 24213519868), # 24.21GB, avg file size 931.29MB ("use_it", True), ("xsection", 0.005406), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", False), ("nof_PSweights", 4), ("LHE_set", "LHEPdfWeight[nLHEPdfWeight]/F"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/ggZZTo2e2mu_ext1"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/GluGluToContinToZZTo2mu2tau_13TeV_MCFM701_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v3/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "ZZ"), ("process_name_specific", "ggZZTo2mu2tau"), ("nof_files", 1), ("nof_db_files", 27), ("nof_events", { 'Count' : [ 500000, ], 'CountWeighted' : [ 5.00077656e+05, 4.99962188e+05, 4.99951156e+05, ], 'CountWeightedLHEEnvelope' : [ 5.00077656e+05, 5.00077656e+05, ], 'CountWeightedPSWeight' : [ 4.99863344e+05, 5.00017500e+05, 6.85211938e+05, 4.99785031e+05, 4.99492250e+05, 3.34385969e+05, ], 'CountWeightedPSWeightOriginalXWGTUP' : [ 5.00035344e+05, 5.00187875e+05, 6.85443062e+05, 4.99955125e+05, 4.99664281e+05, 3.34503312e+05, ], 'CountWeightedFull' : [ 5.00050281e+05, 4.99934500e+05, 4.99923750e+05, ], 'CountWeightedFullLHEEnvelope' : [ 5.00050281e+05, 5.00050281e+05, ], 'CountWeightedFullPSWeight' : [ 4.99838531e+05, 4.99990312e+05, 6.85173125e+05, 4.99755438e+05, 4.99464562e+05, 3.34368500e+05, ], 'CountWeightedFullPSWeightOriginalXWGTUP' : [ 5.00010562e+05, 5.00160656e+05, 6.85404188e+05, 4.99925438e+05, 4.99636625e+05, 3.34485906e+05, ], 'CountWeightedL1PrefireNom' : [ 4.92178312e+05, 4.92063875e+05, 4.92125781e+05, ], 'CountWeightedL1Prefire' : [ 4.92178312e+05, 4.90153125e+05, 4.94106250e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 4.92178312e+05, 4.92178312e+05, ], 'CountWeightedPSWeightL1PrefireNom' : [ 4.92389219e+05, 4.92058469e+05, 6.74172438e+05, 4.91409375e+05, 4.91760688e+05, 3.29329156e+05, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNom' : [ 4.92559781e+05, 4.92227219e+05, 6.74401375e+05, 4.91577875e+05, 4.91931188e+05, 3.29445562e+05, ], 'CountWeightedFullL1PrefireNom' : [ 4.92152031e+05, 4.92037500e+05, 4.92099562e+05, ], 'CountWeightedFullL1Prefire' : [ 4.92152031e+05, 4.90127062e+05, 4.94079656e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 4.92152031e+05, 4.92152031e+05, ], 'CountWeightedFullPSWeightL1PrefireNom' : [ 4.92365500e+05, 4.92032406e+05, 6.74135188e+05, 4.91381000e+05, 4.91734281e+05, 3.29312406e+05, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNom' : [ 4.92536062e+05, 4.92201156e+05, 6.74364250e+05, 4.91549438e+05, 4.91904750e+05, 3.29428875e+05, ], }), ("nof_tree_events", 500000), ("nof_db_events", 500000), ("fsize_local", 2748633383), # 2.75GB, avg file size 2.75GB ("fsize_db", 23700660914), # 23.70GB, avg file size 877.80MB ("use_it", True), ("xsection", 0.005406), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", False), ("nof_PSweights", 4), ("LHE_set", "LHEPdfWeight[nLHEPdfWeight]/F"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/ggZZTo2mu2tau"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/GluGluToContinToZZTo2mu2tau_13TeV_MCFM701_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14_ext1-v2/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "ZZ"), ("process_name_specific", "ggZZTo2mu2tau_ext1"), ("nof_files", 1), ("nof_db_files", 27), ("nof_events", { 'Count' : [ 491900, ], 'CountWeighted' : [ 4.91885531e+05, 4.91919344e+05, 4.91859188e+05, ], 'CountWeightedLHEEnvelope' : [ 4.91885531e+05, 4.91885531e+05, ], 'CountWeightedPSWeight' : [ 4.91788812e+05, 4.91674156e+05, 6.64739312e+05, 4.91682250e+05, 4.91027531e+05, 3.36443750e+05, ], 'CountWeightedPSWeightOriginalXWGTUP' : [ 4.91936188e+05, 4.91819281e+05, 6.64934625e+05, 4.91830031e+05, 4.91177375e+05, 3.36549156e+05, ], 'CountWeightedFull' : [ 4.91868781e+05, 4.91902094e+05, 4.91842688e+05, ], 'CountWeightedFullLHEEnvelope' : [ 4.91868781e+05, 4.91868781e+05, ], 'CountWeightedFullPSWeight' : [ 4.91773375e+05, 4.91657688e+05, 6.64715438e+05, 4.91663688e+05, 4.91010156e+05, 3.36432750e+05, ], 'CountWeightedFullPSWeightOriginalXWGTUP' : [ 4.91920750e+05, 4.91802875e+05, 6.64910750e+05, 4.91811500e+05, 4.91159906e+05, 3.36538250e+05, ], 'CountWeightedL1PrefireNom' : [ 4.87540062e+05, 4.87554906e+05, 4.87529688e+05, ], 'CountWeightedL1Prefire' : [ 4.87540062e+05, 4.86269125e+05, 4.88705375e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 4.87540062e+05, 4.87540062e+05, ], 'CountWeightedPSWeightL1PrefireNom' : [ 4.87576250e+05, 4.87285125e+05, 6.58765062e+05, 4.87163938e+05, 4.86745375e+05, 3.33551062e+05, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNom' : [ 4.87722938e+05, 4.87429594e+05, 6.58959500e+05, 4.87311156e+05, 4.86894562e+05, 3.33656062e+05, ], 'CountWeightedFullL1PrefireNom' : [ 4.87523719e+05, 4.87538219e+05, 4.87513500e+05, ], 'CountWeightedFullL1Prefire' : [ 4.87523719e+05, 4.86253031e+05, 4.88688906e+05, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 4.87523719e+05, 4.87523719e+05, ], 'CountWeightedFullPSWeightL1PrefireNom' : [ 4.87561281e+05, 4.87269156e+05, 6.58741938e+05, 4.87145906e+05, 4.86728438e+05, 3.33540375e+05, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNom' : [ 4.87707938e+05, 4.87413656e+05, 6.58936250e+05, 4.87293156e+05, 4.86877562e+05, 3.33645438e+05, ], }), ("nof_tree_events", 491900), ("nof_db_events", 491900), ("fsize_local", 2431227786), # 2.43GB, avg file size 2.43GB ("fsize_db", 22474675351), # 22.47GB, avg file size 832.40MB ("use_it", True), ("xsection", 0.005406), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", False), ("nof_PSweights", 4), ("LHE_set", "LHEPdfWeight[nLHEPdfWeight]/F"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/ggZZTo2mu2tau_ext1"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/QCD_Pt_20to30_bcToE_TuneCP5_13TeV_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_new_pmx_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "QCD"), ("process_name_specific", "QCD_Pt20to30_bcToE"), ("nof_files", 12), ("nof_db_files", 414), ("nof_events", { 'Count' : [ 5747933, ], 'CountWeighted' : [ 5.74814006e+06, 5.74789625e+06, 5.74892472e+06, ], 'CountWeightedFull' : [ 5.74833441e+06, 5.74808991e+06, 5.74911925e+06, ], 'CountWeightedL1PrefireNom' : [ 5.74099609e+06, 5.74068969e+06, 5.74181248e+06, ], 'CountWeightedL1Prefire' : [ 5.74099609e+06, 5.73755345e+06, 5.74346178e+06, ], 'CountWeightedFullL1PrefireNom' : [ 5.74119000e+06, 5.74088314e+06, 5.74200658e+06, ], 'CountWeightedFullL1Prefire' : [ 5.74119000e+06, 5.73774706e+06, 5.74365589e+06, ], }), ("nof_tree_events", 5747933), ("nof_db_events", 14429805), ("fsize_local", 14352665975), # 14.35GB, avg file size 1.20GB ("fsize_db", 557297169649), # 557.30GB, avg file size 1.35GB ("use_it", False), ("xsection", 305400.0), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", False), ("nof_PSweights", 1), ("LHE_set", ""), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/QCD_Pt20to30_bcToE"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/QCD_Pt_30to80_bcToE_TuneCP5_13TeV_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "QCD"), ("process_name_specific", "QCD_Pt30to80_bcToE"), ("nof_files", 33), ("nof_db_files", 186), ("nof_events", { 'Count' : [ 16073047, ], 'CountWeighted' : [ 1.60703556e+07, 1.60742824e+07, 1.60724938e+07, ], 'CountWeightedFull' : [ 1.60788183e+07, 1.60827131e+07, 1.60809377e+07, ], 'CountWeightedL1PrefireNom' : [ 1.59846491e+07, 1.59874998e+07, 1.59866283e+07, ], 'CountWeightedL1Prefire' : [ 1.59846491e+07, 1.59552411e+07, 1.60104229e+07, ], 'CountWeightedFullL1PrefireNom' : [ 1.59930772e+07, 1.59959039e+07, 1.59950403e+07, ], 'CountWeightedFullL1Prefire' : [ 1.59930772e+07, 1.59636558e+07, 1.60188573e+07, ], }), ("nof_tree_events", 16073047), ("nof_db_events", 16073047), ("fsize_local", 48573957939), # 48.57GB, avg file size 1.47GB ("fsize_db", 633331988305), # 633.33GB, avg file size 3.41GB ("use_it", False), ("xsection", 361100.0), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", False), ("nof_PSweights", 1), ("LHE_set", ""), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/QCD_Pt30to80_bcToE"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/QCD_Pt_80to170_bcToE_TuneCP5_13TeV_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "QCD"), ("process_name_specific", "QCD_Pt80to170_bcToE"), ("nof_files", 33), ("nof_db_files", 189), ("nof_events", { 'Count' : [ 15999466, ], 'CountWeighted' : [ 1.59962813e+07, 1.59990738e+07, 1.59982278e+07, ], 'CountWeightedFull' : [ 1.59962813e+07, 1.59990738e+07, 1.59982278e+07, ], 'CountWeightedL1PrefireNom' : [ 1.55256581e+07, 1.55266210e+07, 1.55276003e+07, ], 'CountWeightedL1Prefire' : [ 1.55256581e+07, 1.54107896e+07, 1.56386950e+07, ], 'CountWeightedFullL1PrefireNom' : [ 1.55256581e+07, 1.55266210e+07, 1.55276003e+07, ], 'CountWeightedFullL1Prefire' : [ 1.55256581e+07, 1.54107896e+07, 1.56386950e+07, ], }), ("nof_tree_events", 15999466), ("nof_db_events", 15999466), ("fsize_local", 75617579533), # 75.62GB, avg file size 2.29GB ("fsize_db", 711041578903), # 711.04GB, avg file size 3.76GB ("use_it", False), ("xsection", 33820.0), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", False), ("nof_PSweights", 1), ("LHE_set", ""), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/QCD_Pt80to170_bcToE"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/QCD_Pt_170to250_bcToE_TuneCP5_13TeV_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "QCD"), ("process_name_specific", "QCD_Pt170to250_bcToE"), ("nof_files", 20), ("nof_db_files", 176), ("nof_events", { 'Count' : [ 9847660, ], 'CountWeighted' : [ 9.84658550e+06, 9.84802888e+06, 9.84642303e+06, ], 'CountWeightedFull' : [ 9.84720109e+06, 9.84864216e+06, 9.84703816e+06, ], 'CountWeightedL1PrefireNom' : [ 9.23636459e+06, 9.23632497e+06, 9.23737300e+06, ], 'CountWeightedL1Prefire' : [ 9.23636459e+06, 9.10304244e+06, 9.36962234e+06, ], 'CountWeightedFullL1PrefireNom' : [ 9.23695988e+06, 9.23691925e+06, 9.23796778e+06, ], 'CountWeightedFullL1Prefire' : [ 9.23695988e+06, 9.10363297e+06, 9.37022247e+06, ], }), ("nof_tree_events", 9847660), ("nof_db_events", 9847660), ("fsize_local", 61333758767), # 61.33GB, avg file size 3.07GB ("fsize_db", 477892307613), # 477.89GB, avg file size 2.72GB ("use_it", False), ("xsection", 2130.0), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", False), ("nof_PSweights", 1), ("LHE_set", ""), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/QCD_Pt170to250_bcToE"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/QCD_Pt_250toInf_bcToE_TuneCP5_13TeV_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "QCD"), ("process_name_specific", "QCD_Pt250toInf_bcToE"), ("nof_files", 21), ("nof_db_files", 187), ("nof_events", { 'Count' : [ 9996886, ], 'CountWeighted' : [ 9.99686772e+06, 9.99760925e+06, 9.99601011e+06, ], 'CountWeightedFull' : [ 9.99686772e+06, 9.99760925e+06, 9.99601011e+06, ], 'CountWeightedL1PrefireNom' : [ 9.33832211e+06, 9.33812343e+06, 9.33852947e+06, ], 'CountWeightedL1Prefire' : [ 9.33832211e+06, 9.19895071e+06, 9.47828525e+06, ], 'CountWeightedFullL1PrefireNom' : [ 9.33832211e+06, 9.33812343e+06, 9.33852947e+06, ], 'CountWeightedFullL1Prefire' : [ 9.33832211e+06, 9.19895071e+06, 9.47828525e+06, ], }), ("nof_tree_events", 9996886), ("nof_db_events", 9996886), ("fsize_local", 69512414915), # 69.51GB, avg file size 3.31GB ("fsize_db", 513285807270), # 513.29GB, avg file size 2.74GB ("use_it", False), ("xsection", 563.0), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", False), ("nof_PSweights", 1), ("LHE_set", ""), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/QCD_Pt250toInf_bcToE"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/QCD_Pt-15to20_EMEnriched_TuneCP5_13TeV_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "QCD"), ("process_name_specific", "QCD_Pt15to20_EMEnriched"), ("nof_files", 23), ("nof_db_files", 134), ("nof_events", { 'Count' : [ 11215220, ], 'CountWeighted' : [ 1.12146990e+07, 1.12166504e+07, 1.12149164e+07, ], 'CountWeightedFull' : [ 1.12160607e+07, 1.12180079e+07, 1.12162805e+07, ], 'CountWeightedL1PrefireNom' : [ 1.11867387e+07, 1.11881716e+07, 1.11870387e+07, ], 'CountWeightedL1Prefire' : [ 1.11867387e+07, 1.11718527e+07, 1.11972683e+07, ], 'CountWeightedFullL1PrefireNom' : [ 1.11880952e+07, 1.11895260e+07, 1.11883986e+07, ], 'CountWeightedFullL1Prefire' : [ 1.11880952e+07, 1.11732081e+07, 1.11986265e+07, ], }), ("nof_tree_events", 11215220), ("nof_db_events", 11215220), ("fsize_local", 25304368842), # 25.30GB, avg file size 1.10GB ("fsize_db", 397192727584), # 397.19GB, avg file size 2.96GB ("use_it", False), ("xsection", 1324000.0), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", False), ("nof_PSweights", 1), ("LHE_set", ""), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/QCD_Pt15to20_EMEnriched"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/QCD_Pt-20to30_EMEnriched_TuneCP5_13TeV_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "QCD"), ("process_name_specific", "QCD_Pt20to30_EMEnriched"), ("nof_files", 23), ("nof_db_files", 125), ("nof_events", { 'Count' : [ 11212810, ], 'CountWeighted' : [ 1.12133560e+07, 1.12115304e+07, 1.12121279e+07, ], 'CountWeightedFull' : [ 1.12133630e+07, 1.12115374e+07, 1.12121349e+07, ], 'CountWeightedL1PrefireNom' : [ 1.11713880e+07, 1.11699190e+07, 1.11705617e+07, ], 'CountWeightedL1Prefire' : [ 1.11713880e+07, 1.11519195e+07, 1.11861247e+07, ], 'CountWeightedFullL1PrefireNom' : [ 1.11713949e+07, 1.11699262e+07, 1.11705688e+07, ], 'CountWeightedFullL1Prefire' : [ 1.11713949e+07, 1.11519265e+07, 1.11861316e+07, ], }), ("nof_tree_events", 11212810), ("nof_db_events", 11212810), ("fsize_local", 27542494340), # 27.54GB, avg file size 1.20GB ("fsize_db", 406252937750), # 406.25GB, avg file size 3.25GB ("use_it", False), ("xsection", 4912000.0), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", False), ("nof_PSweights", 1), ("LHE_set", ""), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/QCD_Pt20to30_EMEnriched"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/QCD_Pt-30to50_EMEnriched_TuneCP5_13TeV_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "QCD"), ("process_name_specific", "QCD_Pt30to50_EMEnriched"), ("nof_files", 30), ("nof_db_files", 176), ("nof_events", { 'Count' : [ 14766010, ], 'CountWeighted' : [ 1.47654687e+07, 1.47680044e+07, 1.47664898e+07, ], 'CountWeightedFull' : [ 1.47654687e+07, 1.47680044e+07, 1.47664898e+07, ], 'CountWeightedL1PrefireNom' : [ 1.46554033e+07, 1.46569578e+07, 1.46562062e+07, ], 'CountWeightedL1Prefire' : [ 1.46554033e+07, 1.46148713e+07, 1.46906350e+07, ], 'CountWeightedFullL1PrefireNom' : [ 1.46554033e+07, 1.46569578e+07, 1.46562062e+07, ], 'CountWeightedFullL1Prefire' : [ 1.46554033e+07, 1.46148713e+07, 1.46906350e+07, ], }), ("nof_tree_events", 14766010), ("nof_db_events", 14766010), ("fsize_local", 40795870832), # 40.80GB, avg file size 1.36GB ("fsize_db", 553990333710), # 553.99GB, avg file size 3.15GB ("use_it", False), ("xsection", 6420000.0), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", False), ("nof_PSweights", 1), ("LHE_set", ""), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/QCD_Pt30to50_EMEnriched"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/QCD_Pt-50to80_EMEnriched_TuneCP5_13TeV_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "QCD"), ("process_name_specific", "QCD_Pt50to80_EMEnriched"), ("nof_files", 22), ("nof_db_files", 128), ("nof_events", { 'Count' : [ 10477146, ], 'CountWeighted' : [ 1.04763688e+07, 1.04774408e+07, 1.04774484e+07, ], 'CountWeightedFull' : [ 1.04763688e+07, 1.04774408e+07, 1.04774484e+07, ], 'CountWeightedL1PrefireNom' : [ 1.02699357e+07, 1.02705570e+07, 1.02707819e+07, ], 'CountWeightedL1Prefire' : [ 1.02699357e+07, 1.02104417e+07, 1.03261891e+07, ], 'CountWeightedFullL1PrefireNom' : [ 1.02699357e+07, 1.02705570e+07, 1.02707819e+07, ], 'CountWeightedFullL1Prefire' : [ 1.02699357e+07, 1.02104417e+07, 1.03261891e+07, ], }), ("nof_tree_events", 10477146), ("nof_db_events", 10477146), ("fsize_local", 35650372830), # 35.65GB, avg file size 1.62GB ("fsize_db", 412202461390), # 412.20GB, avg file size 3.22GB ("use_it", False), ("xsection", 1988000.0), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", False), ("nof_PSweights", 1), ("LHE_set", ""), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/QCD_Pt50to80_EMEnriched"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/QCD_Pt-80to120_EMEnriched_TuneCP5_13TeV_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "QCD"), ("process_name_specific", "QCD_Pt80to120_EMEnriched"), ("nof_files", 19), ("nof_db_files", 108), ("nof_events", { 'Count' : [ 9104852, ], 'CountWeighted' : [ 9.10621469e+06, 9.10568536e+06, 9.10506552e+06, ], 'CountWeightedFull' : [ 9.10776345e+06, 9.10723612e+06, 9.10662009e+06, ], 'CountWeightedL1PrefireNom' : [ 8.68725941e+06, 8.68674920e+06, 8.68717602e+06, ], 'CountWeightedL1Prefire' : [ 8.68725941e+06, 8.58392175e+06, 8.78900359e+06, ], 'CountWeightedFullL1PrefireNom' : [ 8.68875962e+06, 8.68825017e+06, 8.68867925e+06, ], 'CountWeightedFullL1Prefire' : [ 8.68875962e+06, 8.58540877e+06, 8.79051684e+06, ], }), ("nof_tree_events", 9104852), ("nof_db_events", 9104852), ("fsize_local", 41657004542), # 41.66GB, avg file size 2.19GB ("fsize_db", 389362639707), # 389.36GB, avg file size 3.61GB ("use_it", False), ("xsection", 366500.0), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", False), ("nof_PSweights", 1), ("LHE_set", ""), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/QCD_Pt80to120_EMEnriched"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/QCD_Pt-120to170_EMEnriched_TuneCP5_13TeV_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v2/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "QCD"), ("process_name_specific", "QCD_Pt120to170_EMEnriched"), ("nof_files", 18), ("nof_db_files", 163), ("nof_events", { 'Count' : [ 8515107, ], 'CountWeighted' : [ 8.51387299e+06, 8.51643320e+06, 8.51370114e+06, ], 'CountWeightedFull' : [ 8.51396806e+06, 8.51652778e+06, 8.51379630e+06, ], 'CountWeightedL1PrefireNom' : [ 7.84989198e+06, 7.84987944e+06, 7.85045696e+06, ], 'CountWeightedL1Prefire' : [ 7.84989198e+06, 7.69936935e+06, 8.00050480e+06, ], 'CountWeightedFullL1PrefireNom' : [ 7.84998552e+06, 7.84997290e+06, 7.85055093e+06, ], 'CountWeightedFullL1Prefire' : [ 7.84998552e+06, 7.69946255e+06, 8.00059887e+06, ], }), ("nof_tree_events", 8515107), ("nof_db_events", 8515107), ("fsize_local", 46444538744), # 46.44GB, avg file size 2.58GB ("fsize_db", 385000236556), # 385.00GB, avg file size 2.36GB ("use_it", False), ("xsection", 66510.0), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", False), ("nof_PSweights", 1), ("LHE_set", ""), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/QCD_Pt120to170_EMEnriched"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/QCD_Pt-300toInf_EMEnriched_TuneCP5_13TeV_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "QCD"), ("process_name_specific", "QCD_Pt300toInf_EMEnriched"), ("nof_files", 6), ("nof_db_files", 49), ("nof_events", { 'Count' : [ 2874295, ], 'CountWeighted' : [ 2.87432272e+06, 2.87442006e+06, 2.87434844e+06, ], 'CountWeightedFull' : [ 2.87432272e+06, 2.87442006e+06, 2.87434844e+06, ], 'CountWeightedL1PrefireNom' : [ 2.54868131e+06, 2.54858684e+06, 2.54885925e+06, ], 'CountWeightedL1Prefire' : [ 2.54868131e+06, 2.48198066e+06, 2.61630034e+06, ], 'CountWeightedFullL1PrefireNom' : [ 2.54868131e+06, 2.54858684e+06, 2.54885925e+06, ], 'CountWeightedFullL1Prefire' : [ 2.54868131e+06, 2.48198066e+06, 2.61630034e+06, ], }), ("nof_tree_events", 2874295), ("nof_db_events", 2874295), ("fsize_local", 20129292566), # 20.13GB, avg file size 3.35GB ("fsize_db", 144869144781), # 144.87GB, avg file size 2.96GB ("use_it", False), ("xsection", 1100.0), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", False), ("nof_PSweights", 1), ("LHE_set", ""), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/QCD_Pt300toInf_EMEnriched"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/QCD_Pt-15to20_MuEnrichedPt5_TuneCP5_13TeV_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "QCD"), ("process_name_specific", "QCD_Pt15to20_Mu5"), ("nof_files", 12), ("nof_db_files", 63), ("nof_events", { 'Count' : [ 5859904, ], 'CountWeighted' : [ 5.85986634e+06, 5.85980116e+06, 5.86159491e+06, ], 'CountWeightedFull' : [ 5.86082538e+06, 5.86076181e+06, 5.86254706e+06, ], 'CountWeightedL1PrefireNom' : [ 5.85715028e+06, 5.85697578e+06, 5.85893369e+06, ], 'CountWeightedL1Prefire' : [ 5.85715028e+06, 5.85591700e+06, 5.85801566e+06, ], 'CountWeightedFullL1PrefireNom' : [ 5.85810894e+06, 5.85793597e+06, 5.85988538e+06, ], 'CountWeightedFullL1Prefire' : [ 5.85810894e+06, 5.85687528e+06, 5.85897412e+06, ], }), ("nof_tree_events", 5859904), ("nof_db_events", 5859904), ("fsize_local", 12429692858), # 12.43GB, avg file size 1.04GB ("fsize_db", 216516638901), # 216.52GB, avg file size 3.44GB ("use_it", False), ("xsection", 2811000.0), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", False), ("nof_PSweights", 1), ("LHE_set", ""), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/QCD_Pt15to20_Mu5"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/QCD_Pt-20to30_MuEnrichedPt5_TuneCP5_13TeV_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "QCD"), ("process_name_specific", "QCD_Pt20to30_Mu5"), ("nof_files", 57), ("nof_db_files", 319), ("nof_events", { 'Count' : [ 28213684, ], 'CountWeighted' : [ 2.82113143e+07, 2.82069445e+07, 2.82126246e+07, ], 'CountWeightedFull' : [ 2.82117560e+07, 2.82073903e+07, 2.82130638e+07, ], 'CountWeightedL1PrefireNom' : [ 2.81895595e+07, 2.81849966e+07, 2.81912668e+07, ], 'CountWeightedL1Prefire' : [ 2.81895595e+07, 2.81788796e+07, 2.81968737e+07, ], 'CountWeightedFullL1PrefireNom' : [ 2.81900010e+07, 2.81854415e+07, 2.81917056e+07, ], 'CountWeightedFullL1Prefire' : [ 2.81900010e+07, 2.81793203e+07, 2.81973144e+07, ], }), ("nof_tree_events", 28213684), ("nof_db_events", 28213684), ("fsize_local", 68130228812), # 68.13GB, avg file size 1.20GB ("fsize_db", 1058418704070), # 1.06TB, avg file size 3.32GB ("use_it", False), ("xsection", 2531000.0), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", False), ("nof_PSweights", 1), ("LHE_set", ""), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/QCD_Pt20to30_Mu5"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/QCD_Pt-30to50_MuEnrichedPt5_TuneCP5_13TeV_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "QCD"), ("process_name_specific", "QCD_Pt30to50_Mu5"), ("nof_files", 59), ("nof_db_files", 325), ("nof_events", { 'Count' : [ 29030324, ], 'CountWeighted' : [ 2.90352819e+07, 2.90273545e+07, 2.90288036e+07, ], 'CountWeightedFull' : [ 2.90352819e+07, 2.90273545e+07, 2.90288036e+07, ], 'CountWeightedL1PrefireNom' : [ 2.89649935e+07, 2.89579508e+07, 2.89599963e+07, ], 'CountWeightedL1Prefire' : [ 2.89649935e+07, 2.89354461e+07, 2.89868760e+07, ], 'CountWeightedFullL1PrefireNom' : [ 2.89649935e+07, 2.89579508e+07, 2.89599963e+07, ], 'CountWeightedFullL1Prefire' : [ 2.89649935e+07, 2.89354461e+07, 2.89868760e+07, ], }), ("nof_tree_events", 29030324), ("nof_db_events", 29030324), ("fsize_local", 82743696273), # 82.74GB, avg file size 1.40GB ("fsize_db", 1131094971096), # 1.13TB, avg file size 3.48GB ("use_it", False), ("xsection", 1367000.0), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", False), ("nof_PSweights", 1), ("LHE_set", ""), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/QCD_Pt30to50_Mu5"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/QCD_Pt-50to80_MuEnrichedPt5_TuneCP5_13TeV_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "QCD"), ("process_name_specific", "QCD_Pt50to80_Mu5"), ("nof_files", 49), ("nof_db_files", 288), ("nof_events", { 'Count' : [ 24068613, ], 'CountWeighted' : [ 2.40708127e+07, 2.40656636e+07, 2.40715284e+07, ], 'CountWeightedFull' : [ 2.40708127e+07, 2.40656636e+07, 2.40715284e+07, ], 'CountWeightedL1PrefireNom' : [ 2.38681372e+07, 2.38640495e+07, 2.38689734e+07, ], 'CountWeightedL1Prefire' : [ 2.38681372e+07, 2.38061850e+07, 2.39245090e+07, ], 'CountWeightedFullL1PrefireNom' : [ 2.38681372e+07, 2.38640495e+07, 2.38689734e+07, ], 'CountWeightedFullL1Prefire' : [ 2.38681372e+07, 2.38061850e+07, 2.39245090e+07, ], }), ("nof_tree_events", 24068613), ("nof_db_events", 24068613), ("fsize_local", 85718425199), # 85.72GB, avg file size 1.75GB ("fsize_db", 1004660826025), # 1.00TB, avg file size 3.49GB ("use_it", False), ("xsection", 377900.0), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", False), ("nof_PSweights", 1), ("LHE_set", ""), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/QCD_Pt50to80_Mu5"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/QCD_Pt-80to120_MuEnrichedPt5_TuneCP5_13TeV_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "QCD"), ("process_name_specific", "QCD_Pt80to120_Mu5"), ("nof_files", 47), ("nof_db_files", 289), ("nof_events", { 'Count' : [ 23248995, ], 'CountWeighted' : [ 2.32492498e+07, 2.32459350e+07, 2.32485170e+07, ], 'CountWeightedFull' : [ 2.32520855e+07, 2.32487808e+07, 2.32513564e+07, ], 'CountWeightedL1PrefireNom' : [ 2.27137376e+07, 2.27105221e+07, 2.27144483e+07, ], 'CountWeightedL1Prefire' : [ 2.27137376e+07, 2.25789194e+07, 2.28445189e+07, ], 'CountWeightedFullL1PrefireNom' : [ 2.27165242e+07, 2.27133134e+07, 2.27172381e+07, ], 'CountWeightedFullL1Prefire' : [ 2.27165242e+07, 2.25816929e+07, 2.28473189e+07, ], }), ("nof_tree_events", 23248995), ("nof_db_events", 23248995), ("fsize_local", 109060792976), # 109.06GB, avg file size 2.32GB ("fsize_db", 1035795578059), # 1.04TB, avg file size 3.58GB ("use_it", False), ("xsection", 88620.0), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", False), ("nof_PSweights", 1), ("LHE_set", ""), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/QCD_Pt80to120_Mu5"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/QCD_Pt-120to170_MuEnrichedPt5_TuneCP5_13TeV_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "QCD"), ("process_name_specific", "QCD_Pt120to170_Mu5"), ("nof_files", 84), ("nof_db_files", 342), ("nof_events", { 'Count' : [ 20774848, ], 'CountWeighted' : [ 2.07745094e+07, 2.07736648e+07, 2.07757724e+07, ], 'CountWeightedFull' : [ 2.07750389e+07, 2.07741933e+07, 2.07763010e+07, ], 'CountWeightedL1PrefireNom' : [ 1.98892815e+07, 1.98869799e+07, 1.98918096e+07, ], 'CountWeightedL1Prefire' : [ 1.98892815e+07, 1.96860448e+07, 2.00902544e+07, ], 'CountWeightedFullL1PrefireNom' : [ 1.98898072e+07, 1.98875048e+07, 1.98923350e+07, ], 'CountWeightedFullL1Prefire' : [ 1.98898072e+07, 1.96865696e+07, 2.00907813e+07, ], }), ("nof_tree_events", 20774848), ("nof_db_events", 20774848), ("fsize_local", 117043630574), # 117.04GB, avg file size 1.39GB ("fsize_db", 984472671147), # 984.47GB, avg file size 2.88GB ("use_it", False), ("xsection", 21190.0), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", False), ("nof_PSweights", 1), ("LHE_set", ""), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/QCD_Pt120to170_Mu5"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/QCD_Pt-170to300_MuEnrichedPt5_TuneCP5_13TeV_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "QCD"), ("process_name_specific", "QCD_Pt170to300_Mu5"), ("nof_files", 187), ("nof_db_files", 721), ("nof_events", { 'Count' : [ 46170668, ], 'CountWeighted' : [ 4.61714768e+07, 4.61694290e+07, 4.61699552e+07, ], 'CountWeightedFull' : [ 4.61714768e+07, 4.61694290e+07, 4.61699552e+07, ], 'CountWeightedL1PrefireNom' : [ 4.33378050e+07, 4.33327692e+07, 4.33414851e+07, ], 'CountWeightedL1Prefire' : [ 4.33378050e+07, 4.27216435e+07, 4.39530348e+07, ], 'CountWeightedFullL1PrefireNom' : [ 4.33378050e+07, 4.33327692e+07, 4.33414851e+07, ], 'CountWeightedFullL1Prefire' : [ 4.33378050e+07, 4.27216435e+07, 4.39530348e+07, ], }), ("nof_tree_events", 46170668), ("nof_db_events", 46170668), ("fsize_local", 299374073806), # 299.37GB, avg file size 1.60GB ("fsize_db", 2330576867261), # 2.33TB, avg file size 3.23GB ("use_it", False), ("xsection", 7020.0), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", False), ("nof_PSweights", 1), ("LHE_set", ""), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/QCD_Pt170to300_Mu5"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/QCD_Pt-300to470_MuEnrichedPt5_TuneCP5_13TeV_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "QCD"), ("process_name_specific", "QCD_Pt300to470_Mu5"), ("nof_files", 72), ("nof_db_files", 374), ("nof_events", { 'Count' : [ 17744779, ], 'CountWeighted' : [ 1.77466397e+07, 1.77443355e+07, 1.77452644e+07, ], 'CountWeightedFull' : [ 1.77466433e+07, 1.77443388e+07, 1.77452678e+07, ], 'CountWeightedL1PrefireNom' : [ 1.66102486e+07, 1.66078076e+07, 1.66104388e+07, ], 'CountWeightedL1Prefire' : [ 1.66102486e+07, 1.63717311e+07, 1.68500783e+07, ], 'CountWeightedFullL1PrefireNom' : [ 1.66102520e+07, 1.66078111e+07, 1.66104423e+07, ], 'CountWeightedFullL1Prefire' : [ 1.66102520e+07, 1.63717343e+07, 1.68500815e+07, ], }), ("nof_tree_events", 17744779), ("nof_db_events", 17744779), ("fsize_local", 129162712164), # 129.16GB, avg file size 1.79GB ("fsize_db", 989950950093), # 989.95GB, avg file size 2.65GB ("use_it", False), ("xsection", 620.2), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", False), ("nof_PSweights", 1), ("LHE_set", ""), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/QCD_Pt300to470_Mu5"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/QCD_Pt-470to600_MuEnrichedPt5_TuneCP5_13TeV_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "QCD"), ("process_name_specific", "QCD_Pt470to600_Mu5"), ("nof_files", 49), ("nof_db_files", 388), ("nof_events", { 'Count' : [ 24243589, ], 'CountWeighted' : [ 2.42446449e+07, 2.42436103e+07, 2.42446199e+07, ], 'CountWeightedFull' : [ 2.42447277e+07, 2.42436934e+07, 2.42447033e+07, ], 'CountWeightedL1PrefireNom' : [ 2.32229439e+07, 2.32215267e+07, 2.32239842e+07, ], 'CountWeightedL1Prefire' : [ 2.32229439e+07, 2.30024806e+07, 2.34424695e+07, ], 'CountWeightedFullL1PrefireNom' : [ 2.32230247e+07, 2.32216075e+07, 2.32240654e+07, ], 'CountWeightedFullL1Prefire' : [ 2.32230247e+07, 2.30025614e+07, 2.34425507e+07, ], }), ("nof_tree_events", 24243589), ("nof_db_events", 24243589), ("fsize_local", 185560760735), # 185.56GB, avg file size 3.79GB ("fsize_db", 1390197744079), # 1.39TB, avg file size 3.58GB ("use_it", False), ("xsection", 59.06), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", False), ("nof_PSweights", 1), ("LHE_set", ""), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/QCD_Pt470to600_Mu5"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/QCD_Pt-600to800_MuEnrichedPt5_TuneCP5_13TeV_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "QCD"), ("process_name_specific", "QCD_Pt600to800_Mu5"), ("nof_files", 35), ("nof_db_files", 391), ("nof_events", { 'Count' : [ 17263676, ], 'CountWeighted' : [ 1.72635483e+07, 1.72589892e+07, 1.72625580e+07, ], 'CountWeightedFull' : [ 1.72635487e+07, 1.72589900e+07, 1.72625585e+07, ], 'CountWeightedL1PrefireNom' : [ 1.67542829e+07, 1.67503376e+07, 1.67541268e+07, ], 'CountWeightedL1Prefire' : [ 1.67542829e+07, 1.66404158e+07, 1.68664071e+07, ], 'CountWeightedFullL1PrefireNom' : [ 1.67542837e+07, 1.67503381e+07, 1.67541273e+07, ], 'CountWeightedFullL1Prefire' : [ 1.67542837e+07, 1.66404163e+07, 1.68664075e+07, ], }), ("nof_tree_events", 17263676), ("nof_db_events", 17263676), ("fsize_local", 135530499599), # 135.53GB, avg file size 3.87GB ("fsize_db", 1040033606810), # 1.04TB, avg file size 2.66GB ("use_it", False), ("xsection", 18.2), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", False), ("nof_PSweights", 1), ("LHE_set", ""), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/QCD_Pt600to800_Mu5"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/QCD_Pt-800to1000_MuEnrichedPt5_TuneCP5_13TeV_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "QCD"), ("process_name_specific", "QCD_Pt800to1000_Mu5"), ("nof_files", 32), ("nof_db_files", 389), ("nof_events", { 'Count' : [ 15717546, ], 'CountWeighted' : [ 1.57169972e+07, 1.57172653e+07, 1.57168341e+07, ], 'CountWeightedFull' : [ 1.57169972e+07, 1.57172653e+07, 1.57168341e+07, ], 'CountWeightedL1PrefireNom' : [ 1.53706065e+07, 1.53701340e+07, 1.53708777e+07, ], 'CountWeightedL1Prefire' : [ 1.53706065e+07, 1.52903863e+07, 1.54488621e+07, ], 'CountWeightedFullL1PrefireNom' : [ 1.53706065e+07, 1.53701340e+07, 1.53708777e+07, ], 'CountWeightedFullL1Prefire' : [ 1.53706065e+07, 1.52903863e+07, 1.54488621e+07, ], }), ("nof_tree_events", 15717546), ("nof_db_events", 17114527), ("fsize_local", 125748099685), # 125.75GB, avg file size 3.93GB ("fsize_db", 1061424382303), # 1.06TB, avg file size 2.73GB ("use_it", False), ("xsection", 3.276), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", False), ("nof_PSweights", 1), ("LHE_set", ""), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/QCD_Pt800to1000_Mu5"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/QCD_Pt-1000toInf_MuEnrichedPt5_TuneCP5_13TeV_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v1/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "QCD"), ("process_name_specific", "QCD_Pt1000toInf_Mu5"), ("nof_files", 20), ("nof_db_files", 257), ("nof_events", { 'Count' : [ 9804873, ], 'CountWeighted' : [ 9.80484572e+06, 9.80353419e+06, 9.80572256e+06, ], 'CountWeightedFull' : [ 9.80484572e+06, 9.80353419e+06, 9.80572256e+06, ], 'CountWeightedL1PrefireNom' : [ 9.62067491e+06, 9.61932794e+06, 9.62156244e+06, ], 'CountWeightedL1Prefire' : [ 9.62067491e+06, 9.57722747e+06, 9.66284253e+06, ], 'CountWeightedFullL1PrefireNom' : [ 9.62067491e+06, 9.61932794e+06, 9.62156244e+06, ], 'CountWeightedFullL1Prefire' : [ 9.62067491e+06, 9.57722747e+06, 9.66284253e+06, ], }), ("nof_tree_events", 9804873), ("nof_db_events", 11596693), ("fsize_local", 79376929598), # 79.38GB, avg file size 3.97GB ("fsize_db", 741261028289), # 741.26GB, avg file size 2.88GB ("use_it", False), ("xsection", 1.079), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", False), ("nof_PSweights", 1), ("LHE_set", ""), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/QCD_Pt1000toInf_Mu5"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/TTWJetsToLNu_EWK_5f_NLO/RunIIFall17MiniAODv2/USER"] = OD([ ("type", "mc"), ("sample_category", "TTW"), ("process_name_specific", "TTWJetsToLNu_EWK_5f_NLO"), ("nof_files", 1), ("nof_db_files", 30), ("nof_events", { 'Count' : [ 24503, ], 'CountWeighted' : [ 2.29533965e+04, 2.29491660e+04, 2.29518633e+04, ], 'CountWeightedLHEEnvelope' : [ 2.29533965e+04, 2.29533965e+04, ], 'CountWeightedPSWeight' : [ 2.29981094e+04, 2.27999121e+04, 3.47432266e+04, 2.28931250e+04, 2.32219746e+04, 1.25343252e+04, ], 'CountWeightedPSWeightOriginalXWGTUP' : [ 4.20224518e+02, 4.16993469e+02, 6.32705078e+02, 4.17971893e+02, 4.23312286e+02, 2.30241241e+02, ], 'CountWeightedFull' : [ 3.92172333e+02, 3.92124207e+02, 3.92138214e+02, ], 'CountWeightedFullLHEEnvelope' : [ 3.92172333e+02, 3.92172333e+02, ], 'CountWeightedFullPSWeight' : [ 3.93004303e+02, 3.89517242e+02, 5.93574524e+02, 3.91203094e+02, 3.96776337e+02, 2.14191116e+02, ], 'CountWeightedFullPSWeightOriginalXWGTUP' : [ 7.18114376e+00, 7.12424946e+00, 1.08099155e+01, 7.14250231e+00, 7.23292637e+00, 3.93447375e+00, ], 'CountWeightedL1PrefireNom' : [ 2.12661230e+04, 2.12617441e+04, 2.12625371e+04, ], 'CountWeightedL1Prefire' : [ 2.12661230e+04, 2.08869453e+04, 2.16442129e+04, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 2.12661230e+04, 2.12661230e+04, ], 'CountWeightedPSWeightL1PrefireNom' : [ 2.13241719e+04, 2.10883047e+04, 3.22027441e+04, 2.11893691e+04, 2.15891172e+04, 1.16348125e+04, ], 'CountWeightedPSWeightOriginalXWGTUPL1PrefireNom' : [ 3.90454010e+02, 3.86544647e+02, 5.87610535e+02, 3.87689636e+02, 3.94288147e+02, 2.14170044e+02, ], 'CountWeightedFullL1PrefireNom' : [ 3.63350525e+02, 3.63292999e+02, 3.63278229e+02, ], 'CountWeightedFullL1Prefire' : [ 3.63350525e+02, 3.56871399e+02, 3.69806183e+02, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 3.63350525e+02, 3.63350525e+02, ], 'CountWeightedFullPSWeightL1PrefireNom' : [ 3.64401764e+02, 3.60281464e+02, 5.50178040e+02, 3.62089905e+02, 3.68881775e+02, 1.98820938e+02, ], 'CountWeightedFullPSWeightOriginalXWGTUPL1PrefireNom' : [ 6.67246389e+00, 6.60408640e+00, 1.00395164e+01, 6.62510920e+00, 6.73712349e+00, 3.65987301e+00, ], }), ("nof_tree_events", 24503), ("nof_db_events", 24503), ("fsize_local", 226399728), # 226.40MB, avg file size 226.40MB ("fsize_db", 2203739653), # 2.20GB, avg file size 73.46MB ("use_it", False), ("xsection", 0.0162562), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", False), ("nof_PSweights", 4), ("LHE_set", "LHEPdfWeight[nLHEPdfWeight]/F"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/TTWJetsToLNu_EWK_5f_NLO"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/ZHToNonbb_M125_13TeV_amcatnloFXFX_madspin_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v2/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "VH"), ("process_name_specific", "ZHToNonbb_M125"), ("nof_files", 2), ("nof_db_files", 35), ("nof_events", { 'Count' : [ 328024, ], 'CountWeighted' : [ 1.59133984e+05, 1.59150523e+05, 1.59148445e+05, ], 'CountWeightedLHEWeightScale' : [ 1.63289273e+05, 1.65558234e+05, 1.68365242e+05, 1.57153672e+05, 1.59131898e+05, 1.61285516e+05, 1.50575695e+05, 1.52391273e+05, 1.54188258e+05, ], 'CountWeightedLHEEnvelope' : [ 1.81872570e+05, 1.37677438e+05, ], 'CountWeightedFull' : [ 1.89315675e+06, 1.89325169e+06, 1.89329062e+06, ], 'CountWeightedFullLHEWeightScale' : [ 1.94253919e+06, 1.96952975e+06, 2.00291750e+06, 1.86954756e+06, 1.89312462e+06, 1.91869681e+06, 1.79129225e+06, 1.81288938e+06, 1.83426844e+06, ], 'CountWeightedFullLHEEnvelope' : [ 2.16360812e+06, 1.63784700e+06, ], 'CountWeightedL1PrefireNom' : [ 1.55276570e+05, 1.55273578e+05, 1.55304172e+05, ], 'CountWeightedL1Prefire' : [ 1.55276570e+05, 1.54293492e+05, 1.56223852e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 1.59278188e+05, 1.61502266e+05, 1.64250742e+05, 1.53319336e+05, 1.55274367e+05, 1.57396023e+05, 1.46926375e+05, 1.48729883e+05, 1.50511797e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 1.77379922e+05, 1.34408000e+05, ], 'CountWeightedFullL1PrefireNom' : [ 1.84724638e+06, 1.84715031e+06, 1.84755088e+06, ], 'CountWeightedFullL1Prefire' : [ 1.84724638e+06, 1.83554869e+06, 1.85851606e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 1.89481881e+06, 1.92127875e+06, 1.95396762e+06, 1.82393025e+06, 1.84721800e+06, 1.87242744e+06, 1.74787769e+06, 1.76932881e+06, 1.79052656e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 2.11015894e+06, 1.59895112e+06, ], }), ("nof_tree_events", 328024), ("nof_db_events", 918508), ("fsize_local", 1770979585), # 1.77GB, avg file size 885.49MB ("fsize_db", 44015654097), # 44.02GB, avg file size 1.26GB ("use_it", True), ("xsection", 0.3691239), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/ZHToNonbb_M125"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["/WHToNonbb_M125_13TeV_amcatnloFXFX_madspin_pythia8/RunIIFall17MiniAODv2-PU2017_12Apr2018_94X_mc2017_realistic_v14-v2/MINIAODSIM"] = OD([ ("type", "mc"), ("sample_category", "VH"), ("process_name_specific", "WHToNonbb_M125"), ("nof_files", 2), ("nof_db_files", 35), ("nof_events", { 'Count' : [ 590484, ], 'CountWeighted' : [ 2.91828734e+05, 2.92031219e+05, 2.91639438e+05, ], 'CountWeightedLHEWeightScale' : [ 3.00640844e+05, 3.04271812e+05, 3.08939297e+05, 2.88443391e+05, 2.91817344e+05, 2.95389938e+05, 2.75959852e+05, 2.79203508e+05, 2.82215836e+05, ], 'CountWeightedLHEEnvelope' : [ 3.34629656e+05, 2.51955188e+05, ], 'CountWeightedFull' : [ 3.47149825e+06, 3.47390375e+06, 3.46940575e+06, ], 'CountWeightedFullLHEWeightScale' : [ 3.57650250e+06, 3.61969725e+06, 3.67521250e+06, 3.43140925e+06, 3.47151725e+06, 3.51403888e+06, 3.28288938e+06, 3.32149288e+06, 3.35732000e+06, ], 'CountWeightedFullLHEEnvelope' : [ 3.98084025e+06, 2.99732788e+06, ], 'CountWeightedL1PrefireNom' : [ 2.84167203e+05, 2.84344914e+05, 2.84001398e+05, ], 'CountWeightedL1Prefire' : [ 2.84167203e+05, 2.82227922e+05, 2.86039531e+05, ], 'CountWeightedLHEWeightScaleL1PrefireNom' : [ 2.92645641e+05, 2.96180547e+05, 3.00724719e+05, 2.80843883e+05, 2.84158562e+05, 2.87664547e+05, 2.68751906e+05, 2.71961414e+05, 2.74936281e+05, ], 'CountWeightedLHEEnvelopeL1PrefireNom' : [ 3.25672281e+05, 2.45490656e+05, ], 'CountWeightedFullL1PrefireNom' : [ 3.38042038e+06, 3.38252888e+06, 3.37854888e+06, ], 'CountWeightedFullL1Prefire' : [ 3.38042038e+06, 3.35736600e+06, 3.40268950e+06, ], 'CountWeightedFullLHEWeightScaleL1PrefireNom' : [ 3.48139200e+06, 3.52345250e+06, 3.57749400e+06, 3.34099750e+06, 3.38041688e+06, 3.42213762e+06, 3.19714112e+06, 3.23533075e+06, 3.27071138e+06, ], 'CountWeightedFullLHEEnvelopeL1PrefireNom' : [ 3.87427412e+06, 2.92042500e+06, ], }), ("nof_tree_events", 590484), ("nof_db_events", 918508), ("fsize_local", 3198712065), # 3.20GB, avg file size 1.60GB ("fsize_db", 44015654097), # 44.02GB, avg file size 1.26GB ("use_it", True), ("xsection", 0.5733761), ("genWeight", True), ("triggers", ['1e', '1mu', '2e', '2mu', '1e1mu', '3e', '3mu', '2e1mu', '1e2mu', '1e1tau', '1mu1tau', '2tau']), ("has_LHE", True), ("nof_PSweights", 1), ("LHE_set", "LHA IDs 91400 - 91432 -> PDF4LHC15_nnlo_30_pdfas PDF set, expecting 33 weights (counted 33 weights)"), ("nof_reweighting", 0), ("local_paths", [ OD([ ("path", "/local/karl/ttHNtupleProduction/2017/2021Feb19_woPresel_nom_all_hh_multilepton/ntuples/WHToNonbb_M125"), ("selection", "*"), ("blacklist", []), ]), ] ), ("missing_completely", [ # not computed ]), ("missing_from_superset", [ # not computed ]), ("missing_hlt_paths", [ ]), ("hlt_paths", [ # not computed ]), ]) samples_2017["sum_events"] = [ [ 'ST_s-channel_4f_leptonDecays', 'ST_s-channel_4f_leptonDecays_PSweights', ], [ 'WJetsToLNu_2J', 'WJetsToLNu_2J_ext1', ], [ 'DYJetsToLL_M50_HT100to200', 'DYJetsToLL_M50_HT100to200_ext1', ], [ 'TTTT', 'TTTT_PSweights', ], [ 'DY3JetsToLL_M-50', 'DY3JetsToLL_M-50_ext1', ], [ 'ST_t-channel_top_4f_inclusiveDecays', 'ST_t-channel_top_4f_inclusiveDecays_PSweights', ], [ 'GluGluHToTauTau', 'GluGluHToTauTau_ext1', ], [ 'ggZZTo4e', 'ggZZTo4e_ext1', 'ggZZTo4e_ext2', ], [ 'WWToLNuQQ', 'WWToLNuQQ_ext1', 'WWToLNuQQ_PSweights_ext1', ], [ 'TTWJetsToLNu', 'TTWJetsToLNu_PSweights', ], [ 'TTToHadronic', 'TTToHadronic_PSweights', ], [ 'TTTo2L2Nu', 'TTTo2L2Nu_PSweights', ], [ 'DYJetsToLL_M-10to50', 'DYJetsToLL_M-10to50_ext1', ], [ 'ST_t-channel_antitop_4f_inclusiveDecays', 'ST_t-channel_antitop_4f_inclusiveDecays_PSweights', ], [ 'TTZToQQ', 'TTZToQQ_ext1', ], [ 'WWTo2L2Nu', 'WWTo2L2Nu_PSweights_ext1', ], [ 'DYJetsToLL_M50_HT200to400', 'DYJetsToLL_M50_HT200to400_ext1', ], [ 'WWTo4Q', 'WWTo4Q_PSweights_ext1', ], [ 'ggZZTo2mu2tau', 'ggZZTo2mu2tau_ext1', ], [ 'ggZZTo2e2tau', 'ggZZTo2e2tau_ext1', ], [ 'VBFHToGG_M125', 'VBFHToGG_M125_PSWeights_ext1', ], [ 'DY2JetsToLL_M-50', 'DY2JetsToLL_M-50_ext1', ], [ 'WZTo3LNu_powheg', 'WZTo3LNu_mllmin01', ], [ 'TTZToLL_M10', 'TTZToLL_M10_PSweights', ], [ 'TTGJets', 'TTGJets_ext1', ], [ 'WJetsToLNu_1J', 'WJetsToLNu_1J_ext1', ], [ 'ST_tW_top_5f_inclusiveDecays', 'ST_tW_top_5f_inclusiveDecays_PSweights', ], [ 'ggZZTo4tau', 'ggZZTo4tau_ext1', ], [ 'ZZTo4L', 'ZZTo4L_ext1', 'ZZTo4L_ext2', ], [ 'WJetsToLNu_madgraphMLM', 'WJetsToLNu_madgraphMLM_ext1', ], [ 'DY1JetsToLL_M-50_ext1', 'DY1JetsToLL_M-50', ], [ 'TTToSemiLeptonic', 'TTToSemiLeptonic_PSweights', ], [ 'TTWJets_LO', 'TTWJets_LO_ext1', ], [ 'GluGluHToMuMu_M125', 'GluGluHToMuMu_M125_ext1', ], [ 'VBF_HToZZTo4L_ext1', 'VBF_HToZZTo4L_ext2', ], [ 'ggZZTo2e2mu', 'ggZZTo2e2mu_ext1', ], [ 'TTZJets_LO', 'TTZJets_LO_ext1', ], [ 'ttHToNonbb_M125_powheg', 'ttHToNonbb_M125_powheg_ext1', ], [ 'DYBBJetsToLL_M-50', 'DYBBJetsToLL_M-50_ext1', ], [ 'ST_tW_antitop_5f_inclusiveDecays', 'ST_tW_antitop_5f_inclusiveDecays_PSweights', ], [ 'GluGluHToZZTo4L_ext1', 'GluGluHToZZTo4L_ext3', 'GluGluHToZZTo4L_ext4', ], [ 'DYJetsToLL_M50_HT400to600', 'DYJetsToLL_M50_HT400to600_ext1', ], [ 'ggZZTo4mu', 'ggZZTo4mu_ext1', 'ggZZTo4mu_ext2', ], [ 'DYJetsToLL_M-50', 'DYJetsToLL_M-50_ext1', ], [ 'DYJetsToLL_M-50_amcatnloFXFX', 'DYJetsToLL_M-50_amcatnloFXFX_ext1', ], ]
e0e296b4db975b48fac91b4a435db315d68bccc5
86932f8c69708ebdf534c6604e5322a5496596a1
/tests/helpers.py
feef1302d75b434d46e530e499daa0eabc790c3b
[ "BSD-2-Clause" ]
permissive
ress/flask-assets
3a8cd77c315840cb80528cbbf139f804ae335920
747aa9c0d1b036bd3cc65b5cd278e48a97ac8af2
refs/heads/master
2021-01-18T05:52:34.242630
2013-01-04T15:43:58
2013-01-04T15:43:58
7,623,019
1
0
null
null
null
null
UTF-8
Python
false
false
1,555
py
from nose import SkipTest from nose.tools import assert_raises from flask.app import Flask try: from flask import __version__ as FLASK_VERSION except ImportError: FLASK_VERSION = '0.6' from webassets.test import TempEnvironmentHelper as BaseTempEnvironmentHelper from flask.ext.assets import Environment try: from flask import Blueprint Module = None except ImportError: # Blueprints only available starting with 0.7, # fall back to old Modules otherwise. Blueprint = None from flask import Module __all__ = ('TempEnvironmentHelper', 'Module', 'Blueprint') class TempEnvironmentHelper(BaseTempEnvironmentHelper): def _create_environment(self, **kwargs): if FLASK_VERSION < '0.7': # Older Flask versions do not support the # static_folder argument, which we need to use # a temporary folder for static files, without # having to do sys.path hacking. raise SkipTest() if not hasattr(self, 'app'): self.app = Flask(__name__, static_folder=self.tempdir, **kwargs) self.env = Environment(self.app) return self.env try: from test.test_support import check_warnings except ImportError: # Python < 2.6 import contextlib @contextlib.contextmanager def check_warnings(*filters, **kwargs): # We cannot reasonably support this, we'd have to copy to much code. # (or write our own). Since this is only testing warnings output, # we might slide by ignoring it. yield
e1700a52bf7fc6f3fef9ba3960aaf57f768bad57
0c659d16b796e6220e93b08693e557a698c5977e
/setup.py
0e4dae03af83c6567586b12a43992f9873753b41
[ "MIT" ]
permissive
marchon/citas
f4eb405d9efd9831df21b892945327bc86f8b7fe
73a51c0a5dff29bd2728973457d378aec40ce1cf
refs/heads/master
2021-04-15T08:01:43.520071
2017-05-04T22:19:00
2017-05-04T22:19:00
null
0
0
null
null
null
null
UTF-8
Python
false
false
790
py
# -*- coding: utf-8 -*- from setuptools import setup, find_packages from pip.req import parse_requirements import re, ast # get version from __version__ variable in citas/__init__.py _version_re = re.compile(r'__version__\s+=\s+(.*)') with open('citas/__init__.py', 'rb') as f: version = str(ast.literal_eval(_version_re.search( f.read().decode('utf-8')).group(1))) requirements = parse_requirements("requirements.txt", session="") setup( name='citas', version=version, description='Citas a Clientes', author='César DiMartino', author_email='[email protected]', packages=find_packages(), zip_safe=False, include_package_data=True, install_requires=[str(ir.req) for ir in requirements], dependency_links=[str(ir._link) for ir in requirements if ir._link] )
513e529b4e9e4115777f44df6972ef72a2e0e317
e6a4af814f41e0a6b661d8685a54ba5bd41a4baf
/film/dao/calc_dao.py
063d7d0053c70a79fc8d3343bc0e50eacd00efa5
[]
no_license
oaifaye/film_wx
cdb39116748af180719bec4d2cf5af02e88235d3
63519b430001216f22d14a1ee6f7d528e0ce655e
refs/heads/master
2021-05-09T12:41:24.361486
2018-01-26T06:57:48
2018-01-26T06:57:48
119,016,941
1
0
null
null
null
null
UTF-8
Python
false
false
5,281
py
# -*- coding: UTF-8 -*- ''' Created on 2017年12月10日 @author: Administrator ''' from film.dao.base_dao import BaseDao import datetime class CalcItem(): id = -1 dateNo = 0 calcType='' websiteId = 0 mergeCinemaId=None mergeFilmId=None initDate = None class CalcDao(BaseDao): def insert(self,CalcItem): baseDao = BaseDao() db = baseDao.getDB() # 使用cursor()方法获取操作游标 cursor = db.cursor() now = datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S") sql = "INSERT INTO tf_calc (date_no, calc_type, website_id, merge_cinema_id, merge_film_id, init_date) VALUES ('%s', '%s', '%s', '%s', '%s', '%s')" % \ (str(CalcItem.dateNo),str(CalcItem.calcType),str(CalcItem.websiteId),str(CalcItem.mergeCinemaId),str(CalcItem.mergeFilmId),now) print(sql) num = cursor.execute(sql) baseDao.commitCloseDb(db) # def getNoMergeCinema(self): # cinemaItems = self.doSelect("select * from tf_cinema where merge_id is null and state=1") # return cinemaItems def doSelect(self,sql): items = [] baseDao = BaseDao() db = baseDao.getDB() # 使用cursor()方法获取操作游标 cursor = baseDao.getDictCursor(db) print(sql) num = cursor.execute(sql) rows = cursor.fetchall() for row in rows: item = CalcItem() item.id = row['id'] item.dateNo = row['date_no'] item.calcType=row['calc_type'] item.websiteId = row['website_id'] item.websiteCinemaId=row['website_cinema_id'] item.websiteFilmId=row['website_film_id'] item.initDate = row['init_date'] items.append(item) baseDao.commitCloseDb(db) return items def deleteByDateNo(self,dateNo,calcType): baseDao = BaseDao() db = baseDao.getDB() # 使用cursor()方法获取操作游标 cursor = db.cursor() sql = "delete from tf_calc where date_no='%s' and calc_type='%s' " % (dateNo,calcType) print(sql) num = cursor.execute(sql) baseDao.commitCloseDb(db) '''找出所有电影中评分最高的前三名''' def getGradeHiFilm(self,dateNo): mergeFilmIds = [] baseDao = BaseDao() db = baseDao.getDB() # 使用cursor()方法获取操作游标 cursor = baseDao.getDictCursor(db) sql = "select distinct(b.merge_id) merge_film_id from \ tf_daily_film_cinema a left join tf_film b on a.website_film_id=b.website_film_id \ left join tf_merge_film c on b.merge_id=c.id \ where a.date_no='%s' \ order by a.grade desc limit 3" % (dateNo) print(sql) num = cursor.execute(sql) rows = cursor.fetchall() for row in rows: mergeFilmIds.append(row['merge_film_id']) baseDao.commitCloseDb(db) return mergeFilmIds '''获取一个电影在那些电影院看哪些网站买票比较合适''' def getCheapCimane(self,filmMergeId,dateNo): calcItems = [] baseDao = BaseDao() db = baseDao.getDB() # 使用cursor()方法获取操作游标 cursor = baseDao.getDictCursor(db) sql = "select a.website_id website_id, b.merge_id cinema_merge_id,d.merge_id film_merge_id \ from tf_daily_film_cinema a left join tf_cinema b on a.website_cinema_id = b.website_cinema_id \ left join tf_film d on a.website_film_id = d.website_film_id left join tf_merge_cinema f on b.merge_id=f.id \ where d.merge_id='%s' and a.date_no='%s' and f.area in ('红桥区','南开区') \ order by a.price limit 1" % (str(filmMergeId),str(dateNo)) print(sql) num = cursor.execute(sql) rows = cursor.fetchall() for row in rows: calcItem= CalcItem() calcItem.dateNo = dateNo calcItem.websiteId = row['website_id'] calcItem.mergeCinemaId=row['cinema_merge_id'] calcItem.mergeFilmId=row['film_merge_id'] calcItems.append(calcItem) baseDao.commitCloseDb(db) return calcItems '''找出所有影院里排片最高的前三名''' def getMostRoundFilms(self,dateNo): mergerFilmIds = [] baseDao = BaseDao() db = baseDao.getDB() # 使用cursor()方法获取操作游标 cursor = baseDao.getDictCursor(db) sql = "select b.merge_id merge_id\ from tf_daily_film_round a left join tf_film b on a.website_film_id=b.website_film_id \ left join tf_merge_film c on b.merge_id = c.id \ where a.date_no='%s' \ group by b.merge_id \ order by (a.show_round_num) desc limit 3" % (dateNo) print(sql) num = cursor.execute(sql) rows = cursor.fetchall() for row in rows: mergerFilmIds.append(row['merge_id']) baseDao.commitCloseDb(db) return mergerFilmIds
979f59f65eddf8d3e63c273c305af8eb83b1ee6f
0ebc1fddbdcc9ea6fca53e1d8fb77c6a892c8a19
/Ground-Truth-Skeletons/dataManagement/organise_val_data.py
eff83d74db189b84cf72649ff141e0cce0805a0a
[ "MIT" ]
permissive
amit2014/Action-Recognition
4ea569bc3a82966340b97a70ba14675fb5dadf12
b648f4cd8e479872c0cd9488120ada18bc64e5ad
refs/heads/master
2020-05-16T05:04:01.846725
2018-05-05T09:00:36
2018-05-05T09:00:36
null
0
0
null
null
null
null
UTF-8
Python
false
false
1,971
py
import numpy as np import pickle ##################################################################################################################### stupid_videos = [ 111, 111, 111, 747, 747, 747, 981, 981, 981, 1145, 1145, 1145, 1252, 1252, 1252, 1281, 1281, 1281, 1282, 1282, 1282, 1485, 1485, 1485, 1504, 1504, 1504, 1840, 1840, 1840, 1865, 1865, 1865, 1916, 1916, 1916, 2071, 2071, 2071, 2220, 2220, 2220, 3108, 3108, 3108, 4133, 4133, 4133, 4507, 4507, 4507, 4882, 4882, 4882, 5081, 5081, 5081, 5293, 5293, 5293, 5315, 5315, 5315, 5643, 5643, 5643, 5816, 5816, 5816, 6082, 6082, 6082, 6648, 6648, 6648, 6695, 6695, 6695, 6773, 6773, 6773, 6873, 6873, 6873, 7137, 7137, 7137, 7616, 7616, 7616, 7680, 7680, 7680, 9472, 9472, 9472, 9533, 9533, 9533, 10120, 10120, 10120, 10588, 10588, 10588, 11693, 11693, 11693, 12150, 12150, 12150, 12218, 12218, 12218, 13542, 13542, 13542, 13860, 13860, 13860, 14701, 14701, 14701, 14935, 14935, 14935, 16026, 16026, 16026, 16298, 16298, 16298] #non_stupid = np.setdiff1d(range(len(val_labes[1])),stupid_videos) val_data = np.load(open('val_data.npy','rb')) val_labes = pickle.load(open('val_label.pkl','rb')) print(val_data.shape) print(len(val_labes[1])) non_stupid = np.setdiff1d(range(len(val_labes[1])),stupid_videos) val_labes = np.asarray(val_labes[1]) val_labes = val_labes[non_stupid] print(len(val_labes)) val_data = val_data[non_stupid,:,:,:,:] val_data = val_data[np.asarray(val_labes)<49,:,:,:,0] print(val_data.shape) val_labes = val_labes[val_labes<49] val_data = val_data - (val_data[:,:,0,0])[:,:,None,None] val_data = val_data / np.linalg.norm(val_data[:,:,0,1]-val_data[:,:,0,0],axis=1)[:,None,None,None] np.save('Final-Data/val_data.npy',val_data) np.save('Final-Data/val_labes.npy',val_labes)
4490c6ee769209f3751f16f7c940b75c7095bdc1
2d28d7d23ffee8c19c5b0b5f12c2ef34a0e0eac2
/py_kafk/tar/pykafka-2.8.1-dev.1/tests/pykafka/test_ssl.py
97ac4378b0c1e61c7dc9b8fdaa981abf92fccac8
[ "Apache-2.0" ]
permissive
liuansen/python-utils-class
bd8e9bb100a8b7c97ca9022ecf44cde0e79a8edd
c7054bd05b127385b8c6f56a4e2241d92ff42ab4
refs/heads/master
2023-05-27T22:40:00.715765
2022-08-08T07:33:41
2022-08-08T07:33:41
185,551,657
3
0
Apache-2.0
2023-05-22T21:37:24
2019-05-08T07:08:23
Python
UTF-8
Python
false
false
2,701
py
import os import unittest from uuid import uuid4 import pytest from pykafka import KafkaClient, SslConfig from pykafka.test.utils import get_cluster, stop_cluster kafka_version = os.environ.get('KAFKA_VERSION', '0.8.0') class SslIntegrationTests(unittest.TestCase): USE_RDKAFKA = False @classmethod def setUpClass(cls): cls.kafka = get_cluster() if cls.kafka.brokers_ssl is None: pytest.skip("Test-cluster doesn't advertise ssl ports.") @classmethod def tearDownClass(cls): stop_cluster(cls.kafka) def roundtrip_test(self, client): """Test producing then consuming This is mostly important to test the pykafka.rdkafka classes, which should be passed SSL settings during producer/consumer init. """ topic_name = uuid4().hex.encode() payload = uuid4().hex.encode() topic = client.topics[topic_name] producer = topic.get_producer(use_rdkafka=self.USE_RDKAFKA, sync=True) producer.produce(payload) consumer = topic.get_simple_consumer(use_rdkafka=self.USE_RDKAFKA, consumer_timeout_ms=5000) self.assertEqual(consumer.consume().value, payload) def test_ca_only(self): """Connect with CA cert only (ie no client cert)""" config = SslConfig(cafile=self.kafka.certs.root_cert) client = KafkaClient(self.kafka.brokers_ssl, ssl_config=config, broker_version=kafka_version) self.roundtrip_test(client) def test_client_cert(self): """Connect with client certificate""" # This would be a more potent test if we could on-the-fly reconfigure # the test cluster to refuse connections without client certs, but # that's not easy to achieve with our current setup certs = self.kafka.certs config = SslConfig(cafile=certs.root_cert, certfile=certs.client_cert, keyfile=certs.client_key, password=certs.client_pass) client = KafkaClient(self.kafka.brokers_ssl, ssl_config=config, broker_version=kafka_version) self.roundtrip_test(client) @pytest.mark.skip(reason="Unresolved crashes") def test_legacy_wrap_socket(self): """Test socket-wrapping without SSLContext""" config = SslConfig(cafile=self.kafka.certs.root_cert) config._wrap_socket = config._legacy_wrap_socket() client = KafkaClient(self.kafka.brokers_ssl, ssl_config=config, broker_version=kafka_version) self.roundtrip_test(client)
3e0884b6637fa46e47bf58684f8b728f67568073
b0b5df878333beada1fa4d862be098b80ced7641
/AUTO_ADB/DCcore/dc_daily.py
31cdf81394ca668e57a9ba70585ca50c7a0cf420
[]
no_license
hygnic/boomboost
054beac114f3407757a5423ed4766d36c2278911
dcbff7abe3300c1a4c668cf6a96370a53be99ac5
refs/heads/master
2023-06-06T00:47:48.734632
2021-05-28T09:58:24
2021-05-28T09:58:24
281,379,773
0
0
null
null
null
null
UTF-8
Python
false
false
804
py
#!/usr/bin/env python # -*- coding:utf-8 -*- # --------------------------------------------------------------------------- # Author: LiaoChenchen # Created on: 2020/8/13 23:00 # Reference: """ Description: DC 日常任务 Usage: """ # --------------------------------------------------------------------------- import os import dcutility as dc from AUTO_ADB.conf.DClocation import General from AUTO_ADB.conf.pathfile import ImageDaily ims = dc.ImageMatchSet() lt_gl = General() image = ImageDaily("daily") def ug(): # 进入 night world dc.humanbeing_click(lt_gl.nightworldX, lt_gl.nightworldY) ims.whileset(image.ug) dc.humanbeing_click_point(ims.point(zoom=0.1)) def re(): ims.backhome(5) if __name__ == '__main__': os.chdir("../adb") os.system("adb connect 127.0.0.1:21503") ug()
f69e6cb58e32915c9091cbd7e6e8ac7b79d70306
0c4103afaa218697ad6ec514ad02a6e154278d70
/python_data_structures/dictionaries/view_obj.py
35a5acede55a7861d48a95e7eee052a269e59388
[]
no_license
jgartsu12/my_python_learning
e721f3fa646d2ca46c888d0fbc55ac03a48b4889
f971b7168e97e52fe9fd66f4b4d7c098110ca701
refs/heads/master
2020-09-07T17:45:08.747614
2019-11-19T00:49:23
2019-11-19T00:49:23
220,865,262
0
0
null
null
null
null
UTF-8
Python
false
false
1,201
py
# Guide to Python Dictionary View Objects #nested collections in dictionary view obj # traversal to grab nestd items in a view obj teams = { "astros" : ["Altuve", "Correa", "Bregman"], "angels": ["Trout", "Pujols"], "yankees": ["Judge", "Stanton"], "red sox": ["Price", "Betts"], } team_groupings = teams.items() print(list(team_groupings)[1][1][0]) #chainned elements chained lookups # returned: Trout """ tuples = (....) [ ('astros', ['Altuve', 'Correa', 'Bregman']), ('angels': ['Trout', 'Pujols']), ('yankees', ['Judge', 'Stanton']), ('red sox', ['Price', 'Betts']) ] --> convert view obj into a list """ # previous notes # # view obj --> thread safety # players = { # "ss" : "Correa", # "2b" : "Altuve", # "3b" : "Bregman", # "DH" : "Gattis", # "OF" : "Springer", # } # # thread safety - thread safe (senior-lvl-dvp) make quick copy of list and then perform our actions # # use of copy() fn --> perform any actions u want without data change # player_names = list(players.copy().values()) # print(player_names) # prints players {} values aka name of the players # # only we can access these players stored
960173d66646bb039683ffef01a651b16866f98a
f39528e9bad8cfa78b38fcbb7a5b430ac0c7a942
/Displaced_Dijets/DisplacedVerticesGeneratorFragments-CP2-2017/StopStopbarTo2Dbar2D_M_200_CTau_300um_TuneCP2_13TeV_pythia8_cff.py
6ab0832145f8e68ef40c4dbd40c98435fce13338
[]
no_license
isildakbora/EXO-MC-REQUESTS
c0e3eb3a49b516476d37aa464c47304df14bed1e
8771e32bbec079de787f7e5f11407e9e7ebe35d8
refs/heads/master
2021-04-12T11:11:03.982564
2019-04-29T15:12:34
2019-04-29T15:12:34
126,622,752
0
0
null
null
null
null
UTF-8
Python
false
false
1,652
py
M = 200 CTAU = 0.3 WIDTH = 0.0197e-11 / CTAU SLHA_TABLE = ''' BLOCK SPINFO # Spectrum calculator information 1 Minimal # spectrum calculator 2 1.0.0 # version number BLOCK MODSEL # Model selection 1 1 # BLOCK MASS # Mass Spectrum # PDG code mass particle 1000006 %E # ~t_1 DECAY 1000006 %E # ~t_1 decays (~t_1bar is automatically handled) # BR NDA ID1 ID2 1.00E+00 2 -1 -1 # ~t_1 -> dbar dbar ''' % (M, WIDTH) import FWCore.ParameterSet.Config as cms from Configuration.Generator.Pythia8CommonSettings_cfi import * from Configuration.Generator.MCTunes2017.PythiaCP2Settings_cfi import * generator = cms.EDFilter('Pythia8GeneratorFilter', comEnergy = cms.double(13000.0), filterEfficiency = cms.untracked.double(1.0), maxEventsToPrint = cms.untracked.int32(0), pythiaHepMCVerbosity = cms.untracked.bool(False), pythiaPylistVerbosity = cms.untracked.int32(0), SLHATableForPythia8 = cms.string(SLHA_TABLE), PythiaParameters = cms.PSet( pythia8CommonSettingsBlock, pythia8CP2SettingsBlock, processParameters = cms.vstring( 'SUSY:all = off', 'SUSY:gg2squarkantisquark = on', 'SUSY:qqbar2squarkantisquark = on', 'SUSY:idA = 1000006', 'SUSY:idB = 1000006', 'RHadrons:allow = on', '1000006:tau0 = %f' % CTAU, ), parameterSets = cms.vstring( 'pythia8CommonSettings', 'pythia8CP2Settings', 'processParameters', ), ), )
a9ee7d61f12f5a3a888ffc894cf58e00b42bf25f
4c7eea9d402dbda526c880cb55339e73d783568f
/exercise/myargv.py
a8d148c193e6919aeee95cecf60255f66627ea06
[]
no_license
kks4866/pyworks
9dd8e9e66ba419c50e6111c42b9fb7311ce402fa
a3f599f96ae367e2cdc0da0ab9429186629f3c1c
refs/heads/master
2023-06-28T23:54:18.640460
2021-07-06T04:08:52
2021-07-06T04:08:52
378,803,609
0
0
null
null
null
null
UTF-8
Python
false
false
117
py
import sys args = sys.argv[1:] #리스트형 자료 sum = 0 for i in args: sum = sum + int(i) print(sum)
c2a197ea72a0a7ecc9e3d5d77c97281427c01913
98f0b4edce2cc250aa5a544b7736d0287ad339a2
/manage.py
b9a292afd158c8ae58166c5ac0081d667f32a2f0
[]
no_license
DasomJung24/Brandi_project_with_Django
86e0493a5ff314ae9bddaeabf1058acd81079282
7e7513c20b9051aa242759c8ba69894a2bdc2fcb
refs/heads/master
2023-01-21T11:59:37.941347
2020-12-06T13:50:36
2020-12-06T13:50:36
314,373,085
1
0
null
null
null
null
UTF-8
Python
false
false
677
py
#!/usr/bin/env python """Django's command-line utility for administrative tasks.""" import os import sys def main(): """Run administrative tasks.""" os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'brandi_project_django.settings') try: from django.core.management import execute_from_command_line except ImportError as exc: raise ImportError( "Couldn't import Django. Are you sure it's installed and " "available on your PYTHONPATH environment variable? Did you " "forget to activate a virtual environment?" ) from exc execute_from_command_line(sys.argv) if __name__ == '__main__': main()
1179594e202410df5cc796d5a05f2b4b7c7863ee
72a9252951271373f66c5684344f0d5dff9565be
/知乎/zhi_Spider/BINSHAN/db.py
c8ca73059fc24c3671a323b3d1ffa82a336761e2
[]
no_license
wudangqibujie/Spider_Project
7b43c9e3ca8d9f73d6a6e25d5574658838152acc
08beae178f269743afca0e5d91e1ad6a79464047
refs/heads/master
2020-03-21T22:11:41.635169
2018-07-03T03:12:47
2018-07-03T03:12:47
139,110,189
1
0
null
null
null
null
UTF-8
Python
false
false
431
py
from settings import * import pymongo class Mon(object): def __init__(self): self.client = pymongo.MongoClient(MONGO_HOST,MONGO_PORT) self.db = self.client[MONGO_DB_NAME] def insert(self,coll_name,data): self.db[coll_name].insert(data) def data_find(self,coll_name): for i in self.db[coll_name].find(): yield i def close(self): self.client.close()
ec17857128c6f96dd9883c0eb64fc311388027c6
7ef53269ce5e4bcb3d7a002a92520e0a96f24377
/backend/home/migrations/0002_load_initial_data.py
a92e4ec992a042f04d90321369507a38a3044ff3
[]
no_license
andremcb/icy-paper-19597
f7a8971c61390be9e0ecaa44b27feefa9399962f
1ab03ef09bb5ceef0fb90a3c37ea18c9b0cc717f
refs/heads/master
2023-03-23T06:12:53.130547
2021-03-12T23:07:33
2021-03-12T23:07:33
347,220,390
0
0
null
null
null
null
UTF-8
Python
false
false
1,290
py
from django.db import migrations def create_customtext(apps, schema_editor): CustomText = apps.get_model("home", "CustomText") customtext_title = "Icy Paper" CustomText.objects.create(title=customtext_title) def create_homepage(apps, schema_editor): HomePage = apps.get_model("home", "HomePage") homepage_body = """ <h1 class="display-4 text-center">Icy Paper</h1> <p class="lead"> This is the sample application created and deployed from the Crowdbotics app. You can view list of packages selected for this application below. </p>""" HomePage.objects.create(body=homepage_body) def create_site(apps, schema_editor): Site = apps.get_model("sites", "Site") custom_domain = "icy-paper-19597.botics.co" site_params = { "name": "Icy Paper", } if custom_domain: site_params["domain"] = custom_domain Site.objects.update_or_create(defaults=site_params, id=1) class Migration(migrations.Migration): dependencies = [ ("home", "0001_initial"), ("sites", "0002_alter_domain_unique"), ] operations = [ migrations.RunPython(create_customtext), migrations.RunPython(create_homepage), migrations.RunPython(create_site), ]
863cc9d635e51bcdf07dc8c92369dddac3ad16cb
bad62c2b0dfad33197db55b44efeec0bab405634
/sdk/digitaltwins/azure-mgmt-digitaltwins/azure/mgmt/digitaltwins/v2022_05_31/operations/_time_series_database_connections_operations.py
f5b466a3c6101cfaee5342c15d476769af7491ff
[ "LicenseRef-scancode-generic-cla", "MIT", "LGPL-2.1-or-later" ]
permissive
test-repo-billy/azure-sdk-for-python
20c5a2486456e02456de17515704cb064ff19833
cece86a8548cb5f575e5419864d631673be0a244
refs/heads/master
2022-10-25T02:28:39.022559
2022-10-18T06:05:46
2022-10-18T06:05:46
182,325,031
0
0
MIT
2019-07-25T22:28:52
2019-04-19T20:59:15
Python
UTF-8
Python
false
false
29,175
py
# pylint: disable=too-many-lines # coding=utf-8 # -------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License.txt in the project root for license information. # Code generated by Microsoft (R) AutoRest Code Generator. # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- from typing import Any, Callable, Dict, Iterable, Optional, TypeVar, Union from msrest import Serializer from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error from azure.core.paging import ItemPaged from azure.core.pipeline import PipelineResponse from azure.core.pipeline.transport import HttpResponse from azure.core.polling import LROPoller, NoPolling, PollingMethod from azure.core.rest import HttpRequest from azure.core.tracing.decorator import distributed_trace from azure.mgmt.core.exceptions import ARMErrorFormat from azure.mgmt.core.polling.arm_polling import ARMPolling from .. import models as _models from .._vendor import _convert_request, _format_url_section T = TypeVar('T') JSONType = Any ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, Dict[str, Any]], Any]] _SERIALIZER = Serializer() _SERIALIZER.client_side_validation = False def build_list_request( subscription_id: str, resource_group_name: str, resource_name: str, **kwargs: Any ) -> HttpRequest: api_version = kwargs.pop('api_version', "2022-05-31") # type: str accept = "application/json" # Construct URL _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DigitalTwins/digitalTwinsInstances/{resourceName}/timeSeriesDatabaseConnections") # pylint: disable=line-too-long path_format_arguments = { "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), "resourceName": _SERIALIZER.url("resource_name", resource_name, 'str', max_length=63, min_length=3, pattern=r'^(?!-)[A-Za-z0-9-]{3,63}(?<!-)$'), } _url = _format_url_section(_url, **path_format_arguments) # Construct parameters _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') # Construct headers _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') return HttpRequest( method="GET", url=_url, params=_query_parameters, headers=_header_parameters, **kwargs ) def build_get_request( subscription_id: str, resource_group_name: str, resource_name: str, time_series_database_connection_name: str, **kwargs: Any ) -> HttpRequest: api_version = kwargs.pop('api_version', "2022-05-31") # type: str accept = "application/json" # Construct URL _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DigitalTwins/digitalTwinsInstances/{resourceName}/timeSeriesDatabaseConnections/{timeSeriesDatabaseConnectionName}") # pylint: disable=line-too-long path_format_arguments = { "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), "resourceName": _SERIALIZER.url("resource_name", resource_name, 'str', max_length=63, min_length=3, pattern=r'^(?!-)[A-Za-z0-9-]{3,63}(?<!-)$'), "timeSeriesDatabaseConnectionName": _SERIALIZER.url("time_series_database_connection_name", time_series_database_connection_name, 'str', max_length=49, min_length=2, pattern=r'^(?![0-9]+$)(?!-)[a-zA-Z0-9-]{2,49}[a-zA-Z0-9]$'), } _url = _format_url_section(_url, **path_format_arguments) # Construct parameters _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') # Construct headers _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') return HttpRequest( method="GET", url=_url, params=_query_parameters, headers=_header_parameters, **kwargs ) def build_create_or_update_request_initial( subscription_id: str, resource_group_name: str, resource_name: str, time_series_database_connection_name: str, *, json: JSONType = None, content: Any = None, **kwargs: Any ) -> HttpRequest: api_version = kwargs.pop('api_version', "2022-05-31") # type: str content_type = kwargs.pop('content_type', None) # type: Optional[str] accept = "application/json" # Construct URL _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DigitalTwins/digitalTwinsInstances/{resourceName}/timeSeriesDatabaseConnections/{timeSeriesDatabaseConnectionName}") # pylint: disable=line-too-long path_format_arguments = { "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), "resourceName": _SERIALIZER.url("resource_name", resource_name, 'str', max_length=63, min_length=3, pattern=r'^(?!-)[A-Za-z0-9-]{3,63}(?<!-)$'), "timeSeriesDatabaseConnectionName": _SERIALIZER.url("time_series_database_connection_name", time_series_database_connection_name, 'str', max_length=49, min_length=2, pattern=r'^(?![0-9]+$)(?!-)[a-zA-Z0-9-]{2,49}[a-zA-Z0-9]$'), } _url = _format_url_section(_url, **path_format_arguments) # Construct parameters _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') # Construct headers _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] if content_type is not None: _header_parameters['Content-Type'] = _SERIALIZER.header("content_type", content_type, 'str') _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') return HttpRequest( method="PUT", url=_url, params=_query_parameters, headers=_header_parameters, json=json, content=content, **kwargs ) def build_delete_request_initial( subscription_id: str, resource_group_name: str, resource_name: str, time_series_database_connection_name: str, **kwargs: Any ) -> HttpRequest: api_version = kwargs.pop('api_version', "2022-05-31") # type: str accept = "application/json" # Construct URL _url = kwargs.pop("template_url", "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DigitalTwins/digitalTwinsInstances/{resourceName}/timeSeriesDatabaseConnections/{timeSeriesDatabaseConnectionName}") # pylint: disable=line-too-long path_format_arguments = { "subscriptionId": _SERIALIZER.url("subscription_id", subscription_id, 'str'), "resourceGroupName": _SERIALIZER.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1), "resourceName": _SERIALIZER.url("resource_name", resource_name, 'str', max_length=63, min_length=3, pattern=r'^(?!-)[A-Za-z0-9-]{3,63}(?<!-)$'), "timeSeriesDatabaseConnectionName": _SERIALIZER.url("time_series_database_connection_name", time_series_database_connection_name, 'str', max_length=49, min_length=2, pattern=r'^(?![0-9]+$)(?!-)[a-zA-Z0-9-]{2,49}[a-zA-Z0-9]$'), } _url = _format_url_section(_url, **path_format_arguments) # Construct parameters _query_parameters = kwargs.pop("params", {}) # type: Dict[str, Any] _query_parameters['api-version'] = _SERIALIZER.query("api_version", api_version, 'str') # Construct headers _header_parameters = kwargs.pop("headers", {}) # type: Dict[str, Any] _header_parameters['Accept'] = _SERIALIZER.header("accept", accept, 'str') return HttpRequest( method="DELETE", url=_url, params=_query_parameters, headers=_header_parameters, **kwargs ) class TimeSeriesDatabaseConnectionsOperations(object): """TimeSeriesDatabaseConnectionsOperations operations. You should not instantiate this class directly. Instead, you should create a Client instance that instantiates it for you and attaches it as an attribute. :ivar models: Alias to model classes used in this operation group. :type models: ~azure.mgmt.digitaltwins.v2022_05_31.models :param client: Client for service requests. :param config: Configuration of service client. :param serializer: An object model serializer. :param deserializer: An object model deserializer. """ models = _models def __init__(self, client, config, serializer, deserializer): self._client = client self._serialize = serializer self._deserialize = deserializer self._config = config @distributed_trace def list( self, resource_group_name: str, resource_name: str, **kwargs: Any ) -> Iterable["_models.TimeSeriesDatabaseConnectionListResult"]: """Get all existing time series database connections for this DigitalTwins instance. :param resource_group_name: The name of the resource group that contains the DigitalTwinsInstance. :type resource_group_name: str :param resource_name: The name of the DigitalTwinsInstance. :type resource_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either TimeSeriesDatabaseConnectionListResult or the result of cls(response) :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.digitaltwins.v2022_05_31.models.TimeSeriesDatabaseConnectionListResult] :raises: ~azure.core.exceptions.HttpResponseError """ api_version = kwargs.pop('api_version', "2022-05-31") # type: str cls = kwargs.pop('cls', None) # type: ClsType["_models.TimeSeriesDatabaseConnectionListResult"] error_map = { 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) def prepare_request(next_link=None): if not next_link: request = build_list_request( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, api_version=api_version, template_url=self.list.metadata['url'], ) request = _convert_request(request) request.url = self._client.format_url(request.url) else: request = build_list_request( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, api_version=api_version, template_url=next_link, ) request = _convert_request(request) request.url = self._client.format_url(request.url) request.method = "GET" return request def extract_data(pipeline_response): deserialized = self._deserialize("TimeSeriesDatabaseConnectionListResult", pipeline_response) list_of_elem = deserialized.value if cls: list_of_elem = cls(list_of_elem) return deserialized.next_link or None, iter(list_of_elem) def get_next(next_link=None): request = prepare_request(next_link) pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access request, stream=False, **kwargs ) response = pipeline_response.http_response if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) return pipeline_response return ItemPaged( get_next, extract_data ) list.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DigitalTwins/digitalTwinsInstances/{resourceName}/timeSeriesDatabaseConnections"} # type: ignore @distributed_trace def get( self, resource_group_name: str, resource_name: str, time_series_database_connection_name: str, **kwargs: Any ) -> "_models.TimeSeriesDatabaseConnection": """Get the description of an existing time series database connection. :param resource_group_name: The name of the resource group that contains the DigitalTwinsInstance. :type resource_group_name: str :param resource_name: The name of the DigitalTwinsInstance. :type resource_name: str :param time_series_database_connection_name: Name of time series database connection. :type time_series_database_connection_name: str :keyword callable cls: A custom type or function that will be passed the direct response :return: TimeSeriesDatabaseConnection, or the result of cls(response) :rtype: ~azure.mgmt.digitaltwins.v2022_05_31.models.TimeSeriesDatabaseConnection :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["_models.TimeSeriesDatabaseConnection"] error_map = { 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) api_version = kwargs.pop('api_version', "2022-05-31") # type: str request = build_get_request( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, time_series_database_connection_name=time_series_database_connection_name, api_version=api_version, template_url=self.get.metadata['url'], ) request = _convert_request(request) request.url = self._client.format_url(request.url) pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access request, stream=False, **kwargs ) response = pipeline_response.http_response if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize('TimeSeriesDatabaseConnection', pipeline_response) if cls: return cls(pipeline_response, deserialized, {}) return deserialized get.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DigitalTwins/digitalTwinsInstances/{resourceName}/timeSeriesDatabaseConnections/{timeSeriesDatabaseConnectionName}"} # type: ignore def _create_or_update_initial( self, resource_group_name: str, resource_name: str, time_series_database_connection_name: str, time_series_database_connection_description: "_models.TimeSeriesDatabaseConnection", **kwargs: Any ) -> "_models.TimeSeriesDatabaseConnection": cls = kwargs.pop('cls', None) # type: ClsType["_models.TimeSeriesDatabaseConnection"] error_map = { 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) api_version = kwargs.pop('api_version', "2022-05-31") # type: str content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] _json = self._serialize.body(time_series_database_connection_description, 'TimeSeriesDatabaseConnection') request = build_create_or_update_request_initial( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, time_series_database_connection_name=time_series_database_connection_name, api_version=api_version, content_type=content_type, json=_json, template_url=self._create_or_update_initial.metadata['url'], ) request = _convert_request(request) request.url = self._client.format_url(request.url) pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access request, stream=False, **kwargs ) response = pipeline_response.http_response if response.status_code not in [200, 201]: map_error(status_code=response.status_code, response=response, error_map=error_map) raise HttpResponseError(response=response, error_format=ARMErrorFormat) if response.status_code == 200: deserialized = self._deserialize('TimeSeriesDatabaseConnection', pipeline_response) if response.status_code == 201: deserialized = self._deserialize('TimeSeriesDatabaseConnection', pipeline_response) if cls: return cls(pipeline_response, deserialized, {}) return deserialized _create_or_update_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DigitalTwins/digitalTwinsInstances/{resourceName}/timeSeriesDatabaseConnections/{timeSeriesDatabaseConnectionName}"} # type: ignore @distributed_trace def begin_create_or_update( self, resource_group_name: str, resource_name: str, time_series_database_connection_name: str, time_series_database_connection_description: "_models.TimeSeriesDatabaseConnection", **kwargs: Any ) -> LROPoller["_models.TimeSeriesDatabaseConnection"]: """Create or update a time series database connection. :param resource_group_name: The name of the resource group that contains the DigitalTwinsInstance. :type resource_group_name: str :param resource_name: The name of the DigitalTwinsInstance. :type resource_name: str :param time_series_database_connection_name: Name of time series database connection. :type time_series_database_connection_name: str :param time_series_database_connection_description: The time series database connection description. :type time_series_database_connection_description: ~azure.mgmt.digitaltwins.v2022_05_31.models.TimeSeriesDatabaseConnection :keyword callable cls: A custom type or function that will be passed the direct response :keyword str continuation_token: A continuation token to restart a poller from a saved state. :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this operation to not poll, or pass in your own initialized polling object for a personal polling strategy. :paramtype polling: bool or ~azure.core.polling.PollingMethod :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. :return: An instance of LROPoller that returns either TimeSeriesDatabaseConnection or the result of cls(response) :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.digitaltwins.v2022_05_31.models.TimeSeriesDatabaseConnection] :raises: ~azure.core.exceptions.HttpResponseError """ api_version = kwargs.pop('api_version', "2022-05-31") # type: str content_type = kwargs.pop('content_type', "application/json") # type: Optional[str] polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] cls = kwargs.pop('cls', None) # type: ClsType["_models.TimeSeriesDatabaseConnection"] lro_delay = kwargs.pop( 'polling_interval', self._config.polling_interval ) cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] if cont_token is None: raw_result = self._create_or_update_initial( resource_group_name=resource_group_name, resource_name=resource_name, time_series_database_connection_name=time_series_database_connection_name, time_series_database_connection_description=time_series_database_connection_description, api_version=api_version, content_type=content_type, cls=lambda x,y,z: x, **kwargs ) kwargs.pop('error_map', None) def get_long_running_output(pipeline_response): response = pipeline_response.http_response deserialized = self._deserialize('TimeSeriesDatabaseConnection', pipeline_response) if cls: return cls(pipeline_response, deserialized, {}) return deserialized if polling is True: polling_method = ARMPolling(lro_delay, **kwargs) elif polling is False: polling_method = NoPolling() else: polling_method = polling if cont_token: return LROPoller.from_continuation_token( polling_method=polling_method, continuation_token=cont_token, client=self._client, deserialization_callback=get_long_running_output ) return LROPoller(self._client, raw_result, get_long_running_output, polling_method) begin_create_or_update.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DigitalTwins/digitalTwinsInstances/{resourceName}/timeSeriesDatabaseConnections/{timeSeriesDatabaseConnectionName}"} # type: ignore def _delete_initial( self, resource_group_name: str, resource_name: str, time_series_database_connection_name: str, **kwargs: Any ) -> Optional["_models.TimeSeriesDatabaseConnection"]: cls = kwargs.pop('cls', None) # type: ClsType[Optional["_models.TimeSeriesDatabaseConnection"]] error_map = { 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } error_map.update(kwargs.pop('error_map', {})) api_version = kwargs.pop('api_version', "2022-05-31") # type: str request = build_delete_request_initial( subscription_id=self._config.subscription_id, resource_group_name=resource_group_name, resource_name=resource_name, time_series_database_connection_name=time_series_database_connection_name, api_version=api_version, template_url=self._delete_initial.metadata['url'], ) request = _convert_request(request) request.url = self._client.format_url(request.url) pipeline_response = self._client._pipeline.run( # pylint: disable=protected-access request, stream=False, **kwargs ) response = pipeline_response.http_response if response.status_code not in [200, 202, 204]: map_error(status_code=response.status_code, response=response, error_map=error_map) raise HttpResponseError(response=response, error_format=ARMErrorFormat) deserialized = None if response.status_code == 200: deserialized = self._deserialize('TimeSeriesDatabaseConnection', pipeline_response) if response.status_code == 202: deserialized = self._deserialize('TimeSeriesDatabaseConnection', pipeline_response) if cls: return cls(pipeline_response, deserialized, {}) return deserialized _delete_initial.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DigitalTwins/digitalTwinsInstances/{resourceName}/timeSeriesDatabaseConnections/{timeSeriesDatabaseConnectionName}"} # type: ignore @distributed_trace def begin_delete( self, resource_group_name: str, resource_name: str, time_series_database_connection_name: str, **kwargs: Any ) -> LROPoller["_models.TimeSeriesDatabaseConnection"]: """Delete a time series database connection. :param resource_group_name: The name of the resource group that contains the DigitalTwinsInstance. :type resource_group_name: str :param resource_name: The name of the DigitalTwinsInstance. :type resource_name: str :param time_series_database_connection_name: Name of time series database connection. :type time_series_database_connection_name: str :keyword callable cls: A custom type or function that will be passed the direct response :keyword str continuation_token: A continuation token to restart a poller from a saved state. :keyword polling: By default, your polling method will be ARMPolling. Pass in False for this operation to not poll, or pass in your own initialized polling object for a personal polling strategy. :paramtype polling: bool or ~azure.core.polling.PollingMethod :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. :return: An instance of LROPoller that returns either TimeSeriesDatabaseConnection or the result of cls(response) :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.digitaltwins.v2022_05_31.models.TimeSeriesDatabaseConnection] :raises: ~azure.core.exceptions.HttpResponseError """ api_version = kwargs.pop('api_version', "2022-05-31") # type: str polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] cls = kwargs.pop('cls', None) # type: ClsType["_models.TimeSeriesDatabaseConnection"] lro_delay = kwargs.pop( 'polling_interval', self._config.polling_interval ) cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] if cont_token is None: raw_result = self._delete_initial( resource_group_name=resource_group_name, resource_name=resource_name, time_series_database_connection_name=time_series_database_connection_name, api_version=api_version, cls=lambda x,y,z: x, **kwargs ) kwargs.pop('error_map', None) def get_long_running_output(pipeline_response): response = pipeline_response.http_response deserialized = self._deserialize('TimeSeriesDatabaseConnection', pipeline_response) if cls: return cls(pipeline_response, deserialized, {}) return deserialized if polling is True: polling_method = ARMPolling(lro_delay, **kwargs) elif polling is False: polling_method = NoPolling() else: polling_method = polling if cont_token: return LROPoller.from_continuation_token( polling_method=polling_method, continuation_token=cont_token, client=self._client, deserialization_callback=get_long_running_output ) return LROPoller(self._client, raw_result, get_long_running_output, polling_method) begin_delete.metadata = {'url': "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DigitalTwins/digitalTwinsInstances/{resourceName}/timeSeriesDatabaseConnections/{timeSeriesDatabaseConnectionName}"} # type: ignore
14d0a3eb36ede4f57355b53e8675474ff624c2b8
ca7aa979e7059467e158830b76673f5b77a0f5a3
/Python_codes/p02663/s270893737.py
0e407da5c73554e2845ac3ce57620af88e88d312
[]
no_license
Aasthaengg/IBMdataset
7abb6cbcc4fb03ef5ca68ac64ba460c4a64f8901
f33f1c5c3b16d0ea8d1f5a7d479ad288bb3f48d8
refs/heads/main
2023-04-22T10:22:44.763102
2021-05-13T17:27:22
2021-05-13T17:27:22
367,112,348
0
0
null
null
null
null
UTF-8
Python
false
false
304
py
def Int(): return int(input()) def Ints(): return map(int,input().split()) def IntList(): return list(Ints()) def IntMat(N): return [IntList() for i in range(N)] import sys sys.setrecursionlimit(4100000) rl = sys.stdin.readline H1,M1,H2,M2,K = Ints() S = (H2-H1)*60+(M2-M1) print(S-K)
0bf3f8859c7782f22606b4bf3c58ab6de8a17c1d
1903aa0028dd91a128f1630c6eb9a1f3467ed951
/update_constraints.py
21084617ca0f2cda487b66613cfe2f5e3bac850a
[ "LicenseRef-scancode-unknown-license-reference", "MIT", "BSD-2-Clause" ]
permissive
icemac/icemac.addressbook
a5ae04feb2b2fb1f0ecc7bf3e60b1666f5bfedd8
6197e6e01da922feb100dd0943576523050cd703
refs/heads/master
2021-01-03T12:44:08.365040
2020-08-06T06:50:51
2020-08-06T06:51:05
242,137,124
2
0
BSD-2-Clause
2020-04-12T07:41:02
2020-02-21T12:43:45
Python
UTF-8
Python
false
false
1,003
py
"""Adapted from https://github.com/zopefoundation/Zope/blob/4aadecc/util.py.""" import os try: from configparser import RawConfigParser except ImportError: from ConfigParser import RawConfigParser HERE = os.path.abspath(os.path.dirname(__file__)) class CaseSensitiveParser(RawConfigParser): def optionxform(self, value): return value def generate(in_, constraints_file): in_file = os.path.join(HERE, in_) out_file_constraints = os.path.join(HERE, constraints_file) parser = CaseSensitiveParser() parser.read(in_file) constraints = [] versions = parser.items('versions') for name, pin in versions: if not pin: continue spec = '%s==%s' % (name, pin) constraints.append(spec + '\n') with open(out_file_constraints, 'w') as fcon: for con in sorted(constraints): fcon.write(con) def main(): generate('profiles/versions.cfg', 'constraints.txt') if __name__ == '__main__': main()
9a16597fd1d52b913e1b8ac76edee8bfcc2ffdb0
9758fa6d66df1121ff9e0b4a7da511653bc53cf1
/Store/migrations/0015_auto_20190831_1807.py
6eb4ef39296d595ca30aac8e88963aa2b68bb4ce
[]
no_license
hdforoozan/Restaurant-project
179fb4138cb92bfd7716671c3b1e8b1949bfbaff
2ab096cbc3ee20557b57ed97bd0d5556c5965e87
refs/heads/master
2020-06-12T08:50:03.067740
2019-09-17T18:48:43
2019-09-17T18:48:43
194,250,030
0
0
null
null
null
null
UTF-8
Python
false
false
780
py
# Generated by Django 2.2.2 on 2019-08-31 13:37 from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('Store', '0014_auto_20190831_1803'), ] operations = [ migrations.AlterField( model_name='employee', name='education_degree', field=models.CharField(blank=True, choices=[('0', 'UnderGraduated'), ('1', 'Graduated'), ('2', 'Master'), ('3', 'PH.D')], max_length=50, null=True), ), migrations.AlterField( model_name='manager', name='education_degree', field=models.CharField(blank=True, choices=[('0', 'UnderGraduated'), ('1', 'Graduated'), ('2', 'Master'), ('3', 'PH.D')], max_length=50, null=True), ), ]
8652007449a4a6d6723587c87267379f02cbf808
ed4123102ac4a96d7d649a0c8871a69ecafde1d7
/lib/bitwise.py
566773ba9ab47ccc551cd469ce2abc0f70b3da0e
[]
no_license
aleksejs-fomins/bio-machine-learning
07f88052e5cdd04943aad459667713ce261a98cd
0dda7c6681ab5f6b9b2b17c5944cad3664b6bf3f
refs/heads/master
2023-03-04T12:29:30.425887
2023-02-07T08:34:53
2023-02-07T08:34:53
211,850,531
2
1
null
null
null
null
UTF-8
Python
false
false
341
py
import numpy as np # Flip the i-th bit of integer a def bitflip(a, i): pos = 2**i return a-pos if a&pos else a+pos # Convert an integer to a list of bits def bitlist(num, nbit): return [int(bool(num & (1 << idx))) for idx in range(nbit)] def bitlist2activation(lst): return np.array([1 if bit == 1 else -1 for bit in lst])
e3d5e2d6bd853c4f74d2acc6be9c45639d9428c8
effdcfa3a98477226aa02de7a2e589bff8adfa56
/3_STL/222score.py
511c1d7da9487a38c89d3019058e68aed75f48d6
[]
no_license
WUT-IDEA/Y2019_WWJ_Graduation_Design_Code
5817ceee8919355cc63262a629087c323b970c17
23e15f6156d5cf8552a9d913bb48eb675ef8e3c5
refs/heads/master
2020-05-27T22:28:48.021213
2019-05-27T09:18:04
2019-05-27T09:18:04
188,805,964
0
0
null
null
null
null
UTF-8
Python
false
false
1,347
py
import pandas as pd import matplotlib.pyplot as plt import numpy as np import math def plot(pre,actual): plt.title('arima') plt.rcParams['font.sans-serif'] = ['SimHei'] # 步骤一(替换sans-serif字体 plt.rcParams['axes.unicode_minus'] = False # 步骤二(解决坐标轴负数的负号显示问题) plt.plot(actual, linewidth=1, label='actual') plt.plot(pre, linewidth=1, label='pre') plt.legend(loc='upper right') # 显示图例,设置图例的位置 plt.show() def score_action(fileName): dateparse = lambda dates: pd.datetime.strptime(dates, '%Y-%m-%d') # 时间格式 table = pd.read_csv(fileName+'.csv', parse_dates=True, index_col='timestamp', date_parser=dateparse) table = (table.resample('D').mean().interpolate('linear')) actual= np.array(table['actual']) purchase_pre = np.array(table['purchase_pre']) plot(purchase_pre,actual) sum = 0 for i in range(len(actual)): # sum += abs(purchase_pre[i] - actual[i]) sum += (purchase_pre[i] - actual[i])*(purchase_pre[i] - actual[i]) sum = math.sqrt(sum / 31.0) # sum = (sum / 31.0) return sum print("STL_7",score_action("STL_7")) print("STL_30",score_action("STL_30")) print("STL_35",score_action("STL_35")) print("STL_365",score_action("STL_365"))
3fe76dba2406707715ea71443aa5c68084b6427c
a97db7d2f2e6de010db9bb70e4f85b76637ccfe6
/leetcode/143-Reorder-List.py
76dc35a930512a20ad60fd1ba66c72c733a1b227
[]
no_license
dongxiaohe/Algorithm-DataStructure
34547ea0d474464676ffffadda26a92c50bff29f
a9881ac5b35642760ae78233973b1608686730d0
refs/heads/master
2020-05-24T20:53:45.689748
2019-07-19T03:46:35
2019-07-19T03:46:35
187,463,938
0
1
null
null
null
null
UTF-8
Python
false
false
792
py
class Solution: def reorderList(self, head): if not head or not head.next: return slow, fast = head, head while fast.next and fast.next.next: slow = slow.next fast = fast.next.next first, second = slow, slow.next while second.next: # 1->2->3->4->5->6 to 1->2->3->6->5->4 third = second.next second.next = third.next third.next = first.next first.next = third first, second, third = head, slow, slow.next while first != second: # 1->2->3->6->5->4 to 1->6->2->5->3->4 second.next = third.next first_1 = first.next first.next = third third.next = first_1 first = first_1 third = second.next
931896263bebf84e1b742fc4256243bdbe10d638
395f974e62eafed74572efebcd91d62966e61639
/deprecated/obsolete/src/testavl.py
10d7a4e08ece3e0ff7e6d4fe13926d33defb668e
[ "Apache-2.0" ]
permissive
agroce/tstl
ad386d027f0f5ff750eab19a722a4b119ed39211
8d43ef7fa49534868e6cdf1697863748260405c7
refs/heads/master
2023-08-08T19:14:52.020314
2023-07-26T17:51:36
2023-07-26T17:51:36
32,408,285
106
33
NOASSERTION
2021-01-26T19:05:17
2015-03-17T17:14:04
Python
UTF-8
Python
false
false
1,506
py
import avl import random import sys import coverage import time import numpy start = time.time() branchesHit = set() maxval = int(sys.argv[1]) testlen = int(sys.argv[2]) numtests = int(sys.argv[3]) cov = coverage.coverage(branch=True, source=["avl.py"]) cov.start() for t in xrange(0,numtests): a = avl.AVLTree() test = [] ref = set() for s in xrange(0,testlen): h = a.height n = len(ref) if (n > 0): if not (h <= (numpy.log2(n)+1)): print h print n print (numpy.log2(n)) sys.exit(0) op = random.choice(["add","del","find"]) val = random.randrange(0,maxval) test.append((op,val)) if op == "add": a.insert(val) ref.add(val) elif op == "del": a.delete(val) ref.discard(val) elif op == "find": assert (a.find(val) == (val in ref)) currBranches = cov.collector.get_arc_data() for src_file, arcs in currBranches.iteritems(): for arc in arcs: branch = (src_file, arc) if branch not in branchesHit: branchesHit.add(branch) elapsed = time.time()-start print elapsed,len(branchesHit),branch avlitems = a.inorder_traverse() setitems = [] for item in ref: setitems.append(item) setitems = sorted(setitems) assert (avlitems == setitems)
da8082ea2ec2d2f8041e4b9c4dd6fc2abd1ff954
767f83ada603bf0330fff9a9df888573ebe87eae
/src-bib/pybtex/pybtex/style/template.py
a682f243fc85498e6f2e81d9a3587407bfb0d1b1
[ "MIT" ]
permissive
AndreaCensi/andreaweb
756e03114d2bb63012523e9f6a179bee3b9d745c
ac110acf59797f096f2ab50e848969f964771295
refs/heads/master
2021-01-13T08:44:30.774965
2020-12-29T17:14:25
2020-12-29T17:14:25
81,645,465
0
0
null
null
null
null
UTF-8
Python
false
false
9,742
py
# vim:fileencoding=utf8 # Copyright (c) 2008, 2009, 2010, 2011, 2012 Andrey Golovizin # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files (the # "Software"), to deal in the Software without restriction, including # without limitation the rights to use, copy, modify, merge, publish, # distribute, sublicense, and/or sell copies of the Software, and to # permit persons to whom the Software is furnished to do so, subject to # the following conditions: # # The above copyright notice and this permission notice shall be # included in all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. # IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY # CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, # TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE # SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. """ A template engine for bibliography entries and more. Inspired by Brevé -- http://breve.twisty-industries.com/ >>> from pybtex.database import Entry, Person >>> author = Person(first='First', last='Last', middle='Middle') >>> fields = { ... 'title': 'The Book', ... 'year': '2000', ... } >>> e = Entry('book', fields=fields) >>> book_format = sentence(sep=', ') [ ... field('title'), field('year'), optional [field('sdf')] ... ] >>> print book_format.format_data(e).plaintext() The Book, 2000. >>> print words ['one', 'two', words ['three', 'four']].format_data(e).plaintext() one two three four """ from pybtex import richtext from pybtex.exceptions import PybtexError __test__ = {} # for doctest class Proto(object): def __init__(self, *args, **kwargs): self.args = args self.kwargs = kwargs def __call__(self, *args, **kwargs): return Node(*self.args, **self.kwargs)(*args, **kwargs) def __getitem__(self, children): return Node(*self.args, **self.kwargs)[children] def __repr__(self): return repr(Node(*self.args, **self.kwargs)) def format_data(self, *args, **kwargs): return Node(*self.args, **self.kwargs).format_data(*args, **kwargs) def format(self): return self.format_data(None) class Node(object): def __init__(self, name, f): self.name = name self.f = f self.args = [] self.kwargs = {} self.children = [] def __call__(self, *args, **kwargs): self.args = args self.kwargs.update(kwargs) return self def __getitem__(self, children): if isinstance(children, (list, tuple)): self.children = children else: self.children.append(children) return self def __repr__(self): """ >>> join(', ') join(', ') >>> join join >>> join ['a'] join ['a'] >>> join ['a', 'b', 'c'] join ['a', 'b', 'c'] >>> join(' ') ['a', 'b', 'c'] join(' ') ['a', 'b', 'c'] >>> join(sep=' ') ['a', 'b', 'c'] join(sep=' ') ['a', 'b', 'c'] >>> join(sep=' ') [tag('em') ['a', 'b', 'c']] join(sep=' ') [tag('em') ['a', 'b', 'c']] """ params = [] args_repr = ', '.join(repr(arg) for arg in self.args) if args_repr: params.append(args_repr) kwargs_repr = ', '.join('%s=%s' % (key, repr(value)) for (key, value) in self.kwargs.iteritems()) if kwargs_repr: params.append(kwargs_repr) if params: params_repr = '(%s)' % ', '.join(params) else: params_repr = '' if self.children: children_repr = ' [%s]' % ', '.join(repr(child) for child in self.children) else: children_repr = '' return ''.join([self.name, params_repr, children_repr]) def format_data(self, data): """Format the given data into a piece of richtext.Text""" return self.f(self.children, data, *self.args, **self.kwargs) def format(self): """A convenience function to be used instead of format_data when no data is needed. """ return self.format_data(None) def _format_data(node, data): try: f = node.format_data except AttributeError: return unicode(node) else: return f(data) def _format_list(list_, data): return (_format_data(part, data) for part in list_) def node(f): if f.__doc__: __test__[f.__name__] = f return Proto(f.__name__, f) @node def join(children, data, sep='', sep2=None, last_sep=None): """Join text fragments together. >>> print join.format().plaintext() <BLANKLINE> >>> print join ['a', 'b', 'c', 'd', 'e'].format().plaintext() abcde >>> print join(sep=', ', sep2=' and ', last_sep=', and ') ['Tom', 'Jerry'].format().plaintext() Tom and Jerry >>> print join(sep=', ', sep2=' and ', last_sep=', and ') ['Billy', 'Willy', 'Dilly'].format().plaintext() Billy, Willy, and Dilly """ if sep2 is None: sep2 = sep if last_sep is None: last_sep = sep parts = [part for part in _format_list(children, data) if part] if len(parts) <= 1: return richtext.Text(*parts) elif len(parts) == 2: return richtext.Text(sep2).join(parts) else: return richtext.Text(last_sep).join([richtext.Text(sep).join(parts[:-1]), parts[-1]]) @node def words(children, data, sep=' '): """Join text fragments with spaces or something else.""" return join(sep) [children].format_data(data) @node def together(children, data, last_tie=True): """ Try to keep words together, like BibTeX does. >>> print together ['very', 'long', 'road'].format().plaintext() very long<nbsp>road >>> print together ['a', 'very', 'long', 'road'].format().plaintext() a<nbsp>very long<nbsp>road """ from pybtex.bibtex.names import tie_or_space tie = richtext.Text(richtext.nbsp) space = richtext.Text(' ') parts = [part for part in _format_list(children, data) if part] if not parts: return richtext.Text() if len(parts) <= 2: tie2 = tie if last_tie else tie_or_space(parts[0], tie, space) return tie2.join(parts) else: last_tie = tie if last_tie else tie_or_space(parts[-1], tie, space) return richtext.Text(parts[0], tie_or_space(parts[0], tie, space), space.join(parts[1:-1]), last_tie, parts[-1]) @node def sentence(children, data, capfirst=True, add_period=True, sep=', '): """Join text fragments, capitalyze the first letter, add a period to the end. >>> print sentence.format().plaintext() <BLANKLINE> >>> print sentence(sep=' ') ['mary', 'had', 'a', 'little', 'lamb'].format().plaintext() Mary had a little lamb. >>> print sentence(capfirst=False, add_period=False) ['uno', 'dos', 'tres'].format().plaintext() uno, dos, tres """ text = join(sep) [children].format_data(data) if capfirst: text = text.capfirst() if add_period: text = text.add_period() return text class FieldIsMissing(PybtexError): def __init__(self, field_name, entry): self.field_name = field_name super(FieldIsMissing, self).__init__( 'missing field: %s in %s' % (field_name, entry)) @node def field(children, data, name, apply_func=None): """Return the contents of the bibliography entry field.""" assert not children try: field = data.fields[name] except KeyError: raise FieldIsMissing(name, data) else: if apply_func: field = apply_func(field) return field @node def names(children, data, role, **kwargs): """Return formatted names.""" assert not children try: persons = data.persons[role] except KeyError: # role is a bibtex field so it makes sense # to raise FieldIsMissing; optional will catch it raise FieldIsMissing(role, data) from pybtex.style.names.plain import NameStyle name_style = NameStyle() return join(**kwargs) [[name_style.format(person) for person in persons]].format_data(data) @node def optional(children, data): """If children contain a missing bibliography field, return None. Else return formatted children. >>> from pybtex.database import Entry >>> template = optional [field('volume'), optional['(', field('number'), ')']] >>> print template.format_data(Entry('article')) [] """ try: return richtext.Text(*_format_list(children, data)) except FieldIsMissing: return richtext.Text() @node def optional_field(children, data, *args, **kwargs): assert not children return optional [field(*args, **kwargs)].format_data(data) @node def tag(children, data, name): """Wrap text into a tag. >>> import pybtex.backends.html >>> html = pybtex.backends.html.Backend() >>> print tag('emph') ['important'].format().render(html) <em>important</em> >>> print sentence ['ready', 'set', tag('emph') ['go']].format().render(html) Ready, set, <em>go</em>. """ parts = _format_list(children, data) return richtext.Tag(name, *_format_list(children, data)) @node def first_of(children, data): """Return first nonempty child.""" for child in _format_list(children, data): if child: return child return richtext.Text()
0d90a0e294b9f072e189229811680e4b4e3babb1
a777170c979214015df511999f5f08fc2e0533d8
/train.py
e6fbe847bc160c06cca04e2c8f32707f3e1cf0ac
[ "MIT", "Apache-2.0", "BSD-3-Clause" ]
permissive
srlee-ai/claf
210b2d51918cf210683e7489ccb8347cb8b1f146
89b3e5c5ec0486886876ea3bac381508c6a6bf58
refs/heads/master
2021-02-13T04:38:36.198288
2020-03-03T15:01:01
2020-03-03T15:01:01
244,661,892
0
0
MIT
2020-03-03T14:45:52
2020-03-03T14:45:52
null
UTF-8
Python
false
false
248
py
# -*- coding: utf-8 -*- from claf.config import args from claf.learn.experiment import Experiment from claf.learn.mode import Mode if __name__ == "__main__": experiment = Experiment(Mode.TRAIN, args.config(mode=Mode.TRAIN)) experiment()
34ac7a3126ac16fa1d6c38c6a98abcbeeac04fa3
cc18ad6df3249b891a8fb6491a940ac2a33d284a
/tests/test_l.py
8f31bdd414ae7368ace95e1ffa2f21be89d241f8
[]
no_license
ASU-CompMethodsPhysics-PHY494/activity-03-python_calculator
39ee8d654a3376a51a432179efd4c7a7e1de82d8
60acaaf07338294180e9c804d2343b4f4d41304d
refs/heads/main
2023-02-24T20:33:55.020537
2021-01-28T16:23:31
2021-01-28T16:23:31
333,042,224
0
1
null
null
null
null
UTF-8
Python
false
false
131
py
import pytest from .tst import _test_variable def test_l(name='l', reference=-1+3j): return _test_variable(name, reference)
23a2097a7cc61138e387807676a9e26a1c578749
48e124e97cc776feb0ad6d17b9ef1dfa24e2e474
/sdk/python/pulumi_azure_native/web/list_web_app_site_backups_slot.py
d462ca9222f2a90ee8600578a233a9c59f113a18
[ "BSD-3-Clause", "Apache-2.0" ]
permissive
bpkgoud/pulumi-azure-native
0817502630062efbc35134410c4a784b61a4736d
a3215fe1b87fba69294f248017b1591767c2b96c
refs/heads/master
2023-08-29T22:39:49.984212
2021-11-15T12:43:41
2021-11-15T12:43:41
null
0
0
null
null
null
null
UTF-8
Python
false
false
3,748
py
# coding=utf-8 # *** WARNING: this file was generated by the Pulumi SDK Generator. *** # *** Do not edit by hand unless you're certain you know what you are doing! *** import warnings import pulumi import pulumi.runtime from typing import Any, Mapping, Optional, Sequence, Union, overload from .. import _utilities from . import outputs __all__ = [ 'ListWebAppSiteBackupsSlotResult', 'AwaitableListWebAppSiteBackupsSlotResult', 'list_web_app_site_backups_slot', 'list_web_app_site_backups_slot_output', ] @pulumi.output_type class ListWebAppSiteBackupsSlotResult: """ Collection of backup items. """ def __init__(__self__, next_link=None, value=None): if next_link and not isinstance(next_link, str): raise TypeError("Expected argument 'next_link' to be a str") pulumi.set(__self__, "next_link", next_link) if value and not isinstance(value, list): raise TypeError("Expected argument 'value' to be a list") pulumi.set(__self__, "value", value) @property @pulumi.getter(name="nextLink") def next_link(self) -> str: """ Link to next page of resources. """ return pulumi.get(self, "next_link") @property @pulumi.getter def value(self) -> Sequence['outputs.BackupItemResponse']: """ Collection of resources. """ return pulumi.get(self, "value") class AwaitableListWebAppSiteBackupsSlotResult(ListWebAppSiteBackupsSlotResult): # pylint: disable=using-constant-test def __await__(self): if False: yield self return ListWebAppSiteBackupsSlotResult( next_link=self.next_link, value=self.value) def list_web_app_site_backups_slot(name: Optional[str] = None, resource_group_name: Optional[str] = None, slot: Optional[str] = None, opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableListWebAppSiteBackupsSlotResult: """ Collection of backup items. API Version: 2020-12-01. :param str name: Name of the app. :param str resource_group_name: Name of the resource group to which the resource belongs. :param str slot: Name of the deployment slot. If a slot is not specified, the API will get backups of the production slot. """ __args__ = dict() __args__['name'] = name __args__['resourceGroupName'] = resource_group_name __args__['slot'] = slot if opts is None: opts = pulumi.InvokeOptions() if opts.version is None: opts.version = _utilities.get_version() __ret__ = pulumi.runtime.invoke('azure-native:web:listWebAppSiteBackupsSlot', __args__, opts=opts, typ=ListWebAppSiteBackupsSlotResult).value return AwaitableListWebAppSiteBackupsSlotResult( next_link=__ret__.next_link, value=__ret__.value) @_utilities.lift_output_func(list_web_app_site_backups_slot) def list_web_app_site_backups_slot_output(name: Optional[pulumi.Input[str]] = None, resource_group_name: Optional[pulumi.Input[str]] = None, slot: Optional[pulumi.Input[str]] = None, opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[ListWebAppSiteBackupsSlotResult]: """ Collection of backup items. API Version: 2020-12-01. :param str name: Name of the app. :param str resource_group_name: Name of the resource group to which the resource belongs. :param str slot: Name of the deployment slot. If a slot is not specified, the API will get backups of the production slot. """ ...
47253660053b62e3a3400992df6e8e5c92705a2f
9e988c0dfbea15cd23a3de860cb0c88c3dcdbd97
/sdBs/AllRun/pg_2336+264/sdB_PG_2336+264_lc.py
5a89a24209124435ed571d1c422e1be8d34c29e3
[]
no_license
tboudreaux/SummerSTScICode
73b2e5839b10c0bf733808f4316d34be91c5a3bd
4dd1ffbb09e0a599257d21872f9d62b5420028b0
refs/heads/master
2021-01-20T18:07:44.723496
2016-08-08T16:49:53
2016-08-08T16:49:53
65,221,159
0
0
null
null
null
null
UTF-8
Python
false
false
346
py
from gPhoton.gAperture import gAperture def main(): gAperture(band="NUV", skypos=[354.680542,26.667064], stepsz=30., csvfile="/data2/fleming/GPHOTON_OUTPU/LIGHTCURVES/sdBs/sdB_PG_2336+264 /sdB_PG_2336+264_lc.csv", maxgap=1000., overwrite=True, radius=0.00555556, annulus=[0.005972227,0.0103888972], verbose=3) if __name__ == "__main__": main()
ac01b0964e31f632558c44346006f03235d2cbaf
5021cd17ce5fb52f7859d69ffa660c1393820fea
/34.py
273b15775856ae587f4dd416663870f2c79d0f4c
[]
no_license
slavo3dev/python_100_exercises
720e4f76de670fa969c9d62bddee1db20caf24f1
2983131a2a3ec40bbf3460a2e1baed57c6514e6a
refs/heads/master
2021-08-23T05:22:21.673477
2017-12-03T16:14:48
2017-12-03T16:14:48
null
0
0
null
null
null
null
UTF-8
Python
false
false
407
py
# Question: The following script throws a NameError in the last line saying that c is not defined. Please fix the function so that there is no error and the last line is able to print out the value of c (i.e. 1 ). def foo(): global c = 1 return c foo() print(c) # c is not defined becuse variable is inside the fucntion foo, and c is a local var # we can declare var c with global key word
374c960f285d4baaf8c9ce3b8205ea9135cd46b5
d571d407cfda435fcab8b7ccadb1be812c7047c7
/guild/tests/samples/projects/flags-dest/submod.py
6416966dcb06abb15601a3c47796545306d1ac5c
[ "Apache-2.0", "LicenseRef-scancode-free-unknown" ]
permissive
guildai/guildai
2d8661a2a6bf0d1ced6334095c8bf5a8e391d8af
149055da49f57eaf4aec418f2e339c8905c1f02f
refs/heads/main
2023-08-25T10:09:58.560059
2023-08-12T20:19:05
2023-08-12T20:19:05
105,057,392
833
86
Apache-2.0
2023-08-07T19:34:27
2017-09-27T18:57:50
Python
UTF-8
Python
false
false
169
py
import argparse p = argparse.ArgumentParser() p.add_argument("--bar", default=456) if __name__ == "__main__": args = p.parse_args() print("bar: %s", args.bar)
4be16408f688e6b5cb887f4a18ae62b9a56fd20a
af3ec207381de315f4cb6dddba727d16d42d6c57
/dialogue-engine/test/programytest/parser/template/node_tests/richmedia_tests/test_carousel.py
00edd17c4ac2091155b647b8e43f064c5c9e3f10
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
mcf-yuichi/cotoba-agent-oss
02a5554fe81ce21517f33229101013b6487f5404
ce60833915f484c4cbdc54b4b8222d64be4b6c0d
refs/heads/master
2023-01-12T20:07:34.364188
2020-11-11T00:55:16
2020-11-11T00:55:16
null
0
0
null
null
null
null
UTF-8
Python
false
false
2,968
py
""" Copyright (c) 2020 COTOBA DESIGN, Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. """ from programy.parser.template.nodes.base import TemplateNode from programy.parser.template.nodes.richmedia.carousel import TemplateCarouselNode from programy.parser.template.nodes.richmedia.card import TemplateCardNode from programy.parser.template.nodes.richmedia.button import TemplateButtonNode from programy.parser.template.nodes.word import TemplateWordNode from programytest.parser.base import ParserTestsBaseClass class TemplateCarouselNodeTests(ParserTestsBaseClass): def test_carousel_node(self): root = TemplateNode() self.assertIsNotNone(root) self.assertIsNotNone(root.children) self.assertEqual(len(root.children), 0) carousel = TemplateCarouselNode() card = TemplateCardNode() card._image = TemplateWordNode("http://Servusai.com") card._title = TemplateWordNode("Servusai.com") card._subtitle = TemplateWordNode("The home of ProgramY") button = TemplateButtonNode() button._text = TemplateWordNode("More...") button._url = TemplateWordNode("http://Servusai.com/aiml") card._buttons.append(button) carousel._cards.append(card) root.append(carousel) resolved = root.resolve(self._client_context) self.assertIsNotNone(resolved) texts1 = "<carousel><card><image>http://Servusai.com</image><title>Servusai.com</title><subtitle>The home of ProgramY</subtitle>" + \ "<button><text>More...</text><url>http://Servusai.com/aiml</url></button></card></carousel>" self.assertEqual(texts1, resolved) texts2 = "<carousel><card><image>http://Servusai.com</image><title>Servusai.com</title><subtitle>The home of ProgramY</subtitle>" + \ "<button><text>More...</text><url>http://Servusai.com/aiml</url></button></card></carousel>" self.assertEqual(texts2, root.to_xml(self._client_context))
21c0443c59c65a77addd1fcc15d3b94c4b037acc
7884d75d9835493ff627d0468e94fe7a838a6aa1
/ocr_server/restapi/recognize.py
ff03aad6edbfd4381bcff7e6a1e274ae8b269893
[]
no_license
fjibj/OCRServer
d2c7c5217046ffbec6f2affdd1c77379f9453d67
e23c23198fc89feb2f714faf2d022b1e21ac2151
refs/heads/master
2020-03-18T18:50:51.501629
2017-01-18T08:35:40
2017-01-18T08:35:40
null
0
0
null
null
null
null
UTF-8
Python
false
false
817
py
#!/usr/bin/env python # -*- coding: utf-8 -*- import yaml CONFIG_PATH = './recognize/config.yaml' CONFIG_DATA = {} def loadConfig(): global CONFIG_DATA f = open(CONFIG_PATH, encoding='utf-8') CONFIG_DATA = yaml.safe_load(f) f.close() for name in CONFIG_DATA: config = CONFIG_DATA[name] if 'option' not in config['feature']: config['feature']['option'] = {} if 'rotate' not in config: config['rotate'] = 'perspective' if 'validate' not in config: config['validate'] = { 'roi': None } if 'roi' not in config['validate']: config['validate']['roi'] = None if 'roi' not in config: config['roi'] = {} return def getConfig(): return CONFIG_DATA
[ "=" ]
=
62fd7f83ae140306bbea3251e99b3e08f097a951
61dfa0ac80a6979d135e969b5b7b78a370c16904
/analysis/projections/get_projection_alpha_dm.py
7abcc8371fcb01ab5adfeceb45330d9e01e88595
[]
no_license
bvillasen/cosmo_tools
574d84f9c18d92d2a9610d1d156113730d80f5a4
6bb54534f2242a15a6edcf696f29a3cf22edd342
refs/heads/master
2021-07-13T06:43:32.902153
2020-10-05T21:17:30
2020-10-05T21:17:30
207,036,538
0
0
null
null
null
null
UTF-8
Python
false
false
6,967
py
import sys, os import numpy as np import h5py as h5 import matplotlib.pyplot as plt # from mpl_toolkits.axes_grid1 import make_axes_locatable # import matplotlib.transforms as tfrms # import matplotlib # import matplotlib as mpl # mpl.rcParams['savefig.pad_inches'] = 0 # import palettable.cmocean.sequential as colors # list_of_colors = ['Algae', 'Amp', 'Deep', 'Dense', 'Gray', 'Haline', 'Ice', # 'Matter', 'Oxy', 'Phase', 'Solar', 'Speed', 'Tempo', 'Thermal', 'Turbid'] cosmo_dir = os.path.dirname(os.path.dirname(os.getcwd())) + '/' dataDir = cosmo_dir + 'data/' subDirectories = [x[0] for x in os.walk(cosmo_dir)] sys.path.extend(subDirectories) from load_data_cholla import load_snapshot_data, load_snapshot_data_distributed, load_snapshot_data_distributed_periodix_x from tools import * from congrid import * import scipy.ndimage cosmo_dir = os.path.dirname(os.path.dirname(os.getcwd())) + '/' subDirectories = [x[0] for x in os.walk(cosmo_dir)] sys.path.extend(subDirectories) from domain_decomposition import get_domain_block from projection_functions import rescale_image, get_rescaled_image def get_distance_factor( index, index_front, index_middle, index_b, middle_point): index_rescaled = (index) - index_middle middle_point = np.float(middle_point) slope = ( middle_point ) / index_middle - index_front if index_rescaled <= index_middle: index_rescaled = index_front + slope*index else: index_rescaled = index - index_middle + middle_point index_rescaled = np.float( index_rescaled) if index_rescaled < 1: index_rescaled = 1 return index_rescaled**(-0.8) def get_distance_factor_linear( index, index_front, index_b, value_back): value_front = 1.0 slope = ( value_back - value_front ) / (index_b - index_front) distance_factor = value_front + slope * index return distance_factor def get_transparency_factor_linear( indx, val_f, val_m, val_b, indx_f, indx_m0, indx_m1, indx_b, ): if indx <= indx_m0: slope = float(val_m - val_f) / ( indx_m0 - indx_f ) factor = val_f + slope*indx elif indx <= indx_m1: factor = val_m else: slope = float(val_b - val_m) / ( indx_b - indx_m1 ) factor = val_m + slope* (indx - indx_m1) return factor dataDir = '/data/groups/comp-astro/bruno/' # dataDir = '/gpfs/alpine/proj-shared/ast149/' nPoints = 2048 # size_front = 5120 size_front =int ( 2048 * 1.4 ) size_back = int (2048 * 0.8 ) field = 'density' inDir = dataDir + 'cosmo_sims/{0}_hydro_50Mpc/output_files_pchw18/'.format(nPoints) if field == 'density': output_dir = dataDir + 'cosmo_sims/{0}_hydro_50Mpc/projections_pchw18/dm/projections_{1}_alpha_3/'.format(nPoints,size_front) use_mpi = True if use_mpi : from mpi4py import MPI comm = MPI.COMM_WORLD rank = comm.Get_rank() nprocs = comm.Get_size() else: rank = 0 nprocs = 1 nSnap = 169 if nprocs == 1: show_progess = True else: show_progess = False if rank == 0: show_progess = True Lbox = 50000 proc_grid = [ 8, 8, 8] box_size = [ Lbox, Lbox, Lbox ] grid_size = [ 2048, 2048, 2048 ] domain = get_domain_block( proc_grid, box_size, grid_size ) n_depth = 512 # n_per_run = 1 # index_start_range = range( index*n_per_run, (index+1)*n_per_run) if rank == 0: create_directory( output_dir ) n_index_total = nPoints n_proc_snaps= (n_index_total-1) // nprocs + 1 index_start_range = np.array([ rank + i*nprocs for i in range(n_proc_snaps) ]) index_start_range = index_start_range[ index_start_range < n_index_total ] if len(index_start_range) == 0: exit() if not use_mpi: index_start_range = [0] print('Generating: {0} {1}\n'.format( rank, index_start_range)) data_type = 'particles' indx_start = 0 for i, indx_start in enumerate(index_start_range): # if indx_start > 0: continue print("Index: {0}".format(indx_start)) grid_complete_size = [ 2048, 2048, 2048 ] subgrid_x = [ indx_start, indx_start + n_depth ] subgrid_y = [ 0, 2048 ] subgrid_z = [ 0, 2048 ] subgrid = [ subgrid_x, subgrid_y, subgrid_z ] precision = np.float32 data_snapshot = load_snapshot_data_distributed_periodix_x( nSnap, inDir, data_type, field, subgrid, domain, precision, proc_grid, grid_complete_size, show_progess=show_progess ) if data_type == 'particles': current_z = data_snapshot['current_z'] if data_type == 'hydro': current_z = data_snapshot['Current_z'] data = data_snapshot[data_type][field] if field == 'density': clip_max = 2116267.2/10 clip_min = 0 data = np.clip(data, clip_min, clip_max) if show_progess: print('') size_original = ( nPoints, nPoints ) size_all = np.linspace( size_front, size_back, n_depth).astype(np.int) size_output = np.array([2160, 3840 ]) projection_color = np.zeros( size_output ) projection_distance = np.zeros( size_output ) projection_alpha = np.zeros( size_output ) distance_factor_list = [] for indx_x in range(n_depth): slice_original = data[indx_x] size_slice = size_all[indx_x] slice_rescaled = get_rescaled_image( slice_original, size_slice, size_output ) transparency_factor = get_transparency_factor_linear( indx_x, 0.0, 1.0, 0.0, 0, 180, 256, n_depth) # transparency_factor = get_transparency_factor_linear( indx_x, 0.0, 1.0, 0.0, 0, 256, 256+128, n_depth) slice_masked = slice_rescaled.copy() min_dens_mask = 1 slice_masked = np.clip( slice_masked, a_min=min_dens_mask, a_max=None) projection_alpha += np.log10(slice_masked) * transparency_factor**3 distance_factor = (transparency_factor)**(2) projection_color += slice_rescaled projection_distance += slice_rescaled * distance_factor distance_factor_list.append(distance_factor) if show_progess: terminalString = '\r Slice: {0}/{1} distance_factor:{2} transparecy:{3}'.format(indx_x, n_depth, distance_factor, transparency_factor ) sys.stdout. write(terminalString) sys.stdout.flush() if show_progess: print("") #Write the projection to a file: n_image = indx_start out_file_name = output_dir + 'projection_{2}_{3}_{0}_{1}.h5'.format( nSnap, n_image, data_type, field ) out_file = h5.File( out_file_name, 'w') out_file.attrs['current_z'] = current_z group_type = out_file.create_group( data_type ) group_field = group_type.create_group( field ) data_set = group_field.create_dataset( 'color', data= projection_color ) data_set.attrs['max'] = projection_color.max() data_set.attrs['min'] = projection_color.min() data_set = group_field.create_dataset( 'distance', data= projection_distance ) data_set.attrs['max'] = projection_distance.max() data_set.attrs['min'] = projection_distance.min() data_set = group_field.create_dataset( 'alpha', data= projection_alpha ) data_set.attrs['max'] = projection_alpha.max() data_set.attrs['min'] = projection_alpha.min() out_file.close() print("Saved File {0} / {1}: {2}\n".format(i, len(index_start_range), out_file_name ))
18cb031ce6319630a87080c1a289dd048cab29ae
de328c69238b9c730781ab79bac50610bc36e53d
/wdreconcile/wikidatavalue.py
4df3de858fb6e93247823146a60dd6052bb2d42b
[ "MIT" ]
permissive
Henri-Lo/openrefine-wikidata
c6ac2870fe8f5e1210edf001ad81e233aa9bde82
5df3ee99f8658c6bb2501cadaaf8a628e18d8843
refs/heads/master
2021-01-01T18:27:13.254163
2017-07-25T18:32:19
2017-07-25T18:32:19
null
0
0
null
null
null
null
UTF-8
Python
false
false
12,008
py
import dateutil.parser from urllib.parse import urlparse, urlunparse import math from .utils import to_q, fuzzy_match_strings, match_ints, match_floats wdvalue_mapping = {} def register(cls): wdvalue_mapping[cls.value_type] = cls return cls # TODO treat somevalue and novalue differently class WikidataValue(object): """ This class represents any target value of a Wikidata claim. """ value_type = None def __init__(self, **json): self.json = json def match_with_str(self, s, item_store): """ Given a string s (the target reconciliation value), return a matching score with the WikidataValue. An ItemStore is provided to fetch information about items if needed. Scores should be returned between 0 and 100 :param s: the string to match with :param item_store: an ItemStore, to retrieve items if needed """ return 0 @classmethod def from_datavalue(self, wd_repr): """ Creates a WikidataValue from the JSON representation of a Wikibase datavalue. For now, somevalues are treated just like novalues: >>> WikidataValue.from_datavalue({'snaktype': 'somevalue', 'datatype': 'wikibase-item', 'property': 'P61'}).is_novalue() True """ typ = wd_repr['datatype'] val = wd_repr.get('datavalue', {}) # not provided for somevalue cls = wdvalue_mapping.get(typ, UndefinedValue) return cls.from_datavalue(val) def is_novalue(self): return self.json == {} def as_string(): """ String representation of the value, for the old API that only returns strings """ raise NotImplemented def as_openrefine_cell(self, lang, item_store): """ Returns a JSON representation for the OpenRefine extend API. Subclasses should reimplement _as_cell instead. :param lang: the language in which the cell should be displayed :param item_store: an ItemStore, to retrieve items if needed """ if self.is_novalue(): return {} return self._as_cell(lang, item_store) def _as_cell(self, lang, item_store): """ This method can assume that the value is not a novalue :param lang: the language in which the cell should be displayed :param item_store: an ItemStore, to retrieve items if needed """ raise NotImplemented def __getattr__(self, key): """ For convenience: """ return self.json[key] def __eq__(self, other): if isinstance(other, WikidataValue): return (other.value_type == self.value_type and other.json == self.json) return False def __ne__(self, other): return not self.__eq__(other) def __repr__(self): return ("%s(%s)" % (type(self).__name__, (",".join([key+'='+val.__repr__() for key, val in self.json.items()])))) def __hash__(self): val = (self.value_type, tuple(sorted(self.json.items(), key=lambda k:k[0]))) return val.__hash__() @register class ItemValue(WikidataValue): """ Fields: - id (string) """ value_type = "wikibase-item" @classmethod def from_datavalue(self, wd_repr): v = wd_repr.get('value') if not v: return ItemValue() else: return ItemValue(id=v.get('id')) def match_with_str(self, s, item_store): # First check if the target string looks like a Qid qid = to_q(s) if qid: return 100 if qid == self.id else 0 # Then check for a novalue match if not s and self.is_novalue(): return 100 # Otherwise try to match the string to the labels and # aliases of the item. item = item_store.get_item(self.id) labels = list(item.get('labels', {}).values()) aliases = item.get('aliases', []) matching_scores = [ fuzzy_match_strings(s, name) for name in labels+aliases ] if not matching_scores: return 0 else: return max(matching_scores) def as_string(): return self.json.get('id', '') def _as_cell(self, lang, item_store): return { 'id': self.id, 'name': item_store.get_label(self.id, lang), } @register class UrlValue(WikidataValue): """ Fields: - value (the URL itself) - parsed (by urllib) """ value_type = "url" def __init__(self, **kwargs): super(UrlValue, self).__init__(**kwargs) val = kwargs.get('value') self.parsed = None if val: try: self.parsed = urlparse(val) if not self.parsed.netloc: self.parsed = None raise ValueError self.canonical = self.canonicalize(self.parsed) except ValueError: pass def canonicalize(self, parsed): """ Take a parsed URL and returns its canonicalized form for exact matching """ return urlunparse( ('', # no scheme parsed[1], parsed[2], parsed[3], parsed[4], parsed[5])) @classmethod def from_datavalue(self, wd_repr): return UrlValue(value=wd_repr.get('value', {})) def match_with_str(self, s, item_store): # no value if self.parsed is None: return 0 # let's see if the candidate value is a URL matched_val = s try: parsed_s = urlparse(s) matched_val = self.canonicalize(parsed_s) except ValueError: pass return 100 if matched_val == self.canonical else 0 def as_string(self): return self.json.get('value', '') def _as_cell(self, lang, item_store): return { 'str': self.value } @register class CoordsValue(WikidataValue): """ Fields: - latitude (float) - longitude (float) - altitude (float) - precision (float) - globe (string) >>> int(CoordsValue(latitude=53.3175,longitude=-4.6204).match_with_str("53.3175,-4.6204", None)) 100 >>> int(CoordsValue(latitude=53.3175,longitude=-4.6204).match_with_str("53.3175,-5.6204", None)) 0 """ value_type = "globe-coordinate" @classmethod def from_datavalue(self, wd_repr): return CoordsValue(**wd_repr.get('value', {})) def match_with_str(self, s, item_store): # parse the string as coordinates parts = s.split(',') if len(parts) != 2: return 0. try: lat = float(parts[0]) lng = float(parts[1]) except ValueError: return 0. # measure the distance with the target coords # (flat earth approximation) diflat = lat - self.latitude diflng = lng - self.longitude dist = math.sqrt(diflat*diflat + diflng*diflng) dist_in_km = (dist / 180) * math.pi * 6371 # earth radius # TODO take the precision into account return 100*max(0, 1 - dist_in_km) def as_string(self): return str(self.json.get('latitude', ''))+','+str(self.json.get('longitude', '')) def _as_cell(self, lang, item_store): return { 'str': self.as_string() } @register class StringValue(WikidataValue): """ Fields: - value (string) """ value_type = "string" @classmethod def from_datavalue(cls, wd_repr): return cls( value=wd_repr.get('value', {})) def match_with_str(self, s, item_store): ref_val = self.json.get('value') if not ref_val: return 0 return fuzzy_match_strings(ref_val, s) def as_string(self): return self.json.get('value', '') def _as_cell(self, lang, item_store): return { 'str': self.value } @register class IdentifierValue(StringValue): """ Fields: - value (string) """ value_type = "external-id" def match_with_str(self, s, item_store): return 100 if s.strip() == self.value else 0 @register class QuantityValue(WikidataValue): """ Fields: - amount (float) - unit (string) """ value_type = "quantity" def __init__(self, **values): super(QuantityValue, self).__init__(**values) self.amount = values.get('amount') if self.amount is not None: self.amount = float(self.amount) @classmethod def from_datavalue(cls, wd_repr): return cls(**wd_repr.get('value', {})) def match_with_str(self, s, item_store): try: f = float(s) if self.amount is not None: return match_floats(self.amount, f) except ValueError: pass return 0 def as_string(self): return str(self.json.get('amount', '')) def is_novalue(self): return self.amount is None def _as_cell(self, lang, item_store): return { 'float': self.amount } @register class MonolingualValue(WikidataValue): """ Fields: - text (string) - language (string) """ value_type = "monolingualtext" @classmethod def from_datavalue(cls, wd_repr): return cls(**wd_repr) def match_with_str(self, s, item_store): ref_val = self.json.get('text') if not ref_val: return 0 return fuzzy_match_strings(ref_val, s) def as_string(self): return self.json.get('text') or '' def _as_cell(self, lang, item_store): return { 'str': self.text } @register class TimeValue(WikidataValue): """ Fields: - time (as iso format, with a plus in front) - parsed (as python datetime object) - timezone - before - after - precision - calglobe-coordinateendarmodel """ value_type = "time" def __init__(self, **values): super(TimeValue, self).__init__(**values) time = self.time if time.startswith('+'): time = time[1:] try: self.parsed = dateutil.parser.parse(time) except ValueError: self.parsed = None @classmethod def from_datavalue(cls, wd_repr): return cls(**wd_repr.get('value', {})) def match_with_str(self, s, item_store): # TODO convert to a timestamp # TODO compute difference # TODO convert to a ratio based on the precision return 0 def as_string(self): return str(self.json.get('time', '')) def is_novalue(self): return self.parsed is None def _as_cell(self, lang, item_store): return { 'date': self.parsed.isoformat() } @register class MediaValue(IdentifierValue): """ Fields: - value """ value_type = "commonsMedia" @register class DataTableValue(IdentifierValue): """ Fields: - value (string) """ value_type = "tabular-data" class UndefinedValue(WikidataValue): """ This is different from "novalue" (which explicitely defines an empty value. This class is for value filters which want to return an undefined value. It is purposely not registered as it does not match any Wikibase value type. (The equivalent in Wikibase would be not to state a claim at all). """ value_type = "undefined" @classmethod def from_datavalue(cls, wd_repr): return cls() def match_with_str(self, s, item_store): return 0 def is_novalue(self): return False def as_string(self): return "" def _as_cell(self, lang, item_store): return {}
5b2179a2439730b1162882adb56bcf9da6062535
2bb90b620f86d0d49f19f01593e1a4cc3c2e7ba8
/pardus/tags/2008.1/applications/games/simutrans-waste/actions.py
9fcfaccbd3668b1ec6905a88338d406b19946b22
[]
no_license
aligulle1/kuller
bda0d59ce8400aa3c7ba9c7e19589f27313492f7
7f98de19be27d7a517fe19a37c814748f7e18ba6
refs/heads/master
2021-01-20T02:22:09.451356
2013-07-23T17:57:58
2013-07-23T17:57:58
null
0
0
null
null
null
null
UTF-8
Python
false
false
627
py
#!/usr/bin/python # -*- coding: utf-8 -*- # # Licensed under the GNU General Public License, version 2. # See the file http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt from pisi.actionsapi import shelltools from pisi.actionsapi import pisitools import os def fixperms(d): for root, dirs, files in os.walk(d): for name in dirs: shelltools.chmod(os.path.join(root, name), 0755) for name in files: shelltools.chmod(os.path.join(root, name), 0644) WorkDir = "simutrans" NoStrip = "/" def install(): fixperms("pak") pisitools.insinto("/usr/share/simutrans/pak", "pak/*")
7a2568b90975aa483686fc1009ae279abc99eaf3
50cd3151800fc03c3db208e6e48e3e04a788ea42
/msgraph-cli-extensions/src/notes/azext_notes/generated/_help.py
e0b33cf8f597cbaaaddafecb124637bf587c9a66
[ "MIT" ]
permissive
isabella232/msgraph-cli
ba761b1047f9b71fd6b86fa1feedc4a949602eeb
de2e0381ec29e6e0cd7ab47d75f4e7e80e1c1e2b
refs/heads/main
2023-01-21T09:22:13.246565
2020-10-12T13:55:28
2020-10-12T13:55:28
null
0
0
null
null
null
null
UTF-8
Python
false
false
986,960
py
# -------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License.txt in the project root for # license information. # # Code generated by Microsoft (R) AutoRest Code Generator. # Changes may cause incorrect behavior and will be lost if the code is # regenerated. # -------------------------------------------------------------------------- # pylint: disable=too-many-lines from knack.help_files import helps helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property onenote for groups" """ helps['notes get-onenote'] = """ type: command short-summary: "Get onenote from groups" """ helps['notes update-onenote'] = """ type: command short-summary: "Update the navigation property onenote in groups" parameters: - name: --resources short-summary: "The image and other file resources in OneNote pages. Getting a resources collection is not \ supported, but you can get the binary content of a specific resource. Read-only. Nullable." long-summary: | Usage: --resources content=XX content-url=XX self=XX id=XX content: The content stream content-url: The URL for downloading the content self: The endpoint where you can get details about the page. Read-only. id: Read-only. Multiple actions can be specified by using more than one --resources argument. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property sections for groups" """ helps['notes create-notebook'] = """ type: command short-summary: "Create new navigation property to notebooks for groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes create-operation'] = """ type: command short-summary: "Create new navigation property to operations for groups" parameters: - name: --error short-summary: "onenoteOperationError" long-summary: | Usage: --error code=XX message=XX code: The error code. message: The error message. """ helps['notes create-page'] = """ type: command short-summary: "Create new navigation property to pages for groups" """ helps['notes create-resource'] = """ type: command short-summary: "Create new navigation property to resources for groups" """ helps['notes create-section'] = """ type: command short-summary: "Create new navigation property to sections for groups" """ helps['notes create-section-group'] = """ type: command short-summary: "Create new navigation property to sectionGroups for groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes get-notebook'] = """ type: command short-summary: "Get notebooks from groups" """ helps['notes get-operation'] = """ type: command short-summary: "Get operations from groups" """ helps['notes get-page'] = """ type: command short-summary: "Get pages from groups" """ helps['notes get-resource'] = """ type: command short-summary: "Get resources from groups" """ helps['notes get-section'] = """ type: command short-summary: "Get sections from groups" """ helps['notes get-section-group'] = """ type: command short-summary: "Get sectionGroups from groups" """ helps['notes list-notebook'] = """ type: command short-summary: "Get notebooks from groups" """ helps['notes list-operation'] = """ type: command short-summary: "Get operations from groups" """ helps['notes list-page'] = """ type: command short-summary: "Get pages from groups" """ helps['notes list-resource'] = """ type: command short-summary: "Get resources from groups" """ helps['notes list-section'] = """ type: command short-summary: "Get sections from groups" """ helps['notes list-section-group'] = """ type: command short-summary: "Get sectionGroups from groups" """ helps['notes update-notebook'] = """ type: command short-summary: "Update the navigation property notebooks in groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-operation'] = """ type: command short-summary: "Update the navigation property operations in groups" parameters: - name: --error short-summary: "onenoteOperationError" long-summary: | Usage: --error code=XX message=XX code: The error code. message: The error message. """ helps['notes update-page'] = """ type: command short-summary: "Update the navigation property pages in groups" """ helps['notes update-resource'] = """ type: command short-summary: "Update the navigation property resources in groups" """ helps['notes update-section'] = """ type: command short-summary: "Update the navigation property sections in groups" """ helps['notes update-section-group'] = """ type: command short-summary: "Update the navigation property sectionGroups in groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property sections for groups" """ helps['notes create-section'] = """ type: command short-summary: "Create new navigation property to sections for groups" """ helps['notes create-section-group'] = """ type: command short-summary: "Create new navigation property to sectionGroups for groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes get-section'] = """ type: command short-summary: "Get sections from groups" """ helps['notes get-section-group'] = """ type: command short-summary: "Get sectionGroups from groups" """ helps['notes list-section'] = """ type: command short-summary: "Get sections from groups" """ helps['notes list-section-group'] = """ type: command short-summary: "Get sectionGroups from groups" """ helps['notes update-section'] = """ type: command short-summary: "Update the navigation property sections in groups" """ helps['notes update-section-group'] = """ type: command short-summary: "Update the navigation property sectionGroups in groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property parentSectionGroup for groups" """ helps['notes create-section'] = """ type: command short-summary: "Create new navigation property to sections for groups" """ helps['notes create-section-group'] = """ type: command short-summary: "Create new navigation property to sectionGroups for groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes get-parent-notebook'] = """ type: command short-summary: "Get parentNotebook from groups" """ helps['notes get-parent-section-group'] = """ type: command short-summary: "Get parentSectionGroup from groups" """ helps['notes get-section'] = """ type: command short-summary: "Get sections from groups" """ helps['notes get-section-group'] = """ type: command short-summary: "Get sectionGroups from groups" """ helps['notes list-section'] = """ type: command short-summary: "Get sections from groups" """ helps['notes list-section-group'] = """ type: command short-summary: "Get sectionGroups from groups" """ helps['notes update-parent-notebook'] = """ type: command short-summary: "Update the navigation property parentNotebook in groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-parent-section-group'] = """ type: command short-summary: "Update the navigation property parentSectionGroup in groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes update-section'] = """ type: command short-summary: "Update the navigation property sections in groups" """ helps['notes update-section-group'] = """ type: command short-summary: "Update the navigation property sectionGroups in groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property parentSectionGroup for groups" """ helps['notes create-page'] = """ type: command short-summary: "Create new navigation property to pages for groups" """ helps['notes get-page'] = """ type: command short-summary: "Get pages from groups" """ helps['notes get-parent-notebook'] = """ type: command short-summary: "Get parentNotebook from groups" """ helps['notes get-parent-section-group'] = """ type: command short-summary: "Get parentSectionGroup from groups" """ helps['notes list-page'] = """ type: command short-summary: "Get pages from groups" """ helps['notes update-page'] = """ type: command short-summary: "Update the navigation property pages in groups" """ helps['notes update-parent-notebook'] = """ type: command short-summary: "Update the navigation property parentNotebook in groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-parent-section-group'] = """ type: command short-summary: "Update the navigation property parentSectionGroup in groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property parentSection for groups" """ helps['notes get-parent-notebook'] = """ type: command short-summary: "Get parentNotebook from groups" """ helps['notes get-parent-section'] = """ type: command short-summary: "Get parentSection from groups" """ helps['notes update-parent-notebook'] = """ type: command short-summary: "Update the navigation property parentNotebook in groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-parent-section'] = """ type: command short-summary: "Update the navigation property parentSection in groups" """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property parentSectionGroup for groups" """ helps['notes create-page'] = """ type: command short-summary: "Create new navigation property to pages for groups" """ helps['notes get-page'] = """ type: command short-summary: "Get pages from groups" """ helps['notes get-parent-notebook'] = """ type: command short-summary: "Get parentNotebook from groups" """ helps['notes get-parent-section-group'] = """ type: command short-summary: "Get parentSectionGroup from groups" """ helps['notes list-page'] = """ type: command short-summary: "Get pages from groups" """ helps['notes update-page'] = """ type: command short-summary: "Update the navigation property pages in groups" """ helps['notes update-parent-notebook'] = """ type: command short-summary: "Update the navigation property parentNotebook in groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-parent-section-group'] = """ type: command short-summary: "Update the navigation property parentSectionGroup in groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property parentSection for groups" """ helps['notes get-parent-notebook'] = """ type: command short-summary: "Get parentNotebook from groups" """ helps['notes get-parent-section'] = """ type: command short-summary: "Get parentSection from groups" """ helps['notes update-parent-notebook'] = """ type: command short-summary: "Update the navigation property parentNotebook in groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-parent-section'] = """ type: command short-summary: "Update the navigation property parentSection in groups" """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property parentSectionGroup for groups" """ helps['notes create-section'] = """ type: command short-summary: "Create new navigation property to sections for groups" """ helps['notes create-section-group'] = """ type: command short-summary: "Create new navigation property to sectionGroups for groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes get-parent-notebook'] = """ type: command short-summary: "Get parentNotebook from groups" """ helps['notes get-parent-section-group'] = """ type: command short-summary: "Get parentSectionGroup from groups" """ helps['notes get-section'] = """ type: command short-summary: "Get sections from groups" """ helps['notes get-section-group'] = """ type: command short-summary: "Get sectionGroups from groups" """ helps['notes list-section'] = """ type: command short-summary: "Get sections from groups" """ helps['notes list-section-group'] = """ type: command short-summary: "Get sectionGroups from groups" """ helps['notes update-parent-notebook'] = """ type: command short-summary: "Update the navigation property parentNotebook in groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-parent-section-group'] = """ type: command short-summary: "Update the navigation property parentSectionGroup in groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes update-section'] = """ type: command short-summary: "Update the navigation property sections in groups" """ helps['notes update-section-group'] = """ type: command short-summary: "Update the navigation property sectionGroups in groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property parentSection for groups" """ helps['notes get-parent-notebook'] = """ type: command short-summary: "Get parentNotebook from groups" """ helps['notes get-parent-section'] = """ type: command short-summary: "Get parentSection from groups" """ helps['notes update-parent-notebook'] = """ type: command short-summary: "Update the navigation property parentNotebook in groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-parent-section'] = """ type: command short-summary: "Update the navigation property parentSection in groups" """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property sections for groups" """ helps['notes create-section'] = """ type: command short-summary: "Create new navigation property to sections for groups" """ helps['notes create-section-group'] = """ type: command short-summary: "Create new navigation property to sectionGroups for groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes get-section'] = """ type: command short-summary: "Get sections from groups" """ helps['notes get-section-group'] = """ type: command short-summary: "Get sectionGroups from groups" """ helps['notes list-section'] = """ type: command short-summary: "Get sections from groups" """ helps['notes list-section-group'] = """ type: command short-summary: "Get sectionGroups from groups" """ helps['notes update-section'] = """ type: command short-summary: "Update the navigation property sections in groups" """ helps['notes update-section-group'] = """ type: command short-summary: "Update the navigation property sectionGroups in groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property parentSectionGroup for groups" """ helps['notes create-section'] = """ type: command short-summary: "Create new navigation property to sections for groups" """ helps['notes create-section-group'] = """ type: command short-summary: "Create new navigation property to sectionGroups for groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes get-parent-notebook'] = """ type: command short-summary: "Get parentNotebook from groups" """ helps['notes get-parent-section-group'] = """ type: command short-summary: "Get parentSectionGroup from groups" """ helps['notes get-section'] = """ type: command short-summary: "Get sections from groups" """ helps['notes get-section-group'] = """ type: command short-summary: "Get sectionGroups from groups" """ helps['notes list-section'] = """ type: command short-summary: "Get sections from groups" """ helps['notes list-section-group'] = """ type: command short-summary: "Get sectionGroups from groups" """ helps['notes update-parent-notebook'] = """ type: command short-summary: "Update the navigation property parentNotebook in groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-parent-section-group'] = """ type: command short-summary: "Update the navigation property parentSectionGroup in groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes update-section'] = """ type: command short-summary: "Update the navigation property sections in groups" """ helps['notes update-section-group'] = """ type: command short-summary: "Update the navigation property sectionGroups in groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property parentSectionGroup for groups" """ helps['notes create-page'] = """ type: command short-summary: "Create new navigation property to pages for groups" """ helps['notes get-page'] = """ type: command short-summary: "Get pages from groups" """ helps['notes get-parent-notebook'] = """ type: command short-summary: "Get parentNotebook from groups" """ helps['notes get-parent-section-group'] = """ type: command short-summary: "Get parentSectionGroup from groups" """ helps['notes list-page'] = """ type: command short-summary: "Get pages from groups" """ helps['notes update-page'] = """ type: command short-summary: "Update the navigation property pages in groups" """ helps['notes update-parent-notebook'] = """ type: command short-summary: "Update the navigation property parentNotebook in groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-parent-section-group'] = """ type: command short-summary: "Update the navigation property parentSectionGroup in groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property parentSectionGroup for groups" """ helps['notes create-page'] = """ type: command short-summary: "Create new navigation property to pages for groups" """ helps['notes get-page'] = """ type: command short-summary: "Get pages from groups" """ helps['notes get-parent-notebook'] = """ type: command short-summary: "Get parentNotebook from groups" """ helps['notes get-parent-section-group'] = """ type: command short-summary: "Get parentSectionGroup from groups" """ helps['notes list-page'] = """ type: command short-summary: "Get pages from groups" """ helps['notes update-page'] = """ type: command short-summary: "Update the navigation property pages in groups" """ helps['notes update-parent-notebook'] = """ type: command short-summary: "Update the navigation property parentNotebook in groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-parent-section-group'] = """ type: command short-summary: "Update the navigation property parentSectionGroup in groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property parentSectionGroup for groups" """ helps['notes create-section'] = """ type: command short-summary: "Create new navigation property to sections for groups" """ helps['notes create-section-group'] = """ type: command short-summary: "Create new navigation property to sectionGroups for groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes get-parent-notebook'] = """ type: command short-summary: "Get parentNotebook from groups" """ helps['notes get-parent-section-group'] = """ type: command short-summary: "Get parentSectionGroup from groups" """ helps['notes get-section'] = """ type: command short-summary: "Get sections from groups" """ helps['notes get-section-group'] = """ type: command short-summary: "Get sectionGroups from groups" """ helps['notes list-section'] = """ type: command short-summary: "Get sections from groups" """ helps['notes list-section-group'] = """ type: command short-summary: "Get sectionGroups from groups" """ helps['notes update-parent-notebook'] = """ type: command short-summary: "Update the navigation property parentNotebook in groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-parent-section-group'] = """ type: command short-summary: "Update the navigation property parentSectionGroup in groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes update-section'] = """ type: command short-summary: "Update the navigation property sections in groups" """ helps['notes update-section-group'] = """ type: command short-summary: "Update the navigation property sectionGroups in groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property parentSectionGroup for groups" """ helps['notes create-page'] = """ type: command short-summary: "Create new navigation property to pages for groups" """ helps['notes get-page'] = """ type: command short-summary: "Get pages from groups" """ helps['notes get-parent-notebook'] = """ type: command short-summary: "Get parentNotebook from groups" """ helps['notes get-parent-section-group'] = """ type: command short-summary: "Get parentSectionGroup from groups" """ helps['notes list-page'] = """ type: command short-summary: "Get pages from groups" """ helps['notes update-page'] = """ type: command short-summary: "Update the navigation property pages in groups" """ helps['notes update-parent-notebook'] = """ type: command short-summary: "Update the navigation property parentNotebook in groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-parent-section-group'] = """ type: command short-summary: "Update the navigation property parentSectionGroup in groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property sections for groups" """ helps['notes create-section'] = """ type: command short-summary: "Create new navigation property to sections for groups" """ helps['notes create-section-group'] = """ type: command short-summary: "Create new navigation property to sectionGroups for groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes get-section'] = """ type: command short-summary: "Get sections from groups" """ helps['notes get-section-group'] = """ type: command short-summary: "Get sectionGroups from groups" """ helps['notes list-section'] = """ type: command short-summary: "Get sections from groups" """ helps['notes list-section-group'] = """ type: command short-summary: "Get sectionGroups from groups" """ helps['notes update-section'] = """ type: command short-summary: "Update the navigation property sections in groups" """ helps['notes update-section-group'] = """ type: command short-summary: "Update the navigation property sectionGroups in groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property parentSectionGroup for groups" """ helps['notes create-section'] = """ type: command short-summary: "Create new navigation property to sections for groups" """ helps['notes create-section-group'] = """ type: command short-summary: "Create new navigation property to sectionGroups for groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes get-parent-notebook'] = """ type: command short-summary: "Get parentNotebook from groups" """ helps['notes get-parent-section-group'] = """ type: command short-summary: "Get parentSectionGroup from groups" """ helps['notes get-section'] = """ type: command short-summary: "Get sections from groups" """ helps['notes get-section-group'] = """ type: command short-summary: "Get sectionGroups from groups" """ helps['notes list-section'] = """ type: command short-summary: "Get sections from groups" """ helps['notes list-section-group'] = """ type: command short-summary: "Get sectionGroups from groups" """ helps['notes update-parent-notebook'] = """ type: command short-summary: "Update the navigation property parentNotebook in groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-parent-section-group'] = """ type: command short-summary: "Update the navigation property parentSectionGroup in groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes update-section'] = """ type: command short-summary: "Update the navigation property sections in groups" """ helps['notes update-section-group'] = """ type: command short-summary: "Update the navigation property sectionGroups in groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property parentSectionGroup for groups" """ helps['notes create-section'] = """ type: command short-summary: "Create new navigation property to sections for groups" """ helps['notes create-section-group'] = """ type: command short-summary: "Create new navigation property to sectionGroups for groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes get-parent-notebook'] = """ type: command short-summary: "Get parentNotebook from groups" """ helps['notes get-parent-section-group'] = """ type: command short-summary: "Get parentSectionGroup from groups" """ helps['notes get-section'] = """ type: command short-summary: "Get sections from groups" """ helps['notes get-section-group'] = """ type: command short-summary: "Get sectionGroups from groups" """ helps['notes list-section'] = """ type: command short-summary: "Get sections from groups" """ helps['notes list-section-group'] = """ type: command short-summary: "Get sectionGroups from groups" """ helps['notes update-parent-notebook'] = """ type: command short-summary: "Update the navigation property parentNotebook in groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-parent-section-group'] = """ type: command short-summary: "Update the navigation property parentSectionGroup in groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes update-section'] = """ type: command short-summary: "Update the navigation property sections in groups" """ helps['notes update-section-group'] = """ type: command short-summary: "Update the navigation property sectionGroups in groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property sections for groups" """ helps['notes create-section'] = """ type: command short-summary: "Create new navigation property to sections for groups" """ helps['notes create-section-group'] = """ type: command short-summary: "Create new navigation property to sectionGroups for groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes get-section'] = """ type: command short-summary: "Get sections from groups" """ helps['notes get-section-group'] = """ type: command short-summary: "Get sectionGroups from groups" """ helps['notes list-section'] = """ type: command short-summary: "Get sections from groups" """ helps['notes list-section-group'] = """ type: command short-summary: "Get sectionGroups from groups" """ helps['notes update-section'] = """ type: command short-summary: "Update the navigation property sections in groups" """ helps['notes update-section-group'] = """ type: command short-summary: "Update the navigation property sectionGroups in groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property parentSectionGroup for groups" """ helps['notes create-section'] = """ type: command short-summary: "Create new navigation property to sections for groups" """ helps['notes create-section-group'] = """ type: command short-summary: "Create new navigation property to sectionGroups for groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes get-parent-notebook'] = """ type: command short-summary: "Get parentNotebook from groups" """ helps['notes get-parent-section-group'] = """ type: command short-summary: "Get parentSectionGroup from groups" """ helps['notes get-section'] = """ type: command short-summary: "Get sections from groups" """ helps['notes get-section-group'] = """ type: command short-summary: "Get sectionGroups from groups" """ helps['notes list-section'] = """ type: command short-summary: "Get sections from groups" """ helps['notes list-section-group'] = """ type: command short-summary: "Get sectionGroups from groups" """ helps['notes update-parent-notebook'] = """ type: command short-summary: "Update the navigation property parentNotebook in groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-parent-section-group'] = """ type: command short-summary: "Update the navigation property parentSectionGroup in groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes update-section'] = """ type: command short-summary: "Update the navigation property sections in groups" """ helps['notes update-section-group'] = """ type: command short-summary: "Update the navigation property sectionGroups in groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property sections for groups" """ helps['notes create-section'] = """ type: command short-summary: "Create new navigation property to sections for groups" """ helps['notes create-section-group'] = """ type: command short-summary: "Create new navigation property to sectionGroups for groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes get-section'] = """ type: command short-summary: "Get sections from groups" """ helps['notes get-section-group'] = """ type: command short-summary: "Get sectionGroups from groups" """ helps['notes list-section'] = """ type: command short-summary: "Get sections from groups" """ helps['notes list-section-group'] = """ type: command short-summary: "Get sectionGroups from groups" """ helps['notes update-section'] = """ type: command short-summary: "Update the navigation property sections in groups" """ helps['notes update-section-group'] = """ type: command short-summary: "Update the navigation property sectionGroups in groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property parentSectionGroup for groups" """ helps['notes create-page'] = """ type: command short-summary: "Create new navigation property to pages for groups" """ helps['notes get-page'] = """ type: command short-summary: "Get pages from groups" """ helps['notes get-parent-notebook'] = """ type: command short-summary: "Get parentNotebook from groups" """ helps['notes get-parent-section-group'] = """ type: command short-summary: "Get parentSectionGroup from groups" """ helps['notes list-page'] = """ type: command short-summary: "Get pages from groups" """ helps['notes update-page'] = """ type: command short-summary: "Update the navigation property pages in groups" """ helps['notes update-parent-notebook'] = """ type: command short-summary: "Update the navigation property parentNotebook in groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-parent-section-group'] = """ type: command short-summary: "Update the navigation property parentSectionGroup in groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property parentSection for groups" """ helps['notes get-parent-notebook'] = """ type: command short-summary: "Get parentNotebook from groups" """ helps['notes get-parent-section'] = """ type: command short-summary: "Get parentSection from groups" """ helps['notes update-parent-notebook'] = """ type: command short-summary: "Update the navigation property parentNotebook in groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-parent-section'] = """ type: command short-summary: "Update the navigation property parentSection in groups" """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property parentSectionGroup for groups" """ helps['notes create-page'] = """ type: command short-summary: "Create new navigation property to pages for groups" """ helps['notes get-page'] = """ type: command short-summary: "Get pages from groups" """ helps['notes get-parent-notebook'] = """ type: command short-summary: "Get parentNotebook from groups" """ helps['notes get-parent-section-group'] = """ type: command short-summary: "Get parentSectionGroup from groups" """ helps['notes list-page'] = """ type: command short-summary: "Get pages from groups" """ helps['notes update-page'] = """ type: command short-summary: "Update the navigation property pages in groups" """ helps['notes update-parent-notebook'] = """ type: command short-summary: "Update the navigation property parentNotebook in groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-parent-section-group'] = """ type: command short-summary: "Update the navigation property parentSectionGroup in groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property parentSection for groups" """ helps['notes get-parent-notebook'] = """ type: command short-summary: "Get parentNotebook from groups" """ helps['notes get-parent-section'] = """ type: command short-summary: "Get parentSection from groups" """ helps['notes update-parent-notebook'] = """ type: command short-summary: "Update the navigation property parentNotebook in groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-parent-section'] = """ type: command short-summary: "Update the navigation property parentSection in groups" """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property sections for groups" """ helps['notes create-section'] = """ type: command short-summary: "Create new navigation property to sections for groups" """ helps['notes create-section-group'] = """ type: command short-summary: "Create new navigation property to sectionGroups for groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes get-section'] = """ type: command short-summary: "Get sections from groups" """ helps['notes get-section-group'] = """ type: command short-summary: "Get sectionGroups from groups" """ helps['notes list-section'] = """ type: command short-summary: "Get sections from groups" """ helps['notes list-section-group'] = """ type: command short-summary: "Get sectionGroups from groups" """ helps['notes update-section'] = """ type: command short-summary: "Update the navigation property sections in groups" """ helps['notes update-section-group'] = """ type: command short-summary: "Update the navigation property sectionGroups in groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property sections for groups" """ helps['notes create-section'] = """ type: command short-summary: "Create new navigation property to sections for groups" """ helps['notes create-section-group'] = """ type: command short-summary: "Create new navigation property to sectionGroups for groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes get-section'] = """ type: command short-summary: "Get sections from groups" """ helps['notes get-section-group'] = """ type: command short-summary: "Get sectionGroups from groups" """ helps['notes list-section'] = """ type: command short-summary: "Get sections from groups" """ helps['notes list-section-group'] = """ type: command short-summary: "Get sectionGroups from groups" """ helps['notes update-section'] = """ type: command short-summary: "Update the navigation property sections in groups" """ helps['notes update-section-group'] = """ type: command short-summary: "Update the navigation property sectionGroups in groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property parentSectionGroup for groups" """ helps['notes create-page'] = """ type: command short-summary: "Create new navigation property to pages for groups" """ helps['notes get-page'] = """ type: command short-summary: "Get pages from groups" """ helps['notes get-parent-notebook'] = """ type: command short-summary: "Get parentNotebook from groups" """ helps['notes get-parent-section-group'] = """ type: command short-summary: "Get parentSectionGroup from groups" """ helps['notes list-page'] = """ type: command short-summary: "Get pages from groups" """ helps['notes update-page'] = """ type: command short-summary: "Update the navigation property pages in groups" """ helps['notes update-parent-notebook'] = """ type: command short-summary: "Update the navigation property parentNotebook in groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-parent-section-group'] = """ type: command short-summary: "Update the navigation property parentSectionGroup in groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property parentSection for groups" """ helps['notes get-parent-notebook'] = """ type: command short-summary: "Get parentNotebook from groups" """ helps['notes get-parent-section'] = """ type: command short-summary: "Get parentSection from groups" """ helps['notes update-parent-notebook'] = """ type: command short-summary: "Update the navigation property parentNotebook in groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-parent-section'] = """ type: command short-summary: "Update the navigation property parentSection in groups" """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property sections for groups" """ helps['notes create-section'] = """ type: command short-summary: "Create new navigation property to sections for groups" """ helps['notes create-section-group'] = """ type: command short-summary: "Create new navigation property to sectionGroups for groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes get-section'] = """ type: command short-summary: "Get sections from groups" """ helps['notes get-section-group'] = """ type: command short-summary: "Get sectionGroups from groups" """ helps['notes list-section'] = """ type: command short-summary: "Get sections from groups" """ helps['notes list-section-group'] = """ type: command short-summary: "Get sectionGroups from groups" """ helps['notes update-section'] = """ type: command short-summary: "Update the navigation property sections in groups" """ helps['notes update-section-group'] = """ type: command short-summary: "Update the navigation property sectionGroups in groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property parentSectionGroup for groups" """ helps['notes create-section'] = """ type: command short-summary: "Create new navigation property to sections for groups" """ helps['notes create-section-group'] = """ type: command short-summary: "Create new navigation property to sectionGroups for groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes get-parent-notebook'] = """ type: command short-summary: "Get parentNotebook from groups" """ helps['notes get-parent-section-group'] = """ type: command short-summary: "Get parentSectionGroup from groups" """ helps['notes get-section'] = """ type: command short-summary: "Get sections from groups" """ helps['notes get-section-group'] = """ type: command short-summary: "Get sectionGroups from groups" """ helps['notes list-section'] = """ type: command short-summary: "Get sections from groups" """ helps['notes list-section-group'] = """ type: command short-summary: "Get sectionGroups from groups" """ helps['notes update-parent-notebook'] = """ type: command short-summary: "Update the navigation property parentNotebook in groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-parent-section-group'] = """ type: command short-summary: "Update the navigation property parentSectionGroup in groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes update-section'] = """ type: command short-summary: "Update the navigation property sections in groups" """ helps['notes update-section-group'] = """ type: command short-summary: "Update the navigation property sectionGroups in groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property sections for groups" """ helps['notes create-section'] = """ type: command short-summary: "Create new navigation property to sections for groups" """ helps['notes create-section-group'] = """ type: command short-summary: "Create new navigation property to sectionGroups for groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes get-section'] = """ type: command short-summary: "Get sections from groups" """ helps['notes get-section-group'] = """ type: command short-summary: "Get sectionGroups from groups" """ helps['notes list-section'] = """ type: command short-summary: "Get sections from groups" """ helps['notes list-section-group'] = """ type: command short-summary: "Get sectionGroups from groups" """ helps['notes update-section'] = """ type: command short-summary: "Update the navigation property sections in groups" """ helps['notes update-section-group'] = """ type: command short-summary: "Update the navigation property sectionGroups in groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property parentSectionGroup for groups" """ helps['notes create-section'] = """ type: command short-summary: "Create new navigation property to sections for groups" """ helps['notes create-section-group'] = """ type: command short-summary: "Create new navigation property to sectionGroups for groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes get-parent-notebook'] = """ type: command short-summary: "Get parentNotebook from groups" """ helps['notes get-parent-section-group'] = """ type: command short-summary: "Get parentSectionGroup from groups" """ helps['notes get-section'] = """ type: command short-summary: "Get sections from groups" """ helps['notes get-section-group'] = """ type: command short-summary: "Get sectionGroups from groups" """ helps['notes list-section'] = """ type: command short-summary: "Get sections from groups" """ helps['notes list-section-group'] = """ type: command short-summary: "Get sectionGroups from groups" """ helps['notes update-parent-notebook'] = """ type: command short-summary: "Update the navigation property parentNotebook in groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-parent-section-group'] = """ type: command short-summary: "Update the navigation property parentSectionGroup in groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes update-section'] = """ type: command short-summary: "Update the navigation property sections in groups" """ helps['notes update-section-group'] = """ type: command short-summary: "Update the navigation property sectionGroups in groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property parentSectionGroup for groups" """ helps['notes create-section'] = """ type: command short-summary: "Create new navigation property to sections for groups" """ helps['notes create-section-group'] = """ type: command short-summary: "Create new navigation property to sectionGroups for groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes get-parent-notebook'] = """ type: command short-summary: "Get parentNotebook from groups" """ helps['notes get-parent-section-group'] = """ type: command short-summary: "Get parentSectionGroup from groups" """ helps['notes get-section'] = """ type: command short-summary: "Get sections from groups" """ helps['notes get-section-group'] = """ type: command short-summary: "Get sectionGroups from groups" """ helps['notes list-section'] = """ type: command short-summary: "Get sections from groups" """ helps['notes list-section-group'] = """ type: command short-summary: "Get sectionGroups from groups" """ helps['notes update-parent-notebook'] = """ type: command short-summary: "Update the navigation property parentNotebook in groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-parent-section-group'] = """ type: command short-summary: "Update the navigation property parentSectionGroup in groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes update-section'] = """ type: command short-summary: "Update the navigation property sections in groups" """ helps['notes update-section-group'] = """ type: command short-summary: "Update the navigation property sectionGroups in groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property sections for groups" """ helps['notes create-section'] = """ type: command short-summary: "Create new navigation property to sections for groups" """ helps['notes create-section-group'] = """ type: command short-summary: "Create new navigation property to sectionGroups for groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes get-section'] = """ type: command short-summary: "Get sections from groups" """ helps['notes get-section-group'] = """ type: command short-summary: "Get sectionGroups from groups" """ helps['notes list-section'] = """ type: command short-summary: "Get sections from groups" """ helps['notes list-section-group'] = """ type: command short-summary: "Get sectionGroups from groups" """ helps['notes update-section'] = """ type: command short-summary: "Update the navigation property sections in groups" """ helps['notes update-section-group'] = """ type: command short-summary: "Update the navigation property sectionGroups in groups" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property onenote for sites" """ helps['notes get-onenote'] = """ type: command short-summary: "Get onenote from sites" """ helps['notes update-onenote'] = """ type: command short-summary: "Update the navigation property onenote in sites" parameters: - name: --resources short-summary: "The image and other file resources in OneNote pages. Getting a resources collection is not \ supported, but you can get the binary content of a specific resource. Read-only. Nullable." long-summary: | Usage: --resources content=XX content-url=XX self=XX id=XX content: The content stream content-url: The URL for downloading the content self: The endpoint where you can get details about the page. Read-only. id: Read-only. Multiple actions can be specified by using more than one --resources argument. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property sections for sites" """ helps['notes create-notebook'] = """ type: command short-summary: "Create new navigation property to notebooks for sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes create-operation'] = """ type: command short-summary: "Create new navigation property to operations for sites" parameters: - name: --error short-summary: "onenoteOperationError" long-summary: | Usage: --error code=XX message=XX code: The error code. message: The error message. """ helps['notes create-page'] = """ type: command short-summary: "Create new navigation property to pages for sites" """ helps['notes create-resource'] = """ type: command short-summary: "Create new navigation property to resources for sites" """ helps['notes create-section'] = """ type: command short-summary: "Create new navigation property to sections for sites" """ helps['notes create-section-group'] = """ type: command short-summary: "Create new navigation property to sectionGroups for sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes get-notebook'] = """ type: command short-summary: "Get notebooks from sites" """ helps['notes get-operation'] = """ type: command short-summary: "Get operations from sites" """ helps['notes get-page'] = """ type: command short-summary: "Get pages from sites" """ helps['notes get-resource'] = """ type: command short-summary: "Get resources from sites" """ helps['notes get-section'] = """ type: command short-summary: "Get sections from sites" """ helps['notes get-section-group'] = """ type: command short-summary: "Get sectionGroups from sites" """ helps['notes list-notebook'] = """ type: command short-summary: "Get notebooks from sites" """ helps['notes list-operation'] = """ type: command short-summary: "Get operations from sites" """ helps['notes list-page'] = """ type: command short-summary: "Get pages from sites" """ helps['notes list-resource'] = """ type: command short-summary: "Get resources from sites" """ helps['notes list-section'] = """ type: command short-summary: "Get sections from sites" """ helps['notes list-section-group'] = """ type: command short-summary: "Get sectionGroups from sites" """ helps['notes update-notebook'] = """ type: command short-summary: "Update the navigation property notebooks in sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-operation'] = """ type: command short-summary: "Update the navigation property operations in sites" parameters: - name: --error short-summary: "onenoteOperationError" long-summary: | Usage: --error code=XX message=XX code: The error code. message: The error message. """ helps['notes update-page'] = """ type: command short-summary: "Update the navigation property pages in sites" """ helps['notes update-resource'] = """ type: command short-summary: "Update the navigation property resources in sites" """ helps['notes update-section'] = """ type: command short-summary: "Update the navigation property sections in sites" """ helps['notes update-section-group'] = """ type: command short-summary: "Update the navigation property sectionGroups in sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property sections for sites" """ helps['notes create-section'] = """ type: command short-summary: "Create new navigation property to sections for sites" """ helps['notes create-section-group'] = """ type: command short-summary: "Create new navigation property to sectionGroups for sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes get-section'] = """ type: command short-summary: "Get sections from sites" """ helps['notes get-section-group'] = """ type: command short-summary: "Get sectionGroups from sites" """ helps['notes list-section'] = """ type: command short-summary: "Get sections from sites" """ helps['notes list-section-group'] = """ type: command short-summary: "Get sectionGroups from sites" """ helps['notes update-section'] = """ type: command short-summary: "Update the navigation property sections in sites" """ helps['notes update-section-group'] = """ type: command short-summary: "Update the navigation property sectionGroups in sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property parentSectionGroup for sites" """ helps['notes create-section'] = """ type: command short-summary: "Create new navigation property to sections for sites" """ helps['notes create-section-group'] = """ type: command short-summary: "Create new navigation property to sectionGroups for sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes get-parent-notebook'] = """ type: command short-summary: "Get parentNotebook from sites" """ helps['notes get-parent-section-group'] = """ type: command short-summary: "Get parentSectionGroup from sites" """ helps['notes get-section'] = """ type: command short-summary: "Get sections from sites" """ helps['notes get-section-group'] = """ type: command short-summary: "Get sectionGroups from sites" """ helps['notes list-section'] = """ type: command short-summary: "Get sections from sites" """ helps['notes list-section-group'] = """ type: command short-summary: "Get sectionGroups from sites" """ helps['notes update-parent-notebook'] = """ type: command short-summary: "Update the navigation property parentNotebook in sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-parent-section-group'] = """ type: command short-summary: "Update the navigation property parentSectionGroup in sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes update-section'] = """ type: command short-summary: "Update the navigation property sections in sites" """ helps['notes update-section-group'] = """ type: command short-summary: "Update the navigation property sectionGroups in sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property parentSectionGroup for sites" """ helps['notes create-page'] = """ type: command short-summary: "Create new navigation property to pages for sites" """ helps['notes get-page'] = """ type: command short-summary: "Get pages from sites" """ helps['notes get-parent-notebook'] = """ type: command short-summary: "Get parentNotebook from sites" """ helps['notes get-parent-section-group'] = """ type: command short-summary: "Get parentSectionGroup from sites" """ helps['notes list-page'] = """ type: command short-summary: "Get pages from sites" """ helps['notes update-page'] = """ type: command short-summary: "Update the navigation property pages in sites" """ helps['notes update-parent-notebook'] = """ type: command short-summary: "Update the navigation property parentNotebook in sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-parent-section-group'] = """ type: command short-summary: "Update the navigation property parentSectionGroup in sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property parentSection for sites" """ helps['notes get-parent-notebook'] = """ type: command short-summary: "Get parentNotebook from sites" """ helps['notes get-parent-section'] = """ type: command short-summary: "Get parentSection from sites" """ helps['notes update-parent-notebook'] = """ type: command short-summary: "Update the navigation property parentNotebook in sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-parent-section'] = """ type: command short-summary: "Update the navigation property parentSection in sites" """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property parentSectionGroup for sites" """ helps['notes create-page'] = """ type: command short-summary: "Create new navigation property to pages for sites" """ helps['notes get-page'] = """ type: command short-summary: "Get pages from sites" """ helps['notes get-parent-notebook'] = """ type: command short-summary: "Get parentNotebook from sites" """ helps['notes get-parent-section-group'] = """ type: command short-summary: "Get parentSectionGroup from sites" """ helps['notes list-page'] = """ type: command short-summary: "Get pages from sites" """ helps['notes update-page'] = """ type: command short-summary: "Update the navigation property pages in sites" """ helps['notes update-parent-notebook'] = """ type: command short-summary: "Update the navigation property parentNotebook in sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-parent-section-group'] = """ type: command short-summary: "Update the navigation property parentSectionGroup in sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property parentSection for sites" """ helps['notes get-parent-notebook'] = """ type: command short-summary: "Get parentNotebook from sites" """ helps['notes get-parent-section'] = """ type: command short-summary: "Get parentSection from sites" """ helps['notes update-parent-notebook'] = """ type: command short-summary: "Update the navigation property parentNotebook in sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-parent-section'] = """ type: command short-summary: "Update the navigation property parentSection in sites" """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property parentSectionGroup for sites" """ helps['notes create-section'] = """ type: command short-summary: "Create new navigation property to sections for sites" """ helps['notes create-section-group'] = """ type: command short-summary: "Create new navigation property to sectionGroups for sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes get-parent-notebook'] = """ type: command short-summary: "Get parentNotebook from sites" """ helps['notes get-parent-section-group'] = """ type: command short-summary: "Get parentSectionGroup from sites" """ helps['notes get-section'] = """ type: command short-summary: "Get sections from sites" """ helps['notes get-section-group'] = """ type: command short-summary: "Get sectionGroups from sites" """ helps['notes list-section'] = """ type: command short-summary: "Get sections from sites" """ helps['notes list-section-group'] = """ type: command short-summary: "Get sectionGroups from sites" """ helps['notes update-parent-notebook'] = """ type: command short-summary: "Update the navigation property parentNotebook in sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-parent-section-group'] = """ type: command short-summary: "Update the navigation property parentSectionGroup in sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes update-section'] = """ type: command short-summary: "Update the navigation property sections in sites" """ helps['notes update-section-group'] = """ type: command short-summary: "Update the navigation property sectionGroups in sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property parentSection for sites" """ helps['notes get-parent-notebook'] = """ type: command short-summary: "Get parentNotebook from sites" """ helps['notes get-parent-section'] = """ type: command short-summary: "Get parentSection from sites" """ helps['notes update-parent-notebook'] = """ type: command short-summary: "Update the navigation property parentNotebook in sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-parent-section'] = """ type: command short-summary: "Update the navigation property parentSection in sites" """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property sections for sites" """ helps['notes create-section'] = """ type: command short-summary: "Create new navigation property to sections for sites" """ helps['notes create-section-group'] = """ type: command short-summary: "Create new navigation property to sectionGroups for sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes get-section'] = """ type: command short-summary: "Get sections from sites" """ helps['notes get-section-group'] = """ type: command short-summary: "Get sectionGroups from sites" """ helps['notes list-section'] = """ type: command short-summary: "Get sections from sites" """ helps['notes list-section-group'] = """ type: command short-summary: "Get sectionGroups from sites" """ helps['notes update-section'] = """ type: command short-summary: "Update the navigation property sections in sites" """ helps['notes update-section-group'] = """ type: command short-summary: "Update the navigation property sectionGroups in sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property parentSectionGroup for sites" """ helps['notes create-section'] = """ type: command short-summary: "Create new navigation property to sections for sites" """ helps['notes create-section-group'] = """ type: command short-summary: "Create new navigation property to sectionGroups for sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes get-parent-notebook'] = """ type: command short-summary: "Get parentNotebook from sites" """ helps['notes get-parent-section-group'] = """ type: command short-summary: "Get parentSectionGroup from sites" """ helps['notes get-section'] = """ type: command short-summary: "Get sections from sites" """ helps['notes get-section-group'] = """ type: command short-summary: "Get sectionGroups from sites" """ helps['notes list-section'] = """ type: command short-summary: "Get sections from sites" """ helps['notes list-section-group'] = """ type: command short-summary: "Get sectionGroups from sites" """ helps['notes update-parent-notebook'] = """ type: command short-summary: "Update the navigation property parentNotebook in sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-parent-section-group'] = """ type: command short-summary: "Update the navigation property parentSectionGroup in sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes update-section'] = """ type: command short-summary: "Update the navigation property sections in sites" """ helps['notes update-section-group'] = """ type: command short-summary: "Update the navigation property sectionGroups in sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property parentSectionGroup for sites" """ helps['notes create-page'] = """ type: command short-summary: "Create new navigation property to pages for sites" """ helps['notes get-page'] = """ type: command short-summary: "Get pages from sites" """ helps['notes get-parent-notebook'] = """ type: command short-summary: "Get parentNotebook from sites" """ helps['notes get-parent-section-group'] = """ type: command short-summary: "Get parentSectionGroup from sites" """ helps['notes list-page'] = """ type: command short-summary: "Get pages from sites" """ helps['notes update-page'] = """ type: command short-summary: "Update the navigation property pages in sites" """ helps['notes update-parent-notebook'] = """ type: command short-summary: "Update the navigation property parentNotebook in sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-parent-section-group'] = """ type: command short-summary: "Update the navigation property parentSectionGroup in sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property parentSectionGroup for sites" """ helps['notes create-page'] = """ type: command short-summary: "Create new navigation property to pages for sites" """ helps['notes get-page'] = """ type: command short-summary: "Get pages from sites" """ helps['notes get-parent-notebook'] = """ type: command short-summary: "Get parentNotebook from sites" """ helps['notes get-parent-section-group'] = """ type: command short-summary: "Get parentSectionGroup from sites" """ helps['notes list-page'] = """ type: command short-summary: "Get pages from sites" """ helps['notes update-page'] = """ type: command short-summary: "Update the navigation property pages in sites" """ helps['notes update-parent-notebook'] = """ type: command short-summary: "Update the navigation property parentNotebook in sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-parent-section-group'] = """ type: command short-summary: "Update the navigation property parentSectionGroup in sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property parentSectionGroup for sites" """ helps['notes create-section'] = """ type: command short-summary: "Create new navigation property to sections for sites" """ helps['notes create-section-group'] = """ type: command short-summary: "Create new navigation property to sectionGroups for sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes get-parent-notebook'] = """ type: command short-summary: "Get parentNotebook from sites" """ helps['notes get-parent-section-group'] = """ type: command short-summary: "Get parentSectionGroup from sites" """ helps['notes get-section'] = """ type: command short-summary: "Get sections from sites" """ helps['notes get-section-group'] = """ type: command short-summary: "Get sectionGroups from sites" """ helps['notes list-section'] = """ type: command short-summary: "Get sections from sites" """ helps['notes list-section-group'] = """ type: command short-summary: "Get sectionGroups from sites" """ helps['notes update-parent-notebook'] = """ type: command short-summary: "Update the navigation property parentNotebook in sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-parent-section-group'] = """ type: command short-summary: "Update the navigation property parentSectionGroup in sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes update-section'] = """ type: command short-summary: "Update the navigation property sections in sites" """ helps['notes update-section-group'] = """ type: command short-summary: "Update the navigation property sectionGroups in sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property parentSectionGroup for sites" """ helps['notes create-page'] = """ type: command short-summary: "Create new navigation property to pages for sites" """ helps['notes get-page'] = """ type: command short-summary: "Get pages from sites" """ helps['notes get-parent-notebook'] = """ type: command short-summary: "Get parentNotebook from sites" """ helps['notes get-parent-section-group'] = """ type: command short-summary: "Get parentSectionGroup from sites" """ helps['notes list-page'] = """ type: command short-summary: "Get pages from sites" """ helps['notes update-page'] = """ type: command short-summary: "Update the navigation property pages in sites" """ helps['notes update-parent-notebook'] = """ type: command short-summary: "Update the navigation property parentNotebook in sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-parent-section-group'] = """ type: command short-summary: "Update the navigation property parentSectionGroup in sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property sections for sites" """ helps['notes create-section'] = """ type: command short-summary: "Create new navigation property to sections for sites" """ helps['notes create-section-group'] = """ type: command short-summary: "Create new navigation property to sectionGroups for sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes get-section'] = """ type: command short-summary: "Get sections from sites" """ helps['notes get-section-group'] = """ type: command short-summary: "Get sectionGroups from sites" """ helps['notes list-section'] = """ type: command short-summary: "Get sections from sites" """ helps['notes list-section-group'] = """ type: command short-summary: "Get sectionGroups from sites" """ helps['notes update-section'] = """ type: command short-summary: "Update the navigation property sections in sites" """ helps['notes update-section-group'] = """ type: command short-summary: "Update the navigation property sectionGroups in sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property parentSectionGroup for sites" """ helps['notes create-section'] = """ type: command short-summary: "Create new navigation property to sections for sites" """ helps['notes create-section-group'] = """ type: command short-summary: "Create new navigation property to sectionGroups for sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes get-parent-notebook'] = """ type: command short-summary: "Get parentNotebook from sites" """ helps['notes get-parent-section-group'] = """ type: command short-summary: "Get parentSectionGroup from sites" """ helps['notes get-section'] = """ type: command short-summary: "Get sections from sites" """ helps['notes get-section-group'] = """ type: command short-summary: "Get sectionGroups from sites" """ helps['notes list-section'] = """ type: command short-summary: "Get sections from sites" """ helps['notes list-section-group'] = """ type: command short-summary: "Get sectionGroups from sites" """ helps['notes update-parent-notebook'] = """ type: command short-summary: "Update the navigation property parentNotebook in sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-parent-section-group'] = """ type: command short-summary: "Update the navigation property parentSectionGroup in sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes update-section'] = """ type: command short-summary: "Update the navigation property sections in sites" """ helps['notes update-section-group'] = """ type: command short-summary: "Update the navigation property sectionGroups in sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property parentSectionGroup for sites" """ helps['notes create-section'] = """ type: command short-summary: "Create new navigation property to sections for sites" """ helps['notes create-section-group'] = """ type: command short-summary: "Create new navigation property to sectionGroups for sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes get-parent-notebook'] = """ type: command short-summary: "Get parentNotebook from sites" """ helps['notes get-parent-section-group'] = """ type: command short-summary: "Get parentSectionGroup from sites" """ helps['notes get-section'] = """ type: command short-summary: "Get sections from sites" """ helps['notes get-section-group'] = """ type: command short-summary: "Get sectionGroups from sites" """ helps['notes list-section'] = """ type: command short-summary: "Get sections from sites" """ helps['notes list-section-group'] = """ type: command short-summary: "Get sectionGroups from sites" """ helps['notes update-parent-notebook'] = """ type: command short-summary: "Update the navigation property parentNotebook in sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-parent-section-group'] = """ type: command short-summary: "Update the navigation property parentSectionGroup in sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes update-section'] = """ type: command short-summary: "Update the navigation property sections in sites" """ helps['notes update-section-group'] = """ type: command short-summary: "Update the navigation property sectionGroups in sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property sections for sites" """ helps['notes create-section'] = """ type: command short-summary: "Create new navigation property to sections for sites" """ helps['notes create-section-group'] = """ type: command short-summary: "Create new navigation property to sectionGroups for sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes get-section'] = """ type: command short-summary: "Get sections from sites" """ helps['notes get-section-group'] = """ type: command short-summary: "Get sectionGroups from sites" """ helps['notes list-section'] = """ type: command short-summary: "Get sections from sites" """ helps['notes list-section-group'] = """ type: command short-summary: "Get sectionGroups from sites" """ helps['notes update-section'] = """ type: command short-summary: "Update the navigation property sections in sites" """ helps['notes update-section-group'] = """ type: command short-summary: "Update the navigation property sectionGroups in sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property parentSectionGroup for sites" """ helps['notes create-section'] = """ type: command short-summary: "Create new navigation property to sections for sites" """ helps['notes create-section-group'] = """ type: command short-summary: "Create new navigation property to sectionGroups for sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes get-parent-notebook'] = """ type: command short-summary: "Get parentNotebook from sites" """ helps['notes get-parent-section-group'] = """ type: command short-summary: "Get parentSectionGroup from sites" """ helps['notes get-section'] = """ type: command short-summary: "Get sections from sites" """ helps['notes get-section-group'] = """ type: command short-summary: "Get sectionGroups from sites" """ helps['notes list-section'] = """ type: command short-summary: "Get sections from sites" """ helps['notes list-section-group'] = """ type: command short-summary: "Get sectionGroups from sites" """ helps['notes update-parent-notebook'] = """ type: command short-summary: "Update the navigation property parentNotebook in sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-parent-section-group'] = """ type: command short-summary: "Update the navigation property parentSectionGroup in sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes update-section'] = """ type: command short-summary: "Update the navigation property sections in sites" """ helps['notes update-section-group'] = """ type: command short-summary: "Update the navigation property sectionGroups in sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property sections for sites" """ helps['notes create-section'] = """ type: command short-summary: "Create new navigation property to sections for sites" """ helps['notes create-section-group'] = """ type: command short-summary: "Create new navigation property to sectionGroups for sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes get-section'] = """ type: command short-summary: "Get sections from sites" """ helps['notes get-section-group'] = """ type: command short-summary: "Get sectionGroups from sites" """ helps['notes list-section'] = """ type: command short-summary: "Get sections from sites" """ helps['notes list-section-group'] = """ type: command short-summary: "Get sectionGroups from sites" """ helps['notes update-section'] = """ type: command short-summary: "Update the navigation property sections in sites" """ helps['notes update-section-group'] = """ type: command short-summary: "Update the navigation property sectionGroups in sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property parentSectionGroup for sites" """ helps['notes create-page'] = """ type: command short-summary: "Create new navigation property to pages for sites" """ helps['notes get-page'] = """ type: command short-summary: "Get pages from sites" """ helps['notes get-parent-notebook'] = """ type: command short-summary: "Get parentNotebook from sites" """ helps['notes get-parent-section-group'] = """ type: command short-summary: "Get parentSectionGroup from sites" """ helps['notes list-page'] = """ type: command short-summary: "Get pages from sites" """ helps['notes update-page'] = """ type: command short-summary: "Update the navigation property pages in sites" """ helps['notes update-parent-notebook'] = """ type: command short-summary: "Update the navigation property parentNotebook in sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-parent-section-group'] = """ type: command short-summary: "Update the navigation property parentSectionGroup in sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property parentSection for sites" """ helps['notes get-parent-notebook'] = """ type: command short-summary: "Get parentNotebook from sites" """ helps['notes get-parent-section'] = """ type: command short-summary: "Get parentSection from sites" """ helps['notes update-parent-notebook'] = """ type: command short-summary: "Update the navigation property parentNotebook in sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-parent-section'] = """ type: command short-summary: "Update the navigation property parentSection in sites" """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property parentSectionGroup for sites" """ helps['notes create-page'] = """ type: command short-summary: "Create new navigation property to pages for sites" """ helps['notes get-page'] = """ type: command short-summary: "Get pages from sites" """ helps['notes get-parent-notebook'] = """ type: command short-summary: "Get parentNotebook from sites" """ helps['notes get-parent-section-group'] = """ type: command short-summary: "Get parentSectionGroup from sites" """ helps['notes list-page'] = """ type: command short-summary: "Get pages from sites" """ helps['notes update-page'] = """ type: command short-summary: "Update the navigation property pages in sites" """ helps['notes update-parent-notebook'] = """ type: command short-summary: "Update the navigation property parentNotebook in sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-parent-section-group'] = """ type: command short-summary: "Update the navigation property parentSectionGroup in sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property parentSection for sites" """ helps['notes get-parent-notebook'] = """ type: command short-summary: "Get parentNotebook from sites" """ helps['notes get-parent-section'] = """ type: command short-summary: "Get parentSection from sites" """ helps['notes update-parent-notebook'] = """ type: command short-summary: "Update the navigation property parentNotebook in sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-parent-section'] = """ type: command short-summary: "Update the navigation property parentSection in sites" """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property sections for sites" """ helps['notes create-section'] = """ type: command short-summary: "Create new navigation property to sections for sites" """ helps['notes create-section-group'] = """ type: command short-summary: "Create new navigation property to sectionGroups for sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes get-section'] = """ type: command short-summary: "Get sections from sites" """ helps['notes get-section-group'] = """ type: command short-summary: "Get sectionGroups from sites" """ helps['notes list-section'] = """ type: command short-summary: "Get sections from sites" """ helps['notes list-section-group'] = """ type: command short-summary: "Get sectionGroups from sites" """ helps['notes update-section'] = """ type: command short-summary: "Update the navigation property sections in sites" """ helps['notes update-section-group'] = """ type: command short-summary: "Update the navigation property sectionGroups in sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property sections for sites" """ helps['notes create-section'] = """ type: command short-summary: "Create new navigation property to sections for sites" """ helps['notes create-section-group'] = """ type: command short-summary: "Create new navigation property to sectionGroups for sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes get-section'] = """ type: command short-summary: "Get sections from sites" """ helps['notes get-section-group'] = """ type: command short-summary: "Get sectionGroups from sites" """ helps['notes list-section'] = """ type: command short-summary: "Get sections from sites" """ helps['notes list-section-group'] = """ type: command short-summary: "Get sectionGroups from sites" """ helps['notes update-section'] = """ type: command short-summary: "Update the navigation property sections in sites" """ helps['notes update-section-group'] = """ type: command short-summary: "Update the navigation property sectionGroups in sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property parentSectionGroup for sites" """ helps['notes create-page'] = """ type: command short-summary: "Create new navigation property to pages for sites" """ helps['notes get-page'] = """ type: command short-summary: "Get pages from sites" """ helps['notes get-parent-notebook'] = """ type: command short-summary: "Get parentNotebook from sites" """ helps['notes get-parent-section-group'] = """ type: command short-summary: "Get parentSectionGroup from sites" """ helps['notes list-page'] = """ type: command short-summary: "Get pages from sites" """ helps['notes update-page'] = """ type: command short-summary: "Update the navigation property pages in sites" """ helps['notes update-parent-notebook'] = """ type: command short-summary: "Update the navigation property parentNotebook in sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-parent-section-group'] = """ type: command short-summary: "Update the navigation property parentSectionGroup in sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property parentSection for sites" """ helps['notes get-parent-notebook'] = """ type: command short-summary: "Get parentNotebook from sites" """ helps['notes get-parent-section'] = """ type: command short-summary: "Get parentSection from sites" """ helps['notes update-parent-notebook'] = """ type: command short-summary: "Update the navigation property parentNotebook in sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-parent-section'] = """ type: command short-summary: "Update the navigation property parentSection in sites" """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property sections for sites" """ helps['notes create-section'] = """ type: command short-summary: "Create new navigation property to sections for sites" """ helps['notes create-section-group'] = """ type: command short-summary: "Create new navigation property to sectionGroups for sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes get-section'] = """ type: command short-summary: "Get sections from sites" """ helps['notes get-section-group'] = """ type: command short-summary: "Get sectionGroups from sites" """ helps['notes list-section'] = """ type: command short-summary: "Get sections from sites" """ helps['notes list-section-group'] = """ type: command short-summary: "Get sectionGroups from sites" """ helps['notes update-section'] = """ type: command short-summary: "Update the navigation property sections in sites" """ helps['notes update-section-group'] = """ type: command short-summary: "Update the navigation property sectionGroups in sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property parentSectionGroup for sites" """ helps['notes create-section'] = """ type: command short-summary: "Create new navigation property to sections for sites" """ helps['notes create-section-group'] = """ type: command short-summary: "Create new navigation property to sectionGroups for sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes get-parent-notebook'] = """ type: command short-summary: "Get parentNotebook from sites" """ helps['notes get-parent-section-group'] = """ type: command short-summary: "Get parentSectionGroup from sites" """ helps['notes get-section'] = """ type: command short-summary: "Get sections from sites" """ helps['notes get-section-group'] = """ type: command short-summary: "Get sectionGroups from sites" """ helps['notes list-section'] = """ type: command short-summary: "Get sections from sites" """ helps['notes list-section-group'] = """ type: command short-summary: "Get sectionGroups from sites" """ helps['notes update-parent-notebook'] = """ type: command short-summary: "Update the navigation property parentNotebook in sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-parent-section-group'] = """ type: command short-summary: "Update the navigation property parentSectionGroup in sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes update-section'] = """ type: command short-summary: "Update the navigation property sections in sites" """ helps['notes update-section-group'] = """ type: command short-summary: "Update the navigation property sectionGroups in sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property sections for sites" """ helps['notes create-section'] = """ type: command short-summary: "Create new navigation property to sections for sites" """ helps['notes create-section-group'] = """ type: command short-summary: "Create new navigation property to sectionGroups for sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes get-section'] = """ type: command short-summary: "Get sections from sites" """ helps['notes get-section-group'] = """ type: command short-summary: "Get sectionGroups from sites" """ helps['notes list-section'] = """ type: command short-summary: "Get sections from sites" """ helps['notes list-section-group'] = """ type: command short-summary: "Get sectionGroups from sites" """ helps['notes update-section'] = """ type: command short-summary: "Update the navigation property sections in sites" """ helps['notes update-section-group'] = """ type: command short-summary: "Update the navigation property sectionGroups in sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property parentSectionGroup for sites" """ helps['notes create-section'] = """ type: command short-summary: "Create new navigation property to sections for sites" """ helps['notes create-section-group'] = """ type: command short-summary: "Create new navigation property to sectionGroups for sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes get-parent-notebook'] = """ type: command short-summary: "Get parentNotebook from sites" """ helps['notes get-parent-section-group'] = """ type: command short-summary: "Get parentSectionGroup from sites" """ helps['notes get-section'] = """ type: command short-summary: "Get sections from sites" """ helps['notes get-section-group'] = """ type: command short-summary: "Get sectionGroups from sites" """ helps['notes list-section'] = """ type: command short-summary: "Get sections from sites" """ helps['notes list-section-group'] = """ type: command short-summary: "Get sectionGroups from sites" """ helps['notes update-parent-notebook'] = """ type: command short-summary: "Update the navigation property parentNotebook in sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-parent-section-group'] = """ type: command short-summary: "Update the navigation property parentSectionGroup in sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes update-section'] = """ type: command short-summary: "Update the navigation property sections in sites" """ helps['notes update-section-group'] = """ type: command short-summary: "Update the navigation property sectionGroups in sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property parentSectionGroup for sites" """ helps['notes create-section'] = """ type: command short-summary: "Create new navigation property to sections for sites" """ helps['notes create-section-group'] = """ type: command short-summary: "Create new navigation property to sectionGroups for sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes get-parent-notebook'] = """ type: command short-summary: "Get parentNotebook from sites" """ helps['notes get-parent-section-group'] = """ type: command short-summary: "Get parentSectionGroup from sites" """ helps['notes get-section'] = """ type: command short-summary: "Get sections from sites" """ helps['notes get-section-group'] = """ type: command short-summary: "Get sectionGroups from sites" """ helps['notes list-section'] = """ type: command short-summary: "Get sections from sites" """ helps['notes list-section-group'] = """ type: command short-summary: "Get sectionGroups from sites" """ helps['notes update-parent-notebook'] = """ type: command short-summary: "Update the navigation property parentNotebook in sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-parent-section-group'] = """ type: command short-summary: "Update the navigation property parentSectionGroup in sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes update-section'] = """ type: command short-summary: "Update the navigation property sections in sites" """ helps['notes update-section-group'] = """ type: command short-summary: "Update the navigation property sectionGroups in sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property sections for sites" """ helps['notes create-section'] = """ type: command short-summary: "Create new navigation property to sections for sites" """ helps['notes create-section-group'] = """ type: command short-summary: "Create new navigation property to sectionGroups for sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes get-section'] = """ type: command short-summary: "Get sections from sites" """ helps['notes get-section-group'] = """ type: command short-summary: "Get sectionGroups from sites" """ helps['notes list-section'] = """ type: command short-summary: "Get sections from sites" """ helps['notes list-section-group'] = """ type: command short-summary: "Get sectionGroups from sites" """ helps['notes update-section'] = """ type: command short-summary: "Update the navigation property sections in sites" """ helps['notes update-section-group'] = """ type: command short-summary: "Update the navigation property sectionGroups in sites" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property onenote for users" """ helps['notes get-onenote'] = """ type: command short-summary: "Get onenote from users" """ helps['notes update-onenote'] = """ type: command short-summary: "Update the navigation property onenote in users" parameters: - name: --resources short-summary: "The image and other file resources in OneNote pages. Getting a resources collection is not \ supported, but you can get the binary content of a specific resource. Read-only. Nullable." long-summary: | Usage: --resources content=XX content-url=XX self=XX id=XX content: The content stream content-url: The URL for downloading the content self: The endpoint where you can get details about the page. Read-only. id: Read-only. Multiple actions can be specified by using more than one --resources argument. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property sections for users" """ helps['notes create-notebook'] = """ type: command short-summary: "Create new navigation property to notebooks for users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes create-operation'] = """ type: command short-summary: "Create new navigation property to operations for users" parameters: - name: --error short-summary: "onenoteOperationError" long-summary: | Usage: --error code=XX message=XX code: The error code. message: The error message. """ helps['notes create-page'] = """ type: command short-summary: "Create new navigation property to pages for users" """ helps['notes create-resource'] = """ type: command short-summary: "Create new navigation property to resources for users" """ helps['notes create-section'] = """ type: command short-summary: "Create new navigation property to sections for users" """ helps['notes create-section-group'] = """ type: command short-summary: "Create new navigation property to sectionGroups for users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes get-notebook'] = """ type: command short-summary: "Get notebooks from users" """ helps['notes get-operation'] = """ type: command short-summary: "Get operations from users" """ helps['notes get-page'] = """ type: command short-summary: "Get pages from users" """ helps['notes get-resource'] = """ type: command short-summary: "Get resources from users" """ helps['notes get-section'] = """ type: command short-summary: "Get sections from users" """ helps['notes get-section-group'] = """ type: command short-summary: "Get sectionGroups from users" """ helps['notes list-notebook'] = """ type: command short-summary: "Get notebooks from users" """ helps['notes list-operation'] = """ type: command short-summary: "Get operations from users" """ helps['notes list-page'] = """ type: command short-summary: "Get pages from users" """ helps['notes list-resource'] = """ type: command short-summary: "Get resources from users" """ helps['notes list-section'] = """ type: command short-summary: "Get sections from users" """ helps['notes list-section-group'] = """ type: command short-summary: "Get sectionGroups from users" """ helps['notes update-notebook'] = """ type: command short-summary: "Update the navigation property notebooks in users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-operation'] = """ type: command short-summary: "Update the navigation property operations in users" parameters: - name: --error short-summary: "onenoteOperationError" long-summary: | Usage: --error code=XX message=XX code: The error code. message: The error message. """ helps['notes update-page'] = """ type: command short-summary: "Update the navigation property pages in users" """ helps['notes update-resource'] = """ type: command short-summary: "Update the navigation property resources in users" """ helps['notes update-section'] = """ type: command short-summary: "Update the navigation property sections in users" """ helps['notes update-section-group'] = """ type: command short-summary: "Update the navigation property sectionGroups in users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property sections for users" """ helps['notes create-section'] = """ type: command short-summary: "Create new navigation property to sections for users" """ helps['notes create-section-group'] = """ type: command short-summary: "Create new navigation property to sectionGroups for users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes get-section'] = """ type: command short-summary: "Get sections from users" """ helps['notes get-section-group'] = """ type: command short-summary: "Get sectionGroups from users" """ helps['notes list-section'] = """ type: command short-summary: "Get sections from users" """ helps['notes list-section-group'] = """ type: command short-summary: "Get sectionGroups from users" """ helps['notes update-section'] = """ type: command short-summary: "Update the navigation property sections in users" """ helps['notes update-section-group'] = """ type: command short-summary: "Update the navigation property sectionGroups in users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property parentSectionGroup for users" """ helps['notes create-section'] = """ type: command short-summary: "Create new navigation property to sections for users" """ helps['notes create-section-group'] = """ type: command short-summary: "Create new navigation property to sectionGroups for users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes get-parent-notebook'] = """ type: command short-summary: "Get parentNotebook from users" """ helps['notes get-parent-section-group'] = """ type: command short-summary: "Get parentSectionGroup from users" """ helps['notes get-section'] = """ type: command short-summary: "Get sections from users" """ helps['notes get-section-group'] = """ type: command short-summary: "Get sectionGroups from users" """ helps['notes list-section'] = """ type: command short-summary: "Get sections from users" """ helps['notes list-section-group'] = """ type: command short-summary: "Get sectionGroups from users" """ helps['notes update-parent-notebook'] = """ type: command short-summary: "Update the navigation property parentNotebook in users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-parent-section-group'] = """ type: command short-summary: "Update the navigation property parentSectionGroup in users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes update-section'] = """ type: command short-summary: "Update the navigation property sections in users" """ helps['notes update-section-group'] = """ type: command short-summary: "Update the navigation property sectionGroups in users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property parentSectionGroup for users" """ helps['notes create-page'] = """ type: command short-summary: "Create new navigation property to pages for users" """ helps['notes get-page'] = """ type: command short-summary: "Get pages from users" """ helps['notes get-parent-notebook'] = """ type: command short-summary: "Get parentNotebook from users" """ helps['notes get-parent-section-group'] = """ type: command short-summary: "Get parentSectionGroup from users" """ helps['notes list-page'] = """ type: command short-summary: "Get pages from users" """ helps['notes update-page'] = """ type: command short-summary: "Update the navigation property pages in users" """ helps['notes update-parent-notebook'] = """ type: command short-summary: "Update the navigation property parentNotebook in users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-parent-section-group'] = """ type: command short-summary: "Update the navigation property parentSectionGroup in users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property parentSection for users" """ helps['notes get-parent-notebook'] = """ type: command short-summary: "Get parentNotebook from users" """ helps['notes get-parent-section'] = """ type: command short-summary: "Get parentSection from users" """ helps['notes update-parent-notebook'] = """ type: command short-summary: "Update the navigation property parentNotebook in users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-parent-section'] = """ type: command short-summary: "Update the navigation property parentSection in users" """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property parentSectionGroup for users" """ helps['notes create-page'] = """ type: command short-summary: "Create new navigation property to pages for users" """ helps['notes get-page'] = """ type: command short-summary: "Get pages from users" """ helps['notes get-parent-notebook'] = """ type: command short-summary: "Get parentNotebook from users" """ helps['notes get-parent-section-group'] = """ type: command short-summary: "Get parentSectionGroup from users" """ helps['notes list-page'] = """ type: command short-summary: "Get pages from users" """ helps['notes update-page'] = """ type: command short-summary: "Update the navigation property pages in users" """ helps['notes update-parent-notebook'] = """ type: command short-summary: "Update the navigation property parentNotebook in users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-parent-section-group'] = """ type: command short-summary: "Update the navigation property parentSectionGroup in users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property parentSection for users" """ helps['notes get-parent-notebook'] = """ type: command short-summary: "Get parentNotebook from users" """ helps['notes get-parent-section'] = """ type: command short-summary: "Get parentSection from users" """ helps['notes update-parent-notebook'] = """ type: command short-summary: "Update the navigation property parentNotebook in users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-parent-section'] = """ type: command short-summary: "Update the navigation property parentSection in users" """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property parentSectionGroup for users" """ helps['notes create-section'] = """ type: command short-summary: "Create new navigation property to sections for users" """ helps['notes create-section-group'] = """ type: command short-summary: "Create new navigation property to sectionGroups for users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes get-parent-notebook'] = """ type: command short-summary: "Get parentNotebook from users" """ helps['notes get-parent-section-group'] = """ type: command short-summary: "Get parentSectionGroup from users" """ helps['notes get-section'] = """ type: command short-summary: "Get sections from users" """ helps['notes get-section-group'] = """ type: command short-summary: "Get sectionGroups from users" """ helps['notes list-section'] = """ type: command short-summary: "Get sections from users" """ helps['notes list-section-group'] = """ type: command short-summary: "Get sectionGroups from users" """ helps['notes update-parent-notebook'] = """ type: command short-summary: "Update the navigation property parentNotebook in users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-parent-section-group'] = """ type: command short-summary: "Update the navigation property parentSectionGroup in users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes update-section'] = """ type: command short-summary: "Update the navigation property sections in users" """ helps['notes update-section-group'] = """ type: command short-summary: "Update the navigation property sectionGroups in users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property parentSection for users" """ helps['notes get-parent-notebook'] = """ type: command short-summary: "Get parentNotebook from users" """ helps['notes get-parent-section'] = """ type: command short-summary: "Get parentSection from users" """ helps['notes update-parent-notebook'] = """ type: command short-summary: "Update the navigation property parentNotebook in users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-parent-section'] = """ type: command short-summary: "Update the navigation property parentSection in users" """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property sections for users" """ helps['notes create-section'] = """ type: command short-summary: "Create new navigation property to sections for users" """ helps['notes create-section-group'] = """ type: command short-summary: "Create new navigation property to sectionGroups for users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes get-section'] = """ type: command short-summary: "Get sections from users" """ helps['notes get-section-group'] = """ type: command short-summary: "Get sectionGroups from users" """ helps['notes list-section'] = """ type: command short-summary: "Get sections from users" """ helps['notes list-section-group'] = """ type: command short-summary: "Get sectionGroups from users" """ helps['notes update-section'] = """ type: command short-summary: "Update the navigation property sections in users" """ helps['notes update-section-group'] = """ type: command short-summary: "Update the navigation property sectionGroups in users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property parentSectionGroup for users" """ helps['notes create-section'] = """ type: command short-summary: "Create new navigation property to sections for users" """ helps['notes create-section-group'] = """ type: command short-summary: "Create new navigation property to sectionGroups for users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes get-parent-notebook'] = """ type: command short-summary: "Get parentNotebook from users" """ helps['notes get-parent-section-group'] = """ type: command short-summary: "Get parentSectionGroup from users" """ helps['notes get-section'] = """ type: command short-summary: "Get sections from users" """ helps['notes get-section-group'] = """ type: command short-summary: "Get sectionGroups from users" """ helps['notes list-section'] = """ type: command short-summary: "Get sections from users" """ helps['notes list-section-group'] = """ type: command short-summary: "Get sectionGroups from users" """ helps['notes update-parent-notebook'] = """ type: command short-summary: "Update the navigation property parentNotebook in users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-parent-section-group'] = """ type: command short-summary: "Update the navigation property parentSectionGroup in users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes update-section'] = """ type: command short-summary: "Update the navigation property sections in users" """ helps['notes update-section-group'] = """ type: command short-summary: "Update the navigation property sectionGroups in users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property parentSectionGroup for users" """ helps['notes create-page'] = """ type: command short-summary: "Create new navigation property to pages for users" """ helps['notes get-page'] = """ type: command short-summary: "Get pages from users" """ helps['notes get-parent-notebook'] = """ type: command short-summary: "Get parentNotebook from users" """ helps['notes get-parent-section-group'] = """ type: command short-summary: "Get parentSectionGroup from users" """ helps['notes list-page'] = """ type: command short-summary: "Get pages from users" """ helps['notes update-page'] = """ type: command short-summary: "Update the navigation property pages in users" """ helps['notes update-parent-notebook'] = """ type: command short-summary: "Update the navigation property parentNotebook in users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-parent-section-group'] = """ type: command short-summary: "Update the navigation property parentSectionGroup in users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property parentSectionGroup for users" """ helps['notes create-page'] = """ type: command short-summary: "Create new navigation property to pages for users" """ helps['notes get-page'] = """ type: command short-summary: "Get pages from users" """ helps['notes get-parent-notebook'] = """ type: command short-summary: "Get parentNotebook from users" """ helps['notes get-parent-section-group'] = """ type: command short-summary: "Get parentSectionGroup from users" """ helps['notes list-page'] = """ type: command short-summary: "Get pages from users" """ helps['notes update-page'] = """ type: command short-summary: "Update the navigation property pages in users" """ helps['notes update-parent-notebook'] = """ type: command short-summary: "Update the navigation property parentNotebook in users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-parent-section-group'] = """ type: command short-summary: "Update the navigation property parentSectionGroup in users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property parentSectionGroup for users" """ helps['notes create-section'] = """ type: command short-summary: "Create new navigation property to sections for users" """ helps['notes create-section-group'] = """ type: command short-summary: "Create new navigation property to sectionGroups for users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes get-parent-notebook'] = """ type: command short-summary: "Get parentNotebook from users" """ helps['notes get-parent-section-group'] = """ type: command short-summary: "Get parentSectionGroup from users" """ helps['notes get-section'] = """ type: command short-summary: "Get sections from users" """ helps['notes get-section-group'] = """ type: command short-summary: "Get sectionGroups from users" """ helps['notes list-section'] = """ type: command short-summary: "Get sections from users" """ helps['notes list-section-group'] = """ type: command short-summary: "Get sectionGroups from users" """ helps['notes update-parent-notebook'] = """ type: command short-summary: "Update the navigation property parentNotebook in users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-parent-section-group'] = """ type: command short-summary: "Update the navigation property parentSectionGroup in users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes update-section'] = """ type: command short-summary: "Update the navigation property sections in users" """ helps['notes update-section-group'] = """ type: command short-summary: "Update the navigation property sectionGroups in users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property parentSectionGroup for users" """ helps['notes create-page'] = """ type: command short-summary: "Create new navigation property to pages for users" """ helps['notes get-page'] = """ type: command short-summary: "Get pages from users" """ helps['notes get-parent-notebook'] = """ type: command short-summary: "Get parentNotebook from users" """ helps['notes get-parent-section-group'] = """ type: command short-summary: "Get parentSectionGroup from users" """ helps['notes list-page'] = """ type: command short-summary: "Get pages from users" """ helps['notes update-page'] = """ type: command short-summary: "Update the navigation property pages in users" """ helps['notes update-parent-notebook'] = """ type: command short-summary: "Update the navigation property parentNotebook in users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-parent-section-group'] = """ type: command short-summary: "Update the navigation property parentSectionGroup in users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property sections for users" """ helps['notes create-section'] = """ type: command short-summary: "Create new navigation property to sections for users" """ helps['notes create-section-group'] = """ type: command short-summary: "Create new navigation property to sectionGroups for users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes get-section'] = """ type: command short-summary: "Get sections from users" """ helps['notes get-section-group'] = """ type: command short-summary: "Get sectionGroups from users" """ helps['notes list-section'] = """ type: command short-summary: "Get sections from users" """ helps['notes list-section-group'] = """ type: command short-summary: "Get sectionGroups from users" """ helps['notes update-section'] = """ type: command short-summary: "Update the navigation property sections in users" """ helps['notes update-section-group'] = """ type: command short-summary: "Update the navigation property sectionGroups in users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property parentSectionGroup for users" """ helps['notes create-section'] = """ type: command short-summary: "Create new navigation property to sections for users" """ helps['notes create-section-group'] = """ type: command short-summary: "Create new navigation property to sectionGroups for users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes get-parent-notebook'] = """ type: command short-summary: "Get parentNotebook from users" """ helps['notes get-parent-section-group'] = """ type: command short-summary: "Get parentSectionGroup from users" """ helps['notes get-section'] = """ type: command short-summary: "Get sections from users" """ helps['notes get-section-group'] = """ type: command short-summary: "Get sectionGroups from users" """ helps['notes list-section'] = """ type: command short-summary: "Get sections from users" """ helps['notes list-section-group'] = """ type: command short-summary: "Get sectionGroups from users" """ helps['notes update-parent-notebook'] = """ type: command short-summary: "Update the navigation property parentNotebook in users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-parent-section-group'] = """ type: command short-summary: "Update the navigation property parentSectionGroup in users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes update-section'] = """ type: command short-summary: "Update the navigation property sections in users" """ helps['notes update-section-group'] = """ type: command short-summary: "Update the navigation property sectionGroups in users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property parentSectionGroup for users" """ helps['notes create-section'] = """ type: command short-summary: "Create new navigation property to sections for users" """ helps['notes create-section-group'] = """ type: command short-summary: "Create new navigation property to sectionGroups for users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes get-parent-notebook'] = """ type: command short-summary: "Get parentNotebook from users" """ helps['notes get-parent-section-group'] = """ type: command short-summary: "Get parentSectionGroup from users" """ helps['notes get-section'] = """ type: command short-summary: "Get sections from users" """ helps['notes get-section-group'] = """ type: command short-summary: "Get sectionGroups from users" """ helps['notes list-section'] = """ type: command short-summary: "Get sections from users" """ helps['notes list-section-group'] = """ type: command short-summary: "Get sectionGroups from users" """ helps['notes update-parent-notebook'] = """ type: command short-summary: "Update the navigation property parentNotebook in users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-parent-section-group'] = """ type: command short-summary: "Update the navigation property parentSectionGroup in users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes update-section'] = """ type: command short-summary: "Update the navigation property sections in users" """ helps['notes update-section-group'] = """ type: command short-summary: "Update the navigation property sectionGroups in users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property sections for users" """ helps['notes create-section'] = """ type: command short-summary: "Create new navigation property to sections for users" """ helps['notes create-section-group'] = """ type: command short-summary: "Create new navigation property to sectionGroups for users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes get-section'] = """ type: command short-summary: "Get sections from users" """ helps['notes get-section-group'] = """ type: command short-summary: "Get sectionGroups from users" """ helps['notes list-section'] = """ type: command short-summary: "Get sections from users" """ helps['notes list-section-group'] = """ type: command short-summary: "Get sectionGroups from users" """ helps['notes update-section'] = """ type: command short-summary: "Update the navigation property sections in users" """ helps['notes update-section-group'] = """ type: command short-summary: "Update the navigation property sectionGroups in users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property parentSectionGroup for users" """ helps['notes create-section'] = """ type: command short-summary: "Create new navigation property to sections for users" """ helps['notes create-section-group'] = """ type: command short-summary: "Create new navigation property to sectionGroups for users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes get-parent-notebook'] = """ type: command short-summary: "Get parentNotebook from users" """ helps['notes get-parent-section-group'] = """ type: command short-summary: "Get parentSectionGroup from users" """ helps['notes get-section'] = """ type: command short-summary: "Get sections from users" """ helps['notes get-section-group'] = """ type: command short-summary: "Get sectionGroups from users" """ helps['notes list-section'] = """ type: command short-summary: "Get sections from users" """ helps['notes list-section-group'] = """ type: command short-summary: "Get sectionGroups from users" """ helps['notes update-parent-notebook'] = """ type: command short-summary: "Update the navigation property parentNotebook in users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-parent-section-group'] = """ type: command short-summary: "Update the navigation property parentSectionGroup in users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes update-section'] = """ type: command short-summary: "Update the navigation property sections in users" """ helps['notes update-section-group'] = """ type: command short-summary: "Update the navigation property sectionGroups in users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property sections for users" """ helps['notes create-section'] = """ type: command short-summary: "Create new navigation property to sections for users" """ helps['notes create-section-group'] = """ type: command short-summary: "Create new navigation property to sectionGroups for users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes get-section'] = """ type: command short-summary: "Get sections from users" """ helps['notes get-section-group'] = """ type: command short-summary: "Get sectionGroups from users" """ helps['notes list-section'] = """ type: command short-summary: "Get sections from users" """ helps['notes list-section-group'] = """ type: command short-summary: "Get sectionGroups from users" """ helps['notes update-section'] = """ type: command short-summary: "Update the navigation property sections in users" """ helps['notes update-section-group'] = """ type: command short-summary: "Update the navigation property sectionGroups in users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property parentSectionGroup for users" """ helps['notes create-page'] = """ type: command short-summary: "Create new navigation property to pages for users" """ helps['notes get-page'] = """ type: command short-summary: "Get pages from users" """ helps['notes get-parent-notebook'] = """ type: command short-summary: "Get parentNotebook from users" """ helps['notes get-parent-section-group'] = """ type: command short-summary: "Get parentSectionGroup from users" """ helps['notes list-page'] = """ type: command short-summary: "Get pages from users" """ helps['notes update-page'] = """ type: command short-summary: "Update the navigation property pages in users" """ helps['notes update-parent-notebook'] = """ type: command short-summary: "Update the navigation property parentNotebook in users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-parent-section-group'] = """ type: command short-summary: "Update the navigation property parentSectionGroup in users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property parentSection for users" """ helps['notes get-parent-notebook'] = """ type: command short-summary: "Get parentNotebook from users" """ helps['notes get-parent-section'] = """ type: command short-summary: "Get parentSection from users" """ helps['notes update-parent-notebook'] = """ type: command short-summary: "Update the navigation property parentNotebook in users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-parent-section'] = """ type: command short-summary: "Update the navigation property parentSection in users" """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property parentSectionGroup for users" """ helps['notes create-page'] = """ type: command short-summary: "Create new navigation property to pages for users" """ helps['notes get-page'] = """ type: command short-summary: "Get pages from users" """ helps['notes get-parent-notebook'] = """ type: command short-summary: "Get parentNotebook from users" """ helps['notes get-parent-section-group'] = """ type: command short-summary: "Get parentSectionGroup from users" """ helps['notes list-page'] = """ type: command short-summary: "Get pages from users" """ helps['notes update-page'] = """ type: command short-summary: "Update the navigation property pages in users" """ helps['notes update-parent-notebook'] = """ type: command short-summary: "Update the navigation property parentNotebook in users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-parent-section-group'] = """ type: command short-summary: "Update the navigation property parentSectionGroup in users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property parentSection for users" """ helps['notes get-parent-notebook'] = """ type: command short-summary: "Get parentNotebook from users" """ helps['notes get-parent-section'] = """ type: command short-summary: "Get parentSection from users" """ helps['notes update-parent-notebook'] = """ type: command short-summary: "Update the navigation property parentNotebook in users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-parent-section'] = """ type: command short-summary: "Update the navigation property parentSection in users" """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property sections for users" """ helps['notes create-section'] = """ type: command short-summary: "Create new navigation property to sections for users" """ helps['notes create-section-group'] = """ type: command short-summary: "Create new navigation property to sectionGroups for users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes get-section'] = """ type: command short-summary: "Get sections from users" """ helps['notes get-section-group'] = """ type: command short-summary: "Get sectionGroups from users" """ helps['notes list-section'] = """ type: command short-summary: "Get sections from users" """ helps['notes list-section-group'] = """ type: command short-summary: "Get sectionGroups from users" """ helps['notes update-section'] = """ type: command short-summary: "Update the navigation property sections in users" """ helps['notes update-section-group'] = """ type: command short-summary: "Update the navigation property sectionGroups in users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property sections for users" """ helps['notes create-section'] = """ type: command short-summary: "Create new navigation property to sections for users" """ helps['notes create-section-group'] = """ type: command short-summary: "Create new navigation property to sectionGroups for users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes get-section'] = """ type: command short-summary: "Get sections from users" """ helps['notes get-section-group'] = """ type: command short-summary: "Get sectionGroups from users" """ helps['notes list-section'] = """ type: command short-summary: "Get sections from users" """ helps['notes list-section-group'] = """ type: command short-summary: "Get sectionGroups from users" """ helps['notes update-section'] = """ type: command short-summary: "Update the navigation property sections in users" """ helps['notes update-section-group'] = """ type: command short-summary: "Update the navigation property sectionGroups in users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property parentSectionGroup for users" """ helps['notes create-page'] = """ type: command short-summary: "Create new navigation property to pages for users" """ helps['notes get-page'] = """ type: command short-summary: "Get pages from users" """ helps['notes get-parent-notebook'] = """ type: command short-summary: "Get parentNotebook from users" """ helps['notes get-parent-section-group'] = """ type: command short-summary: "Get parentSectionGroup from users" """ helps['notes list-page'] = """ type: command short-summary: "Get pages from users" """ helps['notes update-page'] = """ type: command short-summary: "Update the navigation property pages in users" """ helps['notes update-parent-notebook'] = """ type: command short-summary: "Update the navigation property parentNotebook in users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-parent-section-group'] = """ type: command short-summary: "Update the navigation property parentSectionGroup in users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property parentSection for users" """ helps['notes get-parent-notebook'] = """ type: command short-summary: "Get parentNotebook from users" """ helps['notes get-parent-section'] = """ type: command short-summary: "Get parentSection from users" """ helps['notes update-parent-notebook'] = """ type: command short-summary: "Update the navigation property parentNotebook in users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-parent-section'] = """ type: command short-summary: "Update the navigation property parentSection in users" """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property sections for users" """ helps['notes create-section'] = """ type: command short-summary: "Create new navigation property to sections for users" """ helps['notes create-section-group'] = """ type: command short-summary: "Create new navigation property to sectionGroups for users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes get-section'] = """ type: command short-summary: "Get sections from users" """ helps['notes get-section-group'] = """ type: command short-summary: "Get sectionGroups from users" """ helps['notes list-section'] = """ type: command short-summary: "Get sections from users" """ helps['notes list-section-group'] = """ type: command short-summary: "Get sectionGroups from users" """ helps['notes update-section'] = """ type: command short-summary: "Update the navigation property sections in users" """ helps['notes update-section-group'] = """ type: command short-summary: "Update the navigation property sectionGroups in users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property parentSectionGroup for users" """ helps['notes create-section'] = """ type: command short-summary: "Create new navigation property to sections for users" """ helps['notes create-section-group'] = """ type: command short-summary: "Create new navigation property to sectionGroups for users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes get-parent-notebook'] = """ type: command short-summary: "Get parentNotebook from users" """ helps['notes get-parent-section-group'] = """ type: command short-summary: "Get parentSectionGroup from users" """ helps['notes get-section'] = """ type: command short-summary: "Get sections from users" """ helps['notes get-section-group'] = """ type: command short-summary: "Get sectionGroups from users" """ helps['notes list-section'] = """ type: command short-summary: "Get sections from users" """ helps['notes list-section-group'] = """ type: command short-summary: "Get sectionGroups from users" """ helps['notes update-parent-notebook'] = """ type: command short-summary: "Update the navigation property parentNotebook in users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-parent-section-group'] = """ type: command short-summary: "Update the navigation property parentSectionGroup in users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes update-section'] = """ type: command short-summary: "Update the navigation property sections in users" """ helps['notes update-section-group'] = """ type: command short-summary: "Update the navigation property sectionGroups in users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property sections for users" """ helps['notes create-section'] = """ type: command short-summary: "Create new navigation property to sections for users" """ helps['notes create-section-group'] = """ type: command short-summary: "Create new navigation property to sectionGroups for users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes get-section'] = """ type: command short-summary: "Get sections from users" """ helps['notes get-section-group'] = """ type: command short-summary: "Get sectionGroups from users" """ helps['notes list-section'] = """ type: command short-summary: "Get sections from users" """ helps['notes list-section-group'] = """ type: command short-summary: "Get sectionGroups from users" """ helps['notes update-section'] = """ type: command short-summary: "Update the navigation property sections in users" """ helps['notes update-section-group'] = """ type: command short-summary: "Update the navigation property sectionGroups in users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property parentSectionGroup for users" """ helps['notes create-section'] = """ type: command short-summary: "Create new navigation property to sections for users" """ helps['notes create-section-group'] = """ type: command short-summary: "Create new navigation property to sectionGroups for users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes get-parent-notebook'] = """ type: command short-summary: "Get parentNotebook from users" """ helps['notes get-parent-section-group'] = """ type: command short-summary: "Get parentSectionGroup from users" """ helps['notes get-section'] = """ type: command short-summary: "Get sections from users" """ helps['notes get-section-group'] = """ type: command short-summary: "Get sectionGroups from users" """ helps['notes list-section'] = """ type: command short-summary: "Get sections from users" """ helps['notes list-section-group'] = """ type: command short-summary: "Get sectionGroups from users" """ helps['notes update-parent-notebook'] = """ type: command short-summary: "Update the navigation property parentNotebook in users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-parent-section-group'] = """ type: command short-summary: "Update the navigation property parentSectionGroup in users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes update-section'] = """ type: command short-summary: "Update the navigation property sections in users" """ helps['notes update-section-group'] = """ type: command short-summary: "Update the navigation property sectionGroups in users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property parentSectionGroup for users" """ helps['notes create-section'] = """ type: command short-summary: "Create new navigation property to sections for users" """ helps['notes create-section-group'] = """ type: command short-summary: "Create new navigation property to sectionGroups for users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes get-parent-notebook'] = """ type: command short-summary: "Get parentNotebook from users" """ helps['notes get-parent-section-group'] = """ type: command short-summary: "Get parentSectionGroup from users" """ helps['notes get-section'] = """ type: command short-summary: "Get sections from users" """ helps['notes get-section-group'] = """ type: command short-summary: "Get sectionGroups from users" """ helps['notes list-section'] = """ type: command short-summary: "Get sections from users" """ helps['notes list-section-group'] = """ type: command short-summary: "Get sectionGroups from users" """ helps['notes update-parent-notebook'] = """ type: command short-summary: "Update the navigation property parentNotebook in users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --links-one-note-client-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-client-url href=XX href: The url of the link. - name: --links-one-note-web-url short-summary: "externalLink" long-summary: | Usage: --links-one-note-web-url href=XX href: The url of the link. """ helps['notes update-parent-section-group'] = """ type: command short-summary: "Update the navigation property parentSectionGroup in users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes update-section'] = """ type: command short-summary: "Update the navigation property sections in users" """ helps['notes update-section-group'] = """ type: command short-summary: "Update the navigation property sectionGroups in users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes'] = """ type: group short-summary: notes """ helps['notes delete'] = """ type: command short-summary: "Delete navigation property sections for users" """ helps['notes create-section'] = """ type: command short-summary: "Create new navigation property to sections for users" """ helps['notes create-section-group'] = """ type: command short-summary: "Create new navigation property to sectionGroups for users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """ helps['notes get-section'] = """ type: command short-summary: "Get sections from users" """ helps['notes get-section-group'] = """ type: command short-summary: "Get sectionGroups from users" """ helps['notes list-section'] = """ type: command short-summary: "Get sections from users" """ helps['notes list-section-group'] = """ type: command short-summary: "Get sectionGroups from users" """ helps['notes update-section'] = """ type: command short-summary: "Update the navigation property sections in users" """ helps['notes update-section-group'] = """ type: command short-summary: "Update the navigation property sectionGroups in users" parameters: - name: --last-modified-by-application short-summary: "identity" long-summary: | Usage: --last-modified-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-device short-summary: "identity" long-summary: | Usage: --last-modified-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --last-modified-by-user short-summary: "identity" long-summary: | Usage: --last-modified-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-application short-summary: "identity" long-summary: | Usage: --created-by-application display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-device short-summary: "identity" long-summary: | Usage: --created-by-device display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. - name: --created-by-user short-summary: "identity" long-summary: | Usage: --created-by-user display-name=XX id=XX display-name: The identity's display name. Note that this may not always be available or up to date. For \ example, if a user changes their display name, the API may show the new value in a future response, but the items \ associated with the user won't show up as having changed when using delta. id: Unique identifier for the identity. """
9ce8ba8ed02d447b630541ebffebfeb1900a1f8a
83c62d10899b4e5d7028915a9f727bcdec0f861c
/reports/tests.py
e868d5496f433f94b227b269b675d01567a51c08
[ "Apache-2.0" ]
permissive
meetjitesh/cito_engine
1b70139d762a9540bc40d2544ff4c9884de4eef3
ae63ff1147fa1c536dc2673e873768e5624b40bb
refs/heads/master
2020-12-26T10:45:52.137856
2014-05-18T14:19:38
2014-05-18T14:19:38
null
0
0
null
null
null
null
UTF-8
Python
false
false
618
py
"""Copyright 2014 Cyrus Dasadia Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. """ from django.test import TestCase # Create your tests here.
64217402f5ba7531d6d16c011e9923000e824b9a
919e74f05976d9ea5f28d5dcf0a3e9311a4d22b2
/conans/test/integration/cache/test_home_special_char.py
9c8ad39a70060a614aa24ffe500e1e6c0b312817
[ "MIT" ]
permissive
thorsten-klein/conan
1801b021a66a89fc7d83e32100a6a44e98d4e567
7cf8f384b00ba5842886e39b2039963fc939b00e
refs/heads/develop
2023-09-01T12:04:28.975538
2023-07-26T10:55:02
2023-07-26T10:55:02
150,574,910
0
0
MIT
2023-08-22T14:45:06
2018-09-27T11:16:48
Python
UTF-8
Python
false
false
2,319
py
import os import platform import pytest from conans.test.utils.test_files import temp_folder from conans.test.utils.tools import TestClient import textwrap _path_chars = "päthñç$" @pytest.fixture(scope="module") def client_with_special_chars(): """ the path with special characters is creating a conanbuild.bat that fails """ cache_folder = os.path.join(temp_folder(), _path_chars) current_folder = os.path.join(temp_folder(), _path_chars) c = TestClient(cache_folder, current_folder) tool = textwrap.dedent(r""" import os from conan import ConanFile from conan.tools.files import save, chdir class Pkg(ConanFile): name = "mytool" version = "1.0" def package(self): with chdir(self, self.package_folder): echo = "@echo off\necho MYTOOL WORKS!!" save(self, "bin/mytool.bat", echo) save(self, "bin/mytool.sh", echo) os.chmod("bin/mytool.sh", 0o777) """) c.save({"conanfile.py": tool}) c.run("create .") conan_file = textwrap.dedent(""" import platform from conan import ConanFile class App(ConanFile): name="failure" version="0.1" settings = 'os', 'arch', 'compiler', 'build_type' generators = "VirtualBuildEnv" tool_requires = "mytool/1.0" apply_env = False # SUPER IMPORTANT, DO NOT REMOVE def build(self): mycmd = "mytool.bat" if platform.system() == "Windows" else "mytool.sh" self.run(mycmd) """) c.save({"conanfile.py": conan_file}) return c def test_reuse_buildenv(client_with_special_chars): c = client_with_special_chars # Need the 2 profile to work correctly buildenv c.run("create . -s:b build_type=Release") assert _path_chars in c.out assert "MYTOOL WORKS!!" in c.out @pytest.mark.skipif(platform.system() != "Windows", reason="powershell only win") def test_reuse_buildenv_powershell(client_with_special_chars): c = client_with_special_chars c.run("create . -s:b build_type=Release -c tools.env.virtualenv:powershell=True") assert _path_chars in c.out assert "MYTOOL WORKS!!" in c.out
2fd3bcd0b1e0a265de56a4a6fcf68eb7015bb7eb
98c6ea9c884152e8340605a706efefbea6170be5
/examples/data/Assignment_6/sngakh004/question4.py
64ef79e9395c406a90e97ab814688ab603b0c013
[]
no_license
MrHamdulay/csc3-capstone
479d659e1dcd28040e83ebd9e3374d0ccc0c6817
6f0fa0fa1555ceb1b0fb33f25e9694e68b6a53d2
refs/heads/master
2021-03-12T21:55:57.781339
2014-09-22T02:22:22
2014-09-22T02:22:22
22,372,174
0
0
null
null
null
null
UTF-8
Python
false
false
985
py
"""Akhil Singh SNGAKH004 Program to draw a histogram of class mark data. 23 April 2014""" #Get class marks from user class_mark=input("Enter a space-separated list of marks:\n") #Converting a string into a list of intergers class_mark=class_mark.split() for a in range(len(class_mark)): class_mark[a]=eval(class_mark[a]) #Specifying acumulators for variables first = 0 upper_second = 0 lower_second = 0 third = 0 fail = 0 #Determining the place of marks for m in class_mark: if m >= 75: first = first +1 elif m >= 70: upper_second =upper_second + 1 elif m >= 60: lower_second =lower_second+ 1 elif m >= 50: third=third + 1 else: fail=fail+ 1 #Print histogram. print("1 |", "X"*first, sep = "") print("2+|", "X"*upper_second, sep = "") print("2-|", "X"*lower_second, sep = "") print("3 |", "X"*third, sep = "") print("F |", "X"*fail, sep = "")
4370fe568105d6947b4b17e170453c6a279fbf30
3f3471faa4a693fb18adb651500753f637ab1916
/book.py
65bdcf54cb5837e194d347af766617add40fcbf4
[]
no_license
sarte3/pj5
1f7a54fc5a6e78a3e803416787ea32c3626761cd
afdb2dd49292c8647f9dec5a061a8d4f1bba06d7
refs/heads/master
2023-03-06T04:11:22.607225
2021-02-25T05:17:36
2021-02-25T05:17:36
342,131,195
0
0
null
null
null
null
UTF-8
Python
false
false
1,384
py
from datetime import datetime import pandas as pd import matplotlib.pyplot as plt # 한글처리 from matplotlib import font_manager, rc fontname = font_manager.FontProperties(fname='malgun.ttf').get_name() rc('font', family=fontname) import json import os import sys import urllib.request client_id = "twrhEE4LU8HoKxIrMwzM" client_secret = "hsPSocfNRK" encText = urllib.parse.quote("파이썬") url = "https://openapi.naver.com/v1/search/book.json?display=100&query=" + encText # json 결과 # url = "https://openapi.naver.com/v1/search/blog.xml?query=" + encText # xml 결과 request = urllib.request.Request(url) request.add_header("X-Naver-Client-Id",client_id) request.add_header("X-Naver-Client-Secret",client_secret) response = urllib.request.urlopen(request) rescode = response.getcode() if(rescode==200): response_body = response.read() result = response_body.decode('utf-8') else: print("Error Code:" + rescode) dic = json.loads(result) # print(dic) # 1) 네이버 개발자 센터에서 파이썬 책을 검색하여 # 책 제목, 출판사, 가격, isbn열을 데이터프레임 df로 생성하세요. items = dic['items'] df=pd.DataFrame(items) df = df[['title', 'publisher', 'price', 'isbn']] print(df) # 2) 출판사별 가격의 평균을 출력하세요 df['price']=pd.to_numeric(df['price']) g1 = df.groupby('publisher')['price'].mean() print(g1)
e548f54d3a7c8da2d51938e1da6415835d9d5685
94f156b362fbce8f89c8e15cd7687f8af267ef08
/midterm/main/permissions.py
57ee4beb272ac8cfc9255ea149ac2f53b1a21476
[]
no_license
DastanB/AdvancedDjango
6eee5477cd5a00423972c9cc3d2b5f1e4a501841
2b5d4c22b278c6d0e08ab7e84161163fe42e9a3f
refs/heads/master
2020-07-17T19:21:16.271964
2019-12-03T21:58:51
2019-12-03T21:58:51
206,081,522
0
0
null
null
null
null
UTF-8
Python
false
false
1,228
py
from rest_framework.permissions import IsAuthenticated, BasePermission from users.models import MainUser class ProductPermission(BasePermission): message = 'You must be the authenticated.' def has_permission(self, request, view): if view.action is 'create': return request.user.is_superuser or request.user.is_store_admin return request.user.is_authenticated def has_object_permission(self, request, view, obj): if not request.user.is_authenticated: return False if view.action is not 'retrieve': return request.user.is_superuser or request.user.is_store_admin return True class ServicePermission(BasePermission): message = 'You must be authenticated.' def has_permission(self, request, view): if view.action is 'create': return request.user.is_superuser or request.user.is_store_admin return request.user.is_authenticated def has_object_permission(self, request, view, obj): if not request.user.is_authenticated: return False if view.action is not 'retrieve': return request.user.is_superuser or request.user.is_store_admin return True
7bbe3d2066efd578b09eee3aee8ab3d57cc65694
c95310db610fd4ca1899903d3982d0733c2c693d
/problems/reverse_bits/solution.py
5fbfca10974c1a7d264cfe02ae82088da1d3273a
[]
no_license
findcongwang/leetcode
e8cbc8899a6af2134de66d6ff1a1ead4c10d38e6
f52ea63fc0680613a3ebf3f3b4e4f1be7bbfd87c
refs/heads/main
2023-02-25T17:33:41.270128
2021-01-29T17:57:15
2021-01-29T17:57:15
306,998,473
0
0
null
null
null
null
UTF-8
Python
false
false
221
py
class Solution: def reverseBits(self, n: int) -> int: count = 31 num = 0 while n > 0: num = num + ((n&1) * 2**count) n = n >> 1 count -= 1 return num
acc0a1be6531ff69b956ab61565fa4ebda0839ee
5cc94ad2377777067e7e9fad08823f201b790a63
/github-backup
94c4a4a40db48d1d39243f0149b93648e9e996ca
[]
no_license
rrosajp/github-backup
86ea44a6addd24072cfe150de2be4c4a71310720
a538de0bd0a29b82f4cc669cf60132aa83548469
refs/heads/master
2022-03-17T23:15:25.856395
2019-11-27T19:02:35
2019-11-27T19:02:35
273,772,938
1
0
null
2020-06-20T19:37:44
2020-06-20T19:37:43
null
UTF-8
Python
false
false
4,511
#!/usr/bin/env python3 # -*- coding: utf-8 -*- # # github_backup.py # # Copyright 2017 Spencer McIntyre <[email protected]> # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are # met: # # * Redistributions of source code must retain the above copyright # notice, this list of conditions and the following disclaimer. # * Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following disclaimer # in the documentation and/or other materials provided with the # distribution. # * Neither the name of the nor the names of its # contributors may be used to endorse or promote products derived from # this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # import argparse import fnmatch import getpass import os import shutil import sys import git import github import yaml __version__ = '1.0' def _get_github(arguments, config): if arguments.auth_token: gh = github.Github(arguments.auth_token) elif arguments.auth_user: password = getpass.getpass("{0}@github.com: ".format(arguments.auth_user)) gh = github.Github(arguments.auth_user, password) else: gh = github.Github(config['token']) return gh def _backup_repo(repo_url, destination): repo = None if os.path.isdir(destination): repo = git.Repo(destination) for remote in repo.remotes: remote.fetch() else: try: repo = git.Repo.clone_from(repo_url, destination) except git.exc.GitCommandError: if os.path.isdir(destination): shutil.rmtree(destination) return repo def backup_repo(repo, destination): destination = os.path.join(destination, *repo.full_name.split('/')) _backup_repo(repo.ssh_url, destination) def backup_wiki(repo, destination): destination = os.path.join(destination, *repo.full_name.split('/')) + '.wiki' _backup_repo(repo.ssh_url[:-4] + '.wiki.git', destination) def repo_matches_rules(rules, repo_slug, default=True): for rule in rules: result = True if rule.startswith('!'): result = False rule = rule[1:] if fnmatch.fnmatch(repo_slug, rule): return result return default def main(): parser = argparse.ArgumentParser(description='GitHub Backup', conflict_handler='resolve') parser.add_argument('-v', '--version', action='version', version='%(prog)s Version: ' + __version__) auth_type_parser_group = parser.add_mutually_exclusive_group() auth_type_parser_group.add_argument('--auth-token', dest='auth_token', help='authenticate to github with a token') auth_type_parser_group.add_argument('--auth-user', dest='auth_user', help='authenticate to github with credentials') parser.add_argument('--dry-run', action='store_true', default=False, help='do not backup any repositories') parser.add_argument('config', type=argparse.FileType('r'), help='the configuration file') arguments = parser.parse_args() config = yaml.safe_load(arguments.config) gh = _get_github(arguments, config) user = gh.get_user() repos = [] for repo in user.get_repos(): if not repo_matches_rules(config['rules'], repo.full_name): continue repos.append(repo) print("rules matched {0:,} repositories".format(len(repos))) destination = config['destination'] if not os.path.isdir(destination): os.makedirs(destination) width = len(str(len(repos))) for idx, repo in enumerate(repos, 1): print("[{0: >{width}}/{1: >{width}}] processing: {2}".format(idx, len(repos), repo.full_name, width=width)) if arguments.dry_run: continue backup_repo(repo, destination) if 'wikis' in config['include'] and repo.has_wiki: backup_wiki(repo, destination) return 0 if __name__ == '__main__': sys.exit(main())
3fb43fde0c3c30ff359ad45502555447f39d8cdb
6543e5bfec2f2d89ac6a7e42e8f38d2f3df26615
/1306JumpGameIII.py
5545d7464d227a8cbade8389f59323cc7f68b298
[]
no_license
adityachhajer/LeetCodeSolutions
bc3136fa638a3b2c7d35e419a063e9ce257bc1af
693fd3aef0f823f9c3cfc14c3d1010584b7a762d
refs/heads/master
2023-02-17T08:21:00.064932
2021-01-19T14:05:08
2021-01-19T14:05:08
270,973,258
2
1
null
2020-09-30T18:30:21
2020-06-09T10:33:39
Python
UTF-8
Python
false
false
532
py
class Solution: def solve(self,arr,start,ans): if start>=len(arr) or start<0: return False elif arr[start]==0: # ans[start]=True return True elif ans[start]==1: return False else: ans[start]=1 return self.solve(arr, start+arr[start], ans) or self.solve(arr,start-arr[start],ans) def canReach(self, arr: List[int], start: int) -> bool: ans = [0] * len(arr) return self.solve(arr, start, ans)
fe1a0e8c9ddaa1a7fa94404a66e4dc8769440385
e2a006a139330bca613169e547e185b1a5048646
/L8/busca_punto.py
a31fad5cb4ef87ebcb323606529b9ccf720bee06
[]
no_license
Mi7ai/EI1022
013d54d470b38c125503c0173b355cc7bc681784
f80d5b4f99e1427fd5c2673499a3eee0d1dfc1ca
refs/heads/master
2020-03-29T13:54:58.231532
2018-12-05T13:50:27
2018-12-05T13:50:27
149,988,593
0
0
null
null
null
null
UTF-8
Python
false
false
976
py
def busca_punto_rec(v): def rec(b: int, e:int ): if e-b == 0: return None h = (b+e)//2 if v[h] < h: return rec(h,e) elif v[h] > h: return rec(b,h) else: return h return rec(0, len(v)) #para acasa hacrlo sin recursividad # def busca_punto_fijo(v): # def rec(b: int, e:int ): # #cond de parada del while if e-b == 0: return None # # #dentro del while # h = (b+e)//2 # if v[h] < h: # return rec(h,b) # elif v[h] > h: # return rec(b,h) # else: # return h # #hasta aqui # return rec(0, len(v)) def busca_punto_pico(v): def rec(b: int, e: int): if e-b == 1: return b h = (b+e)//2 #mitad if v[h] <= h: return rec(h, e) return rec(b,h) return rec(0, len(v)) if __name__ == "__main__": v = [-10, -5, 1, 15, 3, 6] print(busca_punto_pico(v))
7e8185b954c7aad21024d466b6adf503e4442918
4664bb1572d1d9bb90f99a11016d0fbe9b28c632
/search/utils/constants.py
647ceca9fa4eb44b99e06938b96dd418393a4d69
[]
no_license
prdx/Indexer
32cfbf05dfec595c00550322859260c15a2906e8
08b52734b293cb2f0a57ed74d818ece70425711f
refs/heads/master
2020-03-22T23:22:27.947273
2018-07-20T16:27:40
2018-07-20T16:27:40
null
0
0
null
null
null
null
UTF-8
Python
false
false
494
py
class Constants: CACHE_PATH = './cache/' DATA_PATH = './AP_DATA/ap89_collection/' DOC_TYPE = 'document' DOCLIST_PATH = './AP_DATA/processed_doclist.txt' ES_SCRIPTS_PATH = './es/' INDEX_NAME = 'ap89_collection' MAX_OUTPUT = 1000 RESULTS_PATH = './results/' STOPWORDS_PATH = './AP_DATA/stoplist.txt' USE_STEMMING = False QUERY_LIST_PATH = './AP_DATA/query_desc.51-100.short.txt' QUERY_LIST_PATH_FOR_PS = './AP_DATA/query_desc.51-100.short.ps.txt'
d3b38d9183e453184a9cbc3ba6574a778fc49705
74649c1220c68ad0af79e420d572e3769fcd7a53
/_unittests/ut_documentation/test_run_notebooks_onnx_viz.py
6a0613ce77a5e839c1437dc40f2a84f34aab0076
[ "MIT" ]
permissive
sdpython/mlprodict
e62edcb428700cb2c4527e54e96431c1d2b36118
27d6da4ecdd76e18292f265fde61d19b66937a5c
refs/heads/master
2023-05-08T10:44:30.418658
2023-03-08T22:48:56
2023-03-08T22:48:56
112,469,804
60
13
MIT
2023-04-19T01:21:38
2017-11-29T11:57:10
Python
UTF-8
Python
false
false
991
py
# -*- coding: utf-8 -*- """ @brief test log(time=30s) """ import os import unittest from pyquickhelper.loghelper import fLOG from pyquickhelper.ipythonhelper import test_notebook_execution_coverage from pyquickhelper.pycode import ( add_missing_development_version, ExtTestCase ) import mlprodict class TestNotebookOnnxViz(ExtTestCase): def setUp(self): add_missing_development_version(["jyquickhelper"], __file__, hide=True) def test_notebook_onnx_vis(self): fLOG( __file__, self._testMethodName, OutputPrint=__name__ == "__main__") self.assertNotEmpty(mlprodict is not None) folder = os.path.join(os.path.dirname(__file__), "..", "..", "_doc", "notebooks") test_notebook_execution_coverage(__file__, "onnx_visualization", folder, this_module_name="mlprodict", fLOG=fLOG) if __name__ == "__main__": unittest.main()
82a1fc92fe198a109b3287ee4730928c9d081839
1978a9455159b7c2f3286e0ad602652bc5277ffa
/exercises/04_data_structures/task_4_8.py
e089dd1a02e42d41758421e563cf86a42a9f841c
[]
no_license
fortredux/py_net_eng
338fd7a80debbeda55b5915dbfba4f5577279ef0
61cf0b2a355d519c58bc9f2b59d7e5d224922890
refs/heads/master
2020-12-03T17:32:53.598813
2020-04-08T20:55:45
2020-04-08T20:55:45
231,409,656
0
0
null
null
null
null
UTF-8
Python
false
false
1,337
py
# -*- coding: utf-8 -*- ''' Задание 4.8 Преобразовать IP-адрес в двоичный формат и вывести на стандартный поток вывода вывод столбцами, таким образом: - первой строкой должны идти десятичные значения байтов - второй строкой двоичные значения Вывод должен быть упорядочен также, как в примере: - столбцами - ширина столбца 10 символов Пример вывода для адреса 10.1.1.1: 10 1 1 1 00001010 00000001 00000001 00000001 Ограничение: Все задания надо выполнять используя только пройденные темы. ''' ip = '192.168.3.1' ip_template = ''' {0:<10} {1:<10} {2:<10} {3:<10} {0:010b} {1:010b} {2:010b} {3:010b} ''' ip_split = ip.split('.') a = int(ip_split[0]) # Нужно перевести в число, b = int(ip_split[1]) # иначе будет ошибка, c = int(ip_split[2]) # ведь в шаблоне для перевода в двоичную систему d = int(ip_split[3]) # нужны числа, а не сторки print(ip_template.format(a, b, c, d))
920f4452d90e699d289148b8978d08ac6d9ab071
ca9ab449331c31c1046ddbdd09a7079a65024a8a
/data_structure/dict/dictionary-basic.py
f66a2c66a35de603ed5c996bb9c524f11ebfc656
[]
no_license
linth/learn-python
95947fd40f578d4473496c263ab45a7459fe4773
33c36b45c0dc46cf6d9a5d1237b63c8c2442b3fd
refs/heads/master
2023-04-28T17:08:06.473326
2023-04-24T17:09:41
2023-04-24T17:09:41
172,464,385
0
0
null
null
null
null
UTF-8
Python
false
false
1,583
py
# dictionary: key and value. dict = { "name": "George", "year": 2019, "sex": "boy", "weight": 78, "height": 190, } print(dict) # get value print(dict['year']) # first way to get value. x = dict.get('year') # another way to get value. print(x) # 2019. # change value dict['year'] = 2000 print(dict['year']) # 2000. # use for loop to show data for i in dict.keys(): # show keys. print('keys = ', i) # name, year, sex, weight, height. for x in dict.values(): # show value. print('values = ', x) # George, 2000, boy, 78, 190. for x, y in dict.items(): print(x, y) # name George, year 2000, sex boy, weight 78, height 190. # copy dictionary x = dict.copy() print(x) # {'name': 'George', 'year': 2000, 'sex': 'boy', 'weight': 78, 'height': 190} # add items. dict = { "name": "George", "year": 2019, "sex": "boy", "weight": 78, "height": 190, } dict['name'] = 'Peter' print(dict) # name Peter, year 2019, sex boy, weight 78, height 190. # remove item dict.pop('name') print(dict) # year 2019, sex boy, weight 78, height 190. z = dict.clear() # remove all data. print(z) # return None. # remove the lastinserted item dict = {"year": 2019, "sex": "boy", "weight": 78, "height": 190} dict.popitem() print(dict) # year 2019, sex boy, weight 78 # remove the specified key name. del dict['year'] print(dict) # sex boy, weight 78 # update, merge two dict # it's for python 2.x and it's not support to python 3 up. # dict1 = {"name": "George", "id": 1234} # dict2 = {"name": "Peter", "id": 3456} # print(dict1.update(dict2))
d348b2ed798851b3ca34bbfdcb624c6df23eb785
b107883be08ea56bd3a56ddb0e2dd8dacce7db2e
/src/polystar/pipeline/keras/trainer.py
db62a563eeff68041d0a316b49186f70f8caffa3
[]
no_license
PolySTAR-mtl/cv
ef7977b62577e520f6c69a9b7891c7f38e307028
27564abe89e7dff612e3630c31e080fae4164751
refs/heads/master
2023-05-01T16:45:19.777459
2021-05-30T10:36:10
2021-05-30T10:36:10
356,053,312
0
0
null
2021-05-30T10:36:11
2021-04-08T21:32:06
Python
UTF-8
Python
false
false
1,427
py
from dataclasses import dataclass, field from typing import List from numpy.core._multiarray_umath import ndarray from tensorflow.python.keras.callbacks import Callback from tensorflow.python.keras.models import Model from polystar.pipeline.keras.compilation_parameters import KerasCompilationParameters from polystar.pipeline.keras.data_preparator import KerasDataPreparator from polystar.pipeline.keras.model_preparator import KerasModelPreparator @dataclass class KerasTrainer: compilation_parameters: KerasCompilationParameters callbacks: List[Callback] data_preparator: KerasDataPreparator model_preparator: KerasModelPreparator = field(default_factory=KerasModelPreparator) max_epochs: int = 300 verbose: int = 0 def train( self, model: Model, train_images: ndarray, train_labels: ndarray, validation_images: ndarray, validation_labels: ndarray, ): model = self.model_preparator.prepare_model(model) model.compile(**self.compilation_parameters.__dict__) train_data, steps = self.data_preparator.prepare_training_data(train_images, train_labels) model.fit( x=train_data, validation_data=(validation_images, validation_labels), steps_per_epoch=steps, epochs=self.max_epochs, callbacks=self.callbacks, verbose=self.verbose, )
02ae2bc23f3e2eb1ae2eaa25d2b06540fd152327
109a8fb3e17ccf1efa6057d59441933ce678c2f0
/app/schemas/user_schema.py
39d4e7768ecc51aca1201755f784f6fcb9b635f7
[]
no_license
oulabla/rest_test
8daac7db642adb72a07a9662920bcbfd7b750fbf
fad8eb7bd253271706518b3ba6f117997ba08dfa
refs/heads/main
2023-08-27T07:39:15.079957
2021-10-15T15:56:02
2021-10-15T15:56:02
416,887,760
0
0
null
null
null
null
UTF-8
Python
false
false
801
py
from marshmallow import fields from . import BaseSchema from marshmallow_sqlalchemy import auto_field from marshmallow.fields import Date from marshmallow_sqlalchemy.fields import Nested from app.models.user import User from app.schemas.role_schema import RoleSchema from app.schemas.phone_schema import PhoneSchema class UserSchema(BaseSchema): class Meta: model=User load_instance=True dateformat = '%Y-%m-%dT%H:%M:%S' id = auto_field() name = auto_field() additional_info = auto_field() created_at = Date() updated_at = Date() roles = Nested(RoleSchema, many=True) phones = Nested(PhoneSchema, many=True) # def on_bind_field(self, field_name, field_obj): # super().on_bind_field(field_name, field_obj)
[ "=" ]
=
4db4ead4d9e8fc01e987b14c56aca330364ea2b7
6920575dc95c6800fb8e8088719afa88931281b5
/tests/validator/test_validating_a_motion.py
8f6a6c4882be98bfdbdde320c887b6a363fa5e59
[]
no_license
pipermerriam/ethereum-alarm-governance
091de3a3f72c95e097a24bd05a1d7ebe4738a01b
1b4a9a0355976f92e88396582a64fdfb50bbe858
refs/heads/master
2023-08-28T09:39:44.191755
2016-02-15T22:18:18
2016-02-15T22:18:18
47,724,489
2
0
null
null
null
null
UTF-8
Python
false
false
1,704
py
import pytest deploy_contracts = [] ONE_DAY = 24 * 60 * 60 @pytest.mark.parametrize( "quorium,pass_percentage,debate_period,executor,expected", ( (10000, 51, ONE_DAY, "0xd3cda913deb6f67967b99d67acdfa1712c293601", True), (10001, 51, ONE_DAY, "0xd3cda913deb6f67967b99d67acdfa1712c293601", True), (10000, 100, ONE_DAY, "0xd3cda913deb6f67967b99d67acdfa1712c293601", True), (10000, 100, ONE_DAY + 1, "0xd3cda913deb6f67967b99d67acdfa1712c293601", True), (9999, 100, ONE_DAY, "0xd3cda913deb6f67967b99d67acdfa1712c293601", False), (10000, 50, ONE_DAY, "0xd3cda913deb6f67967b99d67acdfa1712c293601", False), (10000, 51, ONE_DAY - 1, "0xd3cda913deb6f67967b99d67acdfa1712c293601", False), (10000, 51, ONE_DAY, "0x0000000000000000000000000000000000000000", False), ) ) def test_validation_with_acceptable_values(deploy_contract, contracts, deploy_client, accounts, get_log_data, deploy_coinbase, Status, quorium, debate_period, pass_percentage, executor, expected): validator = deploy_contract(contracts.Validator) validator.setMinimumQuorum.s(10000) validator.setMinimumPassPercentage.s(51) validator.setMinimumDebatePeriod.s(ONE_DAY) motion = deploy_contract( contracts.Motion, constructor_args=(deploy_coinbase,), ) motion.configure.s(quorium, debate_period, pass_percentage, executor) actual = validator.validate(motion._meta.address) assert actual is expected
2eb08aeab2d31864011a33b28fee95b6b159ea67
b011f9a78db79f3c68d6f53f74e83df3970bf8e0
/authl/__version__.py
f161374a9541bffb46c771e0f6ed93bd66566ff9
[ "MIT" ]
permissive
zaxtax/Authl
7504b1eef264da66085b12f1995b0d17aabbb95a
21bdacfff2761f91e3859ac0735e5902d3763e88
refs/heads/master
2021-04-21T01:45:53.256468
2020-02-29T03:32:59
2020-02-29T03:32:59
null
0
0
null
null
null
null
UTF-8
Python
false
false
54
py
""" current library version """ __version__ = '0.3.5'
ce88bf7af10a89c8474dffc2a82e54e04c1d6a2b
56ffce29f0d27f83206e11870d95982c38524aae
/apweb/site/configure.py
e40a59ea7cfb45c55048ca631afb93938572dc5f
[]
no_license
adamandpaul/apweb
cce365085e2ee58cfbc31544c5a7414e67ad56b4
b1bb81fa7d7b39f19e187462aa3447ff482b46af
refs/heads/master
2022-10-19T02:09:52.437906
2021-05-21T06:10:08
2021-05-21T06:10:08
201,398,036
0
3
null
2022-09-21T21:39:41
2019-08-09T05:41:06
Python
UTF-8
Python
false
false
1,316
py
# -*- coding:utf-8 -*- from .password_login_provider import PasswordLoginProvider from .resource import Site import apweb.authentication def site_factory(request): """Return a default site factory""" return Site.from_request(request) def get_user_for_unauthenticated_userid(request): email = request.unauthenticated_userid return request.site["users"].get_user_by_email(email) def get_identifiers(request): identifiers = [*apweb.authentication.get_identifiers(request)] user = request.user if user: identifiers.append(("user_uuid", str(user.user_uuid))) return identifiers def get_roles(request): roles = [*apweb.authentication.get_roles(request)] user = request.user if user: roles.extend(user.assigned_roles) roles.append('authenticated') return roles def includeme(config): """A site configureation""" config.include("apweb") config.add_request_method(site_factory, "site", reify=True) config.add_request_method(get_user_for_unauthenticated_userid, "user", reify=True) config.add_request_method(get_identifiers, "identifiers", reify=True) config.add_request_method(get_roles, "roles", reify=True) config.register_login_provider(PasswordLoginProvider()) config.include(".view") config.commit()
c948ad237c590dfd89ae5e491450ac4895fbb550
fa82dad9e83206d4630a55141bf44f50cbf0c3a8
/day1_python/01_python200_src/181.py
20a43d86dda37f41451faaad66761d0cd6d16b34
[]
no_license
jsh2333/pyml
8f8c53a43af23b8490b25f35f28d85f1087df28d
157dfa7cc2f1458f12e451691a994ac6ef138cab
refs/heads/master
2021-03-27T22:26:38.254206
2020-04-26T06:35:11
2020-04-26T06:35:11
249,114,580
3
1
null
null
null
null
UTF-8
Python
false
false
601
py
def countBirths(): ret = [] for y in range(1880, 2015): count = 0 filename = 'names/yob%d.txt' %y with open(filename, 'r') as f: data = f.readlines() for d in data: if d[-1] == '\n': d = d[:-1] birth = d.split(',')[2] count += int(birth) ret.append((y, count)) return ret result = countBirths() with open('birth_by_year.csv', 'w') as f: for year, birth in result: data = '%s,%s\n' %(year, birth) print(data) f.write(data)
4bee8633074dd1f2174f4054fd7cd3ce218bf717
d094ba0c8a9b1217fbf014aa79a283a49aabe88c
/env/lib/python3.6/site-packages/nilearn/mass_univariate/tests/test_permuted_least_squares.py
e873dc0a17226b11dce52a062647e51e0e9f3452
[ "Apache-2.0" ]
permissive
Raniac/NEURO-LEARN
d9274e0baadd97bb02da54bdfcf6ca091fc1c703
3c3acc55de8ba741e673063378e6cbaf10b64c7a
refs/heads/master
2022-12-25T23:46:54.922237
2020-09-06T03:15:14
2020-09-06T03:15:14
182,013,100
9
2
Apache-2.0
2022-12-09T21:01:00
2019-04-18T03:57:00
CSS
UTF-8
Python
false
false
23,016
py
""" Tests for the permuted_ols function. """ # Author: Virgile Fritsch, <[email protected]>, Feb. 2014 import numpy as np from scipy import stats from sklearn.utils import check_random_state from numpy.testing import (assert_almost_equal, assert_array_almost_equal, assert_array_less, assert_equal) from nilearn.mass_univariate import permuted_ols from nilearn.mass_univariate.permuted_least_squares import ( _t_score_with_covars_and_normalized_design, orthonormalize_matrix) def get_tvalue_with_alternative_library(tested_vars, target_vars, covars=None): """Utility function to compute tvalues with linalg or statsmodels Massively univariate linear model (= each target is considered independently). Parameters ---------- tested_vars: array-like, shape=(n_samples, n_regressors) Tested variates, the associated coefficient of which are to be tested independently with a t-test, resulting in as many t-values. target_vars: array-like, shape=(n_samples, n_targets) Target variates, to be approximated with a linear combination of the tested variates and the confounding variates. covars: array-like, shape=(n_samples, n_confounds) Confounding variates, to be fitted but not to be tested Returns ------- t-values: np.ndarray, shape=(n_regressors, n_targets) """ ### set up design n_samples, n_regressors = tested_vars.shape n_targets = target_vars.shape[1] if covars is not None: n_covars = covars.shape[1] design_matrix = np.hstack((tested_vars, covars)) else: n_covars = 0 design_matrix = tested_vars mask_covars = np.ones(n_regressors + n_covars, dtype=bool) mask_covars[:n_regressors] = False test_matrix = np.array([[1.] + [0.] * n_covars]) ### t-values computation try: # try with statsmodels if available (more concise) from statsmodels.regression.linear_model import OLS t_values = np.empty((n_targets, n_regressors)) for i in range(n_targets): current_target = target_vars[:, i].reshape((-1, 1)) for j in range(n_regressors): current_tested_mask = mask_covars.copy() current_tested_mask[j] = True current_design_matrix = design_matrix[:, current_tested_mask] ols_fit = OLS(current_target, current_design_matrix).fit() t_values[i, j] = np.ravel(ols_fit.t_test(test_matrix).tvalue) except: # use linalg if statsmodels is not available from numpy import linalg lost_dof = n_covars + 1 # fit all tested variates independently t_values = np.empty((n_targets, n_regressors)) for i in range(n_regressors): current_tested_mask = mask_covars.copy() current_tested_mask[i] = True current_design_matrix = design_matrix[:, current_tested_mask] invcov = linalg.pinv(current_design_matrix) normalized_cov = np.dot(invcov, invcov.T) t_val_denom_aux = np.diag( np.dot(test_matrix, np.dot(normalized_cov, test_matrix.T))) t_val_denom_aux = t_val_denom_aux.reshape((-1, 1)) for j in range(n_targets): current_target = target_vars[:, j].reshape((-1, 1)) res_lstsq = linalg.lstsq(current_design_matrix, current_target) residuals = (current_target - np.dot(current_design_matrix, res_lstsq[0])) t_val_num = np.dot(test_matrix, res_lstsq[0]) t_val_denom = np.sqrt( np.sum(residuals ** 2, 0) / float(n_samples - lost_dof) * t_val_denom_aux) t_values[j, i] = np.ravel(t_val_num / t_val_denom) return t_values ### Tests t-scores computation ################################################ def test_t_score_with_covars_and_normalized_design_nocovar(random_state=0): rng = check_random_state(random_state) ### Normalized data n_samples = 50 # generate data var1 = np.ones((n_samples, 1)) / np.sqrt(n_samples) var2 = rng.randn(n_samples, 1) var2 = var2 / np.sqrt(np.sum(var2 ** 2, 0)) # normalize # compute t-scores with nilearn routine t_val_own = _t_score_with_covars_and_normalized_design(var1, var2) # compute t-scores with linalg or statsmodels t_val_alt = get_tvalue_with_alternative_library(var1, var2) assert_array_almost_equal(t_val_own, t_val_alt) def test_t_score_with_covars_and_normalized_design_withcovar(random_state=0): """ """ rng = check_random_state(random_state) ### Normalized data n_samples = 50 # generate data var1 = np.ones((n_samples, 1)) / np.sqrt(n_samples) # normalized var2 = rng.randn(n_samples, 1) var2 = var2 / np.sqrt(np.sum(var2 ** 2, 0)) # normalize covars = np.eye(n_samples, 3) # covars is orthogonal covars[3] = -1 # covars is orthogonal to var1 covars = orthonormalize_matrix(covars) # nilearn t-score own_score = _t_score_with_covars_and_normalized_design(var1, var2, covars) # compute t-scores with linalg or statmodels ref_score = get_tvalue_with_alternative_library(var1, var2, covars) assert_array_almost_equal(own_score, ref_score) ### General tests for permuted_ols function ################################### def test_permuted_ols_check_h0_noeffect_labelswap(random_state=0): rng = check_random_state(random_state) # design parameters n_samples = 100 # create dummy design with no effect target_var = rng.randn(n_samples, 1) tested_var = np.arange(n_samples, dtype='f8').reshape((-1, 1)) tested_var_not_centered = tested_var.copy() tested_var -= tested_var.mean(0) # centered # permuted OLS # We check that h0 is close to the theoretical distribution, which is # known for this simple design (= t(n_samples - dof)). perm_ranges = [10, 100, 1000] # test various number of permutations # we use two models (with and without intercept modelling) all_kstest_pvals = [] all_kstest_pvals_intercept = [] all_kstest_pvals_intercept2 = [] # we compute the Mean Squared Error between cumulative Density Function # as a proof of consistency of the permutation algorithm all_mse = [] all_mse_intercept = [] all_mse_intercept2 = [] for i, n_perm in enumerate(np.repeat(perm_ranges, 10)): ### Case no. 1: no intercept in the model pval, orig_scores, h0 = permuted_ols( tested_var, target_var, model_intercept=False, n_perm=n_perm, two_sided_test=False, random_state=i) assert_equal(h0.size, n_perm) # Kolmogorov-Smirnov test kstest_pval = stats.kstest(h0, stats.t(n_samples - 1).cdf)[1] all_kstest_pvals.append(kstest_pval) mse = np.mean( (stats.t(n_samples - 1).cdf(np.sort(h0)) - np.linspace(0, 1, h0.size + 1)[1:]) ** 2) all_mse.append(mse) ### Case no. 2: intercept in the model pval, orig_scores, h0 = permuted_ols( tested_var, target_var, model_intercept=True, n_perm=n_perm, two_sided_test=False, random_state=i) assert_array_less(pval, 1.) # pval should not be significant # Kolmogorov-Smirnov test kstest_pval = stats.kstest(h0, stats.t(n_samples - 2).cdf)[1] all_kstest_pvals_intercept.append(kstest_pval) mse = np.mean( (stats.t(n_samples - 2).cdf(np.sort(h0)) - np.linspace(0, 1, h0.size + 1)[1:]) ** 2) all_mse_intercept.append(mse) ### Case no. 3: intercept in the model, no centering of tested vars pval, orig_scores, h0 = permuted_ols( tested_var_not_centered, target_var, model_intercept=True, n_perm=n_perm, two_sided_test=False, random_state=i) assert_array_less(pval, 1.) # pval should not be significant # Kolmogorov-Smirnov test kstest_pval = stats.kstest(h0, stats.t(n_samples - 2).cdf)[1] all_kstest_pvals_intercept2.append(kstest_pval) mse = np.mean( (stats.t(n_samples - 2).cdf(np.sort(h0)) - np.linspace(0, 1, h0.size + 1)[1:]) ** 2) all_mse_intercept2.append(mse) all_kstest_pvals = np.array(all_kstest_pvals).reshape( (len(perm_ranges), -1)) all_kstest_pvals_intercept = np.array(all_kstest_pvals_intercept).reshape( (len(perm_ranges), -1)) all_mse = np.array(all_mse).reshape((len(perm_ranges), -1)) all_mse_intercept = np.array(all_mse_intercept).reshape( (len(perm_ranges), -1)) all_mse_intercept2 = np.array(all_mse_intercept2).reshape( (len(perm_ranges), -1)) # check that a difference between distributions is not rejected by KS test assert_array_less(0.01, all_kstest_pvals) assert_array_less(0.01, all_kstest_pvals_intercept) assert_array_less(0.01, all_kstest_pvals_intercept2) # consistency of the algorithm: the more permutations, the less the MSE assert_array_less(np.diff(all_mse.mean(1)), 0) assert_array_less(np.diff(all_mse_intercept.mean(1)), 0) assert_array_less(np.diff(all_mse_intercept2.mean(1)), 0) def test_permuted_ols_check_h0_noeffect_signswap(random_state=0): rng = check_random_state(random_state) # design parameters n_samples = 100 # create dummy design with no effect target_var = rng.randn(n_samples, 1) tested_var = np.ones((n_samples, 1)) # permuted OLS # We check that h0 is close to the theoretical distribution, which is # known for this simple design (= t(n_samples - dof)). perm_ranges = [10, 100, 1000] # test various number of permutations all_kstest_pvals = [] # we compute the Mean Squared Error between cumulative Density Function # as a proof of consistency of the permutation algorithm all_mse = [] for i, n_perm in enumerate(np.repeat(perm_ranges, 10)): pval, orig_scores, h0 = permuted_ols( tested_var, target_var, model_intercept=False, n_perm=n_perm, two_sided_test=False, random_state=i) assert_equal(h0.size, n_perm) # Kolmogorov-Smirnov test kstest_pval = stats.kstest(h0, stats.t(n_samples).cdf)[1] all_kstest_pvals.append(kstest_pval) mse = np.mean( (stats.t(n_samples).cdf(np.sort(h0)) - np.linspace(0, 1, h0.size + 1)[1:]) ** 2) all_mse.append(mse) all_kstest_pvals = np.array(all_kstest_pvals).reshape( (len(perm_ranges), -1)) all_mse = np.array(all_mse).reshape((len(perm_ranges), -1)) # check that a difference between distributions is not rejected by KS test assert_array_less(0.01 / (len(perm_ranges) * 10.), all_kstest_pvals) # consistency of the algorithm: the more permutations, the less the MSE assert_array_less(np.diff(all_mse.mean(1)), 0) ### Tests for labels swapping permutation scheme ############################## def test_permuted_ols_nocovar(random_state=0): rng = check_random_state(random_state) # design parameters n_samples = 50 # create design target_var = rng.randn(n_samples, 1) tested_var = rng.randn(n_samples, 1) # compute t-scores with linalg or statsmodels ref_score = get_tvalue_with_alternative_library(tested_var, target_var) # permuted OLS _, own_score, _ = permuted_ols( tested_var, target_var, model_intercept=False, n_perm=0, random_state=random_state) assert_array_almost_equal(ref_score, own_score, decimal=6) # test with ravelized tested_var _, own_score, _ = permuted_ols( np.ravel(tested_var), target_var, model_intercept=False, n_perm=0, random_state=random_state) assert_array_almost_equal(ref_score, own_score, decimal=6) ### Adds intercept (should be equivalent to centering variates) # permuted OLS _, own_score_intercept, _ = permuted_ols( tested_var, target_var, model_intercept=True, n_perm=0, random_state=random_state) target_var -= target_var.mean(0) tested_var -= tested_var.mean(0) # compute t-scores with linalg or statsmodels ref_score_intercept = get_tvalue_with_alternative_library( tested_var, target_var, np.ones((n_samples, 1))) assert_array_almost_equal(ref_score_intercept, own_score_intercept, decimal=6) def test_permuted_ols_withcovar(random_state=0): """ """ rng = check_random_state(random_state) # design parameters n_samples = 50 # create design target_var = rng.randn(n_samples, 1) tested_var = rng.randn(n_samples, 1) confounding_vars = rng.randn(n_samples, 2) # compute t-scores with linalg or statsmodels ref_score = get_tvalue_with_alternative_library(tested_var, target_var, confounding_vars) # permuted OLS _, own_score, _ = permuted_ols( tested_var, target_var, confounding_vars, model_intercept=False, n_perm=0, random_state=random_state) assert_array_almost_equal(ref_score, own_score, decimal=6) ### Adds intercept # permuted OLS _, own_scores_intercept, _ = permuted_ols( tested_var, target_var, confounding_vars, model_intercept=True, n_perm=0, random_state=random_state) # compute t-scores with linalg or statsmodels confounding_vars = np.hstack((confounding_vars, np.ones((n_samples, 1)))) alt_score_intercept = get_tvalue_with_alternative_library( tested_var, target_var, confounding_vars) assert_array_almost_equal(alt_score_intercept, own_scores_intercept, decimal=6) def test_permuted_ols_nocovar_multivariate(random_state=0): """Test permuted_ols with multiple tested variates and no covariate. It is equivalent to fitting several models with only one tested variate. """ rng = check_random_state(random_state) # design parameters n_samples = 50 n_targets = 10 n_regressors = 2 # create design target_vars = rng.randn(n_samples, n_targets) tested_var = rng.randn(n_samples, n_regressors) # compute t-scores with linalg or statsmodels ref_scores = get_tvalue_with_alternative_library(tested_var, target_vars) # permuted OLS _, own_scores, _ = permuted_ols( tested_var, target_vars, model_intercept=False, n_perm=0, random_state=random_state) assert_array_almost_equal(ref_scores, own_scores, decimal=6) ### Adds intercept (should be equivalent to centering variates) # permuted OLS _, own_scores_intercept, _ = permuted_ols( tested_var, target_vars, model_intercept=True, n_perm=0, random_state=random_state) target_vars -= target_vars.mean(0) tested_var -= tested_var.mean(0) # compute t-scores with linalg or statsmodels ref_scores_intercept = get_tvalue_with_alternative_library( tested_var, target_vars, np.ones((n_samples, 1))) assert_array_almost_equal(ref_scores_intercept, own_scores_intercept, decimal=6) def test_permuted_ols_withcovar_multivariate(random_state=0): """Test permuted_ols with multiple tested variates and covariates. It is equivalent to fitting several models with only one tested variate. """ rng = check_random_state(random_state) # design parameters n_samples = 50 n_targets = 10 n_covars = 2 # create design target_vars = rng.randn(n_samples, n_targets) tested_var = rng.randn(n_samples, 1) confounding_vars = rng.randn(n_samples, n_covars) # compute t-scores with linalg or statmodels ref_scores = get_tvalue_with_alternative_library(tested_var, target_vars, confounding_vars) # permuted OLS _, own_scores, _ = permuted_ols( tested_var, target_vars, confounding_vars, model_intercept=False, n_perm=0, random_state=random_state) assert_almost_equal(ref_scores, own_scores, decimal=6) ### Adds intercept # permuted OLS _, own_scores_intercept, _ = permuted_ols( tested_var, target_vars, confounding_vars, model_intercept=True, n_perm=0, random_state=random_state) # compute t-scores with linalg or statmodels confounding_vars = np.hstack((confounding_vars, np.ones((n_samples, 1)))) ref_scores_intercept = get_tvalue_with_alternative_library( tested_var, target_vars, confounding_vars) assert_array_almost_equal(ref_scores_intercept, own_scores_intercept, decimal=6) ### Tests for sign swapping permutation scheme ############################## def test_permuted_ols_intercept_nocovar(random_state=0): rng = check_random_state(random_state) # design parameters n_samples = 50 # create design target_var = rng.randn(n_samples, 1) tested_var = np.ones((n_samples, 1)) # compute t-scores with linalg or statmodels t_val_ref = get_tvalue_with_alternative_library(tested_var, target_var) # permuted OLS neg_log_pvals, orig_scores, _ = permuted_ols( tested_var, target_var, confounding_vars=None, n_perm=10, random_state=random_state) assert_array_less(neg_log_pvals, 1.) # ensure sign swap is correctly done # same thing but with model_intercept=True to check it has no effect _, orig_scores_addintercept, _ = permuted_ols( tested_var, target_var, confounding_vars=None, model_intercept=True, n_perm=0, random_state=random_state) assert_array_almost_equal(t_val_ref, orig_scores, decimal=6) assert_array_almost_equal(orig_scores, orig_scores_addintercept, decimal=6) def test_permuted_ols_intercept_statsmodels_withcovar(random_state=0): rng = check_random_state(random_state) # design parameters n_samples = 50 # create design target_var = rng.randn(n_samples, 1) tested_var = np.ones((n_samples, 1)) confounding_vars = rng.randn(n_samples, 2) # compute t-scores with linalg or statmodels ref_scores = get_tvalue_with_alternative_library(tested_var, target_var, confounding_vars) # permuted OLS _, own_scores, _ = permuted_ols( tested_var, target_var, confounding_vars, n_perm=0, random_state=random_state) # same thing but with model_intercept=True to check it has no effect _, own_scores_intercept, _ = permuted_ols( tested_var, target_var, confounding_vars, model_intercept=True, n_perm=0, random_state=random_state) assert_array_almost_equal(ref_scores, own_scores, decimal=6) assert_array_almost_equal(ref_scores, own_scores_intercept, decimal=6) def test_permuted_ols_intercept_nocovar_multivariate(random_state=0): rng = check_random_state(random_state) # design parameters n_samples = 50 n_targets = 10 # create design target_vars = rng.randn(n_samples, n_targets) tested_vars = np.ones((n_samples, 1)) # compute t-scores with nilearn routine ref_scores = get_tvalue_with_alternative_library(tested_vars, target_vars) # permuted OLS _, own_scores, _ = permuted_ols( tested_vars, target_vars, confounding_vars=None, n_perm=0, random_state=random_state) # same thing but with model_intercept=True to check it has no effect _, own_scores_intercept, _ = permuted_ols( tested_vars, target_vars, confounding_vars=None, model_intercept=True, n_perm=0, random_state=random_state) assert_array_almost_equal(ref_scores, own_scores, decimal=6) assert_array_almost_equal(own_scores, own_scores_intercept, decimal=6) def test_permuted_ols_intercept_withcovar_multivariate(random_state=0): rng = check_random_state(random_state) # design parameters n_samples = 50 n_targets = 10 n_covars = 2 # create design target_vars = rng.randn(n_samples, n_targets) tested_var = np.ones((n_samples, 1)) confounding_vars = rng.randn(n_samples, n_covars) # compute t-scores with linalg or statsmodels ref_scores = get_tvalue_with_alternative_library(tested_var, target_vars, confounding_vars) # permuted OLS _, own_scores, _ = permuted_ols( tested_var, target_vars, confounding_vars, n_perm=0, random_state=random_state) # same thing but with model_intercept=True to check it has no effect _, own_scores_intercept, _ = permuted_ols( tested_var, target_vars, confounding_vars, model_intercept=True, n_perm=0, random_state=random_state) assert_almost_equal(ref_scores, own_scores, decimal=6) assert_array_almost_equal(own_scores, own_scores_intercept, decimal=6) ### Test one-sided versus two-sided ########################################### def test_sided_test(random_state=0): """Check that a positive effect is always better recovered with one-sided. """ rng = check_random_state(random_state) # design parameters n_samples = 50 # create design target_var = rng.randn(n_samples, 100) tested_var = rng.randn(n_samples, 1) # permuted OLS # one-sided neg_log_pvals_onesided, _, _ = permuted_ols( tested_var, target_var, model_intercept=False, two_sided_test=False, n_perm=100, random_state=random_state) # two-sided neg_log_pvals_twosided, _, _ = permuted_ols( tested_var, target_var, model_intercept=False, two_sided_test=True, n_perm=100, random_state=random_state) positive_effect_location = neg_log_pvals_onesided > 1 assert_equal( np.sum(neg_log_pvals_twosided[positive_effect_location] - neg_log_pvals_onesided[positive_effect_location] > 0), 0) def test_sided_test2(random_state=0): """Check that two-sided can actually recover positive and negative effects. """ # create design target_var1 = np.arange(0, 10).reshape((-1, 1)) # positive effect target_var = np.hstack((target_var1, - target_var1)) tested_var = np.arange(0, 20, 2) # permuted OLS # one-sided neg_log_pvals_onesided, _, _ = permuted_ols( tested_var, target_var, model_intercept=False, two_sided_test=False, n_perm=100, random_state=random_state) # one-sided (other side) neg_log_pvals_onesided2, _, _ = permuted_ols( tested_var, -target_var, model_intercept=False, two_sided_test=False, n_perm=100, random_state=random_state) # two-sdided neg_log_pvals_twosided, _, _ = permuted_ols( tested_var, target_var, model_intercept=False, two_sided_test=True, n_perm=100, random_state=random_state) assert_array_almost_equal(neg_log_pvals_onesided[0], neg_log_pvals_onesided2[0][::-1]) assert_array_almost_equal(neg_log_pvals_onesided + neg_log_pvals_onesided2, neg_log_pvals_twosided)
81e1ff36d764ebf2d6e179a45efa2e2ac9a119f4
71a7ed5dd56b89aea1795a3db1469e3006be783f
/configs/body/2d_kpt_sview_rgb_img/deeppose/coco/res50_coco_256x192.py
2d2b20fa49d0e23356d688081388809183364474
[ "Apache-2.0" ]
permissive
RunningLeon/mmpose
b6091416a2565778a1438b23edaa6620a2088a3e
9ef202c0a4b2c28add32b530caf2ea0354843fe4
refs/heads/master
2023-06-30T04:46:52.917877
2021-08-05T08:54:24
2021-08-05T08:54:24
335,275,684
0
0
Apache-2.0
2021-02-02T12:06:57
2021-02-02T12:06:57
null
UTF-8
Python
false
false
3,956
py
log_level = 'INFO' load_from = None resume_from = None dist_params = dict(backend='nccl') workflow = [('train', 1)] checkpoint_config = dict(interval=10) evaluation = dict(interval=10, metric='mAP', save_best='AP') optimizer = dict( type='Adam', lr=5e-4, ) optimizer_config = dict(grad_clip=None) # learning policy lr_config = dict( policy='step', warmup='linear', warmup_iters=500, warmup_ratio=0.001, step=[170, 200]) total_epochs = 210 log_config = dict( interval=50, hooks=[ dict(type='TextLoggerHook'), # dict(type='TensorboardLoggerHook') ]) channel_cfg = dict( num_output_channels=17, dataset_joints=17, dataset_channel=[ [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16], ], inference_channel=[ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16 ]) # model settings model = dict( type='TopDown', pretrained='torchvision://resnet50', backbone=dict(type='ResNet', depth=50, num_stages=4, out_indices=(3, )), neck=dict(type='GlobalAveragePooling'), keypoint_head=dict( type='DeepposeRegressionHead', in_channels=2048, num_joints=channel_cfg['num_output_channels'], loss_keypoint=dict(type='SmoothL1Loss', use_target_weight=True)), train_cfg=dict(), test_cfg=dict(flip_test=True)) data_cfg = dict( image_size=[192, 256], heatmap_size=[48, 64], num_output_channels=channel_cfg['num_output_channels'], num_joints=channel_cfg['dataset_joints'], dataset_channel=channel_cfg['dataset_channel'], inference_channel=channel_cfg['inference_channel'], soft_nms=False, nms_thr=1.0, oks_thr=0.9, vis_thr=0.2, use_gt_bbox=False, det_bbox_thr=0.0, bbox_file='data/coco/person_detection_results/' 'COCO_val2017_detections_AP_H_56_person.json', ) train_pipeline = [ dict(type='LoadImageFromFile'), dict(type='TopDownRandomFlip', flip_prob=0.5), dict( type='TopDownHalfBodyTransform', num_joints_half_body=8, prob_half_body=0.3), dict( type='TopDownGetRandomScaleRotation', rot_factor=40, scale_factor=0.5), dict(type='TopDownAffine'), dict(type='ToTensor'), dict( type='NormalizeTensor', mean=[0.485, 0.456, 0.406], std=[0.229, 0.224, 0.225]), dict(type='TopDownGenerateTargetRegression'), dict( type='Collect', keys=['img', 'target', 'target_weight'], meta_keys=[ 'image_file', 'joints_3d', 'joints_3d_visible', 'center', 'scale', 'rotation', 'bbox_score', 'flip_pairs' ]), ] val_pipeline = [ dict(type='LoadImageFromFile'), dict(type='TopDownAffine'), dict(type='ToTensor'), dict( type='NormalizeTensor', mean=[0.485, 0.456, 0.406], std=[0.229, 0.224, 0.225]), dict( type='Collect', keys=['img'], meta_keys=[ 'image_file', 'center', 'scale', 'rotation', 'bbox_score', 'flip_pairs' ]), ] test_pipeline = val_pipeline data_root = 'data/coco' data = dict( samples_per_gpu=64, workers_per_gpu=2, val_dataloader=dict(samples_per_gpu=32), test_dataloader=dict(samples_per_gpu=32), train=dict( type='TopDownCocoDataset', ann_file=f'{data_root}/annotations/person_keypoints_train2017.json', img_prefix=f'{data_root}/train2017/', data_cfg=data_cfg, pipeline=train_pipeline), val=dict( type='TopDownCocoDataset', ann_file=f'{data_root}/annotations/person_keypoints_val2017.json', img_prefix=f'{data_root}/val2017/', data_cfg=data_cfg, pipeline=val_pipeline), test=dict( type='TopDownCocoDataset', ann_file=f'{data_root}/annotations/person_keypoints_val2017.json', img_prefix=f'{data_root}/val2017/', data_cfg=data_cfg, pipeline=val_pipeline), )
a77514a354202ea060c3808641ab83dce4cf439f
c29ff32eb5755c45d656162bb91df428eeab489d
/Main.py
ca4ecdf20d8df96838023848bc5e4b4aa30c2822
[]
no_license
Larionov0/Listo4ek
f5f441dcd908dbd1f55768e3c62515a385ad4cb1
c30dd00c999239ea205e6a5140b188de6553376f
refs/heads/master
2021-06-27T17:04:02.950956
2021-01-15T14:26:49
2021-01-15T14:26:49
197,660,010
0
0
null
null
null
null
UTF-8
Python
false
false
26,028
py
import telebot from telebot import types import emoji from data_handler import data as waves_data, units_data, weapons_data from random import choice, randint from funks import * delete_data = {} def add_delete_message(chat_id,message_id): if chat_id in delete_data: delete_data[chat_id].append(message_id) else: delete_data[chat_id] = [message_id] data = { 000000: { "name": "Larko", "lvl": 10, "coins": 0, "armament": { "active": { "location": { "soldiers": 100, "turrets": 10, "tanks": 16, } }, "passive": { "soldiers": 100, "turrets": 10, "tanks": 16, } }, "location": "wasteland", "action": None }, "count_of_lands":0 } bot = telebot.TeleBot("625314496:AAEQ_L7mcsmhdB8DytiMXfEc3CAGEJaI_iE") @bot.message_handler(commands = ["start"]) def start(message): add_delete_message(message.chat.id, bot.send_message(message.chat.id, "😃🥳😈👾💣⚙💥\nHello, ۞today you will play the best game ever!").message_id) if message.chat.id in data: menu(message.chat.id) else: data[message.chat.id] = "creating" id = bot.send_message(message.chat.id, "Please input your name:").message_id add_delete_message(message.chat.id,id) bot.delete_message(message.chat.id, message.message_id) @bot.message_handler(commands=["help"]) def help(message): keyboard = types.InlineKeyboardMarkup() keyboard.add(types.InlineKeyboardButton('message Larko',url = 'https://t.me/Larko_0')) bot.send_message(message.chat.id, "Please, tell me about your problem", reply_markup=keyboard) @bot.message_handler(func = lambda call: True, content_types = ['text']) def text_callback(message): chat_id = message.chat.id for chat in delete_data: for i in range(len(delete_data[chat])): id = delete_data[chat][0] bot.delete_message(chat,id) delete_data[chat].remove(id) bot.delete_message(chat_id,message.message_id) if chat_id in data: if data[chat_id] == "creating": location = "wasteland " + str(data["count_of_lands"]) data["count_of_lands"] += 1 data[chat_id] = { "name":message.text, "lvl":1, "wave":1, "coins":100, "armament": { "active": { location: { "soldiers": {"hp":[],"count":3}, }, }, "passive": { "soldiers": 5, "turrets": 1, } }, "location": location, "locations": [location], "action": "start", } menu(chat_id) elif data[chat_id]["action"] == "wave - count shot": num = num_validator(message.text) if num != False: if num > data[chat_id]["attack points"][data[chat_id]["choosed armament"]]: num = data[chat_id]["attack points"][data[chat_id]["choosed armament"]] num1 = num while num > 0 and data[chat_id]["target"] in data[chat_id]["enemies"]: enemies = data[chat_id]["enemies"] armament = data[chat_id]["choosed armament"] for weapon in units_data[armament]["weapons"]: for temp in range(units_data[armament]["weapons"][weapon]): one_shot(chat_id, weapon) num -= 1 data[chat_id]["attack points"][data[chat_id]["choosed armament"]] -= num1 - num check_after_shot(chat_id) else: id = bot.send_message(chat_id,"Please input correct number").message_id add_delete_message(chat_id,id) elif data[chat_id]["action"] == "set armament": num = num_validator(message.text) if num!=False: set_armament(chat_id,data[chat_id]["target"],num) menu(chat_id) else: add_delete_message(chat_id, bot.send_message(chat_id,"Please input correct number:").message_id) @bot.callback_query_handler(lambda call: True) def get_callback(call): chat_id = call.message.chat.id if chat_id not in data: return player = data[chat_id] for chat in delete_data: for i in range(len(delete_data[chat])): id = delete_data[chat][0] bot.delete_message(chat,id) delete_data[chat].remove(id) bot.delete_message(chat_id,call.message.message_id) if data[chat_id]["action"] == "Pick menu: Wave, Map, Set": if call.data == "WAVE": bot.answer_callback_query(call.id) data[chat_id]["action"] = "wave" wawe = waves_data[player["lvl"]][player["wave"]] enemies = choice(wawe["enemies"]) data[chat_id]["enemies"] = {} for enemy in enemies: data[chat_id]["enemies"][enemy[-1]] = {} for i in range(2): #pick count and coins if "-" in enemy[i]: coins = enemy[i].split("-") coins = randint(int(coins[0]),int(coins[1])) else: coins = int(enemy[i]) point = ["count","coins"][i] data[chat_id]["enemies"][enemy[-1]][point] = coins if data[chat_id]["enemies"][enemy[-1]]["count"] <= 0: data[chat_id]["enemies"].pop(enemy[-1]) else: data[chat_id]["enemies"][enemy[-1]]["hp"] = [] data[chat_id]["reward"] = {} wave_func(chat_id) elif call.data == "SET ARMAMENT": data[chat_id]["action"] = "set armament" keyboard = types.InlineKeyboardMarkup() for unit in data[chat_id]["armament"]["passive"]: keyboard.add(types.InlineKeyboardButton("{} x {}".format(unit,data[chat_id]["armament"]["passive"][unit]),callback_data=unit)) keyboard.add(types.InlineKeyboardButton("Cancel",callback_data="CANCEL")) bot.send_message(chat_id,"Pick units:",reply_markup=keyboard) elif call.data == "MAP": keyboard = types.InlineKeyboardMarkup() keyboard.add(types.InlineKeyboardButton()) elif call.data == "loose": bot.answer_callback_query(chat_id) elif data[chat_id]["action"] == "set armament": if call.data == "CANCEL": return menu(chat_id) elif call. data == "set armament - 1": set_armament(chat_id,data[chat_id]["target"],1) menu(chat_id) elif call.data == "set armament - count": add_delete_message(chat_id, bot.send_message(chat_id, "Please input count of units to set:").message_id) elif call.data == "set armament - all": set_armament(chat_id, data[chat_id]["target"], data[chat_id]["armament"]["passive"][data[chat_id]["target"]]) menu(chat_id) elif call.data == "set armament - cancel": menu(chat_id) else: data[chat_id]["target"] = call.data keyboard = types.InlineKeyboardMarkup() keyboard.row( types.InlineKeyboardButton("1", callback_data="set armament - 1"), types.InlineKeyboardButton("Input count", callback_data="set armament - count"), ) keyboard.row( types.InlineKeyboardButton("All", callback_data="set armament - all"), types.InlineKeyboardButton("Cancel", callback_data="set armament - cancel"), ) bot.send_message(chat_id,"How many units want you to set?🔥",reply_markup=keyboard) elif data[chat_id]["action"].startswith("wave - "): if data[chat_id]["action"] == "wave - pick armament": if call.data != "cancel": print(1) bot.answer_callback_query(call.id) unit = call.data data[chat_id]["choosed armament"] = unit choose_target_class(chat_id) else: wave_menu(chat_id) elif data[chat_id]["action"] == "wave - pick enemy": bot.answer_callback_query(call.id) if call.data != "cancel": keyboard = types.InlineKeyboardMarkup() keyboard.row( types.InlineKeyboardButton("😐 SINGLE SHOT",callback_data="SINGLE"), types.InlineKeyboardButton("😈 CHOOSE COUNT of shots",callback_data = "COUNT") ) keyboard.row( types.InlineKeyboardButton("😱 SHOOT TO KILL",callback_data="KILL"), types.InlineKeyboardButton("🥺 CANCEL",callback_data = "CANCEL") ) data[chat_id]["action"] = "wave - pick shot option" data[chat_id]["target"] = call.data bot.send_message(chat_id,text = "{} -> {}\nChoose way to destroy:".format(data[chat_id]["choosed armament"],data[chat_id]["target"]),reply_markup=keyboard) else: wave_menu(chat_id) elif data[chat_id]["action"] == "wave - pick shot option": if call.data != "CANCEL": bot.answer_callback_query(call.id) shot(chat_id, call.data) else: choose_target_class(chat_id) elif data[chat_id]["action"] == "wave - enemies turn ends": bot.answer_callback_query(call.id) wave_func(chat_id) def choose_target_class(chat_id): keyboard = types.InlineKeyboardMarkup() for enemy in data[chat_id]["enemies"]: enemy_dict = data[chat_id]["enemies"][enemy] keyboard.add(types.InlineKeyboardButton("{} x {} 💚 {} / {} 🛡 {}".format(enemy, enemy_dict["count"], ";".join([str(hp) for hp in enemy_dict["hp"]]), units_data[enemy]["hp"],";".join(units_data[enemy]["armor"])), callback_data=enemy)) keyboard.add(types.InlineKeyboardButton("cancel",callback_data="cancel")) data[chat_id]["action"] = "wave - pick enemy" bot.send_message(chat_id, text="Good! (Armament: {} (x{} left))\n Now choose class of enemies armament to 🗡destroy it:".format(data[chat_id]["choosed armament"], data[chat_id]["attack points"][data[chat_id]["choosed armament"]]), reply_markup=keyboard) def level_reward(chat_id): coins = (data[chat_id]["lvl"]) * 50 data[chat_id]["coins"] += coins add_delete_message(chat_id, bot.send_message(chat_id, "😁☝NEW LEVEL : {}\n\n💰 + {}".format(data[chat_id]["lvl"], coins)).message_id) def victory(chat_id): data[chat_id].pop("attack points") data[chat_id].pop("choosed armament") data[chat_id].pop("target") data[chat_id].pop("enemies") data[chat_id].pop("reward") data[chat_id]["action"] = "wave - victory" rewards = choice(waves_data[data[chat_id]["lvl"]][data[chat_id]["wave"]]["reward"]) add_delete_message(chat_id, bot.send_message(chat_id, "🥳Victoryy!!!\n🎁 REWARD 🎁").message_id) for reward in rewards: if reward[1] == "coins": data[chat_id]["coins"] += int(reward[0]) add_delete_message(chat_id, bot.send_message(chat_id, "You got {} 💸".format(reward[0])).message_id) else: add_delete_message(chat_id, bot.send_message(chat_id, "👍 You got {} {}".format(reward[0],reward[1])).message_id) if reward[1] in data[chat_id]["armament"]["passive"]: data[chat_id]["armament"]["passive"][reward[1]] += int(reward[0]) else: data[chat_id]["armament"]["passive"][reward[1]] = int(reward[0]) if data[chat_id]["wave"]+1 in waves_data[data[chat_id]["lvl"]]: data[chat_id]["wave"] += 1 else: data[chat_id]["lvl"] += 1 level_reward(chat_id) data[chat_id]["wave"] = 1 sum = 0 for unit in data[chat_id]["armament"]["active"][data[chat_id]["location"]]: sum += units_data[unit]["pay"] * data[chat_id]["armament"]["active"][data[chat_id]["location"]][unit]["count"] add_delete_message(chat_id, bot.send_message(chat_id,"You need to pay {} $".format(sum)).message_id) data[chat_id]["coins"] -= sum menu(chat_id) def enemies_turn(chat_id,start = True): if start: add_delete_message(chat_id, bot.send_message(chat_id, "-----=== Enemies turn😡: ").message_id ) data[chat_id]["attack points"] = {} for unit in data[chat_id]["enemies"]: data[chat_id]["attack points"][unit] = data[chat_id]["enemies"][unit]["count"] for enemy in data[chat_id]["enemies"]: if enemy not in data[chat_id]["attack points"]: continue location = data[chat_id]["location"] target = choice(list(data[chat_id]["armament"]["active"][location].keys())) data[chat_id]["target"] = target player_armament = data[chat_id]["armament"]["active"][location] while data[chat_id]["attack points"][enemy] > 0 and target in player_armament: for weapon in units_data[enemy]["weapons"]: for temp in range(units_data[enemy]["weapons"][weapon]): one_shot(chat_id, weapon, mode = "enemies") data[chat_id]["attack points"][enemy] -= 1 if data[chat_id]["attack points"][enemy] == 0: data[chat_id]["attack points"].pop(enemy) if check_after_shot(chat_id, "enemies") == False: return def set_armament(chat_id, unit, count): if count > data[chat_id]["armament"]["passive"][unit]: count = data[chat_id]["armament"]["passive"][unit] data[chat_id]["armament"]["passive"][unit] -= count location = data[chat_id]["location"] if data[chat_id]["armament"]["passive"][unit] == 0: data[chat_id]["armament"]["passive"].pop(unit) if unit in data[chat_id]["armament"]["active"][location]: data[chat_id]["armament"]["active"][location][unit]["count"] += count else: data[chat_id]["armament"]["active"][location][unit] = { "hp":[], "count":count } def loose(chat_id): keyboard = types.InlineKeyboardMarkup() keyboard.add(types.InlineKeyboardButton("OK :(", callback_data="loose")) bot.send_message(chat_id, "You loose(", reply_markup=keyboard) data.pop(chat_id) def check_after_shot(chat_id, mode = "player"): if mode == "player": if len(data[chat_id]["enemies"].keys()) == 0: victory(chat_id) elif not any([data[chat_id]["attack points"][unit] > 0 for unit in data[chat_id]["attack points"]]): data[chat_id]["action"] = "wave - enemies turn" data[chat_id]["attack points"] = {} enemies_turn(chat_id) elif data[chat_id]["attack points"][data[chat_id]["choosed armament"]] > 0: choose_target_class(chat_id) else: wave_menu(chat_id) elif mode == "enemies": location = data[chat_id]["location"] if len(data[chat_id]["armament"]["active"][location].keys()) == 0: loose(chat_id) return False elif not any([data[chat_id]["attack points"][unit] > 0 for unit in data[chat_id]["attack points"]]): data[chat_id]["action"] = "wave - enemies turn ends" keyboard = types.InlineKeyboardMarkup() keyboard.add(types.InlineKeyboardButton("OK",callback_data="OK")) bot.send_message(chat_id,"OK? :)", reply_markup=keyboard) else: enemies_turn(chat_id, False) return False def shot(chat_id, option): if data[chat_id]["attack points"][data[chat_id]["choosed armament"]] > 0: data[chat_id]["action"] = "wave - shot" if option == "SINGLE": data[chat_id]["attack points"][data[chat_id]["choosed armament"]] -= 1 enemies = data[chat_id]["enemies"] armament = data[chat_id]["choosed armament"] for weapon in units_data[armament]["weapons"]: for temp in range(units_data[armament]["weapons"][weapon]): one_shot(chat_id, weapon) check_after_shot(chat_id) elif option == "COUNT": data[chat_id]["action"] = "wave - count shot" id = bot.send_message(chat_id, "Input count ({} left):".format(data[chat_id]["attack points"][data[chat_id]["choosed armament"]])).message_id add_delete_message(chat_id,id) elif option == "KILL": while data[chat_id]["attack points"][data[chat_id]["choosed armament"]] > 0 and data[chat_id]["target"] in data[chat_id]["enemies"]: enemies = data[chat_id]["enemies"] armament = data[chat_id]["choosed armament"] for weapon in units_data[armament]["weapons"]: for temp in range(units_data[armament]["weapons"][weapon]): one_shot(chat_id, weapon) data[chat_id]["attack points"][data[chat_id]["choosed armament"]] -= 1 check_after_shot(chat_id) else: add_delete_message(chat_id, bot.send_message(chat_id,"😭Count of loaded {} = 0".format(data[chat_id]["choosed armament"])).message_id) wave_menu(chat_id) def one_shot(chat_id, weapon, mode = "player"): if mode == "player": enemies = data[chat_id]["enemies"] elif mode == "enemies": enemies = data[chat_id]["armament"]["active"][data[chat_id]["location"]] if weapons_data[weapon]["control"] == "on": target = data[chat_id]["target"] target_index = enemies[target]["count"] - 1 elif weapons_data[weapon]["control"] == "off": target = choice([key for key in enemies.keys() if enemies[key]["count"] != 0]) target_index = randint(0,enemies[target]["count"] - 1) hp = units_data[target]["hp"] armor = units_data[target]["armor"][["physical","magic","fire"].index(weapons_data[weapon]["type"])] if "-" in armor: armor = armor.split("-") armor = randint(int(armor[0]),int(armor[1])) else: armor = int(armor) damage = weapons_data[weapon]["damage"] if "-" in damage: damage = damage.split("-") damage = randint(int(damage[0]),int(damage[1])) else: damage = int(damage) if target_index < enemies[target]["count"] - len(enemies[target]["hp"]): target_hp = hp - (damage - armor) if target_hp > 0: id = bot.send_message(chat_id,"{} ranen by {} ({} / {})".format(target, weapon, target_hp, units_data[target]["hp"])).message_id add_delete_message(chat_id, id) enemies[target]["hp"].insert(0,target_hp) else: kill(chat_id,weapon,target,enemies,mode) check_effects(chat_id,weapon,target,"post kill",mode,-target_hp) else: target_index = enemies[target]["count"] - target_index - 1 enemies[target]["hp"][target_index] -= (damage - armor) if enemies[target]["hp"][target_index] <= 0: kill(chat_id, weapon, target, enemies, mode) target_hp = -enemies[target]["hp"][target_index] enemies[target]["hp"].pop(target_index) check_effects(chat_id,weapon,target,"post kill",mode,target_hp) else: id = bot.send_message(chat_id,"{} ranen by {} ({} / {})".format(target, weapon, enemies[target]["hp"][target_index], units_data[target]["hp"])).message_id add_delete_message(chat_id, id) print(enemies) if enemies[target]["count"] <= 0: enemies.pop(target) def check_effects(chat_id,weapon,target,clss,mode = "player", stock_dmg = False): if clss == "post kill": if "full damage" in weapons_data[weapon]["effects"] and stock_dmg > 0: weapons_data["splinter"] = { "place":"0", "damage":str(stock_dmg), "type":weapons_data[weapon]["type"], "control":weapons_data[weapon]["control"], "effects":weapons_data[weapon]["effects"] } print(weapons_data["splinter"]) if check_after_shot(chat_id,mode) == False: return one_shot(chat_id,"splinter",mode) def kill(chat_id, weapon, target, enemies, mode = "player"): text = "{} 🤯killed by {}".format(target, weapon) if mode == "player": coins = data[chat_id]["enemies"][target]["coins"] data[chat_id]["coins"] += coins text += " (+{}$ now {})".format(coins, data[chat_id]["coins"]) id = bot.send_message(chat_id, text).message_id add_delete_message(chat_id, id) enemies[target]["count"] -= 1 def wave_start(chat_id): data[chat_id]["attack points"] = {} location = data[chat_id]["location"] for unit in data[chat_id]["armament"]["active"][location]: if any(["first blood" in weapons_data[weapon]["effects"] for weapon in units_data[unit]["weapons"]]): data[chat_id]["attack points"][unit] = data[chat_id]["armament"]["active"][location][unit]["count"] wave_menu(chat_id) def wave_func(chat_id): data[chat_id]["attack points"] = {} location = data[chat_id]["location"] for unit in data[chat_id]["armament"]["active"][location]: data[chat_id]["attack points"][unit] = data[chat_id]["armament"]["active"][location][unit]["count"] wave_menu(chat_id) def wave_menu(chat_id): text = "Your enemies 😡 :\n" for enemy in data[chat_id]["enemies"]: text += "{} : {} 💚 {} / {} 🛡 {}\n".format(enemy, data[chat_id]["enemies"][enemy]["count"],";".join([str(hp) for hp in data[chat_id]["enemies"][enemy]["hp"]]), units_data[enemy]["hp"], ";".join(units_data[enemy]["armor"])) add_delete_message(chat_id, bot.send_message(chat_id, text).message_id) keyboard = types.InlineKeyboardMarkup() location = data[chat_id]["location"] for unit in data[chat_id]["attack points"]: text = "{} x{}".format(unit, data[chat_id]["attack points"][unit]) if data[chat_id]["armament"]["active"][location][unit]["hp"] != []: text += " 💚 " for hp in data[chat_id]["armament"]["active"][location][unit]["hp"]: text += " {};".format(hp) text = text[:-1] + " / " + str(units_data[unit]["hp"]) min_dmg = sum([int(units_data[unit]["weapons"][weapon]*(weapons_data[weapon]["damage"].split("-")[0])) for weapon in units_data[unit]["weapons"]]) max_dmg = sum([int(units_data[unit]["weapons"][weapon] * (weapons_data[weapon]["damage"].split("-")[-1])) for weapon in units_data[unit]["weapons"]]) text += " {} - {}⚔".format(min_dmg, max_dmg) keyboard.add(types.InlineKeyboardButton(text, callback_data=unit)) keyboard.add(types.InlineKeyboardButton("cancel", callback_data="cancel")) data[chat_id]["action"] = "wave - pick armament" bot.send_message(chat_id, "Pick armament for destroy:", reply_markup=keyboard) def menu(id): keyboard = types.InlineKeyboardMarkup() keyboard.row( types.InlineKeyboardButton("🤜Fight wave {} . {}".format(data[id]["lvl"],data[id]["wave"]), callback_data = "WAVE"), types.InlineKeyboardButton("👁Watch map", callback_data = "MAP") ) keyboard.row( types.InlineKeyboardButton("🙄Set armament".format(data[id]["lvl"], data[id]["wave"]), callback_data="SET ARMAMENT"), ) text = "Mr👁️‍🗨️ --={}=--\n".format(data[id]["name"]) for key in data[id]: if key == "": pass elif key != 'name': if type(data[id][key]) == dict: text += "\n---- {}:\n".format(key) for key1 in data[id][key]: if key1 == "active": text += "-- active:\n" location = data[id]["location"] for unit in data[id]["armament"]["active"][location]: text += " {} - {}".format(unit, data[id]["armament"]["active"][location][unit]["count"]) if data[id]["armament"]["active"][location][unit]["hp"] != []: text += " 💚 " for hp in data[id]["armament"]["active"][location][unit]["hp"]: text += " {};".format(hp) text = text[:-1] + " / " + str(units_data[unit]["hp"]) + "\n" else: text += "\n" else: if type(data[id][key][key1]) == dict: text += "-- {}:\n".format(key1) for key2 in data[id][key][key1]: text += " {} - {}\n".format(key2, data[id][key][key1][key2]) else: text += "{} - {}\n".format(key1, data[id][key][key1]) else: if key == "coins": text += "\n💰{} - {}\n".format(key, data[id][key]) else: text += "\n{} - {}\n".format(key, data[id][key]) data[id]["action"] = "Pick menu: Wave, Map, Set" bot.send_message(id, text=text, reply_markup = keyboard) bot.polling(none_stop=True)
86fcf6c74099436224d26ca4ccd9c27e498fcc0c
11f7add72635ad985b3e98fd77e9426e8c74ab08
/growthintel/growthintel.py
7d641b9bad3fbb521fa21f28b0a5e9ec17603326
[]
no_license
harshdarji/python
afa6b11338504567ece8bb1e78e841d13716ff14
8bad854304f423264b7b0724b87c7cd7de748cd6
refs/heads/master
2020-12-31T01:48:04.439466
2012-09-13T09:22:58
2012-09-13T09:22:58
null
0
0
null
null
null
null
UTF-8
Python
false
false
1,219
py
APIKey="00a5f2164e5e49b29981ddcbe9df7d7c" import parse import json output={"type":"FeatureCollection","features":[]} postcodes=["AB","AL","B","BA","BB","BD","BH","BL","BN","BR","BS","BT","CA","CB","CF","CH","CM","CO","CR","CT","CV","CW","DA","DD","DE","DG","DH","DL","DN","DT","DY","E","EC","EH","EN","EX","FK","FY","G","GL","GU","HA","HD","HG","HP","HR","HS","HU","HX","IG","IM","IP","IV","KA","KT","KW","KY","L","LA","LD","LE","LL","LN","LS","LU","M","ME","MK","ML","N","NE","NG","NN","NP","NR","NW","OL","OX","PA","PE","PH","PL","PO","PR","RG","RH","RM","S","SA","SE","SG","SK","SL","SM","SN","SO","SP","SR","SS","ST","SW","SY","TA","TD","TF","TN","TQ","TR","TS","TW","UB","W","WA","WC","WD","WF","WN","WR","WS","WV","YO","ZE","BR","CR","DA","E","EC","EN","HA","IG","KT","N","NW","RM","SE","SM","SW","TW","UB","W","WC","WD"] stuburl="http://geocoding.cloudmade.com/"+APIKey+"/geocoding/v2/find.js?query=postcode:" urlend="&return_geometry=true" for postcode in postcodes: url=stuburl+postcode+urlend; data=json.loads(htmlify(url)) print postcode,len(url) if ("features" in data): output["features"].append(data["features"][0]) else: print "no data found for "+postcode
32d654a348320c21302268c73278d97e9540c221
82fce9aae9e855a73f4e92d750e6a8df2ef877a5
/Lab/venv/lib/python3.8/site-packages/OpenGL/raw/GLES2/NV/framebuffer_blit.py
ada66373b0f3e2262f88cc60a536d0ce0840c18b
[]
no_license
BartoszRudnik/GK
1294f7708902e867dacd7da591b9f2e741bfe9e5
6dc09184a3af07143b9729e42a6f62f13da50128
refs/heads/main
2023-02-20T19:02:12.408974
2021-01-22T10:51:14
2021-01-22T10:51:14
307,847,589
0
0
null
null
null
null
UTF-8
Python
false
false
1,008
py
'''Autogenerated by xml_generate script, do not edit!''' from OpenGL import platform as _p from OpenGL.constant import Constant as _C # End users want this... from OpenGL.raw.GLES2 import _errors # Code generation uses this from OpenGL.raw.GLES2 import _types as _cs _EXTENSION_NAME = 'GLES2_NV_framebuffer_blit' def _f(function): return _p.createFunction(function, _p.PLATFORM.GLES2, 'GLES2_NV_framebuffer_blit', error_checker=_errors._error_checker) GL_DRAW_FRAMEBUFFER_BINDING_NV = _C('GL_DRAW_FRAMEBUFFER_BINDING_NV', 0x8CA6) GL_DRAW_FRAMEBUFFER_NV = _C('GL_DRAW_FRAMEBUFFER_NV', 0x8CA9) GL_READ_FRAMEBUFFER_BINDING_NV = _C('GL_READ_FRAMEBUFFER_BINDING_NV', 0x8CAA) GL_READ_FRAMEBUFFER_NV = _C('GL_READ_FRAMEBUFFER_NV', 0x8CA8) @_f @_p.types(None, _cs.GLint, _cs.GLint, _cs.GLint, _cs.GLint, _cs.GLint, _cs.GLint, _cs.GLint, _cs.GLint, _cs.GLbitfield, _cs.GLenum) def glBlitFramebufferNV(srcX0,srcY0,srcX1,srcY1,dstX0,dstY0,dstX1,dstY1,mask,filter):pass
c520dd7bddfc90caab08af4bb0a8517af01ac98a
0422bca79c61ee4630f7c762e77ca9780b05e3ff
/pattern/text/nl/parser/__init__.py
590127d45bbbde61c6675e815462d4cc4e8842d0
[ "BSD-3-Clause", "LicenseRef-scancode-unknown-license-reference" ]
permissive
kkoch986/pattern
69ac11d12ea4fd2bb581e3343bca021cf6e46c92
db807c888dcd15f515afe31753c9b0345a11b542
refs/heads/master
2021-01-18T04:26:13.078631
2013-02-14T03:29:25
2013-02-14T03:29:25
8,186,866
2
0
null
null
null
null
UTF-8
Python
false
false
6,508
py
#### PATTERN | NL | RULE-BASED SHALLOW PARSER ###################################################### # Copyright (c) 2010 Jeroen Geertzen and University of Antwerp, Belgium # Authors: Jeroen Geertzen (Dutch language model), Tom De Smedt <[email protected]> # License: BSD (see LICENSE.txt for details). # http://www.clips.ua.ac.be/pages/pattern #################################################################################################### import re import os try: MODULE = os.path.dirname(__file__) except: MODULE = "" # The tokenizer, chunker and relation finder are inherited from pattern.en.parser. # The tagger is based on Jeroen Geertzen's Dutch language model Brill-NL # (brill-bigrams.txt, brill-contextual.txt, brill-lexical.txt, brill-lexicon.txt): # http://cosmion.net/jeroen/software/brill_pos/ # Accuracy is reported around 92%, but Pattern scores may vary from Geertzen's original # due to WOTAN => Penn Treebank mapping etc. try: from ...en.parser import Lexicon from ...en.parser import PUNCTUATION, tokenize as _en_tokenize, parse as _en_parse, TaggedString from ...en.parser import commandline except: import sys; sys.path.insert(0, os.path.join(MODULE, "..", "..")) from en.parser import Lexicon from en.parser import PUNCTUATION, tokenize as _en_tokenize, parse as _en_parse, TaggedString from en.parser import commandline #### TOKENIZER ##################################################################################### abbreviations = [ "a.d.h.v.", "afb.", "a.u.b.", "bv.", "b.v.", "bijv.", "blz.", "ca.", "cfr.", "dhr.", "dr.", "d.m.v.", "d.w.z.", "e.a.", "e.d.", "e.g.", "enz.", "etc.", "e.v.", "evt.", "fig.", "i.e.", "i.h.b.", "ir.", "i.p.v.", "i.s.m.", "m.a.w.", "max.", "m.b.t.", "m.b.v.", "mevr.", "min.", "n.a.v.", "nl.", "n.o.t.k.", "n.t.b.", "n.v.t.", "o.a.", "ong.", "pag.", "ref.", "t.a.v.", "tel.", "zgn."] def tokenize(s, punctuation=PUNCTUATION, abbreviations=abbreviations, replace={"'n": " 'n"}): # 's in Dutch preceded by a vowel indicates plural ("auto's"): don't replace. s = _en_tokenize(s, punctuation, abbreviations, replace) s = [re.sub(r"' s (ochtends|morgens|middags|avonds)", "'s \\1", s) for s in s] return s _tokenize = tokenize #### LEMMATIZER #################################################################################### # Word lemmas using singularization and verb conjugation from the inflect module. try: from ..inflect import singularize, conjugate, predicative except: try: sys.path.append(os.path.join(MODULE, "..")) from inflect import singularize, conjugate, predicative except: try: from pattern.nl.inflect import singularize, conjugate, predicative except: singularize = lambda w: w conjugate = lambda w, t: w predicative = lambda w: w def lemma(word, pos="NN"): if pos == "NNS": return singularize(word) if pos.startswith(("VB","MD")): return conjugate(word, "infinitive") or word if pos.startswith("JJ") and word.endswith("e"): return predicative(word) return word def find_lemmata(tagged): for token in tagged: token.append(lemma(token[0].lower(), pos=len(token) > 1 and token[1] or None)) return tagged #### PARSER ######################################################################################## # pattern.en.find_tags() has an optional "lexicon" parameter. # We'll pass the Dutch lexicon to it instead of the default English lexicon: lexicon = LEXICON = Lexicon() lexicon.path = os.path.join(MODULE, "brill-lexicon.txt") lexicon.lexical_rules.path = os.path.join(MODULE, "brill-lexical.txt") lexicon.contextual_rules.path = os.path.join(MODULE, "brill-contextual.txt") lexicon.named_entities.tag = "N(eigen,ev)" # WOTAN tagset: # http://lands.let.ru.nl/literature/hvh.1999.2.ps PENN = PENNTREEBANK = TREEBANK = "penntreebank" WOTAN = "wotan" wotan = { "N(": [("eigen,ev","NNP"), ("eigen,mv","NNPS"), ("ev","NN"), ("mv","NNS")], "V(": [("hulp","MD"), ("ott,3","VBZ"), ("ott","VBP"), ("ovt","VBD"), ("verldw","VBN"), ("tegdw","VBG"), ("imp","VB"), ("inf","VB")], "Adj(": [("stell","JJ"), ("vergr","JJR"), ("overtr","JJS")], "Adv(": [("deel","RP"), ("gew","RB"), ("pro","RB")], "Art(": "DT", "Conj(": "CC", "Num(": "CD", "Prep(": [("voorinf","TO"), ("", "IN")], "Pron(": [("bez","PRP$"), ("","PRP")], "Punc(": [("komma",","), ("haakopen","("), ("haaksluit",")"), ("",".")], "Int": "UH", "Misc": [("symbool","SYM"), ("vreemd","FW")] } def wotan2penntreebank(tag): """ Converts a WOTAN tag to Penn Treebank II tag. For example: bokkenrijders N(soort,mv,neut) => bokkenrijders/NNS """ for k,v in wotan.iteritems(): if tag.startswith(k): if not isinstance(v, list): return v for a,b in v: if a in tag.replace("_",""): return b return tag return tag def parse(s, tokenize=True, tags=True, chunks=True, relations=False, lemmata=False, encoding="utf-8", **kwargs): """ Takes a string (sentences) and returns a tagged Unicode string. Sentences in the output are separated by newlines. """ if tokenize: s = _tokenize(s) # Reuse the English parser: kwargs.update({ "lemmata": False, "light": False, "lexicon": LEXICON, "language": "nl", "default": "N(soort,ev,neut)", "map": kwargs.get("tagset", "") != WOTAN and wotan2penntreebank or None, }) s = _en_parse(s, False, tags, chunks, relations, **kwargs) # Use pattern.nl.inflect for lemmatization: if lemmata: p = [find_lemmata(sentence) for sentence in s.split()] s = TaggedString(p, tags=s.tags+["lemma"], language="nl") return s def tag(s, tokenize=True, encoding="utf-8"): """ Returns a list of (token, tag)-tuples from the given string. """ tags = [] for sentence in parse(s, tokenize, True, False, False, False, encoding).split(): for token in sentence: tags.append((token[0], token[1])) return tags #### COMMAND LINE ################################################################################## # From the folder that contains the "pattern" folder: # python -m pattern.nl.parser xml -s "De kat wil wel vis eten maar geen poot nat maken." -OTCLI if __name__ == "__main__": commandline(parse)
cfd7b02747987b034cf4487a4f0d184a14a698da
43a4fd934407a963c876dc1b15fd7052e693592b
/GearBot/Util/RaidHandling/RaidShield.py
2920e7cee1e644e445fd3d504d578a43fb9c6170
[ "MIT" ]
permissive
mrkirby153/GearBot
aa02fdd32bec292a54e8e3805bd829f16522cdc8
a61d936c12e906c7bcfaa840a585ee25ffc06138
refs/heads/master
2020-05-29T18:59:55.450101
2019-06-02T09:54:18
2019-06-02T09:54:18
189,318,104
0
0
MIT
2019-05-30T00:31:06
2019-05-30T00:31:06
null
UTF-8
Python
false
false
1,444
py
from Util import GearbotLogging from Util.RaidHandling import RaidActions class RaidShield: def __init__(self, shield_info) -> None: self.shield_name=shield_info["name"] self.start_actions = [action for action in shield_info["actions"]["triggered"]] self.raider_actions = [action for action in shield_info["actions"]["raider"]] self.termination_actions = [action for action in shield_info["actions"]["terminated"]] async def raid_detected(self, bot, guild, raid_id, raider_ids, shield): GearbotLogging.log_to(guild.id, "raid_shield_triggered", raid_id=raid_id, name=self.shield_name) await self.handle_actions(self.start_actions, bot, guild, raid_id, raider_ids, shield) async def handle_raider(self, bot, raider, raid_id, raider_ids, shield): await self.handle_actions(self.raider_actions, bot, raider, raid_id, raider_ids, shield) async def shield_terminated(self, bot, guild, raid_id, raider_ids, shield): GearbotLogging.log_to(guild.id, "raid_shield_terminated", raid_id=raid_id, name=self.shield_name) await self.handle_actions(self.termination_actions, bot, guild, raid_id, raider_ids, shield) async def handle_actions(self, actions, bot, o, raid_id, raider_ids, shield): for a in actions: action = RaidActions.handlers[a["type"]] await action.execute(bot, o, a["action_data"], raid_id, raider_ids, shield)
e00ea1cfb0a012d2762bd8d9ab89d6d147f0c170
adb6755eb1a3d91375e6b4e9b8c1afd07f85313b
/venv/Lib/site-packages/pandas/tests/io/test_excel.py
c527451cc6d27da20440880d1bc8730d44c74e32
[]
no_license
Atwinenickson/Socialmediaclassifier-
af54b559569e80004c441fc90dc44b0ee945555d
05c5abbaba8694d9bf95d745ffca75c17ac69621
refs/heads/master
2022-12-15T01:33:18.073259
2019-06-07T15:38:18
2019-06-07T15:38:18
190,616,071
1
0
null
2022-12-08T05:13:29
2019-06-06T16:41:17
Python
UTF-8
Python
false
false
102,135
py
from collections import OrderedDict import contextlib from datetime import date, datetime, time, timedelta from distutils.version import LooseVersion from functools import partial import os import warnings from warnings import catch_warnings import numpy as np from numpy import nan import pytest from pandas.compat import PY36, BytesIO, iteritems, map, range, u import pandas.util._test_decorators as td import pandas as pd from pandas import DataFrame, Index, MultiIndex, Series from pandas.core.config import get_option, set_option import pandas.util.testing as tm from pandas.util.testing import ensure_clean, makeCustomDataframe as mkdf from pandas.io.common import URLError from pandas.io.excel import ( ExcelFile, ExcelWriter, _OpenpyxlWriter, _XlsxWriter, _XlwtWriter, read_excel, register_writer) from pandas.io.formats.excel import ExcelFormatter from pandas.io.parsers import read_csv _seriesd = tm.getSeriesData() _tsd = tm.getTimeSeriesData() _frame = DataFrame(_seriesd)[:10] _frame2 = DataFrame(_seriesd, columns=['D', 'C', 'B', 'A'])[:10] _tsframe = tm.makeTimeDataFrame()[:5] _mixed_frame = _frame.copy() _mixed_frame['foo'] = 'bar' @contextlib.contextmanager def ignore_xlrd_time_clock_warning(): """ Context manager to ignore warnings raised by the xlrd library, regarding the deprecation of `time.clock` in Python 3.7. """ with warnings.catch_warnings(): warnings.filterwarnings( action='ignore', message='time.clock has been deprecated', category=DeprecationWarning) yield @td.skip_if_no('xlrd', '1.0.0') class SharedItems(object): @pytest.fixture(autouse=True) def setup_method(self, datapath): self.dirpath = datapath("io", "data") self.frame = _frame.copy() self.frame2 = _frame2.copy() self.tsframe = _tsframe.copy() self.mixed_frame = _mixed_frame.copy() def get_csv_refdf(self, basename): """ Obtain the reference data from read_csv with the Python engine. Parameters ---------- basename : str File base name, excluding file extension. Returns ------- dfref : DataFrame """ pref = os.path.join(self.dirpath, basename + '.csv') dfref = read_csv(pref, index_col=0, parse_dates=True, engine='python') return dfref def get_excelfile(self, basename, ext): """ Return test data ExcelFile instance. Parameters ---------- basename : str File base name, excluding file extension. Returns ------- excel : io.excel.ExcelFile """ return ExcelFile(os.path.join(self.dirpath, basename + ext)) def get_exceldf(self, basename, ext, *args, **kwds): """ Return test data DataFrame. Parameters ---------- basename : str File base name, excluding file extension. Returns ------- df : DataFrame """ pth = os.path.join(self.dirpath, basename + ext) return read_excel(pth, *args, **kwds) class ReadingTestsBase(SharedItems): # This is based on ExcelWriterBase @pytest.fixture(autouse=True, params=['xlrd', None]) def set_engine(self, request): func_name = "get_exceldf" old_func = getattr(self, func_name) new_func = partial(old_func, engine=request.param) setattr(self, func_name, new_func) yield setattr(self, func_name, old_func) @td.skip_if_no("xlrd", "1.0.1") # see gh-22682 def test_usecols_int(self, ext): df_ref = self.get_csv_refdf("test1") df_ref = df_ref.reindex(columns=["A", "B", "C"]) # usecols as int with tm.assert_produces_warning(FutureWarning, check_stacklevel=False): with ignore_xlrd_time_clock_warning(): df1 = self.get_exceldf("test1", ext, "Sheet1", index_col=0, usecols=3) # usecols as int with tm.assert_produces_warning(FutureWarning, check_stacklevel=False): with ignore_xlrd_time_clock_warning(): df2 = self.get_exceldf("test1", ext, "Sheet2", skiprows=[1], index_col=0, usecols=3) # parse_cols instead of usecols, usecols as int with tm.assert_produces_warning(FutureWarning, check_stacklevel=False): with ignore_xlrd_time_clock_warning(): df3 = self.get_exceldf("test1", ext, "Sheet2", skiprows=[1], index_col=0, parse_cols=3) # TODO add index to xls file) tm.assert_frame_equal(df1, df_ref, check_names=False) tm.assert_frame_equal(df2, df_ref, check_names=False) tm.assert_frame_equal(df3, df_ref, check_names=False) @td.skip_if_no('xlrd', '1.0.1') # GH-22682 def test_usecols_list(self, ext): dfref = self.get_csv_refdf('test1') dfref = dfref.reindex(columns=['B', 'C']) df1 = self.get_exceldf('test1', ext, 'Sheet1', index_col=0, usecols=[0, 2, 3]) df2 = self.get_exceldf('test1', ext, 'Sheet2', skiprows=[1], index_col=0, usecols=[0, 2, 3]) with tm.assert_produces_warning(FutureWarning): with ignore_xlrd_time_clock_warning(): df3 = self.get_exceldf('test1', ext, 'Sheet2', skiprows=[1], index_col=0, parse_cols=[0, 2, 3]) # TODO add index to xls file) tm.assert_frame_equal(df1, dfref, check_names=False) tm.assert_frame_equal(df2, dfref, check_names=False) tm.assert_frame_equal(df3, dfref, check_names=False) @td.skip_if_no('xlrd', '1.0.1') # GH-22682 def test_usecols_str(self, ext): dfref = self.get_csv_refdf('test1') df1 = dfref.reindex(columns=['A', 'B', 'C']) df2 = self.get_exceldf('test1', ext, 'Sheet1', index_col=0, usecols='A:D') df3 = self.get_exceldf('test1', ext, 'Sheet2', skiprows=[1], index_col=0, usecols='A:D') with tm.assert_produces_warning(FutureWarning): with ignore_xlrd_time_clock_warning(): df4 = self.get_exceldf('test1', ext, 'Sheet2', skiprows=[1], index_col=0, parse_cols='A:D') # TODO add index to xls, read xls ignores index name ? tm.assert_frame_equal(df2, df1, check_names=False) tm.assert_frame_equal(df3, df1, check_names=False) tm.assert_frame_equal(df4, df1, check_names=False) df1 = dfref.reindex(columns=['B', 'C']) df2 = self.get_exceldf('test1', ext, 'Sheet1', index_col=0, usecols='A,C,D') df3 = self.get_exceldf('test1', ext, 'Sheet2', skiprows=[1], index_col=0, usecols='A,C,D') # TODO add index to xls file tm.assert_frame_equal(df2, df1, check_names=False) tm.assert_frame_equal(df3, df1, check_names=False) df1 = dfref.reindex(columns=['B', 'C']) df2 = self.get_exceldf('test1', ext, 'Sheet1', index_col=0, usecols='A,C:D') df3 = self.get_exceldf('test1', ext, 'Sheet2', skiprows=[1], index_col=0, usecols='A,C:D') tm.assert_frame_equal(df2, df1, check_names=False) tm.assert_frame_equal(df3, df1, check_names=False) @pytest.mark.parametrize("usecols", [ [0, 1, 3], [0, 3, 1], [1, 0, 3], [1, 3, 0], [3, 0, 1], [3, 1, 0], ]) def test_usecols_diff_positional_int_columns_order(self, ext, usecols): expected = self.get_csv_refdf("test1")[["A", "C"]] result = self.get_exceldf("test1", ext, "Sheet1", index_col=0, usecols=usecols) tm.assert_frame_equal(result, expected, check_names=False) @pytest.mark.parametrize("usecols", [ ["B", "D"], ["D", "B"] ]) def test_usecols_diff_positional_str_columns_order(self, ext, usecols): expected = self.get_csv_refdf("test1")[["B", "D"]] expected.index = range(len(expected)) result = self.get_exceldf("test1", ext, "Sheet1", usecols=usecols) tm.assert_frame_equal(result, expected, check_names=False) def test_read_excel_without_slicing(self, ext): expected = self.get_csv_refdf("test1") result = self.get_exceldf("test1", ext, "Sheet1", index_col=0) tm.assert_frame_equal(result, expected, check_names=False) def test_usecols_excel_range_str(self, ext): expected = self.get_csv_refdf("test1")[["C", "D"]] result = self.get_exceldf("test1", ext, "Sheet1", index_col=0, usecols="A,D:E") tm.assert_frame_equal(result, expected, check_names=False) def test_usecols_excel_range_str_invalid(self, ext): msg = "Invalid column name: E1" with pytest.raises(ValueError, match=msg): self.get_exceldf("test1", ext, "Sheet1", usecols="D:E1") def test_index_col_label_error(self, ext): msg = "list indices must be integers.*, not str" with pytest.raises(TypeError, match=msg): self.get_exceldf("test1", ext, "Sheet1", index_col=["A"], usecols=["A", "C"]) def test_index_col_empty(self, ext): # see gh-9208 result = self.get_exceldf("test1", ext, "Sheet3", index_col=["A", "B", "C"]) expected = DataFrame(columns=["D", "E", "F"], index=MultiIndex(levels=[[]] * 3, codes=[[]] * 3, names=["A", "B", "C"])) tm.assert_frame_equal(result, expected) @pytest.mark.parametrize("index_col", [None, 2]) def test_index_col_with_unnamed(self, ext, index_col): # see gh-18792 result = self.get_exceldf("test1", ext, "Sheet4", index_col=index_col) expected = DataFrame([["i1", "a", "x"], ["i2", "b", "y"]], columns=["Unnamed: 0", "col1", "col2"]) if index_col: expected = expected.set_index(expected.columns[index_col]) tm.assert_frame_equal(result, expected) def test_usecols_pass_non_existent_column(self, ext): msg = ("Usecols do not match columns, " "columns expected but not found: " + r"\['E'\]") with pytest.raises(ValueError, match=msg): self.get_exceldf("test1", ext, usecols=["E"]) def test_usecols_wrong_type(self, ext): msg = ("'usecols' must either be list-like of " "all strings, all unicode, all integers or a callable.") with pytest.raises(ValueError, match=msg): self.get_exceldf("test1", ext, usecols=["E1", 0]) def test_excel_stop_iterator(self, ext): parsed = self.get_exceldf('test2', ext, 'Sheet1') expected = DataFrame([['aaaa', 'bbbbb']], columns=['Test', 'Test1']) tm.assert_frame_equal(parsed, expected) def test_excel_cell_error_na(self, ext): parsed = self.get_exceldf('test3', ext, 'Sheet1') expected = DataFrame([[np.nan]], columns=['Test']) tm.assert_frame_equal(parsed, expected) def test_excel_passes_na(self, ext): excel = self.get_excelfile('test4', ext) parsed = read_excel(excel, 'Sheet1', keep_default_na=False, na_values=['apple']) expected = DataFrame([['NA'], [1], ['NA'], [np.nan], ['rabbit']], columns=['Test']) tm.assert_frame_equal(parsed, expected) parsed = read_excel(excel, 'Sheet1', keep_default_na=True, na_values=['apple']) expected = DataFrame([[np.nan], [1], [np.nan], [np.nan], ['rabbit']], columns=['Test']) tm.assert_frame_equal(parsed, expected) # 13967 excel = self.get_excelfile('test5', ext) parsed = read_excel(excel, 'Sheet1', keep_default_na=False, na_values=['apple']) expected = DataFrame([['1.#QNAN'], [1], ['nan'], [np.nan], ['rabbit']], columns=['Test']) tm.assert_frame_equal(parsed, expected) parsed = read_excel(excel, 'Sheet1', keep_default_na=True, na_values=['apple']) expected = DataFrame([[np.nan], [1], [np.nan], [np.nan], ['rabbit']], columns=['Test']) tm.assert_frame_equal(parsed, expected) @td.skip_if_no('xlrd', '1.0.1') # GH-22682 def test_deprecated_sheetname(self, ext): # gh-17964 excel = self.get_excelfile('test1', ext) with tm.assert_produces_warning(FutureWarning, check_stacklevel=False): read_excel(excel, sheetname='Sheet1') with pytest.raises(TypeError): read_excel(excel, sheet='Sheet1') @td.skip_if_no('xlrd', '1.0.1') # GH-22682 def test_excel_table_sheet_by_index(self, ext): excel = self.get_excelfile('test1', ext) dfref = self.get_csv_refdf('test1') df1 = read_excel(excel, 0, index_col=0) df2 = read_excel(excel, 1, skiprows=[1], index_col=0) tm.assert_frame_equal(df1, dfref, check_names=False) tm.assert_frame_equal(df2, dfref, check_names=False) df1 = excel.parse(0, index_col=0) df2 = excel.parse(1, skiprows=[1], index_col=0) tm.assert_frame_equal(df1, dfref, check_names=False) tm.assert_frame_equal(df2, dfref, check_names=False) df3 = read_excel(excel, 0, index_col=0, skipfooter=1) tm.assert_frame_equal(df3, df1.iloc[:-1]) with tm.assert_produces_warning(FutureWarning, check_stacklevel=False): df4 = read_excel(excel, 0, index_col=0, skip_footer=1) tm.assert_frame_equal(df3, df4) df3 = excel.parse(0, index_col=0, skipfooter=1) tm.assert_frame_equal(df3, df1.iloc[:-1]) import xlrd with pytest.raises(xlrd.XLRDError): read_excel(excel, 'asdf') def test_excel_table(self, ext): dfref = self.get_csv_refdf('test1') df1 = self.get_exceldf('test1', ext, 'Sheet1', index_col=0) df2 = self.get_exceldf('test1', ext, 'Sheet2', skiprows=[1], index_col=0) # TODO add index to file tm.assert_frame_equal(df1, dfref, check_names=False) tm.assert_frame_equal(df2, dfref, check_names=False) df3 = self.get_exceldf('test1', ext, 'Sheet1', index_col=0, skipfooter=1) tm.assert_frame_equal(df3, df1.iloc[:-1]) def test_reader_special_dtypes(self, ext): expected = DataFrame.from_dict(OrderedDict([ ("IntCol", [1, 2, -3, 4, 0]), ("FloatCol", [1.25, 2.25, 1.83, 1.92, 0.0000000005]), ("BoolCol", [True, False, True, True, False]), ("StrCol", [1, 2, 3, 4, 5]), # GH5394 - this is why convert_float isn't vectorized ("Str2Col", ["a", 3, "c", "d", "e"]), ("DateCol", [datetime(2013, 10, 30), datetime(2013, 10, 31), datetime(1905, 1, 1), datetime(2013, 12, 14), datetime(2015, 3, 14)]) ])) basename = 'test_types' # should read in correctly and infer types actual = self.get_exceldf(basename, ext, 'Sheet1') tm.assert_frame_equal(actual, expected) # if not coercing number, then int comes in as float float_expected = expected.copy() float_expected["IntCol"] = float_expected["IntCol"].astype(float) float_expected.loc[float_expected.index[1], "Str2Col"] = 3.0 actual = self.get_exceldf(basename, ext, 'Sheet1', convert_float=False) tm.assert_frame_equal(actual, float_expected) # check setting Index (assuming xls and xlsx are the same here) for icol, name in enumerate(expected.columns): actual = self.get_exceldf(basename, ext, 'Sheet1', index_col=icol) exp = expected.set_index(name) tm.assert_frame_equal(actual, exp) # convert_float and converters should be different but both accepted expected["StrCol"] = expected["StrCol"].apply(str) actual = self.get_exceldf( basename, ext, 'Sheet1', converters={"StrCol": str}) tm.assert_frame_equal(actual, expected) no_convert_float = float_expected.copy() no_convert_float["StrCol"] = no_convert_float["StrCol"].apply(str) actual = self.get_exceldf(basename, ext, 'Sheet1', convert_float=False, converters={"StrCol": str}) tm.assert_frame_equal(actual, no_convert_float) # GH8212 - support for converters and missing values def test_reader_converters(self, ext): basename = 'test_converters' expected = DataFrame.from_dict(OrderedDict([ ("IntCol", [1, 2, -3, -1000, 0]), ("FloatCol", [12.5, np.nan, 18.3, 19.2, 0.000000005]), ("BoolCol", ['Found', 'Found', 'Found', 'Not found', 'Found']), ("StrCol", ['1', np.nan, '3', '4', '5']), ])) converters = {'IntCol': lambda x: int(x) if x != '' else -1000, 'FloatCol': lambda x: 10 * x if x else np.nan, 2: lambda x: 'Found' if x != '' else 'Not found', 3: lambda x: str(x) if x else '', } # should read in correctly and set types of single cells (not array # dtypes) actual = self.get_exceldf(basename, ext, 'Sheet1', converters=converters) tm.assert_frame_equal(actual, expected) def test_reader_dtype(self, ext): # GH 8212 basename = 'testdtype' actual = self.get_exceldf(basename, ext) expected = DataFrame({ 'a': [1, 2, 3, 4], 'b': [2.5, 3.5, 4.5, 5.5], 'c': [1, 2, 3, 4], 'd': [1.0, 2.0, np.nan, 4.0]}).reindex( columns=['a', 'b', 'c', 'd']) tm.assert_frame_equal(actual, expected) actual = self.get_exceldf(basename, ext, dtype={'a': 'float64', 'b': 'float32', 'c': str}) expected['a'] = expected['a'].astype('float64') expected['b'] = expected['b'].astype('float32') expected['c'] = ['001', '002', '003', '004'] tm.assert_frame_equal(actual, expected) with pytest.raises(ValueError): self.get_exceldf(basename, ext, dtype={'d': 'int64'}) @pytest.mark.parametrize("dtype,expected", [ (None, DataFrame({ "a": [1, 2, 3, 4], "b": [2.5, 3.5, 4.5, 5.5], "c": [1, 2, 3, 4], "d": [1.0, 2.0, np.nan, 4.0] })), ({"a": "float64", "b": "float32", "c": str, "d": str }, DataFrame({ "a": Series([1, 2, 3, 4], dtype="float64"), "b": Series([2.5, 3.5, 4.5, 5.5], dtype="float32"), "c": ["001", "002", "003", "004"], "d": ["1", "2", np.nan, "4"] })), ]) def test_reader_dtype_str(self, ext, dtype, expected): # see gh-20377 basename = "testdtype" actual = self.get_exceldf(basename, ext, dtype=dtype) tm.assert_frame_equal(actual, expected) def test_reading_all_sheets(self, ext): # Test reading all sheetnames by setting sheetname to None, # Ensure a dict is returned. # See PR #9450 basename = 'test_multisheet' dfs = self.get_exceldf(basename, ext, sheet_name=None) # ensure this is not alphabetical to test order preservation expected_keys = ['Charlie', 'Alpha', 'Beta'] tm.assert_contains_all(expected_keys, dfs.keys()) # Issue 9930 # Ensure sheet order is preserved assert expected_keys == list(dfs.keys()) def test_reading_multiple_specific_sheets(self, ext): # Test reading specific sheetnames by specifying a mixed list # of integers and strings, and confirm that duplicated sheet # references (positions/names) are removed properly. # Ensure a dict is returned # See PR #9450 basename = 'test_multisheet' # Explicitly request duplicates. Only the set should be returned. expected_keys = [2, 'Charlie', 'Charlie'] dfs = self.get_exceldf(basename, ext, sheet_name=expected_keys) expected_keys = list(set(expected_keys)) tm.assert_contains_all(expected_keys, dfs.keys()) assert len(expected_keys) == len(dfs.keys()) def test_reading_all_sheets_with_blank(self, ext): # Test reading all sheetnames by setting sheetname to None, # In the case where some sheets are blank. # Issue #11711 basename = 'blank_with_header' dfs = self.get_exceldf(basename, ext, sheet_name=None) expected_keys = ['Sheet1', 'Sheet2', 'Sheet3'] tm.assert_contains_all(expected_keys, dfs.keys()) # GH6403 def test_read_excel_blank(self, ext): actual = self.get_exceldf('blank', ext, 'Sheet1') tm.assert_frame_equal(actual, DataFrame()) def test_read_excel_blank_with_header(self, ext): expected = DataFrame(columns=['col_1', 'col_2']) actual = self.get_exceldf('blank_with_header', ext, 'Sheet1') tm.assert_frame_equal(actual, expected) @td.skip_if_no("xlwt") @td.skip_if_no("openpyxl") @pytest.mark.parametrize("header,expected", [ (None, DataFrame([np.nan] * 4)), (0, DataFrame({"Unnamed: 0": [np.nan] * 3})) ]) def test_read_one_empty_col_no_header(self, ext, header, expected): # xref gh-12292 filename = "no_header" df = pd.DataFrame( [["", 1, 100], ["", 2, 200], ["", 3, 300], ["", 4, 400]] ) with ensure_clean(ext) as path: df.to_excel(path, filename, index=False, header=False) result = read_excel(path, filename, usecols=[0], header=header) tm.assert_frame_equal(result, expected) @td.skip_if_no("xlwt") @td.skip_if_no("openpyxl") @pytest.mark.parametrize("header,expected", [ (None, DataFrame([0] + [np.nan] * 4)), (0, DataFrame([np.nan] * 4)) ]) def test_read_one_empty_col_with_header(self, ext, header, expected): filename = "with_header" df = pd.DataFrame( [["", 1, 100], ["", 2, 200], ["", 3, 300], ["", 4, 400]] ) with ensure_clean(ext) as path: df.to_excel(path, 'with_header', index=False, header=True) result = read_excel(path, filename, usecols=[0], header=header) tm.assert_frame_equal(result, expected) @td.skip_if_no('openpyxl') @td.skip_if_no('xlwt') def test_set_column_names_in_parameter(self, ext): # GH 12870 : pass down column names associated with # keyword argument names refdf = pd.DataFrame([[1, 'foo'], [2, 'bar'], [3, 'baz']], columns=['a', 'b']) with ensure_clean(ext) as pth: with ExcelWriter(pth) as writer: refdf.to_excel(writer, 'Data_no_head', header=False, index=False) refdf.to_excel(writer, 'Data_with_head', index=False) refdf.columns = ['A', 'B'] with ExcelFile(pth) as reader: xlsdf_no_head = read_excel(reader, 'Data_no_head', header=None, names=['A', 'B']) xlsdf_with_head = read_excel(reader, 'Data_with_head', index_col=None, names=['A', 'B']) tm.assert_frame_equal(xlsdf_no_head, refdf) tm.assert_frame_equal(xlsdf_with_head, refdf) def test_date_conversion_overflow(self, ext): # GH 10001 : pandas.ExcelFile ignore parse_dates=False expected = pd.DataFrame([[pd.Timestamp('2016-03-12'), 'Marc Johnson'], [pd.Timestamp('2016-03-16'), 'Jack Black'], [1e+20, 'Timothy Brown']], columns=['DateColWithBigInt', 'StringCol']) result = self.get_exceldf('testdateoverflow', ext) tm.assert_frame_equal(result, expected) @td.skip_if_no("xlrd", "1.0.1") # see gh-22682 def test_sheet_name_and_sheetname(self, ext): # gh-10559: Minor improvement: Change "sheet_name" to "sheetname" # gh-10969: DOC: Consistent var names (sheetname vs sheet_name) # gh-12604: CLN GH10559 Rename sheetname variable to sheet_name # gh-20920: ExcelFile.parse() and pd.read_xlsx() have different # behavior for "sheetname" argument filename = "test1" sheet_name = "Sheet1" df_ref = self.get_csv_refdf(filename) df1 = self.get_exceldf(filename, ext, sheet_name=sheet_name, index_col=0) # doc with tm.assert_produces_warning(FutureWarning, check_stacklevel=False): with ignore_xlrd_time_clock_warning(): df2 = self.get_exceldf(filename, ext, index_col=0, sheetname=sheet_name) # backward compat excel = self.get_excelfile(filename, ext) df1_parse = excel.parse(sheet_name=sheet_name, index_col=0) # doc with tm.assert_produces_warning(FutureWarning, check_stacklevel=False): df2_parse = excel.parse(index_col=0, sheetname=sheet_name) # backward compat tm.assert_frame_equal(df1, df_ref, check_names=False) tm.assert_frame_equal(df2, df_ref, check_names=False) tm.assert_frame_equal(df1_parse, df_ref, check_names=False) tm.assert_frame_equal(df2_parse, df_ref, check_names=False) def test_sheet_name_both_raises(self, ext): with pytest.raises(TypeError, match="Cannot specify both"): self.get_exceldf('test1', ext, sheetname='Sheet1', sheet_name='Sheet1') excel = self.get_excelfile('test1', ext) with pytest.raises(TypeError, match="Cannot specify both"): excel.parse(sheetname='Sheet1', sheet_name='Sheet1') def test_excel_read_buffer(self, ext): pth = os.path.join(self.dirpath, 'test1' + ext) expected = read_excel(pth, 'Sheet1', index_col=0) with open(pth, 'rb') as f: actual = read_excel(f, 'Sheet1', index_col=0) tm.assert_frame_equal(expected, actual) with open(pth, 'rb') as f: xls = ExcelFile(f) actual = read_excel(xls, 'Sheet1', index_col=0) tm.assert_frame_equal(expected, actual) def test_bad_engine_raises(self, ext): bad_engine = 'foo' with pytest.raises(ValueError, match="Unknown engine: foo"): read_excel('', engine=bad_engine) @tm.network def test_read_from_http_url(self, ext): url = ('https://raw.github.com/pandas-dev/pandas/master/' 'pandas/tests/io/data/test1' + ext) url_table = read_excel(url) local_table = self.get_exceldf('test1', ext) tm.assert_frame_equal(url_table, local_table) @td.skip_if_not_us_locale def test_read_from_s3_url(self, ext, s3_resource): # Bucket "pandas-test" created in tests/io/conftest.py file_name = os.path.join(self.dirpath, 'test1' + ext) with open(file_name, "rb") as f: s3_resource.Bucket("pandas-test").put_object(Key="test1" + ext, Body=f) url = ('s3://pandas-test/test1' + ext) url_table = read_excel(url) local_table = self.get_exceldf('test1', ext) tm.assert_frame_equal(url_table, local_table) @pytest.mark.slow # ignore warning from old xlrd @pytest.mark.filterwarnings("ignore:This metho:PendingDeprecationWarning") def test_read_from_file_url(self, ext): # FILE localtable = os.path.join(self.dirpath, 'test1' + ext) local_table = read_excel(localtable) try: url_table = read_excel('file://localhost/' + localtable) except URLError: # fails on some systems import platform pytest.skip("failing on %s" % ' '.join(platform.uname()).strip()) tm.assert_frame_equal(url_table, local_table) @td.skip_if_no('pathlib') def test_read_from_pathlib_path(self, ext): # GH12655 from pathlib import Path str_path = os.path.join(self.dirpath, 'test1' + ext) expected = read_excel(str_path, 'Sheet1', index_col=0) path_obj = Path(self.dirpath, 'test1' + ext) actual = read_excel(path_obj, 'Sheet1', index_col=0) tm.assert_frame_equal(expected, actual) @td.skip_if_no('py.path') def test_read_from_py_localpath(self, ext): # GH12655 from py.path import local as LocalPath str_path = os.path.join(self.dirpath, 'test1' + ext) expected = read_excel(str_path, 'Sheet1', index_col=0) abs_dir = os.path.abspath(self.dirpath) path_obj = LocalPath(abs_dir).join('test1' + ext) actual = read_excel(path_obj, 'Sheet1', index_col=0) tm.assert_frame_equal(expected, actual) def test_reader_closes_file(self, ext): pth = os.path.join(self.dirpath, 'test1' + ext) f = open(pth, 'rb') with ExcelFile(f) as xlsx: # parses okay read_excel(xlsx, 'Sheet1', index_col=0) assert f.closed @td.skip_if_no("xlwt") @td.skip_if_no("openpyxl") def test_creating_and_reading_multiple_sheets(self, ext): # see gh-9450 # # Test reading multiple sheets, from a runtime.txt # created Excel file with multiple sheets. def tdf(col_sheet_name): d, i = [11, 22, 33], [1, 2, 3] return DataFrame(d, i, columns=[col_sheet_name]) sheets = ["AAA", "BBB", "CCC"] dfs = [tdf(s) for s in sheets] dfs = dict(zip(sheets, dfs)) with ensure_clean(ext) as pth: with ExcelWriter(pth) as ew: for sheetname, df in iteritems(dfs): df.to_excel(ew, sheetname) dfs_returned = read_excel(pth, sheet_name=sheets, index_col=0) for s in sheets: tm.assert_frame_equal(dfs[s], dfs_returned[s]) def test_reader_seconds(self, ext): # Test reading times with and without milliseconds. GH5945. expected = DataFrame.from_dict({"Time": [time(1, 2, 3), time(2, 45, 56, 100000), time(4, 29, 49, 200000), time(6, 13, 42, 300000), time(7, 57, 35, 400000), time(9, 41, 28, 500000), time(11, 25, 21, 600000), time(13, 9, 14, 700000), time(14, 53, 7, 800000), time(16, 37, 0, 900000), time(18, 20, 54)]}) actual = self.get_exceldf('times_1900', ext, 'Sheet1') tm.assert_frame_equal(actual, expected) actual = self.get_exceldf('times_1904', ext, 'Sheet1') tm.assert_frame_equal(actual, expected) def test_read_excel_multiindex(self, ext): # see gh-4679 mi = MultiIndex.from_product([["foo", "bar"], ["a", "b"]]) mi_file = os.path.join(self.dirpath, "testmultiindex" + ext) # "mi_column" sheet expected = DataFrame([[1, 2.5, pd.Timestamp("2015-01-01"), True], [2, 3.5, pd.Timestamp("2015-01-02"), False], [3, 4.5, pd.Timestamp("2015-01-03"), False], [4, 5.5, pd.Timestamp("2015-01-04"), True]], columns=mi) actual = read_excel(mi_file, "mi_column", header=[0, 1], index_col=0) tm.assert_frame_equal(actual, expected) # "mi_index" sheet expected.index = mi expected.columns = ["a", "b", "c", "d"] actual = read_excel(mi_file, "mi_index", index_col=[0, 1]) tm.assert_frame_equal(actual, expected, check_names=False) # "both" sheet expected.columns = mi actual = read_excel(mi_file, "both", index_col=[0, 1], header=[0, 1]) tm.assert_frame_equal(actual, expected, check_names=False) # "mi_index_name" sheet expected.columns = ["a", "b", "c", "d"] expected.index = mi.set_names(["ilvl1", "ilvl2"]) actual = read_excel(mi_file, "mi_index_name", index_col=[0, 1]) tm.assert_frame_equal(actual, expected) # "mi_column_name" sheet expected.index = list(range(4)) expected.columns = mi.set_names(["c1", "c2"]) actual = read_excel(mi_file, "mi_column_name", header=[0, 1], index_col=0) tm.assert_frame_equal(actual, expected) # see gh-11317 # "name_with_int" sheet expected.columns = mi.set_levels( [1, 2], level=1).set_names(["c1", "c2"]) actual = read_excel(mi_file, "name_with_int", index_col=0, header=[0, 1]) tm.assert_frame_equal(actual, expected) # "both_name" sheet expected.columns = mi.set_names(["c1", "c2"]) expected.index = mi.set_names(["ilvl1", "ilvl2"]) actual = read_excel(mi_file, "both_name", index_col=[0, 1], header=[0, 1]) tm.assert_frame_equal(actual, expected) # "both_skiprows" sheet actual = read_excel(mi_file, "both_name_skiprows", index_col=[0, 1], header=[0, 1], skiprows=2) tm.assert_frame_equal(actual, expected) def test_read_excel_multiindex_header_only(self, ext): # see gh-11733. # # Don't try to parse a header name if there isn't one. mi_file = os.path.join(self.dirpath, "testmultiindex" + ext) result = read_excel(mi_file, "index_col_none", header=[0, 1]) exp_columns = MultiIndex.from_product([("A", "B"), ("key", "val")]) expected = DataFrame([[1, 2, 3, 4]] * 2, columns=exp_columns) tm.assert_frame_equal(result, expected) @td.skip_if_no("xlsxwriter") def test_read_excel_multiindex_empty_level(self, ext): # see gh-12453 with ensure_clean(ext) as path: df = DataFrame({ ("One", "x"): {0: 1}, ("Two", "X"): {0: 3}, ("Two", "Y"): {0: 7}, ("Zero", ""): {0: 0} }) expected = DataFrame({ ("One", "x"): {0: 1}, ("Two", "X"): {0: 3}, ("Two", "Y"): {0: 7}, ("Zero", "Unnamed: 4_level_1"): {0: 0} }) df.to_excel(path) actual = pd.read_excel(path, header=[0, 1], index_col=0) tm.assert_frame_equal(actual, expected) df = pd.DataFrame({ ("Beg", ""): {0: 0}, ("Middle", "x"): {0: 1}, ("Tail", "X"): {0: 3}, ("Tail", "Y"): {0: 7} }) expected = pd.DataFrame({ ("Beg", "Unnamed: 1_level_1"): {0: 0}, ("Middle", "x"): {0: 1}, ("Tail", "X"): {0: 3}, ("Tail", "Y"): {0: 7} }) df.to_excel(path) actual = pd.read_excel(path, header=[0, 1], index_col=0) tm.assert_frame_equal(actual, expected) @td.skip_if_no("xlsxwriter") @pytest.mark.parametrize("c_idx_names", [True, False]) @pytest.mark.parametrize("r_idx_names", [True, False]) @pytest.mark.parametrize("c_idx_levels", [1, 3]) @pytest.mark.parametrize("r_idx_levels", [1, 3]) def test_excel_multindex_roundtrip(self, ext, c_idx_names, r_idx_names, c_idx_levels, r_idx_levels): # see gh-4679 with ensure_clean(ext) as pth: if c_idx_levels == 1 and c_idx_names: pytest.skip("Column index name cannot be " "serialized unless it's a MultiIndex") # Empty name case current read in as # unnamed levels, not Nones. check_names = r_idx_names or r_idx_levels <= 1 df = mkdf(5, 5, c_idx_names, r_idx_names, c_idx_levels, r_idx_levels) df.to_excel(pth) act = pd.read_excel(pth, index_col=list(range(r_idx_levels)), header=list(range(c_idx_levels))) tm.assert_frame_equal(df, act, check_names=check_names) df.iloc[0, :] = np.nan df.to_excel(pth) act = pd.read_excel(pth, index_col=list(range(r_idx_levels)), header=list(range(c_idx_levels))) tm.assert_frame_equal(df, act, check_names=check_names) df.iloc[-1, :] = np.nan df.to_excel(pth) act = pd.read_excel(pth, index_col=list(range(r_idx_levels)), header=list(range(c_idx_levels))) tm.assert_frame_equal(df, act, check_names=check_names) def test_excel_old_index_format(self, ext): # see gh-4679 filename = "test_index_name_pre17" + ext in_file = os.path.join(self.dirpath, filename) # We detect headers to determine if index names exist, so # that "index" name in the "names" version of the data will # now be interpreted as rows that include null data. data = np.array([[None, None, None, None, None], ["R0C0", "R0C1", "R0C2", "R0C3", "R0C4"], ["R1C0", "R1C1", "R1C2", "R1C3", "R1C4"], ["R2C0", "R2C1", "R2C2", "R2C3", "R2C4"], ["R3C0", "R3C1", "R3C2", "R3C3", "R3C4"], ["R4C0", "R4C1", "R4C2", "R4C3", "R4C4"]]) columns = ["C_l0_g0", "C_l0_g1", "C_l0_g2", "C_l0_g3", "C_l0_g4"] mi = MultiIndex(levels=[["R0", "R_l0_g0", "R_l0_g1", "R_l0_g2", "R_l0_g3", "R_l0_g4"], ["R1", "R_l1_g0", "R_l1_g1", "R_l1_g2", "R_l1_g3", "R_l1_g4"]], codes=[[0, 1, 2, 3, 4, 5], [0, 1, 2, 3, 4, 5]], names=[None, None]) si = Index(["R0", "R_l0_g0", "R_l0_g1", "R_l0_g2", "R_l0_g3", "R_l0_g4"], name=None) expected = pd.DataFrame(data, index=si, columns=columns) actual = pd.read_excel(in_file, "single_names", index_col=0) tm.assert_frame_equal(actual, expected) expected.index = mi actual = pd.read_excel(in_file, "multi_names", index_col=[0, 1]) tm.assert_frame_equal(actual, expected) # The analogous versions of the "names" version data # where there are explicitly no names for the indices. data = np.array([["R0C0", "R0C1", "R0C2", "R0C3", "R0C4"], ["R1C0", "R1C1", "R1C2", "R1C3", "R1C4"], ["R2C0", "R2C1", "R2C2", "R2C3", "R2C4"], ["R3C0", "R3C1", "R3C2", "R3C3", "R3C4"], ["R4C0", "R4C1", "R4C2", "R4C3", "R4C4"]]) columns = ["C_l0_g0", "C_l0_g1", "C_l0_g2", "C_l0_g3", "C_l0_g4"] mi = MultiIndex(levels=[["R_l0_g0", "R_l0_g1", "R_l0_g2", "R_l0_g3", "R_l0_g4"], ["R_l1_g0", "R_l1_g1", "R_l1_g2", "R_l1_g3", "R_l1_g4"]], codes=[[0, 1, 2, 3, 4], [0, 1, 2, 3, 4]], names=[None, None]) si = Index(["R_l0_g0", "R_l0_g1", "R_l0_g2", "R_l0_g3", "R_l0_g4"], name=None) expected = pd.DataFrame(data, index=si, columns=columns) actual = pd.read_excel(in_file, "single_no_names", index_col=0) tm.assert_frame_equal(actual, expected) expected.index = mi actual = pd.read_excel(in_file, "multi_no_names", index_col=[0, 1]) tm.assert_frame_equal(actual, expected, check_names=False) def test_read_excel_bool_header_arg(self, ext): # GH 6114 for arg in [True, False]: with pytest.raises(TypeError): pd.read_excel(os.path.join(self.dirpath, 'test1' + ext), header=arg) def test_read_excel_chunksize(self, ext): # GH 8011 with pytest.raises(NotImplementedError): pd.read_excel(os.path.join(self.dirpath, 'test1' + ext), chunksize=100) @td.skip_if_no("xlwt") @td.skip_if_no("openpyxl") def test_read_excel_parse_dates(self, ext): # see gh-11544, gh-12051 df = DataFrame( {"col": [1, 2, 3], "date_strings": pd.date_range("2012-01-01", periods=3)}) df2 = df.copy() df2["date_strings"] = df2["date_strings"].dt.strftime("%m/%d/%Y") with ensure_clean(ext) as pth: df2.to_excel(pth) res = read_excel(pth, index_col=0) tm.assert_frame_equal(df2, res) res = read_excel(pth, parse_dates=["date_strings"], index_col=0) tm.assert_frame_equal(df, res) date_parser = lambda x: pd.datetime.strptime(x, "%m/%d/%Y") res = read_excel(pth, parse_dates=["date_strings"], date_parser=date_parser, index_col=0) tm.assert_frame_equal(df, res) def test_read_excel_skiprows_list(self, ext): # GH 4903 actual = pd.read_excel(os.path.join(self.dirpath, 'testskiprows' + ext), 'skiprows_list', skiprows=[0, 2]) expected = DataFrame([[1, 2.5, pd.Timestamp('2015-01-01'), True], [2, 3.5, pd.Timestamp('2015-01-02'), False], [3, 4.5, pd.Timestamp('2015-01-03'), False], [4, 5.5, pd.Timestamp('2015-01-04'), True]], columns=['a', 'b', 'c', 'd']) tm.assert_frame_equal(actual, expected) actual = pd.read_excel(os.path.join(self.dirpath, 'testskiprows' + ext), 'skiprows_list', skiprows=np.array([0, 2])) tm.assert_frame_equal(actual, expected) def test_read_excel_nrows(self, ext): # GH 16645 num_rows_to_pull = 5 actual = pd.read_excel(os.path.join(self.dirpath, 'test1' + ext), nrows=num_rows_to_pull) expected = pd.read_excel(os.path.join(self.dirpath, 'test1' + ext)) expected = expected[:num_rows_to_pull] tm.assert_frame_equal(actual, expected) def test_read_excel_nrows_greater_than_nrows_in_file(self, ext): # GH 16645 expected = pd.read_excel(os.path.join(self.dirpath, 'test1' + ext)) num_records_in_file = len(expected) num_rows_to_pull = num_records_in_file + 10 actual = pd.read_excel(os.path.join(self.dirpath, 'test1' + ext), nrows=num_rows_to_pull) tm.assert_frame_equal(actual, expected) def test_read_excel_nrows_non_integer_parameter(self, ext): # GH 16645 msg = "'nrows' must be an integer >=0" with pytest.raises(ValueError, match=msg): pd.read_excel(os.path.join(self.dirpath, 'test1' + ext), nrows='5') def test_read_excel_squeeze(self, ext): # GH 12157 f = os.path.join(self.dirpath, 'test_squeeze' + ext) actual = pd.read_excel(f, 'two_columns', index_col=0, squeeze=True) expected = pd.Series([2, 3, 4], [4, 5, 6], name='b') expected.index.name = 'a' tm.assert_series_equal(actual, expected) actual = pd.read_excel(f, 'two_columns', squeeze=True) expected = pd.DataFrame({'a': [4, 5, 6], 'b': [2, 3, 4]}) tm.assert_frame_equal(actual, expected) actual = pd.read_excel(f, 'one_column', squeeze=True) expected = pd.Series([1, 2, 3], name='a') tm.assert_series_equal(actual, expected) @pytest.mark.parametrize("ext", ['.xls', '.xlsx', '.xlsm']) class TestXlrdReader(ReadingTestsBase): """ This is the base class for the xlrd tests, and 3 different file formats are supported: xls, xlsx, xlsm """ @td.skip_if_no("xlwt") def test_read_xlrd_book(self, ext): import xlrd df = self.frame engine = "xlrd" sheet_name = "SheetA" with ensure_clean(ext) as pth: df.to_excel(pth, sheet_name) book = xlrd.open_workbook(pth) with ExcelFile(book, engine=engine) as xl: result = read_excel(xl, sheet_name, index_col=0) tm.assert_frame_equal(df, result) result = read_excel(book, sheet_name=sheet_name, engine=engine, index_col=0) tm.assert_frame_equal(df, result) class _WriterBase(SharedItems): @pytest.fixture(autouse=True) def set_engine_and_path(self, request, merge_cells, engine, ext): """Fixture to set engine and open file for use in each test case Rather than requiring `engine=...` to be provided explicitly as an argument in each test, this fixture sets a global option to dictate which engine should be used to write Excel files. After executing the test it rolls back said change to the global option. It also uses a context manager to open a temporary excel file for the function to write to, accessible via `self.path` Notes ----- This fixture will run as part of each test method defined in the class and any subclasses, on account of the `autouse=True` argument """ option_name = 'io.excel.{ext}.writer'.format(ext=ext.strip('.')) prev_engine = get_option(option_name) set_option(option_name, engine) with ensure_clean(ext) as path: self.path = path yield set_option(option_name, prev_engine) # Roll back option change @pytest.mark.parametrize("merge_cells", [True, False]) @pytest.mark.parametrize("engine,ext", [ pytest.param('openpyxl', '.xlsx', marks=pytest.mark.skipif( not td.safe_import('openpyxl'), reason='No openpyxl')), pytest.param('openpyxl', '.xlsm', marks=pytest.mark.skipif( not td.safe_import('openpyxl'), reason='No openpyxl')), pytest.param('xlwt', '.xls', marks=pytest.mark.skipif( not td.safe_import('xlwt'), reason='No xlwt')), pytest.param('xlsxwriter', '.xlsx', marks=pytest.mark.skipif( not td.safe_import('xlsxwriter'), reason='No xlsxwriter')) ]) class TestExcelWriter(_WriterBase): # Base class for test cases to run with different Excel writers. def test_excel_sheet_by_name_raise(self, *_): import xlrd gt = DataFrame(np.random.randn(10, 2)) gt.to_excel(self.path) xl = ExcelFile(self.path) df = read_excel(xl, 0, index_col=0) tm.assert_frame_equal(gt, df) with pytest.raises(xlrd.XLRDError): read_excel(xl, "0") def test_excel_writer_context_manager(self, *_): with ExcelWriter(self.path) as writer: self.frame.to_excel(writer, "Data1") self.frame2.to_excel(writer, "Data2") with ExcelFile(self.path) as reader: found_df = read_excel(reader, "Data1", index_col=0) found_df2 = read_excel(reader, "Data2", index_col=0) tm.assert_frame_equal(found_df, self.frame) tm.assert_frame_equal(found_df2, self.frame2) def test_roundtrip(self, merge_cells, engine, ext): self.frame['A'][:5] = nan self.frame.to_excel(self.path, 'test1') self.frame.to_excel(self.path, 'test1', columns=['A', 'B']) self.frame.to_excel(self.path, 'test1', header=False) self.frame.to_excel(self.path, 'test1', index=False) # test roundtrip self.frame.to_excel(self.path, 'test1') recons = read_excel(self.path, 'test1', index_col=0) tm.assert_frame_equal(self.frame, recons) self.frame.to_excel(self.path, 'test1', index=False) recons = read_excel(self.path, 'test1', index_col=None) recons.index = self.frame.index tm.assert_frame_equal(self.frame, recons) self.frame.to_excel(self.path, 'test1', na_rep='NA') recons = read_excel(self.path, 'test1', index_col=0, na_values=['NA']) tm.assert_frame_equal(self.frame, recons) # GH 3611 self.frame.to_excel(self.path, 'test1', na_rep='88') recons = read_excel(self.path, 'test1', index_col=0, na_values=['88']) tm.assert_frame_equal(self.frame, recons) self.frame.to_excel(self.path, 'test1', na_rep='88') recons = read_excel(self.path, 'test1', index_col=0, na_values=[88, 88.0]) tm.assert_frame_equal(self.frame, recons) # GH 6573 self.frame.to_excel(self.path, 'Sheet1') recons = read_excel(self.path, index_col=0) tm.assert_frame_equal(self.frame, recons) self.frame.to_excel(self.path, '0') recons = read_excel(self.path, index_col=0) tm.assert_frame_equal(self.frame, recons) # GH 8825 Pandas Series should provide to_excel method s = self.frame["A"] s.to_excel(self.path) recons = read_excel(self.path, index_col=0) tm.assert_frame_equal(s.to_frame(), recons) def test_mixed(self, merge_cells, engine, ext): self.mixed_frame.to_excel(self.path, 'test1') reader = ExcelFile(self.path) recons = read_excel(reader, 'test1', index_col=0) tm.assert_frame_equal(self.mixed_frame, recons) def test_ts_frame(self, *_): df = tm.makeTimeDataFrame()[:5] df.to_excel(self.path, "test1") reader = ExcelFile(self.path) recons = read_excel(reader, "test1", index_col=0) tm.assert_frame_equal(df, recons) def test_basics_with_nan(self, merge_cells, engine, ext): self.frame['A'][:5] = nan self.frame.to_excel(self.path, 'test1') self.frame.to_excel(self.path, 'test1', columns=['A', 'B']) self.frame.to_excel(self.path, 'test1', header=False) self.frame.to_excel(self.path, 'test1', index=False) @pytest.mark.parametrize("np_type", [ np.int8, np.int16, np.int32, np.int64]) def test_int_types(self, merge_cells, engine, ext, np_type): # Test np.int values read come back as int # (rather than float which is Excel's format). frame = DataFrame(np.random.randint(-10, 10, size=(10, 2)), dtype=np_type) frame.to_excel(self.path, "test1") reader = ExcelFile(self.path) recons = read_excel(reader, "test1", index_col=0) int_frame = frame.astype(np.int64) tm.assert_frame_equal(int_frame, recons) recons2 = read_excel(self.path, "test1", index_col=0) tm.assert_frame_equal(int_frame, recons2) # Test with convert_float=False comes back as float. float_frame = frame.astype(float) recons = read_excel(self.path, "test1", convert_float=False, index_col=0) tm.assert_frame_equal(recons, float_frame, check_index_type=False, check_column_type=False) @pytest.mark.parametrize("np_type", [ np.float16, np.float32, np.float64]) def test_float_types(self, merge_cells, engine, ext, np_type): # Test np.float values read come back as float. frame = DataFrame(np.random.random_sample(10), dtype=np_type) frame.to_excel(self.path, "test1") reader = ExcelFile(self.path) recons = read_excel(reader, "test1", index_col=0).astype(np_type) tm.assert_frame_equal(frame, recons, check_dtype=False) @pytest.mark.parametrize("np_type", [np.bool8, np.bool_]) def test_bool_types(self, merge_cells, engine, ext, np_type): # Test np.bool values read come back as float. frame = (DataFrame([1, 0, True, False], dtype=np_type)) frame.to_excel(self.path, "test1") reader = ExcelFile(self.path) recons = read_excel(reader, "test1", index_col=0).astype(np_type) tm.assert_frame_equal(frame, recons) def test_inf_roundtrip(self, *_): frame = DataFrame([(1, np.inf), (2, 3), (5, -np.inf)]) frame.to_excel(self.path, "test1") reader = ExcelFile(self.path) recons = read_excel(reader, "test1", index_col=0) tm.assert_frame_equal(frame, recons) def test_sheets(self, merge_cells, engine, ext): self.frame['A'][:5] = nan self.frame.to_excel(self.path, 'test1') self.frame.to_excel(self.path, 'test1', columns=['A', 'B']) self.frame.to_excel(self.path, 'test1', header=False) self.frame.to_excel(self.path, 'test1', index=False) # Test writing to separate sheets writer = ExcelWriter(self.path) self.frame.to_excel(writer, 'test1') self.tsframe.to_excel(writer, 'test2') writer.save() reader = ExcelFile(self.path) recons = read_excel(reader, 'test1', index_col=0) tm.assert_frame_equal(self.frame, recons) recons = read_excel(reader, 'test2', index_col=0) tm.assert_frame_equal(self.tsframe, recons) assert 2 == len(reader.sheet_names) assert 'test1' == reader.sheet_names[0] assert 'test2' == reader.sheet_names[1] def test_colaliases(self, merge_cells, engine, ext): self.frame['A'][:5] = nan self.frame.to_excel(self.path, 'test1') self.frame.to_excel(self.path, 'test1', columns=['A', 'B']) self.frame.to_excel(self.path, 'test1', header=False) self.frame.to_excel(self.path, 'test1', index=False) # column aliases col_aliases = Index(['AA', 'X', 'Y', 'Z']) self.frame2.to_excel(self.path, 'test1', header=col_aliases) reader = ExcelFile(self.path) rs = read_excel(reader, 'test1', index_col=0) xp = self.frame2.copy() xp.columns = col_aliases tm.assert_frame_equal(xp, rs) def test_roundtrip_indexlabels(self, merge_cells, engine, ext): self.frame['A'][:5] = nan self.frame.to_excel(self.path, 'test1') self.frame.to_excel(self.path, 'test1', columns=['A', 'B']) self.frame.to_excel(self.path, 'test1', header=False) self.frame.to_excel(self.path, 'test1', index=False) # test index_label frame = (DataFrame(np.random.randn(10, 2)) >= 0) frame.to_excel(self.path, 'test1', index_label=['test'], merge_cells=merge_cells) reader = ExcelFile(self.path) recons = read_excel(reader, 'test1', index_col=0, ).astype(np.int64) frame.index.names = ['test'] assert frame.index.names == recons.index.names frame = (DataFrame(np.random.randn(10, 2)) >= 0) frame.to_excel(self.path, 'test1', index_label=['test', 'dummy', 'dummy2'], merge_cells=merge_cells) reader = ExcelFile(self.path) recons = read_excel(reader, 'test1', index_col=0, ).astype(np.int64) frame.index.names = ['test'] assert frame.index.names == recons.index.names frame = (DataFrame(np.random.randn(10, 2)) >= 0) frame.to_excel(self.path, 'test1', index_label='test', merge_cells=merge_cells) reader = ExcelFile(self.path) recons = read_excel(reader, 'test1', index_col=0, ).astype(np.int64) frame.index.names = ['test'] tm.assert_frame_equal(frame, recons.astype(bool)) self.frame.to_excel(self.path, 'test1', columns=['A', 'B', 'C', 'D'], index=False, merge_cells=merge_cells) # take 'A' and 'B' as indexes (same row as cols 'C', 'D') df = self.frame.copy() df = df.set_index(['A', 'B']) reader = ExcelFile(self.path) recons = read_excel(reader, 'test1', index_col=[0, 1]) tm.assert_frame_equal(df, recons, check_less_precise=True) def test_excel_roundtrip_indexname(self, merge_cells, engine, ext): df = DataFrame(np.random.randn(10, 4)) df.index.name = 'foo' df.to_excel(self.path, merge_cells=merge_cells) xf = ExcelFile(self.path) result = read_excel(xf, xf.sheet_names[0], index_col=0) tm.assert_frame_equal(result, df) assert result.index.name == 'foo' def test_excel_roundtrip_datetime(self, merge_cells, *_): # datetime.date, not sure what to test here exactly tsf = self.tsframe.copy() tsf.index = [x.date() for x in self.tsframe.index] tsf.to_excel(self.path, "test1", merge_cells=merge_cells) reader = ExcelFile(self.path) recons = read_excel(reader, "test1", index_col=0) tm.assert_frame_equal(self.tsframe, recons) def test_excel_date_datetime_format(self, merge_cells, engine, ext): # see gh-4133 # # Excel output format strings df = DataFrame([[date(2014, 1, 31), date(1999, 9, 24)], [datetime(1998, 5, 26, 23, 33, 4), datetime(2014, 2, 28, 13, 5, 13)]], index=["DATE", "DATETIME"], columns=["X", "Y"]) df_expected = DataFrame([[datetime(2014, 1, 31), datetime(1999, 9, 24)], [datetime(1998, 5, 26, 23, 33, 4), datetime(2014, 2, 28, 13, 5, 13)]], index=["DATE", "DATETIME"], columns=["X", "Y"]) with ensure_clean(ext) as filename2: writer1 = ExcelWriter(self.path) writer2 = ExcelWriter(filename2, date_format="DD.MM.YYYY", datetime_format="DD.MM.YYYY HH-MM-SS") df.to_excel(writer1, "test1") df.to_excel(writer2, "test1") writer1.close() writer2.close() reader1 = ExcelFile(self.path) reader2 = ExcelFile(filename2) rs1 = read_excel(reader1, "test1", index_col=0) rs2 = read_excel(reader2, "test1", index_col=0) tm.assert_frame_equal(rs1, rs2) # Since the reader returns a datetime object for dates, # we need to use df_expected to check the result. tm.assert_frame_equal(rs2, df_expected) def test_to_excel_interval_no_labels(self, *_): # see gh-19242 # # Test writing Interval without labels. frame = DataFrame(np.random.randint(-10, 10, size=(20, 1)), dtype=np.int64) expected = frame.copy() frame["new"] = pd.cut(frame[0], 10) expected["new"] = pd.cut(expected[0], 10).astype(str) frame.to_excel(self.path, "test1") reader = ExcelFile(self.path) recons = read_excel(reader, "test1", index_col=0) tm.assert_frame_equal(expected, recons) def test_to_excel_interval_labels(self, *_): # see gh-19242 # # Test writing Interval with labels. frame = DataFrame(np.random.randint(-10, 10, size=(20, 1)), dtype=np.int64) expected = frame.copy() intervals = pd.cut(frame[0], 10, labels=["A", "B", "C", "D", "E", "F", "G", "H", "I", "J"]) frame["new"] = intervals expected["new"] = pd.Series(list(intervals)) frame.to_excel(self.path, "test1") reader = ExcelFile(self.path) recons = read_excel(reader, "test1", index_col=0) tm.assert_frame_equal(expected, recons) def test_to_excel_timedelta(self, *_): # see gh-19242, gh-9155 # # Test writing timedelta to xls. frame = DataFrame(np.random.randint(-10, 10, size=(20, 1)), columns=["A"], dtype=np.int64) expected = frame.copy() frame["new"] = frame["A"].apply(lambda x: timedelta(seconds=x)) expected["new"] = expected["A"].apply( lambda x: timedelta(seconds=x).total_seconds() / float(86400)) frame.to_excel(self.path, "test1") reader = ExcelFile(self.path) recons = read_excel(reader, "test1", index_col=0) tm.assert_frame_equal(expected, recons) def test_to_excel_periodindex(self, merge_cells, engine, ext): frame = self.tsframe xp = frame.resample('M', kind='period').mean() xp.to_excel(self.path, 'sht1') reader = ExcelFile(self.path) rs = read_excel(reader, 'sht1', index_col=0) tm.assert_frame_equal(xp, rs.to_period('M')) def test_to_excel_multiindex(self, merge_cells, engine, ext): frame = self.frame arrays = np.arange(len(frame.index) * 2).reshape(2, -1) new_index = MultiIndex.from_arrays(arrays, names=['first', 'second']) frame.index = new_index frame.to_excel(self.path, 'test1', header=False) frame.to_excel(self.path, 'test1', columns=['A', 'B']) # round trip frame.to_excel(self.path, 'test1', merge_cells=merge_cells) reader = ExcelFile(self.path) df = read_excel(reader, 'test1', index_col=[0, 1]) tm.assert_frame_equal(frame, df) # GH13511 def test_to_excel_multiindex_nan_label(self, merge_cells, engine, ext): frame = pd.DataFrame({'A': [None, 2, 3], 'B': [10, 20, 30], 'C': np.random.sample(3)}) frame = frame.set_index(['A', 'B']) frame.to_excel(self.path, merge_cells=merge_cells) df = read_excel(self.path, index_col=[0, 1]) tm.assert_frame_equal(frame, df) # Test for Issue 11328. If column indices are integers, make # sure they are handled correctly for either setting of # merge_cells def test_to_excel_multiindex_cols(self, merge_cells, engine, ext): frame = self.frame arrays = np.arange(len(frame.index) * 2).reshape(2, -1) new_index = MultiIndex.from_arrays(arrays, names=['first', 'second']) frame.index = new_index new_cols_index = MultiIndex.from_tuples([(40, 1), (40, 2), (50, 1), (50, 2)]) frame.columns = new_cols_index header = [0, 1] if not merge_cells: header = 0 # round trip frame.to_excel(self.path, 'test1', merge_cells=merge_cells) reader = ExcelFile(self.path) df = read_excel(reader, 'test1', header=header, index_col=[0, 1]) if not merge_cells: fm = frame.columns.format(sparsify=False, adjoin=False, names=False) frame.columns = [".".join(map(str, q)) for q in zip(*fm)] tm.assert_frame_equal(frame, df) def test_to_excel_multiindex_dates(self, merge_cells, engine, ext): # try multiindex with dates tsframe = self.tsframe.copy() new_index = [tsframe.index, np.arange(len(tsframe.index))] tsframe.index = MultiIndex.from_arrays(new_index) tsframe.index.names = ['time', 'foo'] tsframe.to_excel(self.path, 'test1', merge_cells=merge_cells) reader = ExcelFile(self.path) recons = read_excel(reader, 'test1', index_col=[0, 1]) tm.assert_frame_equal(tsframe, recons) assert recons.index.names == ('time', 'foo') def test_to_excel_multiindex_no_write_index(self, merge_cells, engine, ext): # Test writing and re-reading a MI witout the index. GH 5616. # Initial non-MI frame. frame1 = DataFrame({'a': [10, 20], 'b': [30, 40], 'c': [50, 60]}) # Add a MI. frame2 = frame1.copy() multi_index = MultiIndex.from_tuples([(70, 80), (90, 100)]) frame2.index = multi_index # Write out to Excel without the index. frame2.to_excel(self.path, 'test1', index=False) # Read it back in. reader = ExcelFile(self.path) frame3 = read_excel(reader, 'test1') # Test that it is the same as the initial frame. tm.assert_frame_equal(frame1, frame3) def test_to_excel_float_format(self, *_): df = DataFrame([[0.123456, 0.234567, 0.567567], [12.32112, 123123.2, 321321.2]], index=["A", "B"], columns=["X", "Y", "Z"]) df.to_excel(self.path, "test1", float_format="%.2f") reader = ExcelFile(self.path) result = read_excel(reader, "test1", index_col=0) expected = DataFrame([[0.12, 0.23, 0.57], [12.32, 123123.20, 321321.20]], index=["A", "B"], columns=["X", "Y", "Z"]) tm.assert_frame_equal(result, expected) def test_to_excel_output_encoding(self, merge_cells, engine, ext): # Avoid mixed inferred_type. df = DataFrame([[u"\u0192", u"\u0193", u"\u0194"], [u"\u0195", u"\u0196", u"\u0197"]], index=[u"A\u0192", u"B"], columns=[u"X\u0193", u"Y", u"Z"]) with ensure_clean("__tmp_to_excel_float_format__." + ext) as filename: df.to_excel(filename, sheet_name="TestSheet", encoding="utf8") result = read_excel(filename, "TestSheet", encoding="utf8", index_col=0) tm.assert_frame_equal(result, df) def test_to_excel_unicode_filename(self, merge_cells, engine, ext): with ensure_clean(u("\u0192u.") + ext) as filename: try: f = open(filename, "wb") except UnicodeEncodeError: pytest.skip("No unicode file names on this system") else: f.close() df = DataFrame([[0.123456, 0.234567, 0.567567], [12.32112, 123123.2, 321321.2]], index=["A", "B"], columns=["X", "Y", "Z"]) df.to_excel(filename, "test1", float_format="%.2f") reader = ExcelFile(filename) result = read_excel(reader, "test1", index_col=0) expected = DataFrame([[0.12, 0.23, 0.57], [12.32, 123123.20, 321321.20]], index=["A", "B"], columns=["X", "Y", "Z"]) tm.assert_frame_equal(result, expected) # def test_to_excel_header_styling_xls(self, merge_cells, engine, ext): # import StringIO # s = StringIO( # """Date,ticker,type,value # 2001-01-01,x,close,12.2 # 2001-01-01,x,open ,12.1 # 2001-01-01,y,close,12.2 # 2001-01-01,y,open ,12.1 # 2001-02-01,x,close,12.2 # 2001-02-01,x,open ,12.1 # 2001-02-01,y,close,12.2 # 2001-02-01,y,open ,12.1 # 2001-03-01,x,close,12.2 # 2001-03-01,x,open ,12.1 # 2001-03-01,y,close,12.2 # 2001-03-01,y,open ,12.1""") # df = read_csv(s, parse_dates=["Date"]) # pdf = df.pivot_table(values="value", rows=["ticker"], # cols=["Date", "type"]) # try: # import xlwt # import xlrd # except ImportError: # pytest.skip # filename = '__tmp_to_excel_header_styling_xls__.xls' # pdf.to_excel(filename, 'test1') # wbk = xlrd.open_workbook(filename, # formatting_info=True) # assert ["test1"] == wbk.sheet_names() # ws = wbk.sheet_by_name('test1') # assert [(0, 1, 5, 7), (0, 1, 3, 5), (0, 1, 1, 3)] == ws.merged_cells # for i in range(0, 2): # for j in range(0, 7): # xfx = ws.cell_xf_index(0, 0) # cell_xf = wbk.xf_list[xfx] # font = wbk.font_list # assert 1 == font[cell_xf.font_index].bold # assert 1 == cell_xf.border.top_line_style # assert 1 == cell_xf.border.right_line_style # assert 1 == cell_xf.border.bottom_line_style # assert 1 == cell_xf.border.left_line_style # assert 2 == cell_xf.alignment.hor_align # os.remove(filename) # def test_to_excel_header_styling_xlsx(self, merge_cells, engine, ext): # import StringIO # s = StringIO( # """Date,ticker,type,value # 2001-01-01,x,close,12.2 # 2001-01-01,x,open ,12.1 # 2001-01-01,y,close,12.2 # 2001-01-01,y,open ,12.1 # 2001-02-01,x,close,12.2 # 2001-02-01,x,open ,12.1 # 2001-02-01,y,close,12.2 # 2001-02-01,y,open ,12.1 # 2001-03-01,x,close,12.2 # 2001-03-01,x,open ,12.1 # 2001-03-01,y,close,12.2 # 2001-03-01,y,open ,12.1""") # df = read_csv(s, parse_dates=["Date"]) # pdf = df.pivot_table(values="value", rows=["ticker"], # cols=["Date", "type"]) # try: # import openpyxl # from openpyxl.cell import get_column_letter # except ImportError: # pytest.skip # if openpyxl.__version__ < '1.6.1': # pytest.skip # # test xlsx_styling # filename = '__tmp_to_excel_header_styling_xlsx__.xlsx' # pdf.to_excel(filename, 'test1') # wbk = openpyxl.load_workbook(filename) # assert ["test1"] == wbk.get_sheet_names() # ws = wbk.get_sheet_by_name('test1') # xlsaddrs = ["%s2" % chr(i) for i in range(ord('A'), ord('H'))] # xlsaddrs += ["A%s" % i for i in range(1, 6)] # xlsaddrs += ["B1", "D1", "F1"] # for xlsaddr in xlsaddrs: # cell = ws.cell(xlsaddr) # assert cell.style.font.bold # assert (openpyxl.style.Border.BORDER_THIN == # cell.style.borders.top.border_style) # assert (openpyxl.style.Border.BORDER_THIN == # cell.style.borders.right.border_style) # assert (openpyxl.style.Border.BORDER_THIN == # cell.style.borders.bottom.border_style) # assert (openpyxl.style.Border.BORDER_THIN == # cell.style.borders.left.border_style) # assert (openpyxl.style.Alignment.HORIZONTAL_CENTER == # cell.style.alignment.horizontal) # mergedcells_addrs = ["C1", "E1", "G1"] # for maddr in mergedcells_addrs: # assert ws.cell(maddr).merged # os.remove(filename) @pytest.mark.parametrize("use_headers", [True, False]) @pytest.mark.parametrize("r_idx_nlevels", [1, 2, 3]) @pytest.mark.parametrize("c_idx_nlevels", [1, 2, 3]) def test_excel_010_hemstring(self, merge_cells, engine, ext, c_idx_nlevels, r_idx_nlevels, use_headers): def roundtrip(data, header=True, parser_hdr=0, index=True): data.to_excel(self.path, header=header, merge_cells=merge_cells, index=index) xf = ExcelFile(self.path) return read_excel(xf, xf.sheet_names[0], header=parser_hdr) # Basic test. parser_header = 0 if use_headers else None res = roundtrip(DataFrame([0]), use_headers, parser_header) assert res.shape == (1, 2) assert res.iloc[0, 0] is not np.nan # More complex tests with multi-index. nrows = 5 ncols = 3 from pandas.util.testing import makeCustomDataframe as mkdf # ensure limited functionality in 0.10 # override of gh-2370 until sorted out in 0.11 df = mkdf(nrows, ncols, r_idx_nlevels=r_idx_nlevels, c_idx_nlevels=c_idx_nlevels) # This if will be removed once multi-column Excel writing # is implemented. For now fixing gh-9794. if c_idx_nlevels > 1: with pytest.raises(NotImplementedError): roundtrip(df, use_headers, index=False) else: res = roundtrip(df, use_headers) if use_headers: assert res.shape == (nrows, ncols + r_idx_nlevels) else: # First row taken as columns. assert res.shape == (nrows - 1, ncols + r_idx_nlevels) # No NaNs. for r in range(len(res.index)): for c in range(len(res.columns)): assert res.iloc[r, c] is not np.nan def test_duplicated_columns(self, *_): # see gh-5235 df = DataFrame([[1, 2, 3], [1, 2, 3], [1, 2, 3]], columns=["A", "B", "B"]) df.to_excel(self.path, "test1") expected = DataFrame([[1, 2, 3], [1, 2, 3], [1, 2, 3]], columns=["A", "B", "B.1"]) # By default, we mangle. result = read_excel(self.path, "test1", index_col=0) tm.assert_frame_equal(result, expected) # Explicitly, we pass in the parameter. result = read_excel(self.path, "test1", index_col=0, mangle_dupe_cols=True) tm.assert_frame_equal(result, expected) # see gh-11007, gh-10970 df = DataFrame([[1, 2, 3, 4], [5, 6, 7, 8]], columns=["A", "B", "A", "B"]) df.to_excel(self.path, "test1") result = read_excel(self.path, "test1", index_col=0) expected = DataFrame([[1, 2, 3, 4], [5, 6, 7, 8]], columns=["A", "B", "A.1", "B.1"]) tm.assert_frame_equal(result, expected) # see gh-10982 df.to_excel(self.path, "test1", index=False, header=False) result = read_excel(self.path, "test1", header=None) expected = DataFrame([[1, 2, 3, 4], [5, 6, 7, 8]]) tm.assert_frame_equal(result, expected) msg = "Setting mangle_dupe_cols=False is not supported yet" with pytest.raises(ValueError, match=msg): read_excel(self.path, "test1", header=None, mangle_dupe_cols=False) def test_swapped_columns(self, merge_cells, engine, ext): # Test for issue #5427. write_frame = DataFrame({'A': [1, 1, 1], 'B': [2, 2, 2]}) write_frame.to_excel(self.path, 'test1', columns=['B', 'A']) read_frame = read_excel(self.path, 'test1', header=0) tm.assert_series_equal(write_frame['A'], read_frame['A']) tm.assert_series_equal(write_frame['B'], read_frame['B']) def test_invalid_columns(self, *_): # see gh-10982 write_frame = DataFrame({"A": [1, 1, 1], "B": [2, 2, 2]}) with tm.assert_produces_warning(FutureWarning, check_stacklevel=False): write_frame.to_excel(self.path, "test1", columns=["B", "C"]) expected = write_frame.reindex(columns=["B", "C"]) read_frame = read_excel(self.path, "test1", index_col=0) tm.assert_frame_equal(expected, read_frame) with pytest.raises(KeyError): write_frame.to_excel(self.path, "test1", columns=["C", "D"]) def test_comment_arg(self, *_): # see gh-18735 # # Test the comment argument functionality to read_excel. # Create file to read in. df = DataFrame({"A": ["one", "#one", "one"], "B": ["two", "two", "#two"]}) df.to_excel(self.path, "test_c") # Read file without comment arg. result1 = read_excel(self.path, "test_c", index_col=0) result1.iloc[1, 0] = None result1.iloc[1, 1] = None result1.iloc[2, 1] = None result2 = read_excel(self.path, "test_c", comment="#", index_col=0) tm.assert_frame_equal(result1, result2) def test_comment_default(self, merge_cells, engine, ext): # Re issue #18735 # Test the comment argument default to read_excel # Create file to read in df = DataFrame({'A': ['one', '#one', 'one'], 'B': ['two', 'two', '#two']}) df.to_excel(self.path, 'test_c') # Read file with default and explicit comment=None result1 = read_excel(self.path, 'test_c') result2 = read_excel(self.path, 'test_c', comment=None) tm.assert_frame_equal(result1, result2) def test_comment_used(self, *_): # see gh-18735 # # Test the comment argument is working as expected when used. # Create file to read in. df = DataFrame({"A": ["one", "#one", "one"], "B": ["two", "two", "#two"]}) df.to_excel(self.path, "test_c") # Test read_frame_comment against manually produced expected output. expected = DataFrame({"A": ["one", None, "one"], "B": ["two", None, None]}) result = read_excel(self.path, "test_c", comment="#", index_col=0) tm.assert_frame_equal(result, expected) def test_comment_empty_line(self, merge_cells, engine, ext): # Re issue #18735 # Test that read_excel ignores commented lines at the end of file df = DataFrame({'a': ['1', '#2'], 'b': ['2', '3']}) df.to_excel(self.path, index=False) # Test that all-comment lines at EoF are ignored expected = DataFrame({'a': [1], 'b': [2]}) result = read_excel(self.path, comment='#') tm.assert_frame_equal(result, expected) def test_datetimes(self, merge_cells, engine, ext): # Test writing and reading datetimes. For issue #9139. (xref #9185) datetimes = [datetime(2013, 1, 13, 1, 2, 3), datetime(2013, 1, 13, 2, 45, 56), datetime(2013, 1, 13, 4, 29, 49), datetime(2013, 1, 13, 6, 13, 42), datetime(2013, 1, 13, 7, 57, 35), datetime(2013, 1, 13, 9, 41, 28), datetime(2013, 1, 13, 11, 25, 21), datetime(2013, 1, 13, 13, 9, 14), datetime(2013, 1, 13, 14, 53, 7), datetime(2013, 1, 13, 16, 37, 0), datetime(2013, 1, 13, 18, 20, 52)] write_frame = DataFrame({'A': datetimes}) write_frame.to_excel(self.path, 'Sheet1') read_frame = read_excel(self.path, 'Sheet1', header=0) tm.assert_series_equal(write_frame['A'], read_frame['A']) def test_bytes_io(self, merge_cells, engine, ext): # see gh-7074 bio = BytesIO() df = DataFrame(np.random.randn(10, 2)) # Pass engine explicitly, as there is no file path to infer from. writer = ExcelWriter(bio, engine=engine) df.to_excel(writer) writer.save() bio.seek(0) reread_df = read_excel(bio, index_col=0) tm.assert_frame_equal(df, reread_df) def test_write_lists_dict(self, *_): # see gh-8188. df = DataFrame({"mixed": ["a", ["b", "c"], {"d": "e", "f": 2}], "numeric": [1, 2, 3.0], "str": ["apple", "banana", "cherry"]}) df.to_excel(self.path, "Sheet1") read = read_excel(self.path, "Sheet1", header=0, index_col=0) expected = df.copy() expected.mixed = expected.mixed.apply(str) expected.numeric = expected.numeric.astype("int64") tm.assert_frame_equal(read, expected) def test_true_and_false_value_options(self, *_): # see gh-13347 df = pd.DataFrame([["foo", "bar"]], columns=["col1", "col2"]) expected = df.replace({"foo": True, "bar": False}) df.to_excel(self.path) read_frame = read_excel(self.path, true_values=["foo"], false_values=["bar"], index_col=0) tm.assert_frame_equal(read_frame, expected) def test_freeze_panes(self, *_): # see gh-15160 expected = DataFrame([[1, 2], [3, 4]], columns=["col1", "col2"]) expected.to_excel(self.path, "Sheet1", freeze_panes=(1, 1)) result = read_excel(self.path, index_col=0) tm.assert_frame_equal(result, expected) def test_path_path_lib(self, merge_cells, engine, ext): df = tm.makeDataFrame() writer = partial(df.to_excel, engine=engine) reader = partial(pd.read_excel, index_col=0) result = tm.round_trip_pathlib(writer, reader, path="foo.{ext}".format(ext=ext)) tm.assert_frame_equal(result, df) def test_path_local_path(self, merge_cells, engine, ext): df = tm.makeDataFrame() writer = partial(df.to_excel, engine=engine) reader = partial(pd.read_excel, index_col=0) result = tm.round_trip_pathlib(writer, reader, path="foo.{ext}".format(ext=ext)) tm.assert_frame_equal(result, df) @td.skip_if_no('openpyxl') @pytest.mark.parametrize("merge_cells,ext,engine", [ (None, '.xlsx', 'openpyxl')]) class TestOpenpyxlTests(_WriterBase): def test_to_excel_styleconverter(self, merge_cells, ext, engine): from openpyxl import styles hstyle = { "font": { "color": '00FF0000', "bold": True, }, "borders": { "top": "thin", "right": "thin", "bottom": "thin", "left": "thin", }, "alignment": { "horizontal": "center", "vertical": "top", }, "fill": { "patternType": 'solid', 'fgColor': { 'rgb': '006666FF', 'tint': 0.3, }, }, "number_format": { "format_code": "0.00" }, "protection": { "locked": True, "hidden": False, }, } font_color = styles.Color('00FF0000') font = styles.Font(bold=True, color=font_color) side = styles.Side(style=styles.borders.BORDER_THIN) border = styles.Border(top=side, right=side, bottom=side, left=side) alignment = styles.Alignment(horizontal='center', vertical='top') fill_color = styles.Color(rgb='006666FF', tint=0.3) fill = styles.PatternFill(patternType='solid', fgColor=fill_color) number_format = '0.00' protection = styles.Protection(locked=True, hidden=False) kw = _OpenpyxlWriter._convert_to_style_kwargs(hstyle) assert kw['font'] == font assert kw['border'] == border assert kw['alignment'] == alignment assert kw['fill'] == fill assert kw['number_format'] == number_format assert kw['protection'] == protection def test_write_cells_merge_styled(self, merge_cells, ext, engine): from pandas.io.formats.excel import ExcelCell sheet_name = 'merge_styled' sty_b1 = {'font': {'color': '00FF0000'}} sty_a2 = {'font': {'color': '0000FF00'}} initial_cells = [ ExcelCell(col=1, row=0, val=42, style=sty_b1), ExcelCell(col=0, row=1, val=99, style=sty_a2), ] sty_merged = {'font': {'color': '000000FF', 'bold': True}} sty_kwargs = _OpenpyxlWriter._convert_to_style_kwargs(sty_merged) openpyxl_sty_merged = sty_kwargs['font'] merge_cells = [ ExcelCell(col=0, row=0, val='pandas', mergestart=1, mergeend=1, style=sty_merged), ] with ensure_clean(ext) as path: writer = _OpenpyxlWriter(path) writer.write_cells(initial_cells, sheet_name=sheet_name) writer.write_cells(merge_cells, sheet_name=sheet_name) wks = writer.sheets[sheet_name] xcell_b1 = wks['B1'] xcell_a2 = wks['A2'] assert xcell_b1.font == openpyxl_sty_merged assert xcell_a2.font == openpyxl_sty_merged @pytest.mark.parametrize("mode,expected", [ ('w', ['baz']), ('a', ['foo', 'bar', 'baz'])]) def test_write_append_mode(self, merge_cells, ext, engine, mode, expected): import openpyxl df = DataFrame([1], columns=['baz']) with ensure_clean(ext) as f: wb = openpyxl.Workbook() wb.worksheets[0].title = 'foo' wb.worksheets[0]['A1'].value = 'foo' wb.create_sheet('bar') wb.worksheets[1]['A1'].value = 'bar' wb.save(f) writer = ExcelWriter(f, engine=engine, mode=mode) df.to_excel(writer, sheet_name='baz', index=False) writer.save() wb2 = openpyxl.load_workbook(f) result = [sheet.title for sheet in wb2.worksheets] assert result == expected for index, cell_value in enumerate(expected): assert wb2.worksheets[index]['A1'].value == cell_value @td.skip_if_no('xlwt') @pytest.mark.parametrize("merge_cells,ext,engine", [ (None, '.xls', 'xlwt')]) class TestXlwtTests(_WriterBase): def test_excel_raise_error_on_multiindex_columns_and_no_index( self, merge_cells, ext, engine): # MultiIndex as columns is not yet implemented 9794 cols = MultiIndex.from_tuples([('site', ''), ('2014', 'height'), ('2014', 'weight')]) df = DataFrame(np.random.randn(10, 3), columns=cols) with pytest.raises(NotImplementedError): with ensure_clean(ext) as path: df.to_excel(path, index=False) def test_excel_multiindex_columns_and_index_true(self, merge_cells, ext, engine): cols = MultiIndex.from_tuples([('site', ''), ('2014', 'height'), ('2014', 'weight')]) df = pd.DataFrame(np.random.randn(10, 3), columns=cols) with ensure_clean(ext) as path: df.to_excel(path, index=True) def test_excel_multiindex_index(self, merge_cells, ext, engine): # MultiIndex as index works so assert no error #9794 cols = MultiIndex.from_tuples([('site', ''), ('2014', 'height'), ('2014', 'weight')]) df = DataFrame(np.random.randn(3, 10), index=cols) with ensure_clean(ext) as path: df.to_excel(path, index=False) def test_to_excel_styleconverter(self, merge_cells, ext, engine): import xlwt hstyle = {"font": {"bold": True}, "borders": {"top": "thin", "right": "thin", "bottom": "thin", "left": "thin"}, "alignment": {"horizontal": "center", "vertical": "top"}} xls_style = _XlwtWriter._convert_to_style(hstyle) assert xls_style.font.bold assert xlwt.Borders.THIN == xls_style.borders.top assert xlwt.Borders.THIN == xls_style.borders.right assert xlwt.Borders.THIN == xls_style.borders.bottom assert xlwt.Borders.THIN == xls_style.borders.left assert xlwt.Alignment.HORZ_CENTER == xls_style.alignment.horz assert xlwt.Alignment.VERT_TOP == xls_style.alignment.vert def test_write_append_mode_raises(self, merge_cells, ext, engine): msg = "Append mode is not supported with xlwt!" with ensure_clean(ext) as f: with pytest.raises(ValueError, match=msg): ExcelWriter(f, engine=engine, mode='a') @td.skip_if_no('xlsxwriter') @pytest.mark.parametrize("merge_cells,ext,engine", [ (None, '.xlsx', 'xlsxwriter')]) class TestXlsxWriterTests(_WriterBase): @td.skip_if_no('openpyxl') def test_column_format(self, merge_cells, ext, engine): # Test that column formats are applied to cells. Test for issue #9167. # Applicable to xlsxwriter only. with warnings.catch_warnings(): # Ignore the openpyxl lxml warning. warnings.simplefilter("ignore") import openpyxl with ensure_clean(ext) as path: frame = DataFrame({'A': [123456, 123456], 'B': [123456, 123456]}) writer = ExcelWriter(path) frame.to_excel(writer) # Add a number format to col B and ensure it is applied to cells. num_format = '#,##0' write_workbook = writer.book write_worksheet = write_workbook.worksheets()[0] col_format = write_workbook.add_format({'num_format': num_format}) write_worksheet.set_column('B:B', None, col_format) writer.save() read_workbook = openpyxl.load_workbook(path) try: read_worksheet = read_workbook['Sheet1'] except TypeError: # compat read_worksheet = read_workbook.get_sheet_by_name(name='Sheet1') # Get the number format from the cell. try: cell = read_worksheet['B2'] except TypeError: # compat cell = read_worksheet.cell('B2') try: read_num_format = cell.number_format except Exception: read_num_format = cell.style.number_format._format_code assert read_num_format == num_format def test_write_append_mode_raises(self, merge_cells, ext, engine): msg = "Append mode is not supported with xlsxwriter!" with ensure_clean(ext) as f: with pytest.raises(ValueError, match=msg): ExcelWriter(f, engine=engine, mode='a') class TestExcelWriterEngineTests(object): @pytest.mark.parametrize('klass,ext', [ pytest.param(_XlsxWriter, '.xlsx', marks=pytest.mark.skipif( not td.safe_import('xlsxwriter'), reason='No xlsxwriter')), pytest.param(_OpenpyxlWriter, '.xlsx', marks=pytest.mark.skipif( not td.safe_import('openpyxl'), reason='No openpyxl')), pytest.param(_XlwtWriter, '.xls', marks=pytest.mark.skipif( not td.safe_import('xlwt'), reason='No xlwt')) ]) def test_ExcelWriter_dispatch(self, klass, ext): with ensure_clean(ext) as path: writer = ExcelWriter(path) if ext == '.xlsx' and td.safe_import('xlsxwriter'): # xlsxwriter has preference over openpyxl if both installed assert isinstance(writer, _XlsxWriter) else: assert isinstance(writer, klass) def test_ExcelWriter_dispatch_raises(self): with pytest.raises(ValueError, match='No engine'): ExcelWriter('nothing') @pytest.mark.filterwarnings("ignore:\\nPanel:FutureWarning") def test_register_writer(self): # some awkward mocking to test out dispatch and such actually works called_save = [] called_write_cells = [] class DummyClass(ExcelWriter): called_save = False called_write_cells = False supported_extensions = ['test', 'xlsx', 'xls'] engine = 'dummy' def save(self): called_save.append(True) def write_cells(self, *args, **kwargs): called_write_cells.append(True) def check_called(func): func() assert len(called_save) >= 1 assert len(called_write_cells) >= 1 del called_save[:] del called_write_cells[:] with pd.option_context('io.excel.xlsx.writer', 'dummy'): register_writer(DummyClass) writer = ExcelWriter('something.test') assert isinstance(writer, DummyClass) df = tm.makeCustomDataframe(1, 1) with catch_warnings(record=True): panel = tm.makePanel() func = lambda: df.to_excel('something.test') check_called(func) check_called(lambda: panel.to_excel('something.test')) check_called(lambda: df.to_excel('something.xlsx')) check_called( lambda: df.to_excel( 'something.xls', engine='dummy')) @pytest.mark.parametrize('engine', [ pytest.param('xlwt', marks=pytest.mark.xfail(reason='xlwt does not support ' 'openpyxl-compatible ' 'style dicts')), 'xlsxwriter', 'openpyxl', ]) def test_styler_to_excel(engine): def style(df): # XXX: RGB colors not supported in xlwt return DataFrame([['font-weight: bold', '', ''], ['', 'color: blue', ''], ['', '', 'text-decoration: underline'], ['border-style: solid', '', ''], ['', 'font-style: italic', ''], ['', '', 'text-align: right'], ['background-color: red', '', ''], ['number-format: 0%', '', ''], ['', '', ''], ['', '', ''], ['', '', '']], index=df.index, columns=df.columns) def assert_equal_style(cell1, cell2, engine): if engine in ['xlsxwriter', 'openpyxl']: pytest.xfail(reason=("GH25351: failing on some attribute " "comparisons in {}".format(engine))) # XXX: should find a better way to check equality assert cell1.alignment.__dict__ == cell2.alignment.__dict__ assert cell1.border.__dict__ == cell2.border.__dict__ assert cell1.fill.__dict__ == cell2.fill.__dict__ assert cell1.font.__dict__ == cell2.font.__dict__ assert cell1.number_format == cell2.number_format assert cell1.protection.__dict__ == cell2.protection.__dict__ def custom_converter(css): # use bold iff there is custom style attached to the cell if css.strip(' \n;'): return {'font': {'bold': True}} return {} pytest.importorskip('jinja2') pytest.importorskip(engine) # Prepare spreadsheets df = DataFrame(np.random.randn(11, 3)) with ensure_clean('.xlsx' if engine != 'xlwt' else '.xls') as path: writer = ExcelWriter(path, engine=engine) df.to_excel(writer, sheet_name='frame') df.style.to_excel(writer, sheet_name='unstyled') styled = df.style.apply(style, axis=None) styled.to_excel(writer, sheet_name='styled') ExcelFormatter(styled, style_converter=custom_converter).write( writer, sheet_name='custom') writer.save() if engine not in ('openpyxl', 'xlsxwriter'): # For other engines, we only smoke test return openpyxl = pytest.importorskip('openpyxl') wb = openpyxl.load_workbook(path) # (1) compare DataFrame.to_excel and Styler.to_excel when unstyled n_cells = 0 for col1, col2 in zip(wb['frame'].columns, wb['unstyled'].columns): assert len(col1) == len(col2) for cell1, cell2 in zip(col1, col2): assert cell1.value == cell2.value assert_equal_style(cell1, cell2, engine) n_cells += 1 # ensure iteration actually happened: assert n_cells == (11 + 1) * (3 + 1) # (2) check styling with default converter # XXX: openpyxl (as at 2.4) prefixes colors with 00, xlsxwriter with FF alpha = '00' if engine == 'openpyxl' else 'FF' n_cells = 0 for col1, col2 in zip(wb['frame'].columns, wb['styled'].columns): assert len(col1) == len(col2) for cell1, cell2 in zip(col1, col2): ref = '%s%d' % (cell2.column, cell2.row) # XXX: this isn't as strong a test as ideal; we should # confirm that differences are exclusive if ref == 'B2': assert not cell1.font.bold assert cell2.font.bold elif ref == 'C3': assert cell1.font.color.rgb != cell2.font.color.rgb assert cell2.font.color.rgb == alpha + '0000FF' elif ref == 'D4': # This fails with engine=xlsxwriter due to # https://bitbucket.org/openpyxl/openpyxl/issues/800 if engine == 'xlsxwriter' \ and (LooseVersion(openpyxl.__version__) < LooseVersion('2.4.6')): pass else: assert cell1.font.underline != cell2.font.underline assert cell2.font.underline == 'single' elif ref == 'B5': assert not cell1.border.left.style assert (cell2.border.top.style == cell2.border.right.style == cell2.border.bottom.style == cell2.border.left.style == 'medium') elif ref == 'C6': assert not cell1.font.italic assert cell2.font.italic elif ref == 'D7': assert (cell1.alignment.horizontal != cell2.alignment.horizontal) assert cell2.alignment.horizontal == 'right' elif ref == 'B8': assert cell1.fill.fgColor.rgb != cell2.fill.fgColor.rgb assert cell1.fill.patternType != cell2.fill.patternType assert cell2.fill.fgColor.rgb == alpha + 'FF0000' assert cell2.fill.patternType == 'solid' elif ref == 'B9': assert cell1.number_format == 'General' assert cell2.number_format == '0%' else: assert_equal_style(cell1, cell2, engine) assert cell1.value == cell2.value n_cells += 1 assert n_cells == (11 + 1) * (3 + 1) # (3) check styling with custom converter n_cells = 0 for col1, col2 in zip(wb['frame'].columns, wb['custom'].columns): assert len(col1) == len(col2) for cell1, cell2 in zip(col1, col2): ref = '%s%d' % (cell2.column, cell2.row) if ref in ('B2', 'C3', 'D4', 'B5', 'C6', 'D7', 'B8', 'B9'): assert not cell1.font.bold assert cell2.font.bold else: assert_equal_style(cell1, cell2, engine) assert cell1.value == cell2.value n_cells += 1 assert n_cells == (11 + 1) * (3 + 1) @td.skip_if_no('openpyxl') @pytest.mark.skipif(not PY36, reason='requires fspath') class TestFSPath(object): def test_excelfile_fspath(self): with tm.ensure_clean('foo.xlsx') as path: df = DataFrame({"A": [1, 2]}) df.to_excel(path) xl = ExcelFile(path) result = os.fspath(xl) assert result == path def test_excelwriter_fspath(self): with tm.ensure_clean('foo.xlsx') as path: writer = ExcelWriter(path) assert os.fspath(writer) == str(path)
99a885ced2259ddd980d7178fc0d7ae23cd5c7cc
1334505cc093b2796c80c83a358f39aaa9bb7392
/things/parmed/LES/run.py
20454ca47cbeedcf04b143b5b04b152fa4dd1b15
[ "BSD-2-Clause" ]
permissive
hainm/amber_things
031703f1b39c1c1ceae3f1186cb1020b68260e13
c4c6de411e6b83f1d0dd723d892253a88f5125e5
refs/heads/master
2021-01-21T04:47:49.404282
2016-07-10T23:19:59
2016-07-10T23:19:59
36,897,545
0
0
null
null
null
null
UTF-8
Python
false
false
61
py
import parmed as pmd pmd.load_file('new.parm7', 'new.rst7')
c35ac0e38e1bf86dd30321937444199e6b545717
478009111504d54f45490f71c1e61190ecfede3f
/sesion_4/test_xl2.py
54fc999f79dc94a336ef6161315e7708b6b13766
[]
no_license
BeatrizInGitHub/python-sci
9938c406e9642385d602971e985668765dfabbfa
d8ed9656184b5f08d41430ed5a770dc6f4550893
refs/heads/master
2020-05-22T19:46:08.065601
2017-02-26T02:15:31
2017-02-26T02:15:31
null
0
0
null
null
null
null
UTF-8
Python
false
false
300
py
from openpyxl import load_workbook wb = load_workbook("Libro1.xlsx") ws = wb["Hoja1"] cells = ws["C4:F10"] mat = [] for r in cells: row = [] for cell in r: x = cell.value row.append(x) mat.append(row) print mat x = ws["C4"].value x = mat[0][0]
51cf140ce032eb19a30ee3990d6bf89971df2ab8
c1fcdd80101aeae0ba8b4ae0e229f58ed58fd41f
/testPredictor.py
fe7bea830d5e4f619513d78c2e0e5b9ab4ea4023
[]
no_license
luizgh/ModelEvaluation
367432f0456052f539c61766b00f1f59bc5fa3a5
2933918276d0dcc42d484d9163c4b6c9ea32f26a
refs/heads/master
2016-09-06T04:15:11.140896
2014-03-19T00:07:46
2014-03-19T00:07:46
null
0
0
null
null
null
null
UTF-8
Python
false
false
556
py
import unittest from Predictor import Predictor from TestUtils import * class testPredictor(unittest.TestCase): def testAll(self): logProbabilities = numpy.asarray([[0.4, 0.80, 0.50], [0.45, 0.4, 0.41], [0.4, 0.41, 0.45]]) expected = [1,0,2] target = Predictor() self.assertEquals(expected, target.getPredictions(logProbabilities)) if __name__ == '__main__': unittest.main()
a0b726ca16865f5077e8d0a563538ac2f6752e45
874153914c2784eb164c271e4a68c01265e5ce7f
/tool/module/arkon_config.py
a6a18adaf5c5f245e552d73e4e0c95d158b9cff6
[ "Apache-2.0" ]
permissive
random-archer/mkinitcpio-systemd-tool
3c6f572244fb84e9eab4fa1291d4e5526a614751
5685070783975c934c517d603bcfd614f8b194a3
refs/heads/master
2023-08-17T20:52:13.040297
2022-12-21T14:20:10
2022-12-21T14:20:10
59,916,137
108
29
NOASSERTION
2023-08-13T09:35:00
2016-05-28T22:00:58
Python
UTF-8
Python
false
false
2,750
py
#!/usr/bin/env python # # shared config for build/setup/verify cycle # import os import datetime import nspawn # detect build system def has_ci_azure(): return "AZURE_EXTENSION_DIR" in os.environ # no http proxy in azure if has_ci_azure(): nspawn.CONFIG['proxy']['use_host_proxy'] = 'no' nspawn.CONFIG['proxy']['use_machine_proxy'] = 'no' # report state of non-bufered stdout/stderr print(f"### PYTHONUNBUFFERED={os.environ.get('PYTHONUNBUFFERED', None)}") # location of machine resources nspawn_store = nspawn.CONFIG['storage']["root"] # location of this module this_dir = os.path.dirname(os.path.abspath(__file__)) # arch linux archive iso image date build_epoch = datetime.datetime(year=2020, month=3, day=1) # kernel version used by arch linux archive iso kernel_version = f"5.5.6-arch1-1" # current user account host_user = os.getenv('USER', "root") # azure or local resource location user_home = os.getenv('HOME', "/root") # location of source repository project_repo = os.popen("git rev-parse --show-toplevel").read().strip() # location of disk mount shared host/machine # contains output of mkinitcpio: vmlinuz, linux-initramfs.img project_boot = f"{project_repo}/boot" # location of disk mount shared host/machine # contains extracted content of linux-initramfs.img project_data = f"{project_repo}/data" # location of sysroot produced by this tool (with azure cache) media_store = f"{nspawn_store}/resource/media" # location of images produced by this tool (with azure cache) image_store = f"{nspawn_store}/resource/image" # # container definitions # # image base for unit test base_machine = "arch-base" base_image_path = f"{image_store}/{base_machine}/default.tar.gz" base_image_url = f"file://localhost/{base_image_path}" # unit test: cryptsetup cryptsetup_machine = "test-cryptsetup" cryptsetup_image_path = f"{image_store}/{cryptsetup_machine}/default.tar.gz" cryptsetup_image_url = f"file://localhost/{cryptsetup_image_path}" # unit test: dropbear dropbear_machine = "test-dropbear" dropbear_image_path = f"{image_store}/{dropbear_machine}/default.tar.gz" dropbear_image_url = f"file://localhost/{dropbear_image_path}" # unit test: tinysshd tinysshd_machine = "test-tinysshd" tinysshd_image_path = f"{image_store}/{tinysshd_machine}/default.tar.gz" tinysshd_image_url = f"file://localhost/{tinysshd_image_path}" # unit test: nftables nftables_machine = "test-nftables" nftables_image_path = f"{image_store}/{nftables_machine}/default.tar.gz" nftables_image_url = f"file://localhost/{nftables_image_path}" # unit test: anything else unitada_machine = "test-unitada" unitada_image_path = f"{image_store}/{unitada_machine}/default.tar.gz" unitada_image_url = f"file://localhost/{unitada_image_path}"
9b66a0e02508ee60fbd50d1de623179d0ef4f34b
9cec93a18ea94504947820205d0faae4d67ecd8d
/H2TauTau/python/eventContent/common_cff.py
cd998b53c2a17602f3659cbf83da20caa949c0ea
[]
no_license
DESY-CMS-SUS/cmgtools-lite
de88b1d5dc20a925ed5b7c7be69fa3ef677955c6
db52d50047178563a0eb7f5858ae100aa408ec68
refs/heads/8_0_25
2021-05-23T04:36:22.900460
2017-11-09T10:32:41
2017-11-09T10:32:41
60,184,794
3
9
null
2021-02-17T23:22:12
2016-06-01T14:37:18
Python
UTF-8
Python
false
false
1,693
py
import copy common = [ # 'drop *', 'keep double_fixedGridRho*_*_*', 'keep edmTriggerResults_TriggerResults_*_*', 'keep patPackedTriggerPrescales_*_*_*', 'keep patElectrons_slimmedElectrons_*_*', 'keep patJets_slimmedJets_*_*', 'keep patJets_patJetsReapplyJEC_*_*', 'keep patMETs_slimmedMETs_*_*', 'keep patMuons_slimmedMuons_*_*', # 'keep patPacked*_*_*_*', 'keep patPackedCandidate*_*packedPFCandidates*_*_*', # RIC: agreed to keep it to: 1. tau vtx 2. possibly compute isolations at analysis level 'keep patTaus_slimmedTaus_*_*', 'keep patTrigger*_*_*_*', 'keep recoVertexs_*_*_*', 'keep cmgMETSignificances_*_*_*', 'keep patCompositeCandidates_cmg*CorSVFitFullSel_*_H2TAUTAU', 'keep patJets_patJetsAK4PF_*_*', 'keep PileupSummaryInfos_*_*_*', 'keep recoGenParticles_prunedGenParticles_*_*', 'keep patPackedGenParticles_packedGenParticles__*', # these are status 1 'keep recoGsfElectronCores_*_*_*', # needed? 'keep recoSuperClusters_*_*_*', # for electron MVA ID 'keep recoGenJets_slimmedGenJets_*_*', 'keep *_slimmedSecondaryVertices_*_*', 'keep patPackedCandidates_packedPFCandidates__*', 'keep *_puppi_*_*', 'keep *_slimmedMETsPuppi_*_*', 'keep *_generator_*_*', 'keep *_genEvtWeightsCounter_*_H2TAUTAU', 'keep *_offlineBeamSpot_*_*', 'keep *_reducedEgamma_reducedConversions_*', 'keep LHEEventProduct_*_*_*', 'keep *_l1extraParticles_*_*', # 'keep *_mvaMETTauMu_*_H2TAUTAU' ] commonDebug = copy.deepcopy(common) commonDebug.extend([ 'keep patCompositeCandidates_*_*_*', # keep all intermediate di-taus 'keep patElectrons_*_*_*' ])
2e29fe62e754d295f00d590bcd2ce5ca0afddcf2
5ef2ebd4334769955cff15a03f5956b0fac6ba52
/docs/conf.py
15332c991b4e2357f380f776c35bd8c2c007fe0e
[ "BSD-3-Clause-Modification" ]
permissive
smurfix/repoze.retry
b58bf0b1e96e995d8631e03d1eb51cea84bb2a3c
0b7eae20b2ae29180bc36a5549ae9e54e5b6a7bd
refs/heads/master
2021-01-17T08:00:17.562716
2013-12-03T09:16:39
2013-12-03T09:20:27
null
0
0
null
null
null
null
UTF-8
Python
false
false
6,741
py
# -*- coding: utf-8 -*- # # repoze.retry documentation build configuration file, created by # sphinx-quickstart on Mon Aug 9 08:03:46 2010. # # This file is execfile()d with the current directory set to its containing dir. # # Note that not all possible configuration values are present in this # autogenerated file. # # All configuration values have a default; values that are commented out # serve to show the default. import sys, os parent = os.path.dirname(os.path.dirname(__file__)) sys.path.append(os.path.abspath(parent)) # If extensions (or modules to document with autodoc) are in another directory, # add these directories to sys.path here. If the directory is relative to the # documentation root, use os.path.abspath to make it absolute, like shown here. #sys.path.append(os.path.abspath('.')) # -- General configuration ----------------------------------------------------- # Add any Sphinx extension module names here, as strings. They can be extensions # coming with Sphinx (named 'sphinx.ext.*') or your custom ones. extensions = ['sphinx.ext.autodoc'] # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates'] # The suffix of source filenames. source_suffix = '.rst' # The encoding of source files. #source_encoding = 'utf-8' # The master toctree document. master_doc = 'index' # General information about the project. project = u'repoze.retry' copyright = u'2010, Agendaless Consulting, Inc.' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the # built documents. # # The short X.Y version. from pkg_resources import require dist = require('repoze.retry')[0] version = dist.version # The full version, including alpha/beta/rc tags. release = version # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. #language = None # There are two options for replacing |today|: either, you set today to some # non-false value, then it is used: #today = '' # Else, today_fmt is used as the format for a strftime call. #today_fmt = '%B %d, %Y' # List of documents that shouldn't be included in the build. #unused_docs = [] # List of directories, relative to source directory, that shouldn't be searched # for source files. exclude_trees = ['_build'] # The reST default role (used for this markup: `text`) to use for all documents. #default_role = None # If true, '()' will be appended to :func: etc. cross-reference text. #add_function_parentheses = True # If true, the current module name will be prepended to all description # unit titles (such as .. function::). #add_module_names = True # If true, sectionauthor and moduleauthor directives will be shown in the # output. They are ignored by default. #show_authors = False # The name of the Pygments (syntax highlighting) style to use. pygments_style = 'sphinx' # A list of ignored prefixes for module index sorting. #modindex_common_prefix = [] # -- Options for HTML output --------------------------------------------------- # The theme to use for HTML and HTML Help pages. Major themes that come with # Sphinx are currently 'default' and 'sphinxdoc'. html_theme = 'default' # The style sheet to use for HTML and HTML Help pages. A file of that name # must exist either in Sphinx' static/ path, or in one of the custom paths # given in html_static_path. html_style = 'repoze.css' # Theme options are theme-specific and customize the look and feel of a theme # further. For a list of options available for each theme, see the # documentation. #html_theme_options = {} # Add any paths that contain custom themes here, relative to this directory. #html_theme_path = [] # The name for this set of Sphinx documents. If None, it defaults to # "<project> v<release> documentation". #html_title = None # A shorter title for the navigation bar. Default is the same as html_title. #html_short_title = None # The name of an image file (relative to this directory) to place at the top # of the sidebar. #html_logo = None # The name of an image file (within the static path) to use as favicon of the # docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32 # pixels large. #html_favicon = None # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, # so a file named "default.css" will overwrite the builtin "default.css". html_static_path = ['_static'] # If not '', a 'Last updated on:' timestamp is inserted at every page bottom, # using the given strftime format. #html_last_updated_fmt = '%b %d, %Y' # If true, SmartyPants will be used to convert quotes and dashes to # typographically correct entities. #html_use_smartypants = True # Custom sidebar templates, maps document names to template names. #html_sidebars = {} # Additional templates that should be rendered to pages, maps page names to # template names. #html_additional_pages = {} # If false, no module index is generated. #html_use_modindex = True # If false, no index is generated. #html_use_index = True # If true, the index is split into individual pages for each letter. #html_split_index = False # If true, links to the reST sources are added to the pages. #html_show_sourcelink = True # If true, an OpenSearch description file will be output, and all pages will # contain a <link> tag referring to it. The value of this option must be the # base URL from which the finished HTML is served. #html_use_opensearch = '' # If nonempty, this is the file name suffix for HTML files (e.g. ".xhtml"). #html_file_suffix = '' # Output file base name for HTML help builder. htmlhelp_basename = 'repozeretrydoc' # -- Options for LaTeX output -------------------------------------------------- # The paper size ('letter' or 'a4'). #latex_paper_size = 'letter' # The font size ('10pt', '11pt' or '12pt'). #latex_font_size = '10pt' # Grouping the document tree into LaTeX files. List of tuples # (source start file, target name, title, author, documentclass [howto/manual]). latex_documents = [ ('index', 'repozeretry.tex', u'repoze.retry Documentation', u'Agendaless Consulting, Inc.', 'manual'), ] # The name of an image file (relative to this directory) to place at the top of # the title page. #latex_logo = None # For "manual" documents, if this is true, then toplevel headings are parts, # not chapters. #latex_use_parts = False # Additional stuff for the LaTeX preamble. #latex_preamble = '' # Documents to append as an appendix to all manuals. #latex_appendices = [] # If false, no module index is generated. #latex_use_modindex = True
cf586d21d70ab55c9b7d5a8e1e146b94a0e7493b
4ba18540bfd8c523fe39bbe7d6c8fa29d4ec0947
/atlas/foundations_events/src/test/consumers/jobs/queued/test_queued_job_notifier.py
d0480777c4e91860a0d9142ea598f1e067386f54
[ "BSD-3-Clause", "MIT", "CC0-1.0", "Apache-2.0", "BSD-2-Clause", "MPL-2.0" ]
permissive
yottabytt/atlas
c9d8ef45a0921c9f46d3ed94d42342f11488a85e
b040e574fbc64c833039b003f8a90345dd98e0eb
refs/heads/master
2022-10-14T11:12:12.311137
2020-06-13T13:19:35
2020-06-13T13:19:35
272,008,756
0
0
Apache-2.0
2020-06-13T12:55:29
2020-06-13T12:55:28
null
UTF-8
Python
false
false
1,369
py
import unittest from mock import Mock from foundations_spec.helpers import * from foundations_spec.helpers.spec import Spec class TestQueuedJobNotifier(Spec): job_notifier = let_mock() @let def consumer(self): from foundations_events.consumers.jobs.queued.job_notifier import JobNotifier return JobNotifier(self.job_notifier) @let def job_id(self): from uuid import uuid4 return uuid4() @let def project_name(self): return self.faker.sentence() def test_call_sends_notification_with_qeueud_message(self): time = 1551457960.22515 self.consumer.call({'job_id': self.job_id, 'project_name': self.project_name}, time, None) self.job_notifier.send_message.assert_called_with( """ Job Queued Job Id: {} Timestamp: 2019-03-01 11:32:40.225150 Project Name: {} """.format(self.job_id, self.project_name) ) def test_call_sends_notification_with_qeueud_message_different_time_stamp(self): time = 1551458381.9642663 self.consumer.call({'job_id': self.job_id, 'project_name': self.project_name}, time, None) self.job_notifier.send_message.assert_called_with( """ Job Queued Job Id: {} Timestamp: 2019-03-01 11:39:41.964266 Project Name: {} """.format(self.job_id, self.project_name) )
eb8e03b50b9cf04c181f5fd214e1461f869755bb
beea119ff63911711c906ea82cd7c8fa0b33f149
/src/oscar/apps/dashboard/catalogue/mixins.py
b924a7dbbda53e107a9875e6c67e2c80b06ce6bc
[ "MIT" ]
permissive
benjaminbills/fundizshop
6157316182ffa0045d68737315682c361f968ce9
b5d09f70c0a728c74efa72a37b03efef2bed9d3d
refs/heads/master
2023-06-21T19:05:08.120925
2021-07-13T05:00:15
2021-07-13T05:00:15
379,179,978
1
4
MIT
2021-07-07T09:18:29
2021-06-22T07:27:11
Python
UTF-8
Python
false
false
529
py
class PartnerProductFilterMixin: def filter_queryset(self, queryset): """ Restrict the queryset to products the given user has access to. A staff user is allowed to access all Products. A non-staff user is only allowed access to a product if they are in at least one stock record's partner user list. """ user = self.request.user if user.is_staff: return queryset return queryset.filter(stockrecords__partner__users__pk=user.pk).distinct()
40ff46ac61dab69c55f35bf02697ae1ce5adca82
88841c4b8c8a2d8c12186105510d325ff84324a5
/scripts/artifacts/bluetoothOther.py
111a4684b9a7165e034b4f586b0c34ae67aa8dad
[ "MIT" ]
permissive
mastenp/iLEAPP
404b8aca6b6bc6fab04240fdccf822839bade1e1
ee40ef7505b36d0b9b04131f284a9d4d036514a5
refs/heads/master
2022-12-26T07:55:17.905307
2020-09-29T11:58:16
2020-09-29T11:58:16
272,011,420
1
0
MIT
2020-09-29T11:58:17
2020-06-13T13:12:05
Python
UTF-8
Python
false
false
1,198
py
import glob import os import sys import stat import pathlib import plistlib import sqlite3 import json from scripts.artifact_report import ArtifactHtmlReport from scripts.ilapfuncs import logfunc, tsv, timeline, is_platform_windows def get_bluetoothOther(files_found, report_folder, seeker): file_found = str(files_found[0]) os.chmod(file_found, 0o0777) db = sqlite3.connect(file_found) cursor = db.cursor() cursor.execute( """ SELECT Name, Address, LastSeenTime, Uuid FROM OtherDevices order by Name desc """) all_rows = cursor.fetchall() usageentries = len(all_rows) data_list = [] if usageentries > 0: for row in all_rows: data_list.append((row[0], row[1], row[3])) description = '' report = ArtifactHtmlReport('Bluetooth Other LE') report.start_artifact_report(report_folder, 'Other LE', description) report.add_script() data_headers = ('Name','Address','UUID' ) report.write_artifact_data_table(data_headers, data_list, file_found) report.end_artifact_report() tsvname = 'Bluetooth Other LE' tsv(report_folder, data_headers, data_list, tsvname) else: logfunc('No data available for Bluetooth Other') db.close() return
d7f81f1b456b403d5cfaa53ae22d927009042b7d
8a73cde463081afd76427d5af1e6837bfa51cc47
/service/surf/apps/filters/metadata.py
49cdddb85d42d447a04530c4871e5959605a61e7
[ "MIT" ]
permissive
surfedushare/search-portal
8af4103ec6464e255c5462c672b30f32cd70b4e1
63e30ad0399c193fcb686804062cedf3930a093c
refs/heads/acceptance
2023-06-25T13:19:41.051801
2023-06-06T13:37:01
2023-06-06T13:37:01
254,373,874
2
1
MIT
2023-06-06T12:04:44
2020-04-09T13:07:12
Python
UTF-8
Python
false
false
2,079
py
from collections import defaultdict import requests from django.conf import settings from django.utils.functional import cached_property class MetadataTree(object): harvester_url = None api_token = None def __init__(self, harvester_url, api_token, warm_up_cache=False): self.harvester_url = harvester_url self.api_token = api_token if warm_up_cache: self._warm_up_cache = self.translations # result should be ignored as it only fills the cache def _fetch(self, url): response = requests.get(url, headers={"Authorization": f"Token {self.api_token}"}) if response.status_code != requests.status_codes.codes.ok: raise ValueError(f"Failed request: {response.status_code}") return response.json() @cached_property def tree(self): return self._fetch(f"{self.harvester_url}metadata/tree/?site_id={settings.SITE_ID}") @cached_property def partial_tree(self): return self._fetch(f"{self.harvester_url}metadata/tree/?site_id={settings.SITE_ID}&max_children=20") @cached_property def cache(self): cache = defaultdict(dict) def _cache_children(field_name, children): for child in children: cache[field_name][child["value"]] = child _cache_children(field_name, child["children"]) for field in self.tree: field_name = field["value"] cache[field_name]["_field"] = field _cache_children(field_name, field["children"]) return cache @cached_property def translations(self): return { field["value"]: { value: child["translation"] for value, child in self.cache[field["value"]].items() } for field in self.tree } def get_field(self, field_name): return self.cache[field_name]["_field"] def get_filter_field_names(self): return [ field["value"] for field in self.tree if not field["is_manual"] ]
3ea01b02f1d2247da82de5a03180b328416801ca
1a80c38ea020a8b18bb2c61b55caff8a38f553b9
/SWEA/trying/6058.py
647d2ed1e2f5a17a5950b75fb675a9047cc7a63c
[]
no_license
jiwookseo/problem-solving
775a47825dc73f8a29616ef7011e8ee7be346f80
eefbefb21608ae0a2b3c75c010ae14995b7fc646
refs/heads/master
2020-04-19T03:11:02.659816
2019-08-14T08:59:06
2019-08-14T08:59:06
167,926,883
1
0
null
null
null
null
UTF-8
Python
false
false
412
py
# 6058. 새해 축하 파티 D5 # https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AWbHe_w6AHIDFAV0&categoryId=AWbHe_w6AHIDFAV0&categoryType=CODE def gen(): a=0 for i in range(1,401): a+=i yield a for tc in range(1,int(input())+1): inp=list(map(int,input().split())) b,l,k=3*inp[0],inp[1],inp[2] genN=gen() # 너무 어렵다. 그래프? 트리?
8688ac67867a981e531391ddbcc4d45d57031d25
89c4a43a505df8fdf1f0d7386988c4896c2e631b
/google/ads/googleads/v6/services/services/ad_group_criterion_label_service/transports/grpc.py
3858d13b56d6f9146bc2f4cc05078782cd0906a2
[ "Apache-2.0" ]
permissive
hurricanelennane/google-ads-python
a0a1fed690776a8bb2e81f637eb7eae10fb4992f
310a488b6fdad9d5beea8fa4b166edce779a2511
refs/heads/master
2023-07-04T03:07:53.344466
2021-07-16T19:06:36
2021-07-16T19:06:36
null
0
0
null
null
null
null
UTF-8
Python
false
false
11,967
py
# -*- coding: utf-8 -*- # Copyright 2020 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # import warnings from typing import Callable, Dict, Optional, Sequence, Tuple from google.api_core import grpc_helpers # type: ignore from google.api_core import gapic_v1 # type: ignore from google import auth # type: ignore from google.auth import credentials # type: ignore from google.auth.transport.grpc import SslCredentials # type: ignore import grpc # type: ignore from google.ads.googleads.v6.resources.types import ad_group_criterion_label from google.ads.googleads.v6.services.types import ( ad_group_criterion_label_service, ) from .base import AdGroupCriterionLabelServiceTransport, DEFAULT_CLIENT_INFO class AdGroupCriterionLabelServiceGrpcTransport( AdGroupCriterionLabelServiceTransport ): """gRPC backend transport for AdGroupCriterionLabelService. Service to manage labels on ad group criteria. This class defines the same methods as the primary client, so the primary client can load the underlying transport implementation and call it. It sends protocol buffers over the wire using gRPC (which is built on top of HTTP/2); the ``grpcio`` package must be installed. """ def __init__( self, *, host: str = "googleads.googleapis.com", credentials: credentials.Credentials = None, credentials_file: str = None, scopes: Sequence[str] = None, channel: grpc.Channel = None, api_mtls_endpoint: str = None, client_cert_source: Callable[[], Tuple[bytes, bytes]] = None, ssl_channel_credentials: grpc.ChannelCredentials = None, quota_project_id: Optional[str] = None, client_info: gapic_v1.client_info.ClientInfo = DEFAULT_CLIENT_INFO, ) -> None: """Instantiate the transport. Args: host (Optional[str]): The hostname to connect to. credentials (Optional[google.auth.credentials.Credentials]): The authorization credentials to attach to requests. These credentials identify the application to the service; if none are specified, the client will attempt to ascertain the credentials from the environment. This argument is ignored if ``channel`` is provided. credentials_file (Optional[str]): A file with credentials that can be loaded with :func:`google.auth.load_credentials_from_file`. This argument is ignored if ``channel`` is provided. scopes (Optional(Sequence[str])): A list of scopes. This argument is ignored if ``channel`` is provided. channel (Optional[grpc.Channel]): A ``Channel`` instance through which to make calls. api_mtls_endpoint (Optional[str]): Deprecated. The mutual TLS endpoint. If provided, it overrides the ``host`` argument and tries to create a mutual TLS channel with client SSL credentials from ``client_cert_source`` or applicatin default SSL credentials. client_cert_source (Optional[Callable[[], Tuple[bytes, bytes]]]): Deprecated. A callback to provide client SSL certificate bytes and private key bytes, both in PEM format. It is ignored if ``api_mtls_endpoint`` is None. ssl_channel_credentials (grpc.ChannelCredentials): SSL credentials for grpc channel. It is ignored if ``channel`` is provided. quota_project_id (Optional[str]): An optional project to use for billing and quota. client_info (google.api_core.gapic_v1.client_info.ClientInfo): The client info used to send a user-agent string along with API requests. If ``None``, then default info will be used. Generally, you only need to set this if you're developing your own client library. Raises: google.auth.exceptions.MutualTLSChannelError: If mutual TLS transport creation failed for any reason. """ self._ssl_channel_credentials = ssl_channel_credentials if channel: # Sanity check: Ensure that channel and credentials are not both # provided. credentials = False # If a channel was explicitly provided, set it. self._grpc_channel = channel self._ssl_channel_credentials = None elif api_mtls_endpoint: warnings.warn( "api_mtls_endpoint and client_cert_source are deprecated", DeprecationWarning, ) host = ( api_mtls_endpoint if ":" in api_mtls_endpoint else api_mtls_endpoint + ":443" ) if credentials is None: credentials, _ = auth.default( scopes=self.AUTH_SCOPES, quota_project_id=quota_project_id ) # Create SSL credentials with client_cert_source or application # default SSL credentials. if client_cert_source: cert, key = client_cert_source() ssl_credentials = grpc.ssl_channel_credentials( certificate_chain=cert, private_key=key ) else: ssl_credentials = SslCredentials().ssl_credentials # create a new channel. The provided one is ignored. self._grpc_channel = type(self).create_channel( host, credentials=credentials, credentials_file=credentials_file, ssl_credentials=ssl_credentials, scopes=scopes or self.AUTH_SCOPES, quota_project_id=quota_project_id, options=[ ("grpc.max_send_message_length", -1), ("grpc.max_receive_message_length", -1), ], ) self._ssl_channel_credentials = ssl_credentials else: host = host if ":" in host else host + ":443" if credentials is None: credentials, _ = auth.default(scopes=self.AUTH_SCOPES) # create a new channel. The provided one is ignored. self._grpc_channel = type(self).create_channel( host, credentials=credentials, ssl_credentials=ssl_channel_credentials, scopes=self.AUTH_SCOPES, options=[ ("grpc.max_send_message_length", -1), ("grpc.max_receive_message_length", -1), ], ) self._stubs = {} # type: Dict[str, Callable] # Run the base constructor. super().__init__( host=host, credentials=credentials, client_info=client_info, ) @classmethod def create_channel( cls, host: str = "googleads.googleapis.com", credentials: credentials.Credentials = None, scopes: Optional[Sequence[str]] = None, **kwargs, ) -> grpc.Channel: """Create and return a gRPC channel object. Args: address (Optionsl[str]): The host for the channel to use. credentials (Optional[~.Credentials]): The authorization credentials to attach to requests. These credentials identify this application to the service. If none are specified, the client will attempt to ascertain the credentials from the environment. scopes (Optional[Sequence[str]]): A optional list of scopes needed for this service. These are only used when credentials are not specified and are passed to :func:`google.auth.default`. kwargs (Optional[dict]): Keyword arguments, which are passed to the channel creation. Returns: grpc.Channel: A gRPC channel object. """ return grpc_helpers.create_channel( host, credentials=credentials, scopes=scopes or cls.AUTH_SCOPES, **kwargs, ) @property def grpc_channel(self) -> grpc.Channel: """Return the channel designed to connect to this service. """ return self._grpc_channel @property def get_ad_group_criterion_label( self, ) -> Callable[ [ad_group_criterion_label_service.GetAdGroupCriterionLabelRequest], ad_group_criterion_label.AdGroupCriterionLabel, ]: r"""Return a callable for the get ad group criterion label method over gRPC. Returns the requested ad group criterion label in full detail. Returns: Callable[[~.GetAdGroupCriterionLabelRequest], ~.AdGroupCriterionLabel]: A function that, when called, will call the underlying RPC on the server. """ # Generate a "stub function" on-the-fly which will actually make # the request. # gRPC handles serialization and deserialization, so we just need # to pass in the functions for each. if "get_ad_group_criterion_label" not in self._stubs: self._stubs[ "get_ad_group_criterion_label" ] = self.grpc_channel.unary_unary( "/google.ads.googleads.v6.services.AdGroupCriterionLabelService/GetAdGroupCriterionLabel", request_serializer=ad_group_criterion_label_service.GetAdGroupCriterionLabelRequest.serialize, response_deserializer=ad_group_criterion_label.AdGroupCriterionLabel.deserialize, ) return self._stubs["get_ad_group_criterion_label"] @property def mutate_ad_group_criterion_labels( self, ) -> Callable[ [ad_group_criterion_label_service.MutateAdGroupCriterionLabelsRequest], ad_group_criterion_label_service.MutateAdGroupCriterionLabelsResponse, ]: r"""Return a callable for the mutate ad group criterion labels method over gRPC. Creates and removes ad group criterion labels. Operation statuses are returned. Returns: Callable[[~.MutateAdGroupCriterionLabelsRequest], ~.MutateAdGroupCriterionLabelsResponse]: A function that, when called, will call the underlying RPC on the server. """ # Generate a "stub function" on-the-fly which will actually make # the request. # gRPC handles serialization and deserialization, so we just need # to pass in the functions for each. if "mutate_ad_group_criterion_labels" not in self._stubs: self._stubs[ "mutate_ad_group_criterion_labels" ] = self.grpc_channel.unary_unary( "/google.ads.googleads.v6.services.AdGroupCriterionLabelService/MutateAdGroupCriterionLabels", request_serializer=ad_group_criterion_label_service.MutateAdGroupCriterionLabelsRequest.serialize, response_deserializer=ad_group_criterion_label_service.MutateAdGroupCriterionLabelsResponse.deserialize, ) return self._stubs["mutate_ad_group_criterion_labels"] __all__ = ("AdGroupCriterionLabelServiceGrpcTransport",)
831d02112e7ceee36ced42de31fb8ccfb82dfac5
2247218311804a8e6ca0d07840ab918cd749376d
/tests/func/test_glr_parsing.py
00ca40063da92a24e7c3ae3f8c0c690526bf186a
[ "Python-2.0", "MIT" ]
permissive
morganjk/parglare
e48067ee99ead524d9bb311be80bc173e50ef5d2
39b8034d50d328844dfd91fcd94e23166056398f
refs/heads/master
2021-07-18T09:44:39.758588
2017-10-22T15:08:56
2017-10-22T15:08:56
107,910,367
1
0
null
2017-10-22T23:17:58
2017-10-22T23:17:58
null
UTF-8
Python
false
false
5,101
py
# -*- coding: utf-8 -*- from __future__ import unicode_literals import pytest from parglare import GLRParser, Grammar, Parser from parglare.exceptions import SRConflicts def test_lr2_grammar(): grammar = """ Model: Prods EOF; Prods: Prod | Prods Prod; Prod: ID "=" ProdRefs; ProdRefs: ID | ProdRefs ID; ID: /\w+/; """ g = Grammar.from_string(grammar) # This grammar is not LR(1) as it requires # at least two tokens of lookahead to decide # what to do on each ID from the right side. # If '=' is after ID than it should reduce "Prod" # else it should reduce ID as ProdRefs. with pytest.raises(SRConflicts): Parser(g) # But it can be parsed unambiguously by GLR. p = GLRParser(g) txt = """ First = One Two three Second = Foo Bar Third = Baz """ results = p.parse(txt) assert len(results) == 1 def test_expressions(): actions = { "E": [ lambda _, nodes: nodes[0] + nodes[2], lambda _, nodes: nodes[0] * nodes[2], lambda _, nodes: nodes[1], lambda _, nodes: int(nodes[0]) ] } # This grammar is highly ambiguous if priorities and # associativities are not defined to disambiguate. grammar = """ E: E "+" E | E "*" E | "(" E ")" | /\d+/; """ g = Grammar.from_string(grammar) p = GLRParser(g, actions=actions, debug=True) # Even this simple expression has 2 different interpretations # (4 + 2) * 3 and # 4 + (2 * 3) results = p.parse("4 + 2 * 3") assert len(results) == 2 assert 18 in results and 10 in results # Adding one more operand rises number of interpretations to 5 results = p.parse("4 + 2 * 3 + 8") assert len(results) == 5 # One more and there are 14 interpretations results = p.parse("4 + 2 * 3 + 8 * 5") assert len(results) == 14 # The number of interpretation will be the Catalan number of n # where n is the number of operations. # https://en.wikipedia.org/wiki/Catalan_number # This number rises very fast. For 10 operations number of interpretations # will be 16796! # If we rise priority for multiplication operation we reduce ambiguity. # Default production priority is 10. Here we will raise it to 15 for # multiplication. grammar = """ E: E "+" E | E "*" E {15}| "(" E ")" | /\d+/; """ g = Grammar.from_string(grammar) p = GLRParser(g, actions=actions) # This expression now has 2 interpretation: # (4 + (2*3)) + 8 # 4 + ((2*3) + 8) # This is due to associativity of + operation which is not defined. results = p.parse("4 + 2 * 3 + 8") assert len(results) == 2 # If we define associativity for both + and * we have resolved all # ambiguities in the grammar. grammar = """ E: E "+" E {left}| E "*" E {left, 15}| "(" E ")" | /\d+/; """ g = Grammar.from_string(grammar) p = GLRParser(g, actions=actions) results = p.parse("4 + 2 * 3 + 8 * 5 * 3") assert len(results) == 1 assert results[0] == 4 + 2 * 3 + 8 * 5 * 3 def test_epsilon_grammar(): grammar = """ Model: Prods EOF; Prods: Prod | Prods Prod | EMPTY; Prod: ID "=" ProdRefs; ProdRefs: ID | ProdRefs ID; ID: /\w+/; """ g = Grammar.from_string(grammar) p = GLRParser(g, debug=True) txt = """ First = One Two three Second = Foo Bar Third = Baz """ results = p.parse(txt) assert len(results) == 1 results = p.parse("") assert len(results) == 1 def test_non_eof_grammar_nonempty(): """ Grammar that is not anchored by EOF at the end might result in multiple trees that are produced by sucessful parses of the incomplete input. """ grammar_nonempty = """ Model: Prods; Prods: Prod | Prods Prod; Prod: ID "=" ProdRefs; ProdRefs: ID | ProdRefs ID; ID: /\w+/; """ g_nonempty = Grammar.from_string(grammar_nonempty) txt = """ First = One Two three Second = Foo Bar Third = Baz """ p = GLRParser(g_nonempty, debug=True) results = p.parse(txt) # There is three succesful parses. # e.g. one would be the production 'First = One Two three Second' and the # parser could not continue as the next token is '=' but it succeds as # we haven't terminated our model with EOF so we allow partial parses. assert len(results) == 3 def test_non_eof_grammar_empty(): """ Grammar that is not anchored by EOF at the end might result in multiple trees that are produced by sucessful parses of the incomplete input. """ grammar_empty = """ Model: Prods; Prods: Prod | Prods Prod | EMPTY; Prod: ID "=" ProdRefs; ProdRefs: ID | ProdRefs ID; ID: /\w+/; """ g_empty = Grammar.from_string(grammar_empty) txt = """ First = One Two three Second = Foo Bar Third = Baz """ p = GLRParser(g_empty, debug=True) results = p.parse(txt) assert len(results) == 3 results = p.parse("") assert len(results) == 1
a083f7ad8469cb81abd1209db8dd1c48afc39efa
52d9f9fb6348c51e14c470e4405a79204ea98980
/unit5_Auto_Test_Model/test5_3模块化与参数化/read_json.py
cf0bae59ca450578251cece4a4810693c6a6ce5f
[]
no_license
UULIN/automation_test
0a815d9b1032d8d393e4f340bd294f17e20d194d
5a193bb897d653a44e0376bcb6592d7b1811a424
refs/heads/master
2023-01-05T15:07:54.133329
2020-11-02T04:58:11
2020-11-02T04:58:11
280,456,044
0
0
null
null
null
null
UTF-8
Python
false
false
184
py
""" 读取json """ import json import os path = os.path.abspath("config") with open(path+"\\user_info.json", "r") as f: data = f.read() userlist = json.loads(data) print(userlist)
7a28ea1553bdc4de0d169a474e8f80f39f34399a
bf66a28310d934fd1b8b14f762b336b9ec893a04
/spaces/management/commands/seed_detail_spaces.py
f9b9f8cc4f792d7c46b1fa631cb36906e2b90db2
[]
no_license
jeongmin14/enter_cloud-backend
0664a6563ea090926a8522b454b762afed1f5c9d
789b358e8c3cf5be8505185c048e10556bfd9e0a
refs/heads/main
2023-03-26T03:54:39.565076
2021-03-17T13:09:32
2021-03-17T13:09:32
348,644,724
0
0
null
2021-03-17T13:08:07
2021-03-17T09:09:14
null
UTF-8
Python
false
false
3,291
py
import csv import random import bcrypt from django_seed import Seed from faker import Faker from django.contrib.admin.utils import flatten from django.core.management.base import BaseCommand from django.utils import timezone from django.db.models import Count from users.models import Host from spaces.models import (Space, Tag, Facility, BreakDay, Type, SubImage, SpaceFacility, SpaceTag, SpaceBreakday, DetailSpace, DetailType, DetailFacility) from my_settings import (name_list, simple_info_list, main_info_list, detail_name_list, detail_facility_list) class Command(BaseCommand): help = "create detail spaces" def add_arguments(self, parser): parser.add_argument("--number", type=int, default=1) def handle(self, *args, **options): number = options.get("number") spaces = Space.objects.all() file = open("all.csv", mode="r") reader = file.readlines() image_length = len(reader) detail_types = DetailType.objects.all() detail_facilities = DetailFacility.objects.all() seeder = Seed.seeder() seeder.add_entity( DetailSpace, number, { "space": lambda x : random.choice(spaces) if spaces.aggregate(Count("detailspace"))["detailspace__count"] < 3 else random.choice(spaces), "name": lambda x : random.choice(detail_name_list), "information": lambda x : random.choice(main_info_list), "image": lambda x : reader[random.randint(0, image_length-1)], "min_reservation_time": lambda x : random.randint(2, 5), "min_people": lambda x : random.randint(1, 2), "max_people": lambda x : random.randint(4, 10), "price": lambda x : random.randint(5, 40) * 1000 } ) seed_detail_space = seeder.execute() detail_space_id_list = flatten(seed_detail_space.values()) for detail_space_id in detail_space_id_list: detail_space = DetailSpace.objects.get(id = detail_space_id) random_number = random.randint(1, len(detail_types)) detail_type_list = detail_types[random_number:random_number + 2] detail_space.detailtype_set.set(detail_type_list) random_number = random.randint(1, len(detail_facilities)) detail_facility_list = detail_facilities[random_number:random_number + 6] detail_space.detailfacility_set.set(detail_facility_list) self.stdout.write(self.style.SUCCESS(f'spaces created {number}'))
60d915aacf5bb27433fa991ce2f4ff01a97940b8
40f6aa355384efd0eb05ccf91f832e5b2aaa10bc
/mingw32/bin/gtester-report-script.py
ec1fefeae3480add88d609d268018c2bf5eaddf9
[]
no_license
Persimmon-Consulting/git-sdk-32
efd764dd562d8ef0c13558d5fd3111fa4d2723a5
5a2146abed2bd6a20f82e28e96f815ca8c95e60c
refs/heads/main
2023-02-25T08:15:00.190961
2021-02-01T03:13:50
2021-02-01T03:13:50
null
0
0
null
null
null
null
UTF-8
Python
false
false
19,114
py
#!C:/git-sdk-32-ci/mingw32/bin/python3.exe # GLib Testing Framework Utility -*- Mode: python; -*- # Copyright (C) 2007 Imendio AB # Authors: Tim Janik # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public # License as published by the Free Software Foundation; either # version 2.1 of the License, or (at your option) any later version. # # This library is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with this library; if not, see <http://www.gnu.org/licenses/>. # Deprecated: Since GLib 2.62, gtester and gtester-report have been deprecated # in favour of TAP. import datetime import optparse import sys, re, xml.dom.minidom try: import subunit from subunit import iso8601 from testtools.content import Content, ContentType mime_utf8 = ContentType('text', 'plain', {'charset': 'utf8'}) except ImportError: subunit = None # xml utilities def find_child (node, child_name): for child in node.childNodes: if child.nodeName == child_name: return child return None def list_children (node, child_name): rlist = [] for child in node.childNodes: if child.nodeName == child_name: rlist += [ child ] return rlist def find_node (node, name = None): if not node or node.nodeName == name or not name: return node for child in node.childNodes: c = find_node (child, name) if c: return c return None def node_as_text (node, name = None): if name: node = find_node (node, name) txt = '' if node: if node.nodeValue: txt += node.nodeValue for child in node.childNodes: txt += node_as_text (child) return txt def attribute_as_text (node, aname, node_name = None): node = find_node (node, node_name) if not node: return '' attr = node.attributes.get (aname, '') if hasattr (attr, 'value'): return attr.value return '' # HTML utilities def html_indent_string (n): uncollapsible_space = ' &nbsp;' # HTML won't compress alternating sequences of ' ' and '&nbsp;' string = '' for i in range (0, int((n + 1) / 2)): string += uncollapsible_space return string # TestBinary object, instantiated per test binary in the log file class TestBinary: def __init__ (self, name): self.name = name self.testcases = [] self.duration = 0 self.success_cases = 0 self.skipped_cases = 0 self.file = '???' self.random_seed = '' # base class to handle processing/traversion of XML nodes class TreeProcess: def __init__ (self): self.nest_level = 0 def trampoline (self, node): name = node.nodeName if name == '#text': self.handle_text (node) else: try: method = getattr (self, 'handle_' + re.sub ('[^a-zA-Z0-9]', '_', name)) except: method = None if method: return method (node) else: return self.process_recursive (name, node) def process_recursive (self, node_name, node): self.process_children (node) def process_children (self, node): self.nest_level += 1 for child in node.childNodes: self.trampoline (child) self.nest_level += 1 # test report reader, this class collects some statistics and merges duplicate test binary runs class ReportReader (TreeProcess): def __init__ (self): TreeProcess.__init__ (self) self.binary_names = [] self.binaries = {} self.last_binary = None self.info = {} def binary_list (self): lst = [] for name in self.binary_names: lst += [ self.binaries[name] ] return lst def get_info (self): return self.info def handle_info (self, node): dn = find_child (node, 'package') self.info['package'] = node_as_text (dn) dn = find_child (node, 'version') self.info['version'] = node_as_text (dn) dn = find_child (node, 'revision') if dn is not None: self.info['revision'] = node_as_text (dn) def handle_testcase (self, node): self.last_binary.testcases += [ node ] result = attribute_as_text (node, 'result', 'status') if result == 'success': self.last_binary.success_cases += 1 if bool (int (attribute_as_text (node, 'skipped') + '0')): self.last_binary.skipped_cases += 1 def handle_text (self, node): pass def handle_testbinary (self, node): path = node.attributes.get ('path', None).value if self.binaries.get (path, -1) == -1: self.binaries[path] = TestBinary (path) self.binary_names += [ path ] self.last_binary = self.binaries[path] dn = find_child (node, 'duration') dur = node_as_text (dn) try: dur = float (dur) except: dur = 0 if dur: self.last_binary.duration += dur bin = find_child (node, 'binary') if bin: self.last_binary.file = attribute_as_text (bin, 'file') rseed = find_child (node, 'random-seed') if rseed: self.last_binary.random_seed = node_as_text (rseed) self.process_children (node) class ReportWriter(object): """Base class for reporting.""" def __init__(self, binary_list): self.binaries = binary_list def _error_text(self, node): """Get a string representing the error children of node.""" rlist = list_children(node, 'error') txt = '' for enode in rlist: txt += node_as_text (enode) if txt and txt[-1] != '\n': txt += '\n' return txt class HTMLReportWriter(ReportWriter): # Javascript/CSS snippet to toggle element visibility cssjs = r''' <style type="text/css" media="screen"> .VisibleSection { } .HiddenSection { display: none; } </style> <script language="javascript" type="text/javascript"><!-- function toggle_display (parentid, tagtype, idmatch, keymatch) { ptag = document.getElementById (parentid); tags = ptag.getElementsByTagName (tagtype); for (var i = 0; i < tags.length; i++) { tag = tags[i]; var key = tag.getAttribute ("keywords"); if (tag.id.indexOf (idmatch) == 0 && key && key.match (keymatch)) { if (tag.className.indexOf ("HiddenSection") >= 0) tag.className = "VisibleSection"; else tag.className = "HiddenSection"; } } } message_array = Array(); function view_testlog (wname, file, random_seed, tcase, msgtitle, msgid) { txt = message_array[msgid]; var w = window.open ("", // URI wname, "resizable,scrollbars,status,width=790,height=400"); var doc = w.document; doc.write ("<h2>File: " + file + "</h2>\n"); doc.write ("<h3>Case: " + tcase + "</h3>\n"); doc.write ("<strong>Random Seed:</strong> <code>" + random_seed + "</code> <br /><br />\n"); doc.write ("<strong>" + msgtitle + "</strong><br />\n"); doc.write ("<pre>"); doc.write (txt); doc.write ("</pre>\n"); doc.write ("<a href=\'javascript:window.close()\'>Close Window</a>\n"); doc.close(); } --></script> ''' def __init__ (self, info, binary_list): ReportWriter.__init__(self, binary_list) self.info = info self.bcounter = 0 self.tcounter = 0 self.total_tcounter = 0 self.total_fcounter = 0 self.total_duration = 0 self.indent_depth = 0 self.lastchar = '' def oprint (self, message): sys.stdout.write (message) if message: self.lastchar = message[-1] def handle_info (self): if 'package' in self.info and 'version' in self.info: self.oprint ('<h3>Package: %(package)s, version: %(version)s</h3>\n' % self.info) if 'revision' in self.info: self.oprint ('<h5>Report generated from: %(revision)s</h5>\n' % self.info) def handle_text (self, node): self.oprint (node.nodeValue) def handle_testcase (self, node, binary): skipped = bool (int (attribute_as_text (node, 'skipped') + '0')) if skipped: return # skipped tests are uninteresting for HTML reports path = attribute_as_text (node, 'path') duration = node_as_text (node, 'duration') result = attribute_as_text (node, 'result', 'status') rcolor = { 'success': 'bgcolor="lightgreen"', 'failed': 'bgcolor="red"', }.get (result, '') if result != 'success': duration = '-' # ignore bogus durations self.oprint ('<tr id="b%u_t%u_" keywords="%s all" class="HiddenSection">\n' % (self.bcounter, self.tcounter, result)) self.oprint ('<td>%s %s</td> <td align="right">%s</td> \n' % (html_indent_string (4), path, duration)) perflist = list_children (node, 'performance') if result != 'success': txt = self._error_text(node) txt = re.sub (r'"', r'\\"', txt) txt = re.sub (r'\n', r'\\n', txt) txt = re.sub (r'&', r'&amp;', txt) txt = re.sub (r'<', r'&lt;', txt) self.oprint ('<script language="javascript" type="text/javascript">message_array["b%u_t%u_"] = "%s";</script>\n' % (self.bcounter, self.tcounter, txt)) self.oprint ('<td align="center"><a href="javascript:view_testlog (\'%s\', \'%s\', \'%s\', \'%s\', \'Output:\', \'b%u_t%u_\')">Details</a></td>\n' % ('TestResultWindow', binary.file, binary.random_seed, path, self.bcounter, self.tcounter)) elif perflist: presults = [] for perf in perflist: pmin = bool (int (attribute_as_text (perf, 'minimize'))) pmax = bool (int (attribute_as_text (perf, 'maximize'))) pval = float (attribute_as_text (perf, 'value')) txt = node_as_text (perf) txt = re.sub (r'&', r'&amp;', txt) txt = re.sub (r'<', r'&gt;', txt) txt = '<strong>Performance(' + (pmin and '<em>minimized</em>' or '<em>maximized</em>') + '):</strong> ' + txt.strip() + '<br />\n' txt = re.sub (r'"', r'\\"', txt) txt = re.sub (r'\n', r'\\n', txt) presults += [ (pval, txt) ] presults.sort() ptxt = ''.join ([e[1] for e in presults]) self.oprint ('<script language="javascript" type="text/javascript">message_array["b%u_t%u_"] = "%s";</script>\n' % (self.bcounter, self.tcounter, ptxt)) self.oprint ('<td align="center"><a href="javascript:view_testlog (\'%s\', \'%s\', \'%s\', \'%s\', \'Test Results:\', \'b%u_t%u_\')">Details</a></td>\n' % ('TestResultWindow', binary.file, binary.random_seed, path, self.bcounter, self.tcounter)) else: self.oprint ('<td align="center">-</td>\n') self.oprint ('<td align="right" %s>%s</td>\n' % (rcolor, result)) self.oprint ('</tr>\n') self.tcounter += 1 self.total_tcounter += 1 self.total_fcounter += result != 'success' def handle_binary (self, binary): self.tcounter = 1 self.bcounter += 1 self.total_duration += binary.duration self.oprint ('<tr><td><strong>%s</strong></td><td align="right">%f</td> <td align="center">\n' % (binary.name, binary.duration)) erlink, oklink = ('', '') real_cases = len (binary.testcases) - binary.skipped_cases if binary.success_cases < real_cases: erlink = 'href="javascript:toggle_display (\'ResultTable\', \'tr\', \'b%u_\', \'failed\')"' % self.bcounter if binary.success_cases: oklink = 'href="javascript:toggle_display (\'ResultTable\', \'tr\', \'b%u_\', \'success\')"' % self.bcounter if real_cases != 0: self.oprint ('<a %s>ER</a>\n' % erlink) self.oprint ('<a %s>OK</a>\n' % oklink) self.oprint ('</td>\n') perc = binary.success_cases * 100.0 / real_cases pcolor = { 100 : 'bgcolor="lightgreen"', 0 : 'bgcolor="red"', }.get (int (perc), 'bgcolor="yellow"') self.oprint ('<td align="right" %s>%.2f%%</td>\n' % (pcolor, perc)) self.oprint ('</tr>\n') else: self.oprint ('Empty\n') self.oprint ('</td>\n') self.oprint ('</tr>\n') for tc in binary.testcases: self.handle_testcase (tc, binary) def handle_totals (self): self.oprint ('<tr>') self.oprint ('<td><strong>Totals:</strong> %u Binaries, %u Tests, %u Failed, %u Succeeded</td>' % (self.bcounter, self.total_tcounter, self.total_fcounter, self.total_tcounter - self.total_fcounter)) self.oprint ('<td align="right">%f</td>\n' % self.total_duration) self.oprint ('<td align="center">-</td>\n') if self.total_tcounter != 0: perc = (self.total_tcounter - self.total_fcounter) * 100.0 / self.total_tcounter else: perc = 0.0 pcolor = { 100 : 'bgcolor="lightgreen"', 0 : 'bgcolor="red"', }.get (int (perc), 'bgcolor="yellow"') self.oprint ('<td align="right" %s>%.2f%%</td>\n' % (pcolor, perc)) self.oprint ('</tr>\n') def printout (self): self.oprint ('<html><head>\n') self.oprint ('<title>GTester Unit Test Report</title>\n') self.oprint (self.cssjs) self.oprint ('</head>\n') self.oprint ('<body>\n') self.oprint ('<h2>GTester Unit Test Report</h2>\n') self.handle_info () self.oprint ('<p style="color:red;font-weight:bold"><blink>' 'Deprecated: Since GLib 2.62, gtester and gtester-report are ' 'deprecated. Port to TAP.</blink></p>\n'); self.oprint ('<table id="ResultTable" width="100%" border="1">\n<tr>\n') self.oprint ('<th>Program / Testcase </th>\n') self.oprint ('<th style="width:8em">Duration (sec)</th>\n') self.oprint ('<th style="width:5em">View</th>\n') self.oprint ('<th style="width:5em">Result</th>\n') self.oprint ('</tr>\n') for tb in self.binaries: self.handle_binary (tb) self.handle_totals() self.oprint ('</table>\n') self.oprint ('</body>\n') self.oprint ('</html>\n') class SubunitWriter(ReportWriter): """Reporter to output a subunit stream.""" def printout(self): reporter = subunit.TestProtocolClient(sys.stdout) for binary in self.binaries: for tc in binary.testcases: test = GTestCase(tc, binary) test.run(reporter) class GTestCase(object): """A representation of a gtester test result as a pyunit TestCase.""" def __init__(self, case, binary): """Create a GTestCase for case 'case' from binary program 'binary'.""" self._case = case self._binary = binary # the name of the case - e.g. /dbusmenu/glib/objects/menuitem/props_boolstr self._path = attribute_as_text(self._case, 'path') def id(self): """What test is this? Returns the gtester path for the testcase.""" return self._path def _get_details(self): """Calculate a details dict for the test - attachments etc.""" details = {} result = attribute_as_text(self._case, 'result', 'status') details['filename'] = Content(mime_utf8, lambda:[self._binary.file]) details['random_seed'] = Content(mime_utf8, lambda:[self._binary.random_seed]) if self._get_outcome() == 'addFailure': # Extract the error details. Skips have no details because its not # skip like unittest does, instead the runner just bypasses N test. txt = self._error_text(self._case) details['error'] = Content(mime_utf8, lambda:[txt]) if self._get_outcome() == 'addSuccess': # Successful tests may have performance metrics. perflist = list_children(self._case, 'performance') if perflist: presults = [] for perf in perflist: pmin = bool (int (attribute_as_text (perf, 'minimize'))) pmax = bool (int (attribute_as_text (perf, 'maximize'))) pval = float (attribute_as_text (perf, 'value')) txt = node_as_text (perf) txt = 'Performance(' + (pmin and 'minimized' or 'maximized' ) + '): ' + txt.strip() + '\n' presults += [(pval, txt)] presults.sort() perf_details = [e[1] for e in presults] details['performance'] = Content(mime_utf8, lambda:perf_details) return details def _get_outcome(self): if int(attribute_as_text(self._case, 'skipped') + '0'): return 'addSkip' outcome = attribute_as_text(self._case, 'result', 'status') if outcome == 'success': return 'addSuccess' else: return 'addFailure' def run(self, result): time = datetime.datetime.utcnow().replace(tzinfo=iso8601.Utc()) result.time(time) result.startTest(self) try: outcome = self._get_outcome() details = self._get_details() # Only provide a duration IFF outcome == 'addSuccess' - the main # parser claims bogus results otherwise: in that case emit time as # zero perhaps. if outcome == 'addSuccess': duration = float(node_as_text(self._case, 'duration')) duration = duration * 1000000 timedelta = datetime.timedelta(0, 0, duration) time = time + timedelta result.time(time) getattr(result, outcome)(self, details=details) finally: result.stopTest(self) # main program handling def parse_opts(): """Parse program options. :return: An options object and the program arguments. """ parser = optparse.OptionParser() parser.version = '2.66.4' parser.usage = "%prog [OPTIONS] <gtester-log.xml>" parser.description = "Generate HTML reports from the XML log files generated by gtester." parser.epilog = "gtester-report (GLib utils) version %s."% (parser.version,) parser.add_option("-v", "--version", action="store_true", dest="version", default=False, help="Show program version.") parser.add_option("-s", "--subunit", action="store_true", dest="subunit", default=False, help="Output subunit [See https://launchpad.net/subunit/" " Needs python-subunit]") options, files = parser.parse_args() if options.version: print(parser.epilog) return None, None if len(files) != 1: parser.error("Must supply a log file to parse.") if options.subunit and subunit is None: parser.error("python-subunit is not installed.") return options, files def main(): options, files = parse_opts() if options is None: return 0 print("Deprecated: Since GLib 2.62, gtester and gtester-report are " "deprecated. Port to TAP.", file=sys.stderr) xd = xml.dom.minidom.parse (files[0]) rr = ReportReader() rr.trampoline (xd) if not options.subunit: HTMLReportWriter(rr.get_info(), rr.binary_list()).printout() else: SubunitWriter(rr.get_info(), rr.binary_list()).printout() if __name__ == '__main__': main()
0285552898e2f3c4ef99eed1b5f9c01d312dad95
5c41836471e08252f11bc51ce54e4d449f6a4f88
/cajas/migrations/0004_auto_20180807_1115.py
b0877a004b33455f8b8122267004dd4dcc2bc3f3
[]
no_license
wahello/dr_amor_app
1e9be88681d94bda5425d006a769fd3c55edbadb
3604f7992df97e981f6f72fd844b58186ebed6ef
refs/heads/master
2020-04-27T10:46:46.453354
2019-02-25T04:50:34
2019-02-25T04:50:34
null
0
0
null
null
null
null
UTF-8
Python
false
false
394
py
# Generated by Django 2.0.2 on 2018-08-07 16:15 from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('cajas', '0003_auto_20180801_2003'), ] operations = [ migrations.AlterField( model_name='billetemoneda', name='activo', field=models.BooleanField(default=False), ), ]
fa7186feee14a377eaf7cacdfd7aafc2db7bccca
6518c74441a68fc99b2b08423b5ea11480806499
/tests/tracking/test_artifact_utils.py
42df335dbdc72043cd5ea533d5a16b1c13f91b18
[ "Apache-2.0" ]
permissive
criteo-forks/mlflow
da58e64d09700623810da63999a1aca81b435b90
499284d8dc9e9ec79d8d9dbd03c58d162a2b7eaa
refs/heads/master
2023-04-14T17:59:29.997458
2022-01-11T09:50:26
2022-01-11T09:50:26
191,391,769
5
4
Apache-2.0
2023-04-07T15:16:20
2019-06-11T14:44:00
Python
UTF-8
Python
false
false
5,304
py
import os from unittest import mock from unittest.mock import ANY import mlflow from mlflow.tracking.artifact_utils import ( _download_artifact_from_uri, _upload_artifacts_to_databricks, ) def test_artifact_can_be_downloaded_from_absolute_uri_successfully(tmpdir): artifact_file_name = "artifact.txt" artifact_text = "Sample artifact text" local_artifact_path = tmpdir.join(artifact_file_name).strpath with open(local_artifact_path, "w") as out: out.write(artifact_text) logged_artifact_path = "artifact" with mlflow.start_run(): mlflow.log_artifact(local_path=local_artifact_path, artifact_path=logged_artifact_path) artifact_uri = mlflow.get_artifact_uri(artifact_path=logged_artifact_path) downloaded_artifact_path = os.path.join( _download_artifact_from_uri(artifact_uri), artifact_file_name ) assert downloaded_artifact_path != local_artifact_path assert downloaded_artifact_path != logged_artifact_path with open(downloaded_artifact_path, "r") as f: assert f.read() == artifact_text def test_download_artifact_from_absolute_uri_persists_data_to_specified_output_directory(tmpdir): artifact_file_name = "artifact.txt" artifact_text = "Sample artifact text" local_artifact_path = tmpdir.join(artifact_file_name).strpath with open(local_artifact_path, "w") as out: out.write(artifact_text) logged_artifact_subdir = "logged_artifact" with mlflow.start_run(): mlflow.log_artifact(local_path=local_artifact_path, artifact_path=logged_artifact_subdir) artifact_uri = mlflow.get_artifact_uri(artifact_path=logged_artifact_subdir) artifact_output_path = tmpdir.join("artifact_output").strpath os.makedirs(artifact_output_path) _download_artifact_from_uri(artifact_uri=artifact_uri, output_path=artifact_output_path) assert logged_artifact_subdir in os.listdir(artifact_output_path) assert artifact_file_name in os.listdir( os.path.join(artifact_output_path, logged_artifact_subdir) ) with open( os.path.join(artifact_output_path, logged_artifact_subdir, artifact_file_name), "r" ) as f: assert f.read() == artifact_text def test_download_artifact_with_special_characters_in_file_name_and_path(tmpdir): artifact_file_name = " artifact_ with! special characters.txt" artifact_sub_dir = " path with ! special characters" artifact_text = "Sample artifact text" local_sub_path = os.path.join(tmpdir, artifact_sub_dir) os.makedirs(local_sub_path) local_artifact_path = os.path.join(local_sub_path, artifact_file_name) with open(local_artifact_path, "w") as out: out.write(artifact_text) logged_artifact_subdir = "logged_artifact" with mlflow.start_run(): mlflow.log_artifact(local_path=local_artifact_path, artifact_path=logged_artifact_subdir) artifact_uri = mlflow.get_artifact_uri(artifact_path=logged_artifact_subdir) artifact_output_path = os.path.join(tmpdir, "artifact output path!") os.makedirs(artifact_output_path) _download_artifact_from_uri(artifact_uri=artifact_uri, output_path=artifact_output_path) assert logged_artifact_subdir in os.listdir(artifact_output_path) assert artifact_file_name in os.listdir( os.path.join(artifact_output_path, logged_artifact_subdir) ) with open( os.path.join(artifact_output_path, logged_artifact_subdir, artifact_file_name), "r" ) as f: assert f.read() == artifact_text def test_upload_artifacts_to_databricks(): import_root = "mlflow.tracking.artifact_utils" with mock.patch(import_root + "._download_artifact_from_uri") as download_mock, mock.patch( import_root + ".DbfsRestArtifactRepository" ) as repo_mock: new_source = _upload_artifacts_to_databricks( "dbfs:/original/sourcedir/", "runid12345", "databricks://tracking", "databricks://registry:ws", ) download_mock.assert_called_once_with("dbfs://tracking@databricks/original/sourcedir/", ANY) repo_mock.assert_called_once_with( "dbfs://registry:ws@databricks/databricks/mlflow/tmp-external-source/" ) assert new_source == "dbfs:/databricks/mlflow/tmp-external-source/runid12345/sourcedir" def test_upload_artifacts_to_databricks_no_run_id(): from uuid import UUID import_root = "mlflow.tracking.artifact_utils" with mock.patch(import_root + "._download_artifact_from_uri") as download_mock, mock.patch( import_root + ".DbfsRestArtifactRepository" ) as repo_mock, mock.patch("uuid.uuid4", return_value=UUID("4f746cdcc0374da2808917e81bb53323")): new_source = _upload_artifacts_to_databricks( "dbfs:/original/sourcedir/", None, "databricks://tracking:ws", "databricks://registry" ) download_mock.assert_called_once_with( "dbfs://tracking:ws@databricks/original/sourcedir/", ANY ) repo_mock.assert_called_once_with( "dbfs://registry@databricks/databricks/mlflow/tmp-external-source/" ) assert ( new_source == "dbfs:/databricks/mlflow/tmp-external-source/" "4f746cdcc0374da2808917e81bb53323/sourcedir" )
df611eb84cc4a732b0e4702ae54d667788b7c362
9eef3e4cf39a659268694cf08a4a799af8fb13e2
/inference/surrogate/nn_surrogate/learning/training.py
313ed4ae3a7b98e3561490f4cf3964ce074c4d2c
[]
no_license
cselab/tRBC-UQ
c30ec370939b949c989d2e9cd30137073b53e7d2
cd7711b76c76e86bc6382914111f4fa42aa78f2c
refs/heads/master
2023-04-18T03:06:49.175259
2022-10-25T15:45:07
2022-10-25T15:45:07
483,407,531
0
0
null
null
null
null
UTF-8
Python
false
false
2,563
py
#!/usr/bin/env python from copy import deepcopy import torch from torch.utils.data import DataLoader def train_model(model, data_loader: DataLoader, x_valid: torch.tensor, y_valid: torch.tensor, criterion = torch.nn.MSELoss(), lr=0.1, max_epoch=5000, info_every=100, device=torch.device('cpu')): model.to(device) x_valid, y_valid = x_valid.to(device), y_valid.to(device) with torch.no_grad(): model_bck = deepcopy(model) best_valid_loss = 1e20 num_worse_valid_losses = 0 patience = 10 max_number_of_rounds = 5 number_of_rounds = 0 lr_reduction_factor = 0.1 optimizer = torch.optim.Adam(model.parameters(), lr=lr) # trace train_losses = list() valid_losses = list() for epoch in range(max_epoch): y_pred_valid = model(x_valid) with torch.no_grad(): valid_loss = criterion(y_pred_valid, y_valid) if valid_loss.item() < best_valid_loss: best_valid_loss = valid_loss.item() num_worse_valid_losses = 0 model_bck.load_state_dict(model.state_dict()) else: num_worse_valid_losses += 1 if num_worse_valid_losses > patience: model.load_state_dict(model_bck.state_dict()) num_worse_valid_losses = 0 number_of_rounds += 1 lr *= lr_reduction_factor print(f"reduced lr from {lr/lr_reduction_factor:e} to {lr:e}") # set the learning rate for param_group in optimizer.param_groups: param_group['lr'] = lr if number_of_rounds >= max_number_of_rounds: break train_loss = 0.0 for x_batch, y_batch in data_loader: x_batch, y_batch = x_batch.to(device), y_batch.to(device) y_pred = model(x_batch) batch_loss = criterion(y_pred, y_batch) optimizer.zero_grad() batch_loss.backward() if epoch > 0: optimizer.step() train_loss += batch_loss.cpu().detach().numpy() nbatches = len(data_loader) train_loss /= nbatches if epoch % info_every == 0: print(f"epoch {epoch:05d}: training loss {train_loss.item():e}, valid loss {valid_loss.item():e}") # save trace train_losses.append(train_loss.item()) valid_losses.append(valid_loss.item()) return model, train_losses, valid_losses
4d708ea3bd225f0c0c2dc484df2259a106ba8471
f0fe4f17b5bbc374656be95c5b02ba7dd8e7ec6d
/all_functions/linux server/python GUI/menus/popupMenu.py
1f03b6eadd92ccda984447a8fd4cfb671036029d
[ "LicenseRef-scancode-warranty-disclaimer", "MIT" ]
permissive
Heroku-elasa/heroku-buildpack-python-ieee-new
f46a909ebc524da07f8e15c70145d1fe3dbc649b
06ec2fda04d9e478ed2506400e460489b0ca91ab
refs/heads/master
2022-12-10T13:14:40.742661
2020-01-29T14:14:10
2020-01-29T14:14:10
60,902,385
0
0
MIT
2022-12-07T23:34:36
2016-06-11T10:36:10
Python
UTF-8
Python
false
false
2,177
py
# submenu.py import wx ######################################################################## class MyForm(wx.Frame): """""" #---------------------------------------------------------------------- def __init__(self): """Constructor""" wx.Frame.__init__(self, None, title="Popup Menu Tutorial") panel = wx.Panel(self, wx.ID_ANY) lbl = wx.StaticText(panel, label="Right click anywhere!") self.Bind(wx.EVT_CONTEXT_MENU, self.onContext) #---------------------------------------------------------------------- def onContext(self, event): """ Create and show a Context Menu """ # only do this part the first time so the events are only bound once if not hasattr(self, "popupID1"): self.popupID1 = wx.NewId() self.itemTwoId = wx.NewId() self.itemThreeId = wx.NewId() self.Bind(wx.EVT_MENU, self.onPopup, id=self.popupID1) self.Bind(wx.EVT_MENU, self.onPopup, id=self.itemTwoId) self.Bind(wx.EVT_MENU, self.onExit, id=self.itemThreeId) # build the menu menu = wx.Menu() itemOne = menu.Append(self.popupID1, "ItemOne") itemTwo = menu.Append(self.itemTwoId, "ItemTwo") itemThree = menu.Append(self.itemThreeId, "Exit") # show the popup menu self.PopupMenu(menu) menu.Destroy() #---------------------------------------------------------------------- def onExit(self, event): """ Exit program """ self.Close() #---------------------------------------------------------------------- def onPopup(self, event): """ Print the label of the menu item selected """ itemId = event.GetId() menu = event.GetEventObject() menuItem = menu.FindItemById(itemId) print menuItem.GetLabel() #---------------------------------------------------------------------- # Run the program if __name__ == "__main__": app = wx.App(False) frame = MyForm().Show() app.MainLoop()
67b110211c48f58f63f581bf59716e00f685a415
c4a01824e750f7a710fa5488128ec2694ad3f585
/tensorflow_projects/ML_python_ch10.py
7234eda5fa0583c6d53b2475df4fed0202f35a3e
[]
no_license
karsevar/tensorflow_projects
4887391046c1bfc124a07a4f8599c8ef0b41face
97d093f4dfeea83185c92d4cbf73d8b1c28cbacf
refs/heads/master
2020-03-28T18:13:49.562167
2018-09-15T02:44:53
2018-09-15T02:44:53
148,862,971
0
0
null
null
null
null
UTF-8
Python
false
false
10,173
py
###Hands on machine learning with tensorflow and scikit learn: ###Chapter 10 Introduction to Artificial Neural Networks ##The Perceptron: #The Perceptron is one of the simplest ANN architectures. It is based on a slightly #different artificial neuron called a linear threshold unit: The inputs #and output are now numbers and each input connection is associated with a weight #The LTU computes a weighted sum of its inputs, then applies a step function #to the sum and outputs the results #A single LTU can be used for simple linear binary classification. It #computes a linear combination of the inputs and if the result exceeds #a threshold, it outputs the positive class or else outputs the negative class. #Much like gradient descent, training a LTU neural network revolves around #finding the best W_0, w_1, w_2 values for the dataset. #Training algorithm (Hebbian learning): The perceptron is fed one training #instance at a time, and for each instance it makes it predictions. For #every output neuron that produced a wrong prediction, it reinforces the connection #weights from the inputs that would have contributed to the correct #prediction. #Look at page 259 for the equation. #The decision boundary of each output neuron is linear, so Perceptrons are incapable #of learning complex patterns. ##Creating a single LTU network using the Perceptron class: import numpy as np from sklearn.datasets import load_iris from sklearn.linear_model import Perceptron iris = load_iris() X = iris.data[:, (2,3)]#petal length, petal width y = (iris.target == 0).astype(np.int) per_clf = Perceptron(random_state = 42) per_clf.fit(X, y) y_pred = per_clf.predict([[2, 0.5]])# Predicts the class of an iris with a #petal length of 2 and petal width of 0.5. print(y_pred) #the SGDClassifier can perform the same computation through setting #the hyperparameters to loss="perceptron", learning_rate = constant, #and eta = 0.1 and penalty = None. ##Multi-layer perceptron and backpropagation: #An MLP is composed of one input layer, one or more layers of LTUs, #called hidden layers, and one final layer of LTUs called the output layer. #Every layer except the output layer includes a bias neuron and is fully #connected to the next layer. #Backpropagation explained: for each training instance the back propagation #algorithm first makes a prediction (forward pass), measures the error, then goes #through each layer in reverse to measure the error contribution from each #connect (reverse pass), and finally slightly tweaks the connection weights #to reduce the error (Gradient Descent step). #The early activation function was replaced by the sigmoid equation #(1/1 + exp(-z)) as a means to make gradient descent work with the #model. ##Important reason why the author in Fundamentals of deep learning used #softmax logistic regression: When classes are exclusive, the output layer #is typically modified by replacing the individual activation functions by #a shared soft max function. The output of each neuron corresponds to the estimated #probability of the corresponding class. ##Training a MLP with Tensroflow's High level API: #The DNNClassifier class makes it fairly easy to train a deep neural #network with any number of hidden layers, and a softmax output layer #to output extimated class probabilities. import tensorflow as tf #(X_train, y_train), (X_test, y_test) = tf.contrib.keras.datasets.mnist.load_data() #X_train = X_train.astype(np.float32).reshape(-1, 28*28)/255.0 #X_test = X_test.astype(np.float32).reshape(-1, 28*28) / 255.0 #y_train = y_train.astype(np.int32) #y_test = y_test.astype(np.int32) #X_valid, X_train = X_train[:5000], X_train[5000:] #y_valid, y_train = y_train[:5000], y_train[5000:] from sklearn.datasets import fetch_mldata mnist = fetch_mldata("MNIST original") X, y = mnist["data"], mnist["target"] X_train, X_test = X[:50000], X[50000:] y_train, y_test = y[:50000], y[50000:] X_train = X_train.astype(np.float32).reshape(-1, 28*28)/255.0 X_test = X_test.astype(np.float32).reshape(-1, 28*28) / 255.0 y_train = y_train.astype(np.int32) y_test = y_test.astype(np.int32) X_valid, X_train = X_train[:5000], X_train[5000:] y_valid, y_train = y_train[:5000], y_train[5000:] feature_cols = [tf.feature_column.numeric_column("X", shape=[28 * 28])] dnn_clf = tf.contrib.learn.DNNClassifier(hidden_units = [300, 100], n_classes = 10, feature_columns= feature_cols) input_fn = tf.estimator.inputs.numpy_input_fn( x={"X": X_train}, y=y_train, num_epochs = 40, batch_size=50, shuffle=True) #dnn_clf.train(input_fn=input_fn) #Switched the mnist dataset from the sklearn.datasets directory and it works just fine. #Now the problem is that the dnn_clf.train() function doesn't seem to want to work. #Will need to read the documentation about this. tf.reset_default_graph() #Under the hood, the DNNClassifier class creates all the neuron layers, based on #the ReLu acitivation function (we can change this by setting the activation_fn hyperparameter). #The output layer relies on the softmax function, and the cost function is #cross entropy. ##Training a DNN Using Plain Tensorflow: ##construction phase: n_inputs = 28 * 28 #The total number of pixels beinging inputed into #the model. In other words, one pixel per feature. n_hidden1 = 300 n_hidden2 = 100 n_outputs = 10 X = tf.placeholder(tf.float32, shape = (None, n_inputs), name = "X")#What about the bias #term? y = tf.placeholder(tf.int32, shape = (None), name = "y") def neuron_layer(X, n_neurons, name, activation = None): with tf.name_scope("name"): n_inputs = int(X.get_shape()[1]) stddev = 2 / np.sqrt(n_inputs) init = tf.truncated_normal((n_inputs, n_neurons), stddev = stddev) W = tf.Variable(init, name = "kernel") b = tf.Variable(tf.zeros([n_neurons]), name = "bias")#Here is the #bias term. For neural networks the bias term is a neuron. Z = tf.matmul(X, W) + b if activation is not None: return activation(Z) else: return Z #this neural network is using the same code as the ReLU activation #neural network on page 247. thus meaning that this model is using #the relu activation function to create the neural network. #the stddev = 2 / np.sqrt(n_inputs) init = tf.truncated_normal((n_inputs, n_neurons), stddev = stddev) #parts of the function is a Gaussian initialization number generator with a #standard deviation of 2/sqrt(n_inputs) #the first hidden layer takes X as its input. The second takes the output #of the first hidden layer as its input. And finally, the output layer takes #the output of the second hidden layer as its input. with tf.name_scope("dnn"): hidden1 = neuron_layer(X, n_hidden1, name = "hidden1", activation=tf.nn.relu) hidden2 = neuron_layer(hidden1, n_hidden2, name = "hidden2", activation=tf.nn.relu) logits = neuron_layer(hidden2, n_outputs, name = "outputs") #Tensorflow's tf.layers.dense() function creates a fully connected layer, where #all the inputs are connected to al the neurons in the layer. It takes care of #creating the weights and biases variables, named kernel and bias respectively #using the appropriate initialization strategy, and you can set the #activation function using the activation argument. #with tf.name_scope("dnn"): #hidden1 = neuron_layer(X, n_hidden1, name = "hidden1", #activation=tf.nn.relu) #hidden2 = neuron_layer(hidden1, n_hidden2, name = "hidden2", #activation=tf.nn.relu) #logits = neuron_layer(hidden2, n_outputs, name = "outputs") #As you can see this creates the same neural network without having to #create a neuron function that specifies the variables within each #neuron in a specific layer. #After this we will need to assign a penality term within the equation. #this this model we will use cross entropy. We will use sparse_soft_max_entropy_with_logits(): #it computes the cross entropy based on the logits. We can use tensorflow's #reduce_mean() to compute the mean cross entropy over all instances. with tf.name_scope("loss"): xentropy = tf.nn.sparse_softmax_cross_entropy_with_logits(labels=y, logits=logits) loss = tf.reduce_mean(xentropy, name = "loss") #the following steps are just like the ones used in chapter 9 to create #the linear regression computational map. learning_rate = 0.01 with tf.name_scope("train"): optimizer = tf.train.GradientDescentOptimizer(learning_rate) training_op = optimizer.minimize(loss) #The last important step in the construction phase is to specify how to evaluate #the model. We will simply use accuracy as our performance measure. First, for each #instance, determine if the neural network's prediction is correct by checking whether #or not the highest logit corresponds to the target class. For this you can use #the in_top_k() function. this returns a 1 D tensor full of boolean values, so we need #to cast these booleans to floats and then computate the average. this will give us #the network's overall accuracy. with tf.name_scope("eval"): correct = tf.nn.in_top_k(logits, y, 1) accuracy = tf.reduce_mean(tf.cast(correct, tf.float32)) def fetch_batch(epoch, batch_index, batch_size): indices = np.random.randint(0, len(X_train), size = batch_size) X_batch = X_train[indices] y_batch = y_train[indices] return X_batch, y_batch n_epochs = 60 batch_size = 50 n_batches = int(np.ceil(int(X_train.shape[0]) / batch_size)) init = tf.global_variables_initializer() with tf.Session() as sess: init.run() for epoch in range(n_epochs): for batch_index in range(n_batches): X_batch, y_batch = fetch_batch(epoch, batch_index, batch_size) sess.run(training_op, feed_dict={X: X_batch, y: y_batch}) acc_train = accuracy.eval(feed_dict={X: X_batch, y: y_batch}) acc_valid = accuracy.eval(feed_dict={X: X_valid, y: y_valid}) print(epoch, "Train accuracy: ", acc_train, "valid accuracy:", acc_valid) #Running the testing dataset, I can't get to an accuracy rating of over 62 percent #even with an n_epoch argument of 100. This most likely means that the indexes between the #testing set and training set weren't properly shuffled.
a47695bab212efdb53838f47f47917c0959cdcb5
216da5e56b0d9139e220c423abb90ccf8a293ab6
/colossalai/nn/layer/parallel_3d/_vit.py
ffe7a146af714eac4f707f6f443ebe65e2d6bca5
[ "Apache-2.0" ]
permissive
hierarchyJK/ColossalAI
0cb88eb6b238553bdd86b773d916d792086e219c
0aa07e600c7119498d3a49492c9cebcdbe3e89a3
refs/heads/main
2023-08-25T17:22:24.620883
2021-11-04T06:26:28
2021-11-04T06:26:28
null
0
0
null
null
null
null
UTF-8
Python
false
false
15,482
py
import math from typing import Tuple import torch import torch.distributed as dist from colossalai.context import ParallelMode, seed from colossalai.core import global_context as gpc from colossalai.registry import LAYERS from colossalai.utils import checkpoint, get_current_device from torch import Tensor, dtype, nn from .._common_utils import ACT2FN, divide, set_tensor_parallel_attribute from ..vanilla_vision_transformer.layers import to_2tuple from ._utils import get_depth_from_env from .layers import Linear3D @LAYERS.register_module class ViTPatchEmbedding3D(nn.Module): """ 3D Image to Patch Embedding :param img_size: iamge size :type img_size: int :param patch_size: patch size :type patch_size: int :param in_chans: number of channels of input image :type in_chans: int :param embed_size: dimension of embedding :type embed_size: int :param drop_prob: dropout probability :type drop_prob: float :param flatten: whether to flatten output tensor, defaults to True :type flatten: bool, optional """ def __init__(self, img_size: int, patch_size: int, in_chans: int, embed_size: int, drop_prob: float, flatten: bool = True): super().__init__() self.depth = get_depth_from_env() self.input_parallel_mode = ParallelMode.PARALLEL_3D_INPUT self.weight_parallel_mode = ParallelMode.PARALLEL_3D_WEIGHT self.output_parallel_mode = ParallelMode.PARALLEL_3D_OUTPUT img_size = to_2tuple(img_size) patch_size = to_2tuple(patch_size) self.img_size = img_size self.patch_size = patch_size self.grid_size = (img_size[0] // patch_size[0], img_size[1] // patch_size[1]) self.embed_size = embed_size self.embed_size_per_partition = divide(self.embed_size, self.depth) self.num_patches = self.grid_size[0] * self.grid_size[1] self.flatten = flatten with seed(ParallelMode.TENSOR): self.proj = nn.Conv2d(in_chans, self.embed_size_per_partition, kernel_size=patch_size, stride=patch_size) self.cls_token = nn.Parameter( torch.zeros(1, 1, self.embed_size_per_partition)) self.pos_embed = nn.Parameter( torch.zeros(1, self.num_patches + 1, self.embed_size_per_partition)) self.pos_drop = nn.Dropout(drop_prob) self._sync_parameters() self.proj.weight.register_hook(self._sync_grad_hook) self.proj.bias.register_hook(self._sync_grad_hook) self.cls_token.register_hook(self._sync_grad_hook) self.pos_embed.register_hook(self._sync_grad_hook) self._set_tensor_parallel_attribute() def _set_tensor_parallel_attribute(self): set_tensor_parallel_attribute(self.proj.weight) set_tensor_parallel_attribute(self.proj.bias) set_tensor_parallel_attribute(self.cls_token) set_tensor_parallel_attribute(self.pos_embed) def groups_for_next_layer(self) -> Tuple[ParallelMode, ParallelMode]: return self.input_parallel_mode, self.weight_parallel_mode def _sync_parameters(self): self.to(get_current_device()) weight_src_rank = gpc.get_ranks_in_group(self.weight_parallel_mode)[0] dist.broadcast(self.proj.weight, src=weight_src_rank, group=gpc.get_group(self.weight_parallel_mode)) dist.broadcast(self.proj.bias, src=weight_src_rank, group=gpc.get_group(self.weight_parallel_mode)) input_src_rank = gpc.get_ranks_in_group(self.input_parallel_mode)[0] dist.broadcast(self.proj.weight, src=input_src_rank, group=gpc.get_group(self.input_parallel_mode)) dist.broadcast(self.proj.bias, src=input_src_rank, group=gpc.get_group(self.input_parallel_mode)) set_tensor_parallel_attribute(self.proj.weight) set_tensor_parallel_attribute(self.proj.bias) set_tensor_parallel_attribute(self.cls_token) set_tensor_parallel_attribute(self.pos_embed) def _sync_grad_hook(self, grad) -> None: dist.all_reduce(grad, group=gpc.get_group(self.input_parallel_mode)) dist.all_reduce(grad, group=gpc.get_group(self.weight_parallel_mode)) return grad def forward(self, x: Tensor) -> Tensor: B, C, H, W = x.shape assert H == self.img_size[0] and W == self.img_size[1], \ f"Input image size ({H}*{W}) doesn't match model ({self.img_size[0]}*{self.img_size[1]})." x = self.proj(x) if self.flatten: x = x.flatten(2).transpose(1, 2) # BCHW -> BNC # split a partition from embedded states x = torch.chunk(x, self.depth, dim=0)[gpc.get_local_rank( self.weight_parallel_mode)].contiguous() x = torch.chunk(x, self.depth, dim=0)[gpc.get_local_rank( self.input_parallel_mode)].contiguous() # add cls token & pos embedding # [b/q^2,s,h/q] --> [b/q^2, 1+s, h/q] cls_token = self.cls_token.expand(x.shape[0], -1, -1) x = torch.cat((cls_token, x), dim=1) with seed(ParallelMode.TENSOR): x = self.pos_drop(x + self.pos_embed) return x @LAYERS.register_module class ViTSelfAttention3D(nn.Module): """Self-attention layer for 3D parallel Vision Transformer :param hidden_size: hidden size :type hidden_size: int :param num_attention_heads: number of attention heads :type num_attention_heads: int :param attention_probs_dropout_prob: dropout probability for attention layers :type attention_probs_dropout_prob: bool :param hidden_dropout_prob: dropout probability for hidden layers :type hidden_dropout_prob: bool :param depth: the 3D parallelism depth :type depth: int :param input_parallel_mode: parallel mode of input tensor :type input_parallel_mode: ParallelMode :param weight_parallel_mode: parallel mode of weight :type weight_parallel_mode: ParallelMode :param dtype: dtype of parameters, defaults to None :type dtype: dtype, optional :param bias: whether to add bias, defaults to True :type bias: bool, optional """ def __init__(self, hidden_size: int, num_attention_heads: int, attention_probs_dropout_prob: float, hidden_dropout_prob: float, dtype: dtype = None, bias: bool = True, checkpoint: bool = False): super().__init__() self.depth = get_depth_from_env() self.input_parallel_mode = ParallelMode.PARALLEL_3D_INPUT self.weight_parallel_mode = ParallelMode.PARALLEL_3D_WEIGHT self.output_parallel_mode = ParallelMode.PARALLEL_3D_OUTPUT self.hidden_size = hidden_size self.num_attention_heads = divide(num_attention_heads, self.depth) self.attention_head_size = divide(hidden_size, num_attention_heads) self.all_head_size = self.num_attention_heads * self.attention_head_size self.checkpoint = checkpoint self.query_key_value = Linear3D(self.hidden_size, 3 * self.hidden_size, self.input_parallel_mode, self.weight_parallel_mode, dtype=dtype, bias=bias) self.attention_dropout = nn.Dropout(attention_probs_dropout_prob) self.dense = Linear3D(self.hidden_size, self.hidden_size, self.output_parallel_mode, self.weight_parallel_mode, dtype=dtype, bias=bias) self.dropout = nn.Dropout(hidden_dropout_prob) self.softmax = nn.Softmax(dim=-1) def groups_for_next_layer(self) -> Tuple[ParallelMode, ParallelMode]: return self.input_parallel_mode, self.weight_parallel_mode def _forward(self, hidden_states: Tensor) -> Tensor: query_key_value = self.query_key_value(hidden_states) new_qkv_shape = query_key_value.shape[:-1] + \ (self.num_attention_heads, 3 * self.attention_head_size) query_key_value = query_key_value.view(new_qkv_shape) query_key_value = query_key_value.permute((0, 2, 1, 3)) query_layer, key_layer, value_layer = torch.chunk(query_key_value, 3, dim=-1) attention_scores = torch.matmul(query_layer, key_layer.transpose(-1, -2)) attention_scores = attention_scores / math.sqrt( self.attention_head_size) attention_probs = self.softmax(attention_scores) with seed(ParallelMode.TENSOR): attention_probs = self.attention_dropout(attention_probs) context_layer = torch.matmul(attention_probs, value_layer) context_layer = context_layer.transpose(1, 2) new_context_layer_shape = context_layer.size()[:-2] + ( self.all_head_size, ) context_layer = context_layer.reshape(new_context_layer_shape) output = self.dense(context_layer) with seed(ParallelMode.TENSOR): output = self.dropout(output) return output def _checkpoint_forward(self, hidden_states: Tensor) -> Tensor: return checkpoint(self._forward, hidden_states) def forward(self, hidden_states: Tensor) -> Tensor: if self.checkpoint: return self._checkpoint_forward(hidden_states) else: return self._forward(hidden_states) @LAYERS.register_module class ViTMLP3D(nn.Module): """[summary] :param hidden_size: hidden size :type hidden_size: int :param mlp_ratio: hidden size of MLP divided by embedding dim :type mlp_ratio: int :param hidden_dropout_prob: dropout probability for hidden layers :type hidden_dropout_prob: float :param hidden_act: activation function for hidden layers :type hidden_act: str :param depth: the 3D parallelism depth :type depth: int :param input_parallel_mode: parallel mode of input tensor :type input_parallel_mode: ParallelMode :param weight_parallel_mode: parallel mode of weight :type weight_parallel_mode: ParallelMode :param dtype: dtype of parameters, defaults to None :type dtype: dtype, optional :param bias: whether to add bias, defaults to True :type bias: bool, optional """ def __init__(self, hidden_size: int, mlp_ratio: int, hidden_dropout_prob: float, hidden_act: str = 'gelu', dtype: dtype = None, bias: bool = True, checkpoint: bool = False): super().__init__() self.depth = get_depth_from_env() self.input_parallel_mode = ParallelMode.PARALLEL_3D_INPUT self.weight_parallel_mode = ParallelMode.PARALLEL_3D_WEIGHT self.output_parallel_mode = ParallelMode.PARALLEL_3D_OUTPUT self.hidden_size = hidden_size self.mlp_ratio = mlp_ratio self.checkpoint = checkpoint self.dense_1 = Linear3D(self.hidden_size, self.mlp_ratio * self.hidden_size, self.input_parallel_mode, self.weight_parallel_mode, dtype=dtype, bias=bias) self.activation_func = ACT2FN[hidden_act] self.dense_2 = Linear3D(self.mlp_ratio * self.hidden_size, self.hidden_size, self.output_parallel_mode, self.weight_parallel_mode, dtype=dtype, bias=bias) self.dropout = nn.Dropout(hidden_dropout_prob) def groups_for_next_layer(self) -> Tuple[ParallelMode, ParallelMode]: return self.input_parallel_mode, self.weight_parallel_mode def _forward(self, hidden_states: Tensor) -> Tensor: intermediate_output = self.dense_1(hidden_states) intermediate_output = self.activation_func(intermediate_output) output = self.dense_2(intermediate_output) with seed(ParallelMode.TENSOR): output = self.dropout(output) return output def _checkpoint_forward(self, hidden_states: Tensor) -> Tensor: return checkpoint(self._forward, hidden_states) def forward(self, hidden_states: Tensor) -> Tensor: if self.checkpoint: return self._checkpoint_forward(hidden_states) else: return self._forward(hidden_states) @LAYERS.register_module class ViTHead3D(nn.Module): """Output layer for 3D parallel Vision Transformer :param in_features: size of input tensor :type in_features: int :param num_classes: number of classes :type num_classes: int :param depth: the 3D parallelism depth :type depth: int :param input_parallel_mode: parallel mode of input tensor :type input_parallel_mode: ParallelMode :param weight_parallel_mode: parallel mode of weight :type weight_parallel_mode: ParallelMode :param dtype: dtype of parameters, defaults to None :type dtype: dtype, optional :param bias: whether to add bias, defaults to True :type bias: bool, optional """ def __init__(self, in_features: int, num_classes: int, dtype: dtype = None, bias: bool = True): super().__init__() self.depth = get_depth_from_env() self.input_parallel_mode = ParallelMode.PARALLEL_3D_INPUT self.weight_parallel_mode = ParallelMode.PARALLEL_3D_WEIGHT self.output_parallel_mode = ParallelMode.PARALLEL_3D_OUTPUT self.in_features = in_features self.num_classes = num_classes out_features = math.ceil(self.num_classes / (self.depth**2)) * (self.depth**2) self.num_classes_per_partition = divide(self.num_classes, self.depth) self.linear = Linear3D(self.in_features, out_features, self.input_parallel_mode, self.weight_parallel_mode, dtype=dtype, bias=bias) def groups_for_next_layer(self) -> Tuple[ParallelMode, ParallelMode]: return self.linear.groups_for_next_layer() def forward(self, x: Tensor) -> Tensor: # [b/q^2, s, h/q] --> [b/q^2, h/q] x = x[:, 0] # [b/q^2, h/q] --> [b/q^2, c/q] x = self.linear(x) return x[:, :self.num_classes_per_partition] def extra_repr(self): return 'in_features={}, num_classes={}'.format(self.in_features, self.num_classes)
3f87c89ac30e6067d6d60050f99e7ddc4417d01a
0435b6282cfc7cb27c5c5f2d7d2bcbf160ca8d7d
/Project_2/linear.py
7c9b6e7ce2bec81bd7b80dcd64aeeecc566bf256
[]
no_license
zx-joe/EPFL-Deep-Learning
39d97b1d02c2d4b5fdee471ffe41ce06328e2f9a
8d2b1aa94608e6cdc2dcc60fa6c5f4e3b7e69e36
refs/heads/master
2022-12-11T11:11:07.960851
2020-09-08T09:03:21
2020-09-08T09:03:21
190,944,017
0
0
null
null
null
null
UTF-8
Python
false
false
1,972
py
import torch import math from torch import Tensor, FloatTensor import matplotlib.pyplot as plt from module import Module class Linear (Module) : # one fully-connected layer def __init__(self, in_dim, out_dim, eps=1., method='xavier'): self.in_dim=in_dim self.out_dim=out_dim # define weight, bias and their gradient self.w=FloatTensor(out_dim, in_dim) self.dw=FloatTensor(out_dim, in_dim) self.b=FloatTensor(out_dim) self.db=FloatTensor(out_dim) # initialization: defaulted as Xavier if method=='zero': self.w=self.w.fill_(0) self.b=self.w.fill_(0) elif method=='normal': self.w=self.w.normal_(mean=0,std=eps) self.w=self.b.normal_(mean=0,std=eps) else: temp_std=1./math.sqrt((self.in_dim + self.out_dim)/2) self.w=self.w.normal_(mean=0,std=temp_std) self.b=self.b.normal_(mean=0,std=temp_std) # zero gradient intialization self.dw=self.dw.zero_() self.db=self.db.zero_() def forward( self ,x ): # y = w * x + b self.input=x.clone() self.output=self.w.matmul(self.input)+self.b #self.output=self.w @ self.input + self.b return self.output def backward( self , gradwrtoutput ): temp_wt=self.w.t() # dw = dL/dy * x temp_dw=gradwrtoutput.view(-1,1).mm(self.input.view(1,-1)) self.dw.add_(temp_dw) # db = dL/dy temp_db=gradwrtoutput.clone() self.db.add_(temp_db) # dx = w.T * dL/dy temp_dx=temp_wt.matmul(gradwrtoutput) return temp_dx def param(self ) : return [ self.w, self.dw , self.b, self.db] def zero_grad(self): self.dw.zero_() self.db.zero_()
cc29d5398e6d41ed19ef958c63351c898a368bb6
11cd362cdd78c2fc48042ed203614b201ac94aa6
/desktop/core/ext-py3/boto-2.49.0/boto/configservice/exceptions.py
58aa550f9cd9b165a42667b8d7135033fda20174
[ "CC-BY-3.0", "LicenseRef-scancode-other-copyleft", "LicenseRef-scancode-unknown-license-reference", "ZPL-2.0", "Unlicense", "LGPL-3.0-only", "CC0-1.0", "LicenseRef-scancode-other-permissive", "CNRI-Python", "LicenseRef-scancode-warranty-disclaimer", "GPL-2.0-or-later", "Python-2.0", "GPL-3.0-only", "CC-BY-4.0", "LicenseRef-scancode-jpython-1.1", "AFL-2.1", "JSON", "WTFPL", "MIT", "LicenseRef-scancode-generic-exception", "LicenseRef-scancode-jython", "GPL-3.0-or-later", "LicenseRef-scancode-python-cwi", "BSD-3-Clause", "LGPL-3.0-or-later", "Zlib", "LicenseRef-scancode-free-unknown", "Classpath-exception-2.0", "LicenseRef-scancode-proprietary-license", "GPL-1.0-or-later", "LGPL-2.0-or-later", "MPL-2.0", "ISC", "GPL-2.0-only", "ZPL-2.1", "BSL-1.0", "Apache-2.0", "LGPL-2.0-only", "LicenseRef-scancode-public-domain", "Xnet", "BSD-2-Clause" ]
permissive
cloudera/hue
b42343d0e03d2936b5a9a32f8ddb3e9c5c80c908
dccb9467675c67b9c3399fc76c5de6d31bfb8255
refs/heads/master
2023-08-31T06:49:25.724501
2023-08-28T20:45:00
2023-08-28T20:45:00
732,593
5,655
2,244
Apache-2.0
2023-09-14T03:05:41
2010-06-21T19:46:51
JavaScript
UTF-8
Python
false
false
2,528
py
# Copyright (c) 2015 Amazon.com, Inc. or its affiliates. All Rights Reserved # # Permission is hereby granted, free of charge, to any person obtaining a # copy of this software and associated documentation files (the # "Software"), to deal in the Software without restriction, including # without limitation the rights to use, copy, modify, merge, publish, dis- # tribute, sublicense, and/or sell copies of the Software, and to permit # persons to whom the Software is furnished to do so, subject to the fol- # lowing conditions: # # The above copyright notice and this permission notice shall be included # in all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS # OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABIL- # ITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT # SHALL THE AUTHOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, # WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # from boto.exception import BotoServerError class InvalidLimitException(BotoServerError): pass class NoSuchBucketException(BotoServerError): pass class InvalidSNSTopicARNException(BotoServerError): pass class ResourceNotDiscoveredException(BotoServerError): pass class MaxNumberOfDeliveryChannelsExceededException(BotoServerError): pass class LastDeliveryChannelDeleteFailedException(BotoServerError): pass class InsufficientDeliveryPolicyException(BotoServerError): pass class InvalidRoleException(BotoServerError): pass class InvalidTimeRangeException(BotoServerError): pass class NoSuchDeliveryChannelException(BotoServerError): pass class NoSuchConfigurationRecorderException(BotoServerError): pass class InvalidS3KeyPrefixException(BotoServerError): pass class InvalidDeliveryChannelNameException(BotoServerError): pass class NoRunningConfigurationRecorderException(BotoServerError): pass class ValidationException(BotoServerError): pass class NoAvailableConfigurationRecorderException(BotoServerError): pass class InvalidNextTokenException(BotoServerError): pass class InvalidConfigurationRecorderNameException(BotoServerError): pass class NoAvailableDeliveryChannelException(BotoServerError): pass class MaxNumberOfConfigurationRecordersExceededException(BotoServerError): pass
232ac4debdccb67b46d0441af9c4ba867812edf9
3539d0e3ddd7849a14876e95f0332428ec28ebf7
/Data Scientist Career Path/11. Foundations of Machine Learning Supervised Learning/4. Classification/1. KNN/7. classify.py
9009fe68fc2f9cd150796ea094d743cfcc322a16
[ "MIT" ]
permissive
DincerDogan/Data-Science-Learning-Path
ff146de2cf4ebc5fedfa9377babf959208dfe7e6
2ba0f104bc67ab6ef0f8fb869aa12aa02f5f1efb
refs/heads/main
2023-05-08T10:53:47.449974
2021-06-06T21:27:31
2021-06-06T21:27:31
null
0
0
null
null
null
null
UTF-8
Python
false
false
1,141
py
from movies import movie_dataset, movie_labels, normalize_point def distance(movie1, movie2): squared_difference = 0 for i in range(len(movie1)): squared_difference += (movie1[i] - movie2[i]) ** 2 final_distance = squared_difference ** 0.5 return final_distance def classify(unknown, dataset, labels, k): distances = [] #Looping through all points in the dataset for title in dataset: movie = dataset[title] distance_to_point = distance(movie, unknown) #Adding the distance and point associated with that distance distances.append([distance_to_point, title]) distances.sort() #Taking only the k closest points neighbors = distances[0:k] num_good = 0 num_bad = 0 for neighbor in neighbors: title = neighbor[1] if labels[title] == 0: num_bad += 1 elif labels[title] == 1: num_good += 1 if num_good > num_bad: return 1 else: return 0 print("Call Me By Your Name" in movie_dataset) my_movie = [3500000, 132, 2017] normalized_my_movie = normalize_point(my_movie) print(normalized_my_movie) print(classify(normalized_my_movie, movie_dataset, movie_labels, 5))
aa73120bf09c8c6af195213100bedac6b5e7e642
54934cfe32ce5aa5c2e718b0c5c2afa4b458fe75
/25ch/graph.py
617c1d6ad6e8616a8e8c0e6ea2ca8c171b8b289c
[]
no_license
mccarvik/intro_to_algorithms
46d0ecd20cc93445e0073eb0041d481a29322e82
c2d41706150d2bb477220b6f929510c4fc4ba30b
refs/heads/master
2021-04-12T12:25:14.083434
2019-11-09T05:26:28
2019-11-09T05:26:28
94,552,252
0
0
null
null
null
null
UTF-8
Python
false
false
3,475
py
from random import randint import pdb class Graph: """ Graph data structure. """ def __init__(self, fname = None, numVertices = None, numEdges = None, weightRange = None, directed = True): """ Generates a weighted graph. """ self.adjacent = {} self.weight = {} if fname == None: if any(arg == None for arg in (numVertices, numEdges, weightRange)): numVertices, numEdges, weightRange = map(int, input("numVertices, numEdges, weightRange: ").split()) self.randomGraph(numVertices, numEdges, weightRange, directed) else: self.loadGraph(fname, directed) def numVertices(self): """ Returns the number of vertices in the graph. """ return len(self.adjacent) def vertices(self): """ Returns the list of vertices in the graph. """ return range(self.numVertices()) def edges(self): """ Returns a generator containing the edges in the graph. """ return ((fromVertex,toVertex) for fromVertex in self.vertices() for toVertex in self.adjacent[fromVertex]) def addDirectedEdge(self, fromVertex, toVertex, weight): """ Inserts a weighted directed edge into the graph. """ self.adjacent.setdefault(fromVertex, set()).add(toVertex) self.weight[(fromVertex, toVertex)] = weight def addUndirectedEdge(self, fromVertex, toVertex, weight): """ Inserts a weighted undirected edge into the graph. """ self.addDirectedEdge(fromVertex, toVertex, weight) self.addDirectedEdge(toVertex, fromVertex, weight) def randomGraph(self, numVertices, numEdges, weightRange, directed): """ Generates a random graph. """ addEdge = self.addDirectedEdge if directed else self.addUndirectedEdge for vertex in range(numVertices): self.adjacent[vertex] = set() for edge in range(numEdges): fromVertex = toVertex = None while fromVertex == toVertex: fromVertex = randint(0, numVertices-1) toVertex = randint(0, numVertices-1) weight = randint(0, weightRange) addEdge(fromVertex, toVertex, weight) def loadGraph(self, fname, directed): """ Loads a graph from a file containing a list of edges of the form: fromVertex, toVertex, weight. """ addEdge = self.addDirectedEdge if directed else self.addUndirectedEdge with open(fname, 'r') as f: for vertex in range(int(f.readline())): self.adjacent[vertex] = set() for line in f.readlines(): fromVertex, toVertex, weight = map(int, line.split()) addEdge(fromVertex, toVertex, weight) def adjacentStr(self, fromVertex): """ Returns a string representing the neighborhood of the given vertex. """ return ", ".join(f"({toVertex}, {self.weight[(fromVertex, toVertex)]})" for toVertex in self.adjacent[fromVertex]) def __str__(self): """ Returns a string representing the graph. """ return "\n".join(f"{vertex}: {self.adjacentStr(vertex)}" for vertex in range(self.numVertices())) def __repr__(self): """ Represents the graph. """ return str(self)
01f71854fb9d777d10176477c617eccd675ac52c
a3f1e80179c23d9202d72b75dd37a49b44785f45
/api/client/test/test_api_catalog_upload_item.py
f3b1cbbfc6b43d84d22085c8e5fe119b0da41801
[ "Apache-2.0" ]
permissive
pvaneck/mlx
b1e82fae5ac8aaa1dddac23aaa38c46f6e6cfc27
6edaa0bd77787c56b737322a0c875ae30de6cd49
refs/heads/main
2023-05-14T06:08:38.404133
2021-05-04T01:41:11
2021-05-04T01:41:11
null
0
0
null
null
null
null
UTF-8
Python
false
false
1,515
py
# Copyright 2021 IBM Corporation # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # coding: utf-8 """ MLX API MLX API Extension for Kubeflow Pipelines # noqa: E501 OpenAPI spec version: 0.1.25-related-assets Generated by: https://github.com/swagger-api/swagger-codegen.git """ from __future__ import absolute_import import unittest import swagger_client from swagger_client.models.api_catalog_upload_item import ApiCatalogUploadItem # noqa: E501 from swagger_client.rest import ApiException class TestApiCatalogUploadItem(unittest.TestCase): """ApiCatalogUploadItem unit test stubs""" def setUp(self): pass def tearDown(self): pass def testApiCatalogUploadItem(self): """Test ApiCatalogUploadItem""" # FIXME: construct object with mandatory attributes with example values # model = swagger_client.models.api_catalog_upload_item.ApiCatalogUploadItem() # noqa: E501 pass if __name__ == '__main__': unittest.main()
b75c4770199293de8d847af50386a6f6211d23b6
26c0f80688f75a188097a232c229a73c8e7cc6ed
/user/migrations/0031_alter_profile_zipcode.py
26fb0ef6fbd873151e7d3d517d0ac2cbcf69cd3b
[]
no_license
creep1g/DjangoWebstore
8207d7ea53c478fb7e5745e1c6ae6699102b5df5
bd27340b86bf2289b8c14216462d932ccdf4986d
refs/heads/main
2023-05-06T09:50:04.846489
2021-05-28T14:40:40
2021-05-28T14:40:40
371,730,158
0
0
null
null
null
null
UTF-8
Python
false
false
406
py
# Generated by Django 3.2 on 2021-05-12 15:52 from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('user', '0030_merge_0024_alter_profile_card_cvc_0029_profile_city'), ] operations = [ migrations.AlterField( model_name='profile', name='zipcode', field=models.IntegerField(), ), ]
d5b1789b3dd0c839b86dd726c2e71effbdd484ab
371277a2586e85337cd50a0e2889a962b89fbca0
/Semana 5/Subida de Archivos Flask - Portfolio/models/conocimiento.py
e4e67176849e22c32a4fec64a7569de0c8b0abe9
[]
no_license
Jesuscueva/Virtual-Back-5
eca62561f19a3028880e3a68868ff4f1c271d579
2f4557a6cdae91c9fd4f22103b5bdd473845d5a4
refs/heads/main
2023-04-02T13:47:58.161874
2021-04-10T02:09:01
2021-04-10T02:09:01
null
0
0
null
null
null
null
UTF-8
Python
false
false
2,142
py
from config.base_datos import bd from sqlalchemy import Column, types from sqlalchemy.schema import ForeignKey class ConocimientoModel(bd.Model): __tablename__ = 't_conocimiento' conocimientoId = Column( name='conocimiento_id', type_=types.Integer, primary_key=True, unique=True, autoincrement=True, nullable=False ) conocimientoTitulo = Column( name='conocimiento_titulo', type_=types.String(45), nullable=False ) conocimientoPuntuacion = Column( name='conocimiento_puntuacion', type_=types.DECIMAL(2,1), nullable=False ) conocimientoImagenTN = Column( name='conocimiento_imagen_thumbnail', type_=types.TEXT, nullable=False ) conocimientoImagenLarge = Column( name='conocimiento_imagen_large', type_=types.TEXT, nullable=False ) conocimientoDescripcion = Column( name='conocimiento_descripcion', type_=types.String(200), nullable=False ) # FK categoria = Column( ForeignKey('t_categoria.cat_id'), name='cat_id', type_=types.Integer, nullable=False ) def __init__(self, titulo, puntuacion, imagentn, imagenl, descripcion, categoria): self.conocimientoTitulo = titulo self.conocimientoPuntuacion = puntuacion self.conocimientoImagenTN = imagentn self.conocimientoImagenLarge = imagenl, self.conocimientoDescripcion = descripcion self.categoria = categoria def save(self): bd.session.add(self) bd.session.commit() def json(self): return { 'conocimiento_id': self.conocimientoId, 'conocimiento_titulo': self.conocimientoTitulo, 'conocimiento_puntuacion': str(self.conocimientoPuntuacion), 'conocimiento_imagen_thumbnail': self.conocimientoImagenTN, 'conocimiento_imagen_large': self.conocimientoImagenLarge, 'conocimiento_descripcion': self.conocimientoDescripcion, 'cat_id': self.categoria, }
6648dc83958d98e09181be589c965e5d5083dbc0
e2604baf3baddbbebf8597c7a3a76bac988efb41
/venv/bin/wsdump.py
6f6c90fbda8537d5bc52a71ac71732e9a1879bcb
[]
no_license
Surajgupta5/Django-WIth-Docker
2fe1037451c113feba72c50d5425d4461c2f40be
ca879e43af043dccba6b325f89ac3c6f495dbe56
refs/heads/master
2022-07-19T18:55:48.243626
2020-05-11T05:53:52
2020-05-11T05:53:52
262,951,414
0
0
null
null
null
null
UTF-8
Python
false
false
6,437
py
#!/home/workspace/project2/venv/bin/python import argparse import code import sys import threading import time import ssl import gzip import zlib import six from six.moves.urllib.parse import urlparse import websocket try: import readline except ImportError: pass def get_encoding(): encoding = getattr(sys.stdin, "encoding", "") if not encoding: return "utf-8" else: return encoding.lower() OPCODE_DATA = (websocket.ABNF.OPCODE_TEXT, websocket.ABNF.OPCODE_BINARY) ENCODING = get_encoding() class VAction(argparse.Action): def __call__(self, parser, args, values, option_string=None): if values is None: values = "1" try: values = int(values) except ValueError: values = values.count("v") + 1 setattr(args, self.dest, values) def parse_args(): parser = argparse.ArgumentParser(description="WebSocket Simple Dump Tool") parser.add_argument("url", metavar="ws_url", help="websocket url. ex. ws://echo.websocket.org/") parser.add_argument("-p", "--proxy", help="proxy url. ex. http://127.0.0.1:8080") parser.add_argument("-v", "--verbose", default=0, nargs='?', action=VAction, dest="verbose", help="set verbose mode. If set to 1, show opcode. " "If set to 2, enable to trace websocket module") parser.add_argument("-n", "--nocert", action='store_true', help="Ignore invalid SSL cert") parser.add_argument("-r", "--raw", action="store_true", help="raw output") parser.add_argument("-s", "--subprotocols", nargs='*', help="Set subprotocols") parser.add_argument("-o", "--origin", help="Set origin") parser.add_argument("--eof-wait", default=0, type=int, help="wait time(second) after 'EOF' received.") parser.add_argument("-t", "--text", help="Send initial text") parser.add_argument("--timings", action="store_true", help="Print timings in seconds") parser.add_argument("--headers", help="Set custom headers. Use ',' as separator") return parser.parse_args() class RawInput: def raw_input(self, prompt): if six.PY3: line = input(prompt) else: line = raw_input(prompt) if ENCODING and ENCODING != "utf-8" and not isinstance(line, six.text_type): line = line.decode(ENCODING).encode("utf-8") elif isinstance(line, six.text_type): line = line.encode("utf-8") return line class InteractiveConsole(RawInput, code.InteractiveConsole): def write(self, data): sys.stdout.write("\033[2K\033[E") # sys.stdout.write("\n") sys.stdout.write("\033[34m< " + data + "\033[39m") sys.stdout.write("\n> ") sys.stdout.flush() def read(self): return self.raw_input("> ") class NonInteractive(RawInput): def write(self, data): sys.stdout.write(data) sys.stdout.write("\n") sys.stdout.flush() def read(self): return self.raw_input("") def main(): start_time = time.time() args = parse_args() if args.verbose > 1: websocket.enableTrace(True) options = {} if args.proxy: p = urlparse(args.proxy) options["http_proxy_host"] = p.hostname options["http_proxy_port"] = p.port if args.origin: options["origin"] = args.origin if args.subprotocols: options["subprotocols"] = args.subprotocols opts = {} if args.nocert: opts = {"cert_reqs": ssl.CERT_NONE, "check_hostname": False} if args.headers: options['header'] = list(map(str.strip, args.headers.split(','))) ws = websocket.create_connection(args.url, sslopt=opts, **options) if args.raw: console = NonInteractive() else: console = InteractiveConsole() print("Press Ctrl+C to quit") def recv(): try: frame = ws.recv_frame() except websocket.WebSocketException: return websocket.ABNF.OPCODE_CLOSE, None if not frame: raise websocket.WebSocketException("Not a valid frame %s" % frame) elif frame.opcode in OPCODE_DATA: return frame.opcode, frame.data elif frame.opcode == websocket.ABNF.OPCODE_CLOSE: ws.send_close() return frame.opcode, None elif frame.opcode == websocket.ABNF.OPCODE_PING: ws.pong(frame.data) return frame.opcode, frame.data return frame.opcode, frame.data def recv_ws(): while True: opcode, data = recv() msg = None if six.PY3 and opcode == websocket.ABNF.OPCODE_TEXT and isinstance(data, bytes): data = str(data, "utf-8") if isinstance(data, bytes) and len(data)>2 and data[:2] == b'\037\213': # gzip magick try: data = "[gzip] " + str(gzip.decompress(data), "utf-8") except: pass elif isinstance(data, bytes): try: data = "[zlib] " + str(zlib.decompress(data, -zlib.MAX_WBITS), "utf-8") except: pass if isinstance(data, bytes): data = repr(data) if args.verbose: msg = "%s: %s" % (websocket.ABNF.OPCODE_MAP.get(opcode), data) else: msg = data if msg is not None: if args.timings: console.write(str(time.time() - start_time) + ": " + msg) else: console.write(msg) if opcode == websocket.ABNF.OPCODE_CLOSE: break thread = threading.Thread(target=recv_ws) thread.daemon = True thread.start() if args.text: ws.send(args.text) while True: try: message = console.read() ws.send(message) except KeyboardInterrupt: return except EOFError: time.sleep(args.eof_wait) return if __name__ == "__main__": try: main() except Exception as e: print(e)
7a5019f032d3564ba4d7d1adff38dcfc7b6dad35
d109b64bfa8c80a6ec7d647beeadf9fe1c667fac
/class1101/LED11.py
ef6615d3a9cc7c3e69773a9d62dd8e9899f26d39
[]
no_license
jumbokh/micropython_class
d34dd0a2be39d421d3bbf31dbb7bfd39b5f6ac6f
950be81582dba970e9c982e2e06fa21d9e9a0fdd
refs/heads/master
2022-10-10T22:27:02.759185
2022-10-01T14:44:31
2022-10-01T14:44:31
173,898,623
4
3
null
2020-03-31T09:57:23
2019-03-05T07:40:38
Jupyter Notebook
UTF-8
Python
false
false
160
py
from machine import Pin import utime LED = None LED = Pin(11, Pin.OUT) while True: LED.value(0) utime.sleep(1) LED.value(1) utime.sleep(1)
225cf46464767cc87e3de5acdd111b3d2d50c482
163bbb4e0920dedd5941e3edfb2d8706ba75627d
/Code/CodeRecords/2594/60640/267498.py
06ef98d3317b58f2f24605f47cf036c4eaa392d4
[]
no_license
AdamZhouSE/pythonHomework
a25c120b03a158d60aaa9fdc5fb203b1bb377a19
ffc5606817a666aa6241cfab27364326f5c066ff
refs/heads/master
2022-11-24T08:05:22.122011
2020-07-28T16:21:24
2020-07-28T16:21:24
259,576,640
2
1
null
null
null
null
UTF-8
Python
false
false
752
py
""" O(N) """ t = int(input()) for i in range(t): inp = list(input()) set_inp = list(set(inp)) if len(set_inp) == len(inp): print(-1) else: MAX_CHAR = 256 # 记录每个字符的位置,-1表示从未出现过 firstIndex = [-1 for x in range(MAX_CHAR)] res = 0 for j in range(len(inp)): # 字符的位置 start = firstIndex[ord(inp[j])] # 字符第一次出现,更新其位置 if start == -1: firstIndex[ord(inp[j])] = j # 字符再次出现,此时的位置是j,减掉原来存储的位置start,获取中间字符长度 else: res = max(res, abs(j-start-1)) print(res)
0ba65146cf6659db44dd47b906d4f6f8ea99fa48
6e800b3513537622df14bb598abe9c051116106c
/51-100/088MergeEasy.py
14ead1c1a42033d242f68373f994af50d34f3ddf
[]
no_license
Huxhh/LeetCodePy
fd72f03193d1f0b58c44bffc46a9a59ba9714215
6a99e84c5742ca68012b14da362f6c3255e10b21
refs/heads/master
2023-06-09T09:23:54.209025
2023-05-31T16:29:03
2023-05-31T16:29:03
148,866,001
0
0
null
null
null
null
UTF-8
Python
false
false
1,084
py
# coding=utf-8 def merge(nums1, m, nums2, n): index = m + n - 1 x = m - 1 y = n - 1 while True: if x < 0 and y < 0: break if x >= 0 and y >= 0: if nums1[x] >= nums2[y]: nums1[index] = nums1[x] x -= 1 else: nums1[index] = nums2[y] y -= 1 index -= 1 elif x >= 0 > y: nums1[index] = nums1[x] x -= 1 index -= 1 elif x < 0 <= y: nums1[index] = nums2[y] y -= 1 index -= 1 return nums1 def merge2(nums1, m, nums2, n): index = m + n - 1 while m > 0 and n > 0: if nums1[m-1] > nums2[n-1]: nums1[index] = nums1[m-1] m -= 1 else: nums1[index] = nums2[n-1] n -= 1 index -= 1 if n > 0: nums1[:n] = nums2[:n] return nums1 if __name__ == '__main__': nums1 = [1, 2, 3, 0, 0, 0] m = 3 nums2 = [2, 5, 6] n = 3 print(merge2(nums1, m, nums2, n))
c6f80b6fcff9d820146a6c798e6abee898629364
4fb5eb0a9a24fa5c112a4ebc854ee2604b04adda
/python/oanda/models/calculated_trade_state.py
996c9bbd4d0e98b92e6550ccd12dbbf12aedeb73
[ "MIT" ]
permissive
KoenBal/OANDA_V20_Client
ed4c182076db62ecf7a216c3e3246ae682300e94
e67b9dbaddff6ed23e355d3ce7f9c9972799c702
refs/heads/master
2020-03-27T20:42:25.777471
2019-12-02T15:44:06
2019-12-02T15:44:06
147,088,130
1
0
null
null
null
null
UTF-8
Python
false
false
4,967
py
# coding: utf-8 """ OANDA v20 REST API The full OANDA v20 REST API Specification. This specification defines how to interact with v20 Accounts, Trades, Orders, Pricing and more. To authenticate use the string 'Bearer ' followed by the token which can be obtained at https://www.oanda.com/demo-account/tpa/personal_token # noqa: E501 OpenAPI spec version: 3.0.23 Contact: [email protected] Generated by: https://github.com/swagger-api/swagger-codegen.git """ import pprint import re # noqa: F401 import six class CalculatedTradeState(object): """NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. """ """ Attributes: swagger_types (dict): The key is attribute name and the value is attribute type. attribute_map (dict): The key is attribute name and the value is json key in definition. """ swagger_types = { 'id': 'str', 'unrealized_pl': 'str', 'margin_used': 'str' } attribute_map = { 'id': 'id', 'unrealized_pl': 'unrealizedPL', 'margin_used': 'marginUsed' } def __init__(self, id=None, unrealized_pl=None, margin_used=None): # noqa: E501 """CalculatedTradeState - a model defined in Swagger""" # noqa: E501 self._id = None self._unrealized_pl = None self._margin_used = None self.discriminator = None if id is not None: self.id = id if unrealized_pl is not None: self.unrealized_pl = unrealized_pl if margin_used is not None: self.margin_used = margin_used @property def id(self): """Gets the id of this CalculatedTradeState. # noqa: E501 The Trade's ID. # noqa: E501 :return: The id of this CalculatedTradeState. # noqa: E501 :rtype: str """ return self._id @id.setter def id(self, id): """Sets the id of this CalculatedTradeState. The Trade's ID. # noqa: E501 :param id: The id of this CalculatedTradeState. # noqa: E501 :type: str """ self._id = id @property def unrealized_pl(self): """Gets the unrealized_pl of this CalculatedTradeState. # noqa: E501 The Trade's unrealized profit/loss. # noqa: E501 :return: The unrealized_pl of this CalculatedTradeState. # noqa: E501 :rtype: str """ return self._unrealized_pl @unrealized_pl.setter def unrealized_pl(self, unrealized_pl): """Sets the unrealized_pl of this CalculatedTradeState. The Trade's unrealized profit/loss. # noqa: E501 :param unrealized_pl: The unrealized_pl of this CalculatedTradeState. # noqa: E501 :type: str """ self._unrealized_pl = unrealized_pl @property def margin_used(self): """Gets the margin_used of this CalculatedTradeState. # noqa: E501 Margin currently used by the Trade. # noqa: E501 :return: The margin_used of this CalculatedTradeState. # noqa: E501 :rtype: str """ return self._margin_used @margin_used.setter def margin_used(self, margin_used): """Sets the margin_used of this CalculatedTradeState. Margin currently used by the Trade. # noqa: E501 :param margin_used: The margin_used of this CalculatedTradeState. # noqa: E501 :type: str """ self._margin_used = margin_used def to_dict(self): """Returns the model properties as a dict""" result = {} for attr, _ in six.iteritems(self.swagger_types): value = getattr(self, attr) if isinstance(value, list): result[attr] = list(map( lambda x: x.to_dict() if hasattr(x, "to_dict") else x, value )) elif hasattr(value, "to_dict"): result[attr] = value.to_dict() elif isinstance(value, dict): result[attr] = dict(map( lambda item: (item[0], item[1].to_dict()) if hasattr(item[1], "to_dict") else item, value.items() )) else: result[attr] = value return result def to_str(self): """Returns the string representation of the model""" return pprint.pformat(self.to_dict()) def __repr__(self): """For `print` and `pprint`""" return self.to_str() def __eq__(self, other): """Returns true if both objects are equal""" if not isinstance(other, CalculatedTradeState): return False return self.__dict__ == other.__dict__ def __ne__(self, other): """Returns true if both objects are not equal""" return not self == other
018ee3bc438ee98a5db180f60d32d8fc7b89183b
3f9ce8ee23132e3c240fa86b4467888efaea00dc
/media/base.py
366c209575111ddc6398c50b8d62c45247976401
[]
no_license
ShawnYi5/logic_service
700263a027c7639dc4a396a6fd118499160c5db5
868329cbdb94718316db6a8b633f623183dc55b5
refs/heads/master
2021-06-17T13:33:45.314931
2019-08-22T02:59:59
2019-08-22T02:59:59
203,698,877
0
0
null
2021-04-30T20:53:13
2019-08-22T02:25:03
Python
UTF-8
Python
false
false
33,770
py
import threading import xlogging import os import datetime import json import copy import uuid import shutil import sys import collections import time import errno try: from . import tape_librarian from .models import MediaTaskRecord except Exception: import tape_librarian from models import MediaTaskRecord status = [ (0, 'successful'), (-1, 'error'), # 表示出错,见错误信息。 (-2, 'need waite'), # 表示media_rw_obj对象不足,需要释放之前的所有media_rw_obj才能用。 (-3, 'busy'), # 表示设备繁忙。 ] class MBaseException(Exception): def __init__(self, msg, debug, code): self.msg = msg self.debug = debug self.code = code def __str__(self): return '{}:{} {} {}'.format(self.__class__.__name__, self.msg, self.debug, self.code) _logger = xlogging.getLogger('tape_r') class MediaTarget(object): def __init__(self, media_uuid, media_data): self.media_uuid = copy.copy(media_uuid) # 要跟子类共用。 self.media_data = copy.copy(media_data) # 要跟子类共用。 self.align_size = 64 * 1024 self.__lock = threading.RLock() # 不能重写。 self.writetask = False self.__task_info = None # 不能重写。 self.__taskext = dict() # self.__handles = list() # 不能重写。 self.__file_uuids_list = list() # 不能重写。 self.__uuid_used_check = dict() self.__task_size = 0 # 不能重写。 self.__filecount = 0 self.__successful = False self.__task_recordInfo = None self.__readcache = None self.__readcache_len = 0 self.__write_error = 0 def clean_task(self): self.writetask = False self.__task_info = None # 不能重写。 self.__taskext = dict() # self.__handles = list() # 不能重写。 self.__file_uuids_list = list() # 不能重写。 self.__uuid_used_check = dict() self.__task_size = 0 # 不能重写。 self.__filecount = 0 self.__successful = False self.__task_recordInfo = None self.__readcache = None self.__readcache_len = 0 self.__write_error = 0 def media_start_task(self, task_info): pass def media_finish_task(self, is_successful): pass def media_get_write_handle(self, file_uuid): pass def media_get_read_handle(self, file_name_uuid): pass def media_write(self, fd, data): pass def media_read(self, fd, size): pass def media_close(self, fd): pass def start_task(self, task_info): """ :param task_info: 包含此次任务需要写入的大小 {'size':1111, 'task_uuid':'', 'task_date':''} :return: """ with self.__lock: if self.__task_info is None: _logger.info('LocalMediaTarget start task, task info:{}'.format(task_info)) self.clean_task() if True: # try: self.media_start_task(task_info) self.__task_info = task_info self.writetask = True self.new_task_record() # except Exception as e: # raise MBaseException('任务开始失败', 'start task fail, {}'.format(e), 301) # else: return 0, '' else: return -1, task_info # 正在任务 def get_write_handle(self, file_uuid): with self.__lock: if self.__uuid_used_check.get(file_uuid, None) is not None: raise MBaseException('文件重复添加', 'file has in handles', 300) if True: # try: fd, size = self.media_get_write_handle(file_uuid) if -1 == fd: return fd, size self.__write_error = 0 self.__uuid_used_check[file_uuid] = fd fdIndex = self.__filecount self.__filecount = self.__filecount + 1 self.__handles.append(fd) self.__file_uuids_list.append(file_uuid) if self.__handles[fdIndex] != fd: raise MBaseException('internal error 1', 'internal error 1', 302) if self.__file_uuids_list[fdIndex] != file_uuid: raise MBaseException('internal error 2', 'internal error 2', 303) # except Exception as e: # raise MBaseException('获取写句柄失败', 'get write fail, {}'.format(e), 304) return fdIndex, size def get_read_handle(self, file_info): with self.__lock: if self.__task_info is None: _logger.info('LocalMediaTarget get_read_handle:{}'.format(file_info)) self.__task_info = file_info self.writetask = False return self.media_get_read_handle(file_info), '' else: return -1, self.__task_info def write(self, fdIndex, data): if fdIndex < 0 or fdIndex >= len(self.__handles): _logger.info('media_write error fdIndex:{},size:{}'.format(fdIndex, len(data))) self.__write_error = -1 return -1, 'error fd' self.__task_size = self.__task_size + len(data) _write_err, info = self.media_write(self.__handles[fdIndex], data) if _write_err != 0: self.__write_error = -1 return _write_err, info def read(self, fd, size): # _logger.info('MediaTarget read(fd:{},size:{})'.format(fd, size)) if size <= self.__readcache_len: # in cache retbs = self.__readcache[0:size] self.__readcache = self.__readcache[size:self.__readcache_len] self.__readcache_len -= size _logger.info('MediaTarget read(fd:{},size:{}) return {}'.format(fd, size, len(retbs))) return 0, retbs need_size = size - self.__readcache_len readsize = (need_size + self.align_size - 1) // self.align_size * self.align_size ret, newbs = self.media_read(fd, readsize) if 0 != ret: return ret, newbs if self.__readcache_len != 0: # 之前有数据。合并使用。 retbs = self.__readcache + newbs[:need_size] self.__readcache_len = readsize - need_size else: # 全新的数据。 retbs = newbs[:size] self.__readcache_len = readsize - size if self.__readcache_len != 0: # 还有数据 self.__readcache = newbs[readsize - self.__readcache_len:] # 因为磁带库只能块对其读。 # _logger.info('MediaTarget read(fd:{},size:{}) return {}'.format(fd, size, len(retbs))) return 0, retbs def close(self, fdIndex): _logger.info('start close fdIndex:{}'.format(fdIndex)) if self.writetask: if fdIndex < 0: return file_uuid = self.__file_uuids_list[fdIndex] close_info = self.media_close(self.__handles[fdIndex]) if self.__write_error == 0: # 只有成功,才会记录。 _logger.info('new fdIndex:{}'.format(fdIndex)) close_info['fdIndex'] = fdIndex self.__taskext[file_uuid] = close_info # self.update_current_task_ext() # 多增加一个文件,是没有必要写数据库记录的。只有在最后写了成功标记后,才有必要update else: _logger.info('skip fdIndex:{}'.format(fdIndex)) else: try: self.media_close(fdIndex) finally: self.__task_info = None self.clean_task() _logger.info('end close fdIndex:{}'.format(fdIndex)) def finish_task(self, is_successful): if not self.writetask: return with self.__lock: self.__successful = is_successful try: self.update_current_task_ext() except Exception as e: _logger.error("update_current_task_ext error:{}".format(e)) self.__task_recordInfo = None try: self.media_finish_task(is_successful) except Exception as e: _logger.error("media_finish_task error:{}".format(e)) _task_ext = self.__taskext self.clean_task() return _task_ext def new_task_record(self): self.__task_recordInfo = MediaTaskRecord.objects.create( production_date=self.__task_info['task_date'], # 产生日期,统一由上层传入。 media_uuid=self.media_uuid, # 媒体库的uuid task_ext_inf=json.dumps(self.__taskext), # task扩展信息 occupy_size=0, task_uuid=self.__task_info['task_uuid']) return def update_current_task_ext(self): if not self.writetask or self.__task_recordInfo == None: return self.__task_recordInfo.task_ext_inf = json.dumps(self.__taskext) self.__task_recordInfo.file_count = self.__filecount self.__task_recordInfo.occupy_size = self.__task_size self.__task_recordInfo.successful = self.__successful self.__task_recordInfo.save() return def get_last_success_task(self): try: return MediaTaskRecord.objects.filter( MediaTaskRecord.media_uuid == self.media_uuid, MediaTaskRecord.successful == True ).order_by(MediaTaskRecord.id)[-1] except IndexError as e: return None def get_first_valid_task(self): try: return MediaTaskRecord.objects.filter( MediaTaskRecord.media_uuid == self.media_uuid, MediaTaskRecord.successful == True, MediaTaskRecord.overwritedata == False ).order_by(MediaTaskRecord.id)[0] except IndexError as e: return None def update_all_task_life_cycle(self, crt_date): # 跟新所有任务,该打删除标记的打删除标记。crt_date是当前的时间。 return class Tape_Group_Class(object): def __init__(self, tapes_list): self.__tapesOrdered = collections.OrderedDict() _tapes = tapes_list _tapedict = dict() for _k, _v in _tapes.items(): _crt_id = int(_k) _tapedict[_crt_id] = _v _list_key = sorted(_tapedict) for _key in _list_key: self.__tapesOrdered[_key] = _tapedict[_key] def get_tape_count(self): return len(self.__tapesOrdered) def get_next_volume(self, current_volumeID): if 0 == len(self.__tapesOrdered): return -1, None _bFoundOut = False for k, v in self.__tapesOrdered.items(): if _bFoundOut: return copy.copy(k), copy.copy(v) if current_volumeID == k: _bFoundOut = True continue for k, v in self.__tapesOrdered.items(): return copy.copy(k), copy.copy(v) class TapeMediaHardwareAPI(object): def __init__(self, media_data): self.media_data = media_data # 下面是设备相关的。 self.__tape_devname = None self.__tape_devobj = None self.__mc_devname = None self.__mc_devobj = None self.__mc_drvID = -1 self.__hardware_status = False def init_hardware_device(self): if self.__hardware_status: return self.__hardware_status = True mc_tape = tape_librarian.mc_and_tape_mgr() _tape_drv_sn = self.media_data['driver'] self.__tape_devname = mc_tape.get_tape_devicename(_tape_drv_sn) if self.__tape_devname == None: raise MBaseException("不能找到带库驱动器{}".format(_tape_drv_sn), "can not found tape drive {}".format(_tape_drv_sn), sys._getframe().f_lineno) _mc_link = self.media_data['link'] self.__mc_devname, self.__mc_drvID = mc_tape.get_mc_devicename(_tape_drv_sn, _mc_link) if self.__mc_devname == None: raise MBaseException("不能找到机械臂对应的驱动器{}".format(_tape_drv_sn), "can not found Medium Changer device{}".format(_tape_drv_sn), sys._getframe().f_lineno) self.__tape_devobj = tape_librarian.tape_dev_mgr(self.__tape_devname) self.__tape_devobj.update_tape_status() self.__mc_devobj = tape_librarian.Medium_Changer_devmgr(self.__mc_devname) self.__mc_devobj.update_Medium_Changer() def get_tapename(self): return self.__tape_devname[0] def get_mcname(self): return self.__mc_devname def try_check_drive_status(self): for _ in range(30): try: self.__tape_devobj.update_tape_status() if self.__tape_devobj.Ready == tape_librarian.const_yes and self.__tape_devobj.online: return else: _str = "tapeDev{} ready:{} online:{}".format( self.__tape_devname, self.__tape_devobj.Ready, self.__tape_devobj.online) _logger.info(_str) except: pass time.sleep(1) def try_rewind_and_set_block_size(self, _align_size): for _ in range(2): try: self.__tape_devobj.update_tape_status() if self.__tape_devobj.Ready == tape_librarian.const_yes and self.__tape_devobj.online: self.__tape_devobj.set_blksize(_align_size) return else: _str = "tapeDev{} ready:{} online:{}".format( self.__tape_devname, self.__tape_devobj.Ready, self.__tape_devobj.online) _logger.info(_str) self.__tape_devobj.set_blksize(_align_size) except Exception as e: str = "try_rewind_and_set_block_size error:{}".format(e) _logger.error(str) try: self.__tape_devobj.tape_rewind() except Exception as e: str = "tape_rewind error:{}".format(e) _logger.error(str) time.sleep(1) def load_Volume(self, _crt_VolumeTag, _align_size): _logger.info("load_Volume({})".format(_crt_VolumeTag)) _load_status, _load_new_volume = self.__mc_devobj.load_Volume(_crt_VolumeTag, self.__mc_drvID) _logger.info("load_Volume return {}".format(_load_new_volume)) # 这里可能有的坑: # 1、磁带可能不能兼容这个驱动器,任何操作都可能被卡住。 # 2、磁带没有倒带前,不能用,直接报错。 # 3、磁带可能busy,需要等待一会。 # 所以,处理流程如下: # 1、如果 noready, ,等待30秒, # 2、segblksize,如果失败,直接倒带。重试3次。 self.try_check_drive_status() self.try_rewind_and_set_block_size(_align_size) if _load_new_volume: _logger.info("new Volume rewind") try: self.__tape_devobj.tape_rewind() self.try_rewind_and_set_block_size(_align_size) except Exception as e: _logger.error("tape({}) rewind error:{}".format(self.__tape_devname, e)) return def seek(self, _crt_FileNO): return self.__tape_devobj.seek(_crt_FileNO) class TapeSpaceMgr(object): def __init__(self): self.__all = list() pass def append_free_space(self, _vol_ID, _vol_Tag, _file_ID): _one = dict() _one[r'volumeid'] = copy.copy(_vol_ID) _one[r'volumetag'] = copy.copy(_vol_Tag) _one[r'volfileid'] = copy.copy(_file_ID) self.__all.append(_one) def use_new_volume(self): _logger.info("use_new_volume({})") self.__all.pop(0) def malloc_free_space(self): if 0 == len(self.__all): return None _first_space = copy.copy(self.__all[0]) self.__all[0]['volfileid'] = self.__all[0]['volfileid'] + 1 return _first_space def get_free_bytes(self): if 0 == len(self.__all): return 0 # 计算空间: return 1024 * 1024 * 1024 * 1024 * 1024 # http://172.16.1.11/AIO/project_main/issues/4087 class TapeMediaTarget(MediaTarget): def __init__(self, media_uuid, media_data): super(TapeMediaTarget, self).__init__(media_uuid, media_data) self.const_max_id = 999999999 # 1G一个文件,最大就是999p。 self.const_first_fileNO_per_vol = 0 self.__crt_VolumeID = -1 self.__crt_VolumeTag = None self.__crt_FileNO = -1 self.__task_info = None self.__fd = 0 self.__tape_space_mgr = TapeSpaceMgr() self.__tape_drive_locker = None self.__max_size_per_write = 2 * 1024 * 1024 self.__tapeGroupMgrObj = Tape_Group_Class(self.media_data['tapas']) self.__hwDev = TapeMediaHardwareAPI(self.media_data) def __clear_tape_task(self): # 跟任务相关,要重置的。 self.__crt_VolumeID = -1 self.__crt_VolumeTag = None self.__crt_FileNO = -1 self.__task_info = None self.__fd = 0 self.__tape_space_mgr = TapeSpaceMgr() if self.__tape_drive_locker != None: _temp_locker = self.__tape_drive_locker self.__tape_drive_locker = None _temp_locker = None # 最后一个这样来释放?应该没问题吧。 def get_last_success_valid_file(self): _lastTask = self.get_last_success_task() if None == _lastTask: return -1, None, -1 _logger.info("get_last_success_task _task_ext_inf({})".format(_lastTask.task_ext_inf)) _task_ext_inf = json.loads(_lastTask.task_ext_inf) _maxFileID = -1 _lastFileExt = None for _k, _v in _task_ext_inf.items(): if _v['fdIndex'] > _maxFileID: _maxFileID = _v['fdIndex'] _lastFileExt = _v return _lastFileExt['volumeid'], _lastFileExt['volumetag'], _lastFileExt['volfileid'] def get_fist_valid_file(self): _firstTask = self.get_first_valid_task() if None == _firstTask: return -1, None, -1 _logger.info("get_fist_valid_file _task_ext_inf({})".format(_firstTask.task_ext_inf)) _task_ext_inf = json.loads(_firstTask.task_ext_inf) _minFileID = self.const_max_id _firstFileExt = None for _k, _v in _task_ext_inf.items(): if _v['fdIndex'] < _minFileID: _minFileID = _v['fdIndex'] _firstFileExt = _v return _firstFileExt['volumeid'], _firstFileExt['volumetag'], _firstFileExt['volfileid'] # 初始化空间。 def init_task_space(self): # 查第一块可用的空间。从上一个成功的文件 + 1 _last_VolumeID, _last_VolumeTag, _last_FileNO = self.get_last_success_valid_file() # 从last + 1 到, first的 Volume. if None == _last_VolumeTag: # 从第一块开始用。 _start_free_VolumeID, _start_free_VolumeTag = self.__tapeGroupMgrObj.get_next_volume(self.const_max_id) if _start_free_VolumeTag is None: # 没有磁带? raise MBaseException("无磁带可用!", "no tape", sys._getframe().f_lineno) _start_free_fileNO = self.const_first_fileNO_per_vol else: _start_free_VolumeID = _last_VolumeID _start_free_VolumeTag = _last_VolumeTag _start_free_fileNO = _last_FileNO + 1 # 查最后一个用的磁带。 _end_VolumeID, _end_VolumeTag, _end_FileNO = self.get_fist_valid_file() if _end_VolumeID == -1 or _end_VolumeTag == None: # 如果还没有任务,就把开始当成结束。 _end_VolumeID = _start_free_VolumeID # 加入磁带: self.__tape_space_mgr.append_free_space(_start_free_VolumeID, _start_free_VolumeTag, _start_free_fileNO) _current__VolumeID = _start_free_VolumeID while True: _nextVolID, _next_VolTag = self.__tapeGroupMgrObj.get_next_volume(_current__VolumeID) if _nextVolID == _end_VolumeID: # 不能用有任务的volume.. break self.__tape_space_mgr.append_free_space(_nextVolID, _next_VolTag, self.const_first_fileNO_per_vol) _current__VolumeID = _nextVolID return def media_start_task(self, task_info): _logger.info("media_start_task({})".format(task_info)) self.__clear_tape_task() self.__tape_drive_locker = tape_librarian.get_tape_drive_lock() self.__hwDev.init_hardware_device() if self.__tapeGroupMgrObj.get_tape_count() <= 1: # 只有一盘磁带时: raise MBaseException("必须有2盘磁带及以上", "tape count{}".format(self.__tapeGroupMgrObj.get_tape_count()), sys._getframe().f_lineno) self.init_task_space() self.__task_info = copy.copy(task_info) __free = self.__tape_space_mgr.get_free_bytes() __need_size = task_info['size'] if __free < __need_size: raise MBaseException("磁带无可用空间!", "no free spaces!{} < {} ".format(__free, __need_size), sys._getframe().f_lineno) return def __open_tape(self): try: self.__hwDev.load_Volume(self.__crt_VolumeTag, self.align_size) except: # 磁带不能用了, str = "设备{}加载磁带失败({})".format(self.__hwDev.get_mcname(), self.__crt_VolumeTag) MBaseException(str, "load volume failed", sys._getframe().f_lineno) _logger.error(str) raise Exception(str) crt_fileNO = self.__hwDev.seek(self.__crt_FileNO) if self.__crt_FileNO != crt_fileNO: str = "{}移动磁带失败(old: {} != current:{})".format(self.__hwDev.get_mcname(), self.__crt_FileNO, crt_fileNO) MBaseException(str, 'seek tape failed', sys._getframe().f_lineno) log.error(str) # raise Exception(str) 以下面打开文件为判断标准 try: if self.writetask: mode = os.O_WRONLY | os.O_APPEND | os.O_SYNC else: mode = os.O_RDONLY self.__fd = os.open(self.__hwDev.get_tapename(), mode, 0o666) except Exception as e: str = "os.open{} error:{}".format(self.__hwDev.get_tapename(), e) MBaseException("打开磁带机驱动器({})设备失败".format(self.__hwDev.get_tapename()), str, sys._getframe().f_lineno) _logger.error(str) raise Exception(str) _logger.info("os.open{} success fd:{}".format(self.__hwDev.get_tapename(), self.__fd)) def media_get_write_handle(self, file_uuid): _logger.info("media_get_write_handle({})".format(file_uuid)) while True: free_space = self.__tape_space_mgr.malloc_free_space() if None == free_space: # 无空间可用了。 return -1, 0 self.__crt_VolumeID = free_space['volumeid'] self.__crt_VolumeTag = free_space['volumetag'] self.__crt_FileNO = free_space['volfileid'] try: self.__open_tape() except Exception as e: # 继续用下一盘磁带。 str = "__open_tape:{} error:{}".format(self.__hwDev.get_tapename(), e) _logger.error(str) self.__tape_space_mgr.use_new_volume() continue return self.__fd, 4 * 1024 * 1024 * 1024 def media_get_read_handle(self, file_info): _logger.info("media_get_read_handle({})".format(file_info)) self.__tape_drive_locker = tape_librarian.get_tape_drive_lock() self.__hwDev.init_hardware_device() self.__crt_VolumeID = file_info['volumeid'] self.__crt_VolumeTag = file_info['volumetag'] self.__crt_FileNO = file_info['volfileid'] self.__open_tape() return self.__fd def media_write(self, fd, data): if fd != self.__fd: str = "error fd: {} != self:{}".format(fd, self.__fd) _logger.error(str) return -1, str _blk_start = 0 _blk_end = 0 _len = len(data) while _len != 0: _io_size = min(self.__max_size_per_write, _len) _blk_end = _blk_start + _io_size try: _wrdsize = os.write(self.__fd, data[_blk_start:_blk_end]) if _wrdsize > 0: # 写成功。 _len -= _wrdsize _blk_start = _blk_start + _wrdsize continue else: _logger.error('os.write(fd:{}) error size: _wrdsize:{} != _io_size:{}'.format( self.__fd, _wrdsize, _io_size)) self.__tape_space_mgr.use_new_volume() return errno.ENOSPC, r'ENOSPC' except IOError as e: str = 'os.write(fd:{}) error({}) size: _io_size:{}'.format(self.__fd, e.errno, _io_size) _logger.error(str) if e.errno == errno.ENOSPC: self.__tape_space_mgr.use_new_volume() return errno.ENOSPC, r'ENOSPC' if e.errno == errno.EINVAL: # 有的磁带机一次只能写2M,没去查究竟能写多少,就弄一个递减重试。 if self.__max_size_per_write <= 65536: # 不能比 64k 小了。 return e.errno, str self.__max_size_per_write /= 2 continue if e.errno == errno.EINTR or e.errno == errno.EAGAIN: continue return -e.errno, str return 0, 'OK' def media_read(self, fd, size): while True: try: one_buf = os.read(self.__fd, size) if size != len(one_buf): return -1, 'no more' except IOError as e: str = 'os.read(fd:{}) error({}) size:{}'.format(fd, e, size) _logger.error(str) if e.errno == errno.EINTR or e.errno == errno.EAGAIN: continue return -e.errno, str return 0, one_buf def media_close(self, fd): _logger.info("os.close({})".format(self.__fd)) os.close(self.__fd) vid = self.__crt_VolumeID vtag = self.__crt_VolumeTag vfileid = self.__crt_FileNO self.__fd = 0 if not self.writetask: # 读取任务的时候,一个读取完成,就释放锁。 _temp_locker = self.__tape_drive_locker self.__tape_drive_locker = None _temp_locker = None # 最后一个这样来释放?应该没问题吧。 # 写入任务时,必须等待任务结束后,才能释放锁。 return {'volumeid': vid, 'volumetag': vtag, 'volfileid': vfileid} def media_finish_task(self, is_successful): self.__clear_tape_task() return class LocalMediaTarget(MediaTarget): def __init__(self, media_uuid, data): super(LocalMediaTarget, self).__init__(media_uuid, data) self._out_path = self.media_data['path'] self._out_dir = None self.path = None def media_start_task(self, task_info): self._out_dir = os.path.join(self._out_path, uuid.uuid4().hex) os.makedirs(self._out_dir) def media_finish_task(self, is_successful): if not is_successful: shutil.rmtree(self._out_dir, ignore_errors=True) def media_get_write_handle(self, file_uuid): self.path = os.path.join(self._out_dir, file_uuid) fd = open(self.path, 'wb') return fd, 1 * 1024 * 1024 * 1024 def media_get_read_handle(self, file_info): return open(file_info['path'], 'rb') def media_write(self, fd, data): fd.write(data) return 0, '' def media_read(self, fd, size): return 0, fd.read(size) def media_close(self, fd): fd.close() return {'path': self.path} class MediaTargetManager(object): """ 管理所有MediaTarget, 提供增删改查 """ def __init__(self): self._medias = dict() self._medias_lock = threading.RLock() t = threading.Thread(target=self.check_expired, args=(), name='MediaTargetManagerThread') t.setDaemon(True) t.start() def check_expired(self): while True: today = datetime.datetime.now().date() try: for media_uuid, media_target in self._medias.items(): dead_line = today - datetime.timedelta(days=media_target.media_data['max_days']) MediaTaskRecord.objects.filter( MediaTaskRecord.media_uuid == media_uuid, MediaTaskRecord.successful == True, MediaTaskRecord.overwritedata == False, MediaTaskRecord.production_date < dead_line ).update({'overwritedata': True}) except Exception as e: _logger.error('MediaTargetManager check_expired error:{}'.format(e), exc_info=True) time.sleep(60) def add(self, info): media_uuid = info['media_uuid'] media_type = info['media_type'] with self._medias_lock: if media_uuid in self._medias: _logger.error('MediaTargetManager media:{} is already in'.format(media_uuid)) return 0 else: if media_type == 'tape': self._medias[media_uuid] = TapeMediaTarget(media_uuid, info['info']) return 0 elif media_type == 'local': self._medias[media_uuid] = LocalMediaTarget(media_uuid, info['info']) return 0 else: return -1 def delete(self): pass def get(self, media_uuid): with self._medias_lock: return self._medias.get(media_uuid) def put(self): pass def enum_mc_hw_info(self, info): return tape_librarian.enum_mc_hw_info(info) def operations(self, json_params): params = json.loads(json_params) rev = getattr(self, params['action'])(params['info']) return json.dumps({'rev': rev}) if __name__ == "__main__": mtmgr = MediaTargetManager() __media_data = dict() __media_data['name'] = 'tape_media_name' __media_data['link'] = { "DriveList": [{"DriveSN": "31333130323534303531", "MCSN": "30304c3255373856393532385f4c4c30", "MCBoxID": 0}]} __media_data['driver'] = '31333130323534303531' __media_data['cycle'] = 'cycle' __media_data['max_days'] = 33 __media_data['cycle_type'] = 'cycle_type' __media_data['tapas'] = {'1': 'DH1397L4', '2': "DH1398L4", '11': "DH1399L4"} __inf = dict() __inf['media_uuid'] = 'test_media_uuid' __inf['media_type'] = 'tape' __inf['info'] = __media_data mtmgr.add(__inf) tapeDev = mtmgr.get('test_media_uuid') taskinfo = dict() taskinfo['size'] = 123456789 taskinfo['task_uuid'] = uuid.uuid4().hex taskinfo['task_date'] = datetime.datetime.now() # ('%Y_%m_%dT%H_%M_%S') tapeDev.start_task(taskinfo) for i in range(3): __mfd, wrsize = tapeDev.get_write_handle(uuid.uuid4().hex) bs = bytearray(65536) ret, err = tapeDev.write(__mfd, bs) tapeDev.close(__mfd) __mfd, wrsize = tapeDev.get_write_handle(uuid.uuid4().hex) s = 0 wrsize = 1000000 while s < wrsize: bs = bytearray(65536) ret, err = tapeDev.write(__mfd, bs) if ret != 0: break s = s + 65536 tapeDev.close(__mfd) success_task_extinfo = tapeDev.finish_task(True) _fdIndex = 0 _maxfdIndex = -1 for _k, _v in success_task_extinfo.items(): _fdIndex = _v['fdIndex'] if _fdIndex > _maxfdIndex: _maxfdIndex = _fdIndex _maxfdIndex = _maxfdIndex + 1 for _i in range(_maxfdIndex): for _k, _v in success_task_extinfo.items(): _fdIndex = _v['fdIndex'] if _fdIndex == _i: _fileext = _v fd = tapeDev.get_read_handle(_fileext) ret, bs = tapeDev.read(fd, 9) if ret != 0: print("read error") else: print("read size:{}", len(bs)) ret, bs = tapeDev.read(fd, 1111) if ret != 0: print("read error") else: print("read size:{}", len(bs)) ret, bs = tapeDev.read(fd, 2222) if ret != 0: print("read error") else: print("read size:{}", len(bs)) tapeDev.close(fd)