blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
2
616
content_id
stringlengths
40
40
detected_licenses
listlengths
0
69
license_type
stringclasses
2 values
repo_name
stringlengths
5
118
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringlengths
4
63
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
2.91k
686M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
23 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
220 values
src_encoding
stringclasses
30 values
language
stringclasses
1 value
is_vendor
bool
2 classes
is_generated
bool
2 classes
length_bytes
int64
2
10.3M
extension
stringclasses
257 values
content
stringlengths
2
10.3M
authors
listlengths
1
1
author_id
stringlengths
0
212
2c6e0295f5a6f94807ab9a56b2543e7b2c996bca
b8b312ebee3a32096885ee12094f4343544b52cc
/ex062.py
2f6ce295d370668072a660b2dcc78e65cbda3d6c
[]
no_license
alinesc/python3
0f272f80c110ebf96619d759cb92c0513ee35888
548d4bb57eca799c31ed08c30de923fc68e223e0
refs/heads/master
2020-04-18T04:46:45.201014
2020-04-13T13:49:32
2020-04-13T13:49:32
167,251,673
2
0
null
null
null
null
UTF-8
Python
false
false
435
py
primeiroTermo = int(input('Digite o valor do primeiro termo: ')) razao = int(input('Digite a razão da PA: ')) termo = primeiroTermo cont = 1 total = 0 mais = 10 while mais != 0: total = total + mais while cont <= total: print(termo) termo += razao cont += 1 mais = int(input('Quantos termos você quer mostrar a mais? ')) print('Progressão finalizada com {} termos mostrados.'.format(total))
[ "aline.revisoes@gmail.com" ]
aline.revisoes@gmail.com
29ef7a6457b0ff26e9d975f5624e21f36614095c
6bd94dab1b8b4fc0827bf0de9a405234d4e52bf6
/prototype/database/db.py
ab8c327d25436a630561f4be50bb53ac4841bf33
[ "BSD-3-Clause" ]
permissive
shenghuatang/ApiLogicServer
4f11d512bb72a504120e12684168f1ca932d83ea
ea5134d907b3ccf03f6514a2c9a1c25b5a737c68
refs/heads/main
2023-06-22T20:27:41.125374
2021-07-17T15:22:12
2021-07-17T15:22:12
null
0
0
null
null
null
null
UTF-8
Python
false
false
272
py
from sqlalchemy.orm import Session from sqlalchemy.ext.declarative import declarative_base import safrs db = safrs.DB Base: declarative_base = db.Model session: Session = db.session print("got session: " + str(session)) def remove_session(): db.session.remove()
[ "valjhuber@gmail.com" ]
valjhuber@gmail.com
caa066ac6f9008d3b8b8f1ba7e83cfe88b54852e
ac2c3e8c278d0aac250d31fd023c645fa3984a1b
/saleor/saleor/shipping/__init__.py
92a86a08b6125f404c3f263a17cdc15aa85fe5f4
[ "CC-BY-4.0", "BSD-3-Clause" ]
permissive
jonndoe/saleor-test-shop
152bc8bef615382a45ca5f4f86f3527398bd1ef9
1e83176684f418a96260c276f6a0d72adf7dcbe6
refs/heads/master
2023-01-21T16:54:36.372313
2020-12-02T10:19:13
2020-12-02T10:19:13
316,514,489
1
1
BSD-3-Clause
2020-11-27T23:29:20
2020-11-27T13:52:33
TypeScript
UTF-8
Python
false
false
199
py
class ShippingMethodType: PRICE_BASED = "price" WEIGHT_BASED = "weight" CHOICES = [ (PRICE_BASED, "Price based shipping"), (WEIGHT_BASED, "Weight based shipping"), ]
[ "testuser@151-248-122-3.cloudvps.regruhosting.ru" ]
testuser@151-248-122-3.cloudvps.regruhosting.ru
1b6fdd082a2c9c95f0710a32f323c83788ec60dc
3320b9abc7097e0a50f75cfdbc5f221b25d38d42
/Python/Homework01_3/practice.py
7f1d56af8e980a35f00a88965f61eb94e8eca2db
[]
no_license
Mikejx2/Digital_Craft
89d7dabc6b38a3ffd3b90e105acec7648c4ac7b9
c71fd9b057c127473df6f1e4ca0c479f197e975e
refs/heads/main
2023-04-09T13:37:13.746689
2021-04-22T13:58:15
2021-04-22T13:58:15
355,264,670
0
0
null
null
null
null
UTF-8
Python
false
false
3,234
py
# board = [ ["X", "X", "O"], # ["X", "O", "O"], # ["X", "", "O"] # ] # greeting = "hello world" # print(greeting[2]) # print(len(greeting)) # alphabet = "abcdefghijklmnopqrstuvwxyz" # alphList = list(alphabet) # print(alphList) # name = "Michael Cook" # for char in name : # 1. Sum the Numbers # arr = [4, 2, 5, 7, 23, 6, 5] # # Print the sum of the array. # sum = 0 # for i in arr: # sum = sum + i # print(sum) # 2. Largest Number # arr = [4, 2, 5, 7, 23, 6, 5] # Print the largest number in the list. # arr = [4, 2, 5, 7, 23, 6, 1] # even = [] # for i in arr: # if i % 2 == 0: # print(i ) # print(large) # # Multiply a list # m = 4 # arr = [4, 2, 5, 7, 23, 6, 5] # # Create a new list consisting of each of the numbers in the list multiplied by the factor m. Print this list. # for i in arr: # result = m * i # print(result) # print(list(int(result))) # # 8. Reverse a String # # Given a string, print the string reversed. # name = ("Michael Cook") # rev_name = "" # for i in name: # rev_name = i + rev_name # print(rev_name) # num = -9854 # rev_num = "" # for i in num: # if num >= 1: # new_num = int(num) # abs(new_num) # rev_num = str(new_num) # print(rev_num) # num = 9854 #4589- # sign = 1 # if num < 0: # sign = -1 # print(sign) # absNum = abs(num) # 9854 -> 4589 # numStr = str(absNum) # "9854" # rev_num_str = "" # for c in numStr: # rev_num_str = c + rev_num_str # 4589 # result = sign * int(rev_num_str) # print(result) # print(sign) # for i in range(1,11): # for x in range(1,11): # print(i,"x",x,"=",i*x) # print() # word = input('The word: ').upper() # result = '' # # A => 4 # # E => 3 # # G => 6 # # I => 1 # # O => 0 # # S => 5 # # T => 7 # for char in word: # result_char = char # if result_char == 'A': # result_char = '4' # if result_char == 'E': # result_char = '3' # if result_char == 'G': # result_char = '6' # if result_char == 'I': # result_char = '1' # if result_char == 'O': # result_char = '0' # if result_char == 'S': # # result_char = '5' # # if result_char == 'T': # # result_char = '7' # # result = result + result_char # print(result) # 70 >= Wear Shorts # 70 < Wear long pants # first = input("What is your First Name? ") # last = input("What is your Last Name? ") # temp = input ("What is the Weather today? ") # result = "" # def getName(fName,lName): # return fName + " " + lName # for i in temp: # todayTemp = i # if todayTemp >= "70": # todayTemp = "wear shorts today!" # if todayTemp < "70": # todayTemp = "wear long pants today!" # result = todayTemp # name = getName(first,last) # # print(f"Hello {name} {result}") # import random # words = ["nest", "baseball", "soccor"] # secret_word = random.choice(words) # # lives = 9 # # while lives > 0: # # if guess # print(secret_word) Number = input("Number : ") nums = { "0" : "Zero", "1" : "One", "2" : "Two", "3" : "Three" } output = "" for i in Number: output += Number[""] print(output)
[ "michaeljcook53@gmail.com" ]
michaeljcook53@gmail.com
918fc10ba1f779668c7e500f892ac51c0d1fbd62
2e064e9e4f8e958f0927dee9147408de2e2c1002
/shop/models.py
b685ad94da1d58c8945f26690083a12769a51da0
[]
no_license
usermuser/myshop
b604b5920674f109fc64f2e5893723915370003a
14e5683112735b28e2cd5e43b7ae01e0f4f3d934
refs/heads/master
2021-01-21T13:03:48.699852
2018-04-12T09:29:22
2018-04-12T09:29:22
55,859,215
0
0
null
null
null
null
UTF-8
Python
false
false
1,299
py
from django.db import models from django.core.urlresolvers import reverse class Category(models.Model): name = models.CharField(max_length=200, db_index=True) slug = models.SlugField(max_length=200, db_index=True, unique=True) class Meta: ordering = ('name',) verbose_name = 'category' verbose_name_plural = 'categories' def __str__(self): return self.name def get_absolute_url(self): return reverse('shop:product_list_by_category', args=[self.slug]) class Product(models.Model): category = models.ForeignKey(Category, related_name='products') name = models.CharField(max_length=200, db_index=True) slug = models.SlugField(max_length=200, db_index=True) image = models.ImageField(upload_to='products/%Y/%m/%d', blank=True) description = models.TextField(blank=True) price = models.DecimalField(max_digits=10, decimal_places=2) stock = models.PositiveIntegerField() available = models.BooleanField(default=True) created = models.DateTimeField(auto_now_add=True) updated = models.DateTimeField(auto_now=True) class Meta: ordering = ('name',) index_together = (('id', 'slug'),) def __str__(self): return self.name def get_absolute_url(self): return reverse('shop:product_detail', args=[self.id, self.slug])
[ "lwrdrstv@gmail.com" ]
lwrdrstv@gmail.com
86c2f3c1a2765b31b3aaed5f9b777ff8028bc955
6f8266e36a252e3d0c3c5ec94d2238b21325af3e
/unsupervised_learning/1.Clustering/n3_inspectClustering.py
d7af304d5a1891720eb395184e707584d049a141
[]
no_license
ptsouth97/DeepLearn
c64b9b36850deb075020276d2b01c833c4b70c7d
e1eede4beb645c43545264a7a3ab828ae00c2a4f
refs/heads/master
2020-03-22T06:41:42.046163
2019-01-25T18:31:43
2019-01-25T18:31:43
139,651,311
0
0
null
null
null
null
UTF-8
Python
false
false
942
py
#!/usr/bin/python3 from sklearn.cluster import KMeans import matplotlib.pyplot as plt import n1_clusters, n2_clustering2Dpoints def main(): ''' create a KMeans model to find 3 clusters, and fit it to the data ''' # Create array of data points, new_points = n1_clusters.make_points() # Assign the columns of new_points: xs and ys xs = new_points[:,0] ys = new_points[:,1] # Get the labels and the model labels, model = n2_clustering2Dpoints.get_labels() # Make a scatter plot of xs and ys, using labels to define the colors plt.scatter(xs, ys, c=labels, alpha=0.5) # Assign the cluster centers: centroids centroids = model.cluster_centers_ # Assign the columns of centroids: centroids_x, centroids_y centroids_x = centroids[:,0] centroids_y = centroids[:,1] # Make a scatter plot of centroids_x and centroids_y plt.scatter(centroids_x, centroids_y, marker='D', s=50) plt.show() if __name__ == '__main__': main()
[ "ptsouth97@gmail.com" ]
ptsouth97@gmail.com
53d0e474ac73dcfb80045d37a3aa5ad7cdc4411a
4509a806ab4f28c312e7d37936a75b3947550243
/bioinformatics_stronghold/DNA_counting_dna_nucleotides.py
5c2249399252ca984e19091956910178f2e5471a
[]
no_license
SpikyClip/rosalind-solutions
ac1374f56adb64b83e0349ad10c198523f66926b
f3d8712aa25c99a4f84a7f67e1bf329bad3f10ee
refs/heads/master
2023-06-12T17:18:10.836260
2021-07-06T02:17:14
2021-07-06T02:17:14
355,716,644
1
0
null
null
null
null
UTF-8
Python
false
false
1,192
py
# url: http://rosalind.info/problems/dna/ # Problem # A string is simply an ordered collection of symbols selected from some # alphabet and formed into a word; the length of a string is the number # of symbols that it contains. # An example of a length 21 DNA string (whose alphabet contains the # symbols 'A', 'C', 'G', and 'T') is "ATGCTTCAGAAAGGTCTTACG." # Given: A DNA string s of length at most 1000 nt. # Return: Four integers (separated by spaces) counting the respective # number of times that the symbols 'A', 'C', 'G', and 'T' occur in s. def nucleotide_count(dna_seq): """Returns string of nucleotide counts in order A C G T from dna_seq""" result = list() dna_dict = { "A": dna_seq.count("A"), "C": dna_seq.count("C"), "G": dna_seq.count("G"), "T": dna_seq.count("T"), } for count in dna_dict.values(): result.append(str(count)) result = " ".join(result) return result if __name__ == "__main__": file1, file2 = "inputs/DNA_input.txt", "outputs/DNA_output.txt" with open(file1, "r") as f1, open(file2, "w") as f2: dna_seq = f1.read().strip() f2.write(nucleotide_count(dna_seq))
[ "74215773+SpikyClip@users.noreply.github.com" ]
74215773+SpikyClip@users.noreply.github.com
ec6c7c11d57290714a515402d78d7186bf68ad62
7ab33f6f94bc7375febca139b813b7a95f1965fc
/torchrec/utils/argument/ArgumentDescription.py
816f5527d215ec515cbfb8e5b1d3c55f1faa8eeb
[]
no_license
ChestnutsZZ/LSRL
d7bdf5d153ab7bd4b6a35dad9b9e64d2829c9e03
d60a0c90fe514ddcdcd62b9b1293c8ccfbbe2c17
refs/heads/main
2023-02-03T19:43:36.832464
2020-12-22T15:22:06
2020-12-22T15:22:06
null
0
0
null
null
null
null
UTF-8
Python
false
false
4,377
py
""" 参数描述类,以兼容多种参数输入形式 """ import argparse from argparse import ArgumentParser from typing import Type, Any def str2bool(v): if v.lower() == "true": return True elif v.lower() == "false": return False else: raise argparse.ArgumentTypeError('Unsupported value encountered.') class ArgumentDescription: """参数描述信息""" __type_set = {str, int, float, bool} __number_type_set = {int, float} @classmethod def __is_number_type(cls, value) -> bool: """判断是否为数字类型""" for type_ in cls.__number_type_set: if isinstance(value, type_): return True return False def __init__(self, name: str, type_: Type, help_info: str, is_logged: bool = True, default_value=None, legal_value_list=None, lower_open_bound=None, lower_closed_bound=None, upper_open_bound=None, upper_closed_bound=None): """ 参数的基本信息 :param name: 参数名 :param type_: 参数类型,允许str、int、float、bool四种类型 :param help_info: 帮助信息 :param is_logged: 是否记录(一些无关参数比如GPU序号不需要被保存) :param default_value: 默认值(可选) :param legal_value_list: 取值列表(可选) :param lower_open_bound: 下界(开区间),只能用于数值类型,会被legal_value_list设置覆盖(可选) :param lower_closed_bound: 下界(闭区间),只能用于数值类型,会被legal_value_list设置覆盖(可选) :param upper_open_bound: 上界(开区间),只能用于数值类型,会被legal_value_list设置覆盖(可选) :param upper_closed_bound: 上界(闭区间),只能用于数值类型,会被legal_value_list设置覆盖(可选) """ # 检查参数类型合法性 assert type_ in self.__type_set if default_value: assert isinstance(default_value, type_) if legal_value_list: for legal_value in legal_value_list: assert isinstance(legal_value, type_) lower_open_bound = None lower_closed_bound = None upper_open_bound = None upper_closed_bound = None if lower_open_bound or lower_closed_bound or upper_open_bound or upper_closed_bound: assert type_ in self.__number_type_set if lower_open_bound: assert self.__is_number_type(lower_open_bound) if lower_closed_bound: assert self.__is_number_type(lower_closed_bound) if upper_open_bound: assert self.__is_number_type(upper_open_bound) if upper_closed_bound: assert self.__is_number_type(upper_closed_bound) # 初始化 self.name = name self.type = type_ self.help_info = help_info self.is_logged = is_logged self.default_value = default_value self.legal_value_list = legal_value_list self.lower_open_bound = lower_open_bound self.lower_closed_bound = lower_closed_bound self.upper_open_bound = upper_open_bound self.upper_closed_bound = upper_closed_bound # 检查默认值数值合法性 if default_value: self.check_value(default_value) def check_value(self, value: Any) -> None: """检查参数是否符合描述,不符合直接退出""" if self.legal_value_list: assert value in self.legal_value_list else: if self.lower_open_bound: assert self.lower_open_bound < value if self.lower_closed_bound: assert self.lower_closed_bound <= value if self.upper_open_bound: assert value < self.upper_open_bound if self.upper_closed_bound: assert value <= self.upper_closed_bound def add_argument_into_argparser(self, parser: ArgumentParser): """将参数信息添加到argparse.ArgumentParser""" parser.add_argument( "--" + self.name, type=str2bool if self.type == bool else self.type, help=self.help_info, default=self.default_value, required=(self.default_value is None))
[ "yansh19@mails.tsinghua.edu.cn" ]
yansh19@mails.tsinghua.edu.cn
152a43e71398d137edfc3a6bce005472d32e4ccf
2dfa9a135508d0c123fe98f81e4b2598e14e0dc0
/pytorch_translate/dual_learning/dual_learning_models.py
ad8d19ccdf8808e2d2311f20804192e8adec49a5
[ "BSD-3-Clause" ]
permissive
Meteorix/translate
1ee46c6b8787a18f43f49de4f56871c2aa9660f7
1a40e4ae440118bb108d52f7888cad29b154defd
refs/heads/master
2020-07-02T02:28:34.013666
2019-08-07T16:51:44
2019-08-07T16:55:38
201,386,214
0
0
BSD-3-Clause
2019-08-09T03:58:59
2019-08-09T03:58:59
null
UTF-8
Python
false
false
7,109
py
#!/usr/bin/env python3 import logging import torch.nn as nn from fairseq.models import BaseFairseqModel, register_model from pytorch_translate import rnn from pytorch_translate.rnn import ( LSTMSequenceEncoder, RNNDecoder, RNNEncoder, RNNModel, base_architecture, ) from pytorch_translate.tasks.pytorch_translate_task import PytorchTranslateTask logger = logging.getLogger(__name__) @register_model("dual_learning") class DualLearningModel(BaseFairseqModel): """ An architecture to jointly train primal model and dual model by leveraging distribution duality, which exist for both parallel data and monolingual data. """ def __init__(self, args, task, primal_model, dual_model, lm_model=None): super().__init__() self.args = args self.task_keys = ["primal", "dual"] self.models = nn.ModuleDict( {"primal": primal_model, "dual": dual_model, "lm": lm_model} ) def forward(self, src_tokens, src_lengths, prev_output_tokens=None): """ If batch is monolingual, need to run beam decoding to generate fake prev_output_tokens. """ # TODO: pass to dual model too primal_encoder_out = self.models["primal"].encoder(src_tokens, src_lengths) primal_decoder_out = self.models["primal"].decoder( prev_output_tokens, primal_encoder_out ) return primal_decoder_out def max_positions(self): return { "primal_source": ( self.models["primal"].encoder.max_positions(), self.models["primal"].decoder.max_positions(), ), "dual_source": ( self.models["dual"].encoder.max_positions(), self.models["dual"].decoder.max_positions(), ), "primal_parallel": ( self.models["primal"].encoder.max_positions(), self.models["primal"].decoder.max_positions(), ), "dual_parallel": ( self.models["dual"].encoder.max_positions(), self.models["dual"].decoder.max_positions(), ), } @register_model("dual_learning_rnn") class RNNDualLearningModel(DualLearningModel): """Train two models for a task and its duality jointly. This class uses RNN arch, but can be extended to take arch as an arument. This class takes translation as a task, but the framework is intended to be general enough to be applied to other tasks as well. """ def __init__(self, args, task, primal_model, dual_model, lm_model=None): super().__init__(args, task, primal_model, dual_model, lm_model) @staticmethod def add_args(parser): rnn.RNNModel.add_args(parser) parser.add_argument( "--unsupervised-dual", default=False, action="store_true", help="Train with dual loss from monolingual data.", ) parser.add_argument( "--supervised-dual", default=False, action="store_true", help="Train with dual loss from parallel data.", ) @classmethod def build_model(cls, args, task): """ Build both the primal and dual models. For simplicity, both models share the same arch, i.e. the same model params would be used to initialize both models. Support for different models/archs would be added in further iterations. """ base_architecture(args) if args.sequence_lstm: encoder_class = LSTMSequenceEncoder else: encoder_class = RNNEncoder decoder_class = RNNDecoder encoder_embed_tokens, decoder_embed_tokens = RNNModel.build_embed_tokens( args, task.primal_src_dict, task.primal_tgt_dict ) primal_encoder = encoder_class( task.primal_src_dict, embed_dim=args.encoder_embed_dim, embed_tokens=encoder_embed_tokens, cell_type=args.cell_type, num_layers=args.encoder_layers, hidden_dim=args.encoder_hidden_dim, dropout_in=args.encoder_dropout_in, dropout_out=args.encoder_dropout_out, residual_level=args.residual_level, bidirectional=bool(args.encoder_bidirectional), ) primal_decoder = decoder_class( src_dict=task.primal_src_dict, dst_dict=task.primal_tgt_dict, embed_tokens=decoder_embed_tokens, vocab_reduction_params=args.vocab_reduction_params, encoder_hidden_dim=args.encoder_hidden_dim, embed_dim=args.decoder_embed_dim, out_embed_dim=args.decoder_out_embed_dim, cell_type=args.cell_type, num_layers=args.decoder_layers, hidden_dim=args.decoder_hidden_dim, attention_type=args.attention_type, dropout_in=args.decoder_dropout_in, dropout_out=args.decoder_dropout_out, residual_level=args.residual_level, averaging_encoder=args.averaging_encoder, ) primal_task = PytorchTranslateTask( args, task.primal_src_dict, task.primal_tgt_dict ) primal_model = rnn.RNNModel(primal_task, primal_encoder, primal_decoder) encoder_embed_tokens, decoder_embed_tokens = RNNModel.build_embed_tokens( args, task.dual_src_dict, task.dual_tgt_dict ) dual_encoder = encoder_class( task.dual_src_dict, embed_dim=args.encoder_embed_dim, embed_tokens=encoder_embed_tokens, cell_type=args.cell_type, num_layers=args.encoder_layers, hidden_dim=args.encoder_hidden_dim, dropout_in=args.encoder_dropout_in, dropout_out=args.encoder_dropout_out, residual_level=args.residual_level, bidirectional=bool(args.encoder_bidirectional), ) dual_decoder = decoder_class( src_dict=task.dual_src_dict, dst_dict=task.dual_tgt_dict, embed_tokens=decoder_embed_tokens, vocab_reduction_params=args.vocab_reduction_params, encoder_hidden_dim=args.encoder_hidden_dim, embed_dim=args.decoder_embed_dim, out_embed_dim=args.decoder_out_embed_dim, cell_type=args.cell_type, num_layers=args.decoder_layers, hidden_dim=args.decoder_hidden_dim, attention_type=args.attention_type, dropout_in=args.decoder_dropout_in, dropout_out=args.decoder_dropout_out, residual_level=args.residual_level, averaging_encoder=args.averaging_encoder, ) dual_task = PytorchTranslateTask(args, task.dual_src_dict, task.dual_tgt_dict) dual_model = rnn.RNNModel(dual_task, dual_encoder, dual_decoder) # TODO (T36875783): instantiate a langauge model lm_model = None return RNNDualLearningModel(args, task, primal_model, dual_model, lm_model)
[ "facebook-github-bot@users.noreply.github.com" ]
facebook-github-bot@users.noreply.github.com
68bac0256143ef5825a9ab1a84ad8c39355f5d9a
decddc2617ac40aee38cc8eb0f3a997a1cb18422
/linked_list/test_linked_list.py
cb084c107259b2f3c91ea6e5b2a47f3bdd90d322
[ "MIT" ]
permissive
BFriedland/data-structures
0dc4fd1ac7d11db66f30c7541141f5f066a14a0d
d5418b5c846bbf348cc9d7dba6ce4a82fdeb68ad
refs/heads/master
2020-08-06T19:27:10.864617
2015-07-30T03:04:50
2015-07-30T03:04:50
25,002,428
0
0
null
2015-07-30T03:04:52
2014-10-09T18:15:53
Python
UTF-8
Python
false
false
4,445
py
''' Test suite for linked_list.py Usefully informed about the way unit tests look by: https://github.com/linsomniac/python-unittest-skeleton/ blob/master/tests/test_skeleton.py Note that every attribute of the Node class is tested by the tests for the LinkedList class's methods. ''' import unittest import linked_list class test_LinkedList(unittest.TestCase): def setUp(self): # The program needs several lists to test with, and the unit tests # can modify these lists as they go. # To be safe, use self.setUp on every new testing call. self.test_list = linked_list.LinkedList() for each_number in range(1, 10): self.test_list.insert(each_number) self.test_list_for_one_node = linked_list.LinkedList() self.test_list_for_one_node.insert("one node list test data") self.test_list_for_string_data = linked_list.LinkedList() self.test_list_for_string_data.insert("TestData") self.test_list_for_string_data.insert(61) self.test_list_for_string_data.insert("Additional Test Data") self.test_list_for_no_nodes = linked_list.LinkedList() def test_LinkedList(self): self.setUp() # This feels pretty superfluous due to setUp, which appears to # be intended to come first, but here it is anyways. # We'll say it's for future-proofing. constructor_test_object = linked_list.LinkedList() self.assertTrue(isinstance(constructor_test_object, linked_list.LinkedList)) def test_insert(self): self.setUp() # All insert(val) needs to do is successfully create # a node that holds the value. # This will test the Node class's basic functionality as well. insert_test_string = 'insert() test data' self.test_list.insert(insert_test_string) self.assertEqual(self.test_list.head.data, insert_test_string) self.assertEqual(self.test_list.number_of_created_nodes, 10) self.assertEqual(self.test_list.number_of_deleted_nodes, 0) def test_pop(self): self.setUp() pop_test_string = 'pop() test data' self.test_list.insert(pop_test_string) pop_test_return_data = self.test_list.pop() self.assertEqual(pop_test_return_data, pop_test_string) self.assertEqual(self.test_list.number_of_created_nodes, 10) self.assertEqual(self.test_list.number_of_deleted_nodes, 1) def test_size(self): self.setUp() # This will return the size of the list. # Should be 9, ie the range from 1 to the number before 10 # (due to range(1, 10) in setUp() in this test suite). self.assertEqual(self.test_list.size(), 9) self.assertEqual(self.test_list_for_no_nodes.size(), 0) def test_search(self): self.setUp() search_test_string = 'search() test data' self.test_list.insert(search_test_string) # Check if the data in the Node returned by search is equal to # the string used to instantiate that Node. self.assertTrue(self.test_list.search(search_test_string).data == search_test_string) test_string_for_no_nodes = "This test string is for the empty list." self.assertRaises(Exception, self.test_list_for_no_nodes. search(test_string_for_no_nodes)) def test_remove(self): self.setUp() remove_test_string = 'remove() test data' self.test_list.insert(remove_test_string) node_to_remove = self.test_list.search(remove_test_string) self.test_list.remove(node_to_remove) # It will try to find the string and return None. self.assertEqual(self.test_list.search(remove_test_string), None) self.assertEqual(self.test_list.number_of_created_nodes, 10) self.assertEqual(self.test_list.number_of_deleted_nodes, 1) test_string_for_no_nodes = "This test string is for the empty list." self.assertRaises(Exception, self.test_list_for_no_nodes. remove(self.test_list_for_no_nodes. search(test_string_for_no_nodes))) def test___str__(self): self.setUp() self.assertEqual(str(self.test_list_for_string_data), "('Additional Test Data', 61, 'TestData')") unittest.main()
[ "friedland.ben@gmail.com" ]
friedland.ben@gmail.com
db7213a217329b2e0e8f3b8d5487614da6ebef7c
6e335c41942e33fcb4c0317a434c0499b1e5e112
/Python_API/API_PO/api_page/wework_utils.py
f33fd4950b31b35d7cda8a14fc6da834b294dc0a
[]
no_license
Vena-ww/MyPythonTest
6590574c6813f3bcbee7ff39e850a80a31e54175
62b8922b85d64d1d3a3a84e62f1f17b89808a609
refs/heads/master
2023-01-01T22:08:03.093848
2020-10-20T01:25:56
2020-10-20T01:25:56
285,706,875
0
0
null
null
null
null
UTF-8
Python
false
false
764
py
import requests from MyPythonTest.Python_API.API_PO.api_page.base_api import BaseApi class WeWorkUtils(BaseApi): # corpid---企业ID # corpsecret---页面的Secret def get_token(self, corpsecret, corpid='wwc72ee4311e0af881'): """base_api封装前""" # url = f'https://qyapi.weixin.qq.com/cgi-bin/gettoken?corpid={corpid}&corpsecret={corpsecret}' # result = requests.get(url).json() """base_api封装后""" data = { "method": "get", "url": "https://qyapi.weixin.qq.com/cgi-bin/gettoken", "params": {"corpid": corpid, "corpsecret": corpsecret} } result = self.send_api(data) return result['access_token'] # 取出token信息以便其他接口调用
[ "2578864904@qq.com" ]
2578864904@qq.com
9813e76612ab20805ae072deaade5f872ee86591
2f2cc5bc44f0ff08c1f9888c3dd97ea2d3f3fe0a
/EXAMPLES/simple.py
0e8d391657b0a0031fb862827d4b1bc097386b6c
[]
no_license
solracq/Python-Training
ba33583292863393fab8156d18d48bc511c9f331
4c8a29da23b9e483f8e5c30f7ef4a7311a427381
refs/heads/master
2021-01-21T00:45:04.954824
2020-05-04T00:21:35
2020-05-04T00:21:35
14,281,299
0
0
null
null
null
null
UTF-8
Python
false
false
189
py
#!/usr/bin/env python3 class Simple: def __init__(self): self.msg = "Hello" def info(self): return self.msg if __name__ == "__main__": s = Simple() print(s.info())
[ "Solrac@192.168.0.18" ]
Solrac@192.168.0.18
33b8dbf8060980e5815868976caf58b4d266a6b3
027e0ad870213020baee58a7ec67fb3b14c06cef
/bfs.py
6f8c550bbac7e2210e0bae0f6aae79bf3f0aa940
[]
no_license
coderanony/ezpz
6b56fbcdd2f2b539d71e17099f4d6a41eaf6e150
2140a60d6bd69721b8886c854670e4e444a45658
refs/heads/master
2020-08-11T04:48:31.113725
2019-10-11T17:37:08
2019-10-11T17:37:08
214,494,515
0
0
null
null
null
null
UTF-8
Python
false
false
473
py
visited=[] import collections def bfs(graph,root): visited,queue=set(),collections.deque([root]) visited.add(root) while queue: vertex=queue.popleft() for neighbour in graph[vertex]: if neighbour not in visited: visited.add(neighbour) print(visited) queue.append(neighbour) if __name__=='__main__': graph={0:[1,2],1:[2],2:[3],3:[1,2]} bfs(graph,0)
[ "noreply@github.com" ]
coderanony.noreply@github.com
438d4d3c754121c02e3148d534a7f49f501ba665
bc9f66258575dd5c8f36f5ad3d9dfdcb3670897d
/lib/third_party/google/cloud/pubsublite/internal/wire/default_routing_policy.py
9d0428069840f818b4cf68ad25018cf2cc91f352
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
google-cloud-sdk-unofficial/google-cloud-sdk
05fbb473d629195f25887fc5bfaa712f2cbc0a24
392abf004b16203030e6efd2f0af24db7c8d669e
refs/heads/master
2023-08-31T05:40:41.317697
2023-08-23T18:23:16
2023-08-23T18:23:16
335,182,594
9
2
NOASSERTION
2022-10-29T20:49:13
2021-02-02T05:47:30
Python
UTF-8
Python
false
false
1,811
py
# 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 hashlib import random from google.cloud.pubsublite.internal.wire.routing_policy import RoutingPolicy from google.cloud.pubsublite.types.partition import Partition from google.cloud.pubsublite_v1.types import PubSubMessage class DefaultRoutingPolicy(RoutingPolicy): """ The default routing policy which routes based on sha256 % num_partitions using the key if set or round robin if unset. """ _num_partitions: int _current_round_robin: Partition def __init__(self, num_partitions: int): self._num_partitions = num_partitions self._current_round_robin = Partition(random.randint(0, num_partitions - 1)) def route(self, message: PubSubMessage) -> Partition: """Route the message using the key if set or round robin if unset.""" if not message.key: result = Partition(self._current_round_robin.value) self._current_round_robin = Partition( (self._current_round_robin.value + 1) % self._num_partitions ) return result sha = hashlib.sha256() sha.update(message.key) as_int = int.from_bytes(sha.digest(), byteorder="big") return Partition(as_int % self._num_partitions)
[ "cloudsdk.mirror@gmail.com" ]
cloudsdk.mirror@gmail.com
7fb5e25104781fa9b7bebca3e132ec51d76b9f3f
aff26acb11b22c0671707929239736c20b2f4fe2
/BOT.py
6515df53932426abbb450bc10ddd14f2b8b7dbdb
[]
no_license
harshitC22/bankbot
ad822cd9cf5f6be1ecef5ea5e7428757e8f885f6
1bc29cc53f884092c222ef0dd47a50aca4d57d4b
refs/heads/master
2020-03-16T06:49:00.449349
2018-05-08T07:02:31
2018-05-08T07:02:31
132,563,240
0
0
null
2018-05-08T07:02:32
2018-05-08T06:18:28
Python
UTF-8
Python
false
false
707
py
""" written by: harshit C """ """ manages state of chat bot """ class The_BOT: """ class variables """ state_list= ["sleep", "awake", "greeted", "requirement_Asked"] states= enumerate (state_list) """ initialize state variable """ def __init__ (self): """ all the following functions change the state of the bot """ def wake_up (self): self.state= "awake" return self.state def user_greeted (self): self.state= "greeted" return self.state def get_state (self): return self.state def set_state (self, state): self.state= state
[ "noreply@github.com" ]
harshitC22.noreply@github.com
8f49ca8ae41d350050ddc67d31eaeb1f68f61375
db42a39f4eb8044d10e9a47bfe6a2c018f4f50ae
/laboratorios/Laboratorio_7/C - Stack from linked list.py
8df6ab1a4b71d3efe0d63f5e0c1afa0a601822b4
[ "MIT" ]
permissive
YeSte114/ayed-2019-1
6bf157bea165d37d2af48adb262a3457f976dd17
4d65c52b60b0b9b98860e323b9514edd580aae8d
refs/heads/master
2022-01-26T03:36:50.827562
2019-05-19T04:29:29
2019-05-19T04:29:29
null
0
0
null
null
null
null
UTF-8
Python
false
false
949
py
class Node: def __init__(self, value): self.value = value self.next = None class Stack: def __init__(self): self.head = None def push(self, value): if self.head is None: self.head = Node(value) else: new_node = Node(value) new_node.next = self.head self.head = new_node def pop(self): if self.head is None: return None else: pop = self.head.value self.head = self.head.next return pop def peek(self): if self.head is None: return None else: peek = self.head.value return peek def display(self): current = self.head while current is not None: print(current.value) current = current.next L = Stack() L.push(3) L.push(5) print(L.pop()) print(L.peek()) L.display()
[ "2160804@labinfo.is.escuelaing.edu.co" ]
2160804@labinfo.is.escuelaing.edu.co
bd9de2b51b020309d5f3534cee74d053413e79fa
9e74e89113dc9fd66bee62111f97c23f73e40a1e
/garden_router.py
ae3108b8a1493b0d33af3659c03d600f6863d235
[ "MIT" ]
permissive
federicoFerri/garden_manager
82b47a0d1ad1d5a35c54d1cdbfb0760021fc4458
5af473210b40c46d0ea883e04a6d1d8154fd2116
refs/heads/master
2022-06-18T13:14:20.485437
2019-05-27T18:11:40
2019-05-27T18:11:40
null
0
0
null
null
null
null
UTF-8
Python
false
false
6,924
py
#!/usr/bin/env python3 # -*- coding: utf-8 -*- from pyA20.gpio import gpio from pyA20.gpio import port import serial import struct import json import time class GardenRouter(): def __init__(self, config): self.config = config self.relay = port.PA11 self.arduino_reset = port.PA12 gpio.init() gpio.setcfg(self.relay, gpio.OUTPUT) gpio.output(self.relay, 1) gpio.setcfg(self.arduino_reset, gpio.OUTPUT) gpio.output(self.arduino_reset, 1) self.delay = self.config.getfloat('serial', 'delay') baudrate = self.config.getint('serial', 'baudrate') timeout = self.config.getint('serial', 'timeout') self.conn = serial.Serial(self.config.get('serial', 'port'), baudrate=baudrate, timeout=timeout) with open(self.config.get('devices', 'file')) as f: self.devices_data = json.load(f) self.enabled = False def _is_device_valid(self, device): return any((True for device_data in self.devices_data if device_data['device'] == device)) def get_device_name(self, device): return next((device_data['name'] for device_data in self.devices_data if device_data['device'] == device), None) def get_device_number(self, device_name): return next((device_data['device'] for device_data in self.devices_data if device_data['name'] == device_name), None) def _is_pin_valid(self, device, pin): pins_data = next((device_data['pins'] for device_data in self.devices_data if device_data['device'] == device), []) return any((True for pin_data in pins_data if pin_data['pin'] == pin)) def get_pin_name(self, device, pin): pins_data = next((device_data['pins'] for device_data in self.devices_data if device_data['device'] == device), []) return next((pin_data['name'] for pin_data in pins_data if pin_data['pin'] == pin), None) def get_pin_number(self, device, pin_name): pins_data = next((device_data['pins'] for device_data in self.devices_data if device_data['device'] == device), []) return next((pin_data['pin'] for pin_data in pins_data if pin_data['name'] == pin_name), None) def get_read_all_list(self): scan_list = [] for device_data in self.devices_data: scan_list += [(device_data['device'], pin_data['pin']) for pin_data in device_data['pins']] return sorted(scan_list, key=lambda x: (x[1], x[0])) def get_ping_all_list(self): return [device_data['device'] for device_data in self.devices_data] def _decode(self, device, pin, data): pins_data = next((device_data['pins'] for device_data in self.devices_data if device_data['device'] == device), []) data_type = next((pin_data['data_type'] for pin_data in pins_data if pin_data['pin'] == pin), None) if data_type == '16bit_int': return int.from_bytes(data[1:3], byteorder='big') if data_type == 'bool': return bool(int(data[1])) elif data_type == '32bit_float': return struct.unpack('<f', data[1:5])[0] else: return None def enable(self): # reset arduino first gpio.output(self.arduino_reset, 0) time.sleep(0.01) gpio.output(self.arduino_reset, 1) # start normal operations gpio.output(self.relay, 0) time.sleep(1) self.enabled = True return {'success': True, 'data': None} def disable(self): gpio.output(self.relay, 1) time.sleep(1) self.enabled = False return {'success': True, 'data': None} def ping(self, device): if not self.enabled: return {'success': False, 'error': 'You must enable it first'} device = int(device) if not self._is_device_valid(device): return {'success': False, 'error': 'Invalid device'} time.sleep(self.delay) s = time.time() message = bytes([device, 2, 0, 0, 0]) self.conn.write(message) response = self.conn.read(size=5) if response == b'': return {'success': False, 'error': 'Device not responding, timeout'} data = struct.unpack('5B',response) if data[0:2] == (0,1): return {'success': True, 'data': {'time': time.time() - s}} return {'success': False, 'error': 'Invalid response from device'} def read(self, device, pin): if not self.enabled: return {'success': False, 'error': 'You must enable it first'} try: device = int(device) if not self._is_device_valid(device): raise ValueError except ValueError: device = self.get_device_number(device) try: pin = int(pin) if not self._is_pin_valid(device, pin): raise ValueError except ValueError: pin = self.get_pin_number(device, pin) if not self._is_device_valid(device): return {'success': False, 'error': 'Invalid device'} if not self._is_pin_valid(device, pin): return {'success': False, 'error': 'Invalid device pin'} time.sleep(self.delay) message = bytes([device, 0, pin, 0, 0]) self.conn.write(message) response = self.conn.read(size=5) if response == b'': return {'success': False, 'error': 'Device not responding, timeout'} return {'success': True, 'data': self._decode(device, pin, response)} def write(self, device, pin, value, buzzer): if not self.enabled: return {'success': False, 'error': 'You must enable it first'} device = int(device) pin = int(pin) value = int(value) buzzer = buzzer.lower() in ("true", "1") if not self._is_device_valid(device): return {'success': False, 'error': 'Invalid device'} if not pin in range(0,256): return {'success': False, 'error': 'Invalid device pin, out of byte range'} if not buzzer and not value in range(0,256): return {'success': False, 'error': 'Invalid value, out of byte range'} if buzzer and not value in range(0,65536): return {'success': False, 'error': 'Invalid value, out of ushort range'} time.sleep(self.delay) if buzzer: message = bytes([device, 1, pin]) + value.to_bytes(2, byteorder='big') else: message = bytes([device, 1, pin, value, 0]) self.conn.write(message) response = self.conn.read(size=5) if response == b'': return {'success': False, 'error': 'Device not responding, timeout'} data = struct.unpack('5B', response) if data[0:2] == (0,1): return {'success': True, 'data': None} return {'success': False, 'error': 'Invalid response from device, pin is not valid'}
[ "federico@federicoferri.me" ]
federico@federicoferri.me
bd34f0c623410189976e30913ec1b9bcb28f7ef9
cf9f61e354658d92cd4f8fadc5ca6f1eb8dff9c1
/chicagoID.py
7197e04eddba0c5620f32e71e8afa5ce24d3c78e
[]
no_license
cphalen/IDCard
c183bd383c935ae9b4d4cecb07fc07d937e92229
78c7c044a25f363182b0b52927df127866e82925
refs/heads/master
2021-05-04T20:49:46.855457
2018-09-29T02:47:55
2018-09-29T02:47:55
119,841,029
0
1
null
null
null
null
UTF-8
Python
false
false
507
py
from sharedCode import send print("Type 'exit' to exit the program") f = open('ISO-Dump.csv') lines = f.read().split("\n") chiID = {} for line in lines: if line != "": cols = line.replace(' ', '').split(",") chiID[cols[5]] = cols[:] while True: input_var = str(raw_input("Enter ID #: ")) if input_var == 'exit': exit() try: idInput = input_var record = chiID[idInput] send(record) except: print("error reading ID, try again")
[ "=" ]
=
664bdba1c3548f53247725c6f9c139de2e1e6ee5
8f0e022e2916fb7e237480fb0acba6c9e371bf6d
/backend/home/migrations/0002_load_initial_data.py
1586576c432aef56792eee1fab885e323be498a5
[]
no_license
crowdbotics-apps/pheeli-21735
3fef05062c20bbac3d6b4015aba80b21253ab579
34f3973720f2e055662782966f2aa55eae3d5839
refs/heads/master
2022-12-29T21:19:23.021378
2020-10-20T03:49:06
2020-10-20T03:49:06
305,582,930
0
0
null
null
null
null
UTF-8
Python
false
false
1,278
py
from django.db import migrations def create_customtext(apps, schema_editor): CustomText = apps.get_model("home", "CustomText") customtext_title = "Pheeli" 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">Pheeli</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 = "pheeli-21735.botics.co" site_params = { "name": "Pheeli", } 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), ]
[ "team@crowdbotics.com" ]
team@crowdbotics.com
8fc0b4eca57a8acee9d14094dab8fc6f6b7ff91f
f48f9798819b12669a8428f1dc0639e589fb1113
/desktop/kde/l10n/kde-l10n-de/actions.py
fe0c826ffa47e8dea11b10ba4cb6c4f14a5849cd
[]
no_license
vdemir/PiSiPackages-pardus-2011-devel
781aac6caea2af4f9255770e5d9301e499299e28
7e1867a7f00ee9033c70cc92dc6700a50025430f
refs/heads/master
2020-12-30T18:58:18.590419
2012-03-12T03:16:34
2012-03-12T03:16:34
51,609,831
1
0
null
2016-02-12T19:05:41
2016-02-12T19:05:40
null
UTF-8
Python
false
false
936
py
#!/usr/bin/python # -*- coding: utf-8 -*- # # Copyright 2008-2009 TUBITAK/UEKAE # 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 cmaketools from pisi.actionsapi import get from pisi.actionsapi import kde4 from pisi.actionsapi import pisitools WorkDir="%s-%s" % (get.srcNAME(), get.srcVERSION()) shelltools.export("HOME", get.workDIR()) def setup(): # Remove after switching to new KDEPIM 4.6 tree # We already have those translations in kdepim-4.4 package pisitools.dosed("messages/CMakeLists.txt", "add_subdirectory\\(kdepim\\-runtime\\)", "#add_subdirectory(kdepim-runtime)") pisitools.dosed("messages/CMakeLists.txt", "add_subdirectory\\(kdepim\\)", "#add_subdirectory(kdepim)") kde4.configure() def build(): kde4.make() def install(): kde4.install()
[ "kaptan@pisipackages.org" ]
kaptan@pisipackages.org
2efd048bb56c190b5094fc0a7eea462aa7161aba
0a1736a509758d7c4c266d1d1c72284a685a7fd2
/retriever/selector/conceptnet.py
d6298b6d0784af1f3e7a72c517ba77ad31696f26
[]
no_license
wuyaoxuehun/arc-etrr-code-geo
e53176e5f741cc9e09b3a5da49c49b44f81dac2a
5a63499f803e77ac4ab38070ca37d957803b23c4
refs/heads/master
2021-02-19T18:54:47.705208
2020-03-06T04:11:20
2020-03-06T04:11:20
245,318,383
0
0
null
null
null
null
UTF-8
Python
false
false
2,383
py
from utils import is_stopword import collections class OrderedSet(collections.Set): def __init__(self, iterable=()): self.d = collections.OrderedDict.fromkeys(iterable) def __len__(self): return len(self.d) def __contains__(self, element): return element in self.d def __iter__(self): return iter(self.d) class ConceptNet: def __init__(self, path='./data/concept.filter'): self.data = {} cnt = 0 for triple in open(path, 'r', encoding='utf-8'): r, arg1, arg2 = triple.split() if not arg1 in self.data: self.data[arg1] = {} self.data[arg1][arg2] = r if not arg2 in self.data: self.data[arg2] = {} self.data[arg2][arg1] = r cnt += 1 print('Load %d triples from %s' % (cnt, path)) def get_relation(self, w1, w2): if is_stopword(w1) or is_stopword(w2): return '<NULL>' w1 = '_'.join(w1.lower().split()) w2 = '_'.join(w2.lower().split()) if not w1 in self.data: return '<NULL>' return self.data[w1].get(w2, '<NULL>') def p_q_relation(self, passage, query): passage = [w.lower() for w in passage] query = [w.lower() for w in query] #query = set(query) | set([' '.join(query[i:(i+2)]) for i in range(len(query))]) #query = set([q for q in query if not is_stopword(q)]) query = OrderedSet(query) | OrderedSet([' '.join(query[i:(i+2)]) for i in range(len(query))]) query = OrderedSet([q for q in query if not is_stopword(q)]) ret = ['<NULL>' for _ in passage] for i in range(len(passage)): for q in query: r = self.get_relation(passage[i], q) if r != '<NULL>': ret[i] = r break r = self.get_relation(' '.join(passage[i:(i+2)]), q) if r != '<NULL>': ret[i] = r break return ret concept_net = ConceptNet() if __name__ == '__main__': net = ConceptNet() print(net.get_relation('positive', 'negative')) print(net.get_relation('under water', 'above water')) while True: w1, w2 = input('Please input two words: ').strip().split()[:2] print(net.get_relation(w1, w2))
[ "798143193@qq.com" ]
798143193@qq.com
13c20cc26afdd1723b5dd3e9ac1f51979b514aa7
4393d6f8ec06a22d5dbd8e499533c37f18a5fc56
/submit_to_condor.py
7d85dd8b6745ac050e42e47bf856dc79caa31859
[ "MIT" ]
permissive
goi42/SU-lhcb-MC-gen
c38c6d604a3337ea876c3e4ec9acb53c573fc343
74e16feb92ca2543c1a123c6708bcf22306c94b4
refs/heads/beta
2021-06-20T00:35:39.282329
2021-01-14T16:12:12
2021-01-14T16:12:12
149,149,358
1
0
MIT
2018-10-08T20:13:57
2018-09-17T15:46:51
Python
UTF-8
Python
false
false
8,027
py
from shutil import move, rmtree from subprocess import call import os from os.path import join as opj from time import sleep from imp import load_source from utils import makelohilist, incfilename from moveFiles import moveFiles, runMoveFilesContinuously, parser # some args overridden--see below print '\n' print " _ _ _ _ _ " print " ___ _ _| |__ _ __ ___ (_) |_ | |_ ___ ___ ___ _ __ __| | ___ _ __ _ __ _ _ " print "/ __| | | | '_ \| '_ ` _ \| | __| | __/ _ \ / __/ _ \| '_ \ / _` |/ _ \ | '__| '_ \| | | |" print "\__ \ |_| | |_) | | | | | | | |_ | || (_) | | (_| (_) | | | | (_| | (_) || | _| |_) | |_| |" print "|___/\__,_|_.__/|_| |_| |_|_|\__|___\__\___/___\___\___/|_| |_|\__,_|\___/ |_|(_) .__/ \__, |" print " |_____| |_____| |_| |___/ " print '\n' # -- make adjustments to parser -- # parser.description = '''\ Run run_stages.py using the specified configfile by transferring files from store_sys to run_sys, running, then moving them back. Arguments specific to this script are in the 'submit_to_condor options' group. Unknown arguments are assumed to be intended for configfile. This script uses a number of arguments from moveFiles.py (with some changes to default values; use --help), but it overrides some of them: minallowed, maxallowed, justdata, lessthan, copyfrom, idontcareaboutotherjobs are overriden. lessthan is overridden for all movement from store_sys and for the final chunk of movement to store_sys (set to 0). copyfrom is only overriden for the move back (set to None) (therefore, specifying copyfrom copies from store_sys to run_sys but then moves them from store_sys to run_sys under signal_name). idontcareaboutotherjobs is only overridden for the initial movement (set to False since `justdata` is used). ''' parser.set_defaults(interval=240, maxwaittime=0, lessthan=50, waittostart=60) submit_to_condorgroup = parser.add_argument_group('submit_to_condor options') submit_to_condorgroup.add_argument('configfile', type=os.path.abspath, help='the configfile you want run_stages to use') submit_to_condorgroup.add_argument('--setlohi', nargs=2, type=int, default=None, metavar=('LO', 'HI'), help='set the lowest (inclusive) and highest (exclusive) job numbers;' ' if set, these limits also apply to run numbers found by runfromstorage') submit_to_condorgroup.add_argument('--runfromstorage', action='store_true', help='move data files from store_sys to run_sys, then submit the moved run numbers (in chunks);' ' if setlohi used, will ignore run numbers not in-range.' ' (Useful for running later stages of a multi-stage job; make sure you set the correct stages to run.)') submit_to_condorgroup.add_argument('--chunks_of', type=int, default=20, help='how many jobs to move and submit at a time') submit_to_condorgroup.add_argument('--donotstore', action='store_true', help='flag to prevent files from being moved from run_sys to store_sys') submit_to_condorgroup.add_argument('--test', action='store_true', help='use error script in condor submission and preserve submission script') # -- evaluate args -- # allargs = parser.parse_known_args() # unknown args are assumed to be handled by the configfile args = allargs[0] if not args.runfromstorage and args.setlohi is None: raise parser.error('must runfromstorage or setlohi (or both)') # handle unknown arguments args_for_configfile = ' '.join(allargs[1]) # arguments unknown to this script as a string to pass run_stages.py conf = load_source('conf', args.configfile) try: # if the configfile has a parser, pass arguments to it configparser = getattr(conf, 'parser') except AttributeError: # else don't configparser = None if args_for_configfile != '': raise parser.error('Unknown arguments passed and configfile has no parser! Unknown arguments: {}'.format(args_for_configfile)) # useful definitions cmfrom = args.copyfrom if args.movefrom is None else args.movefrom # will be None or a string; same logic as used in moveFiles # parse run numbers if args.runfromstorage: startpath = '{start_sys}/{user}/data/{signal_name}/'.format(start_sys=args.store_sys, user=args.user, signal_name=args.signal_name if cmfrom is None else cmfrom) intlistdirs = [int(x) for x in os.listdir(startpath) if os.path.isdir(opj(startpath, x))] if args.setlohi is not None: intlistdirs = [x for x in intlistdirs if args.setlohi[0] <= x < args.setlohi[1]] else: intlistdirs = range(args.setlohi[0], args.setlohi[1]) lowest = int(min(intlistdirs)) highest = int(max(intlistdirs)) number = len(intlistdirs) submissionlist = makelohilist(intlistdirs, args.chunks_of) # -- submit jobs in a loop -- # print '----------------submit "{}" from configfile "{}" to Condor-----------------'.format(args.signal_name, args.configfile) for minnum, maxnum in submissionlist: print 'lowest (inclusive) = {}, highest (inclusive) = {}, number = {}'.format(lowest, highest, number) print '----------------on files in range [{}, {})-----------------'.format(minnum, maxnum) if args.runfromstorage: # move files to run_sys print 'moving files from store_sys to run_sys...' succeeded = moveFiles(store_sys=args.run_sys, run_sys=args.store_sys, minallowed=minnum, maxallowed=maxnum, justdata=True, lessthan=0, idontcareaboutotherjobs=False, signal_name=args.signal_name, user=args.user, copyfrom=args.copyfrom) # returns True when done if not succeeded: raise Exception('problem with moveFiles. [{}, {})'.format(minnum, maxnum)) # create condor submission file print 'writing condor_submit file...' submissionfilename = incfilename('CondorSubmission_{}.submit'.format(args.signal_name)) Nqueue = maxnum - minnum with open(submissionfilename, 'w') as f: f.write('Executable = run_stages.py\n') f.write('ConfigFile = {}\n'.format(args.configfile)) f.write('StartRun = {}\n'.format(minnum)) f.write('RunNumber = $$([$(StartRun)+$(process)])\n') f.write('Arguments = $(ConfigFile) --SIGNAL_NAME {} --RUN_NUMBER $(RunNumber) --SOME_MISSING {}\n'.format(args.signal_name, args_for_configfile)) if args.test: f.write('Error = error_{}_{}_$(RunNumber)_$(cluster)_$(process).log\n'.format(submissionfilename, args.signal_name)) f.write('Queue {}\n'.format(Nqueue)) # submit jobs succeeded = 0 == call(['condor_submit {}'.format(submissionfilename)], shell=True) # returns 0 if successful if succeeded: if not args.test: os.remove(submissionfilename) else: raise Exception('failed to submit. [{}, {})'.format(minnum, maxnum)) if not args.donotstore: # move files to store_sys print 'moving files from run_sys to store_sys...' lt = 0 if minnum is submissionlist[-1][0] else args.lessthan succeeded = runMoveFilesContinuously(lessthan=lt, justdata=False, minallowed=None, maxallowed=None, copyfrom=None, signal_name=args.signal_name, run_sys=args.run_sys, store_sys=args.store_sys, user=args.user, interval=args.interval, maxwaittime=args.maxwaittime, waittostart=args.waittostart, idontcareaboutotherjobs=args.idontcareaboutotherjobs, ) # returns True when done if not succeeded: raise Exception('problem with runMoveFilesContinuously. [{}, {})'.format(minnum, maxnum)) print '----------------{} submission done-----------------'.format(args.signal_name)
[ "miwilkin@syr.edu" ]
miwilkin@syr.edu
8674478823d9fb67cc6eafa924b3a35ba8e07639
a496bae93a7914ab79bbfd1654062656bb2a99f2
/rlfd/rlfd/params/cql_dp.py
a4c5f9f7e09e10e6f8eafa6eeee251df9e13de79
[ "MIT" ]
permissive
cheneyuwu/rlfd
81fd5f9210c2103bf1647800924bf970f75122cb
a2708e3a13e74e3617cb11799ba2a128a63709e9
refs/heads/master
2023-01-04T18:29:43.141402
2020-09-14T22:14:04
2020-09-14T22:14:04
161,072,134
3
0
MIT
2020-09-02T01:20:32
2018-12-09T19:09:00
Python
UTF-8
Python
false
false
1,908
py
# yapf: disable from copy import deepcopy # Default Parameters default_params = { # config summary "algo": "CQLDP", "config": "default", # environment config "env_name": "InvertedPendulum-v2", "r_scale": 1.0, "r_shift": 0.0, "eps_length": 0, "env_args": {}, "fix_T": False, # learner "pretrained": None, "offline_num_epochs": int(1e3), "offline_num_batches_per_epoch": 1000, "random_expl_num_cycles": 0, "num_epochs": 0, "num_cycles_per_epoch": 1, "num_batches_per_cycle": 1000, "expl_num_episodes_per_cycle": None, "expl_num_steps_per_cycle": 1000, "eval_num_episodes_per_cycle": 5, "eval_num_steps_per_cycle": None, # agent config "agent": { "gamma": 0.99, "offline_batch_size": 256, "online_batch_size": 256, "online_sample_ratio": 1, # replay buffer setup "buffer_size": int(1e6), # online training use a pre-trained actor or critic "use_pretrained_actor": False, "use_pretrained_critic": False, "use_pretrained_alpha": False, # online training plus offline data "online_data_strategy": "None", # ["None", "BC", "Shaping"] # normalize observation "norm_obs_online": True, "norm_obs_offline": True, "norm_eps": 0.01, "norm_clip": 5, # actor critic networks "layer_sizes": [256, 256], "auto_alpha": True, "alpha": 0.2, # cql specific "cql_tau": 0.0, "auto_cql_alpha": False, "cql_log_alpha": 2.0, "cql_alpha_lr": 3e-4, "target_lower_bound": 0, "q_lr": 3e-4, "pi_lr": 3e-5, "action_l2": 0.0, # double q learning "soft_target_tau": 5e-3, "target_update_freq": 1, }, "seed": 0, } # OpenAI Gym gym_mujoco_params = deepcopy(default_params)
[ "cheneyuwu@gmail.com" ]
cheneyuwu@gmail.com
d364483c9b647470bf7749fa7dcc1eaac45f692d
2f030e8b1b8433271c705e1f56f8e2d677873ead
/fastq_dump.py
afba04485cf2a8eba08beb3318d760e84d402a12
[]
no_license
WendyBu/ServerScripts
994862b9c05edcc76d905fe4ea4e1f3532b25291
64c316e95660ecf2f354ed4cc2b26b85e4edf72f
refs/heads/master
2020-04-01T11:39:38.457105
2019-01-14T21:28:51
2019-01-14T21:28:51
153,171,918
0
0
null
null
null
null
UTF-8
Python
false
false
1,939
py
import os , sys import pandas as pd import glob import os.path pd.set_option("display.max_column", 100) def fastq_dump(file, srr, p, bin_dir, fastq_dir): bin_file = os.path.join(bin_dir, "fastq_"+ srr) pbs = open(bin_file + ".pbs", "w") pbs.write("#!/bin/bash\n") pbs.write("#PBS -r n\n") pbs.write("#PBS -o " + bin_file + ".out\n") pbs.write("#PBS -e " + bin_file + ".err\n") pbs.write("#PBS -m e\n") pbs.write("#PBS -M ybu2@houstonmethodist.org\n") pbs.write("#PBS -l walltime=96:00:00\n") pbs.write("#PBS -l nodes=1:ppn=8\n") pbs.write("#PBS -l pmem=6000mb\n") pbs.write("#PBS -q mediummem\n") pbs.write("#PBS -q default\n") pbs.write("cd " + fastq_dir + "/" + "\n") pbs.write("mkdir " + srr + "\n") if p == "SINGLE": pbs.write("/archive2/tmhyxb9/tools/sratoolkit.2.9.0-centos_linux64/bin/fastq-dump -O " + fastq_dir + "/" + srr + "/ -B " + file + "/ \n") elif p == "PAIRED": pbs.write("/archive2/tmhyxb9/tools/sratoolkit.2.9.0-centos_linux64/bin/fastq-dump -O " + fastq_dir + "/" + srr + "/ -B --split-3 " + file + "/ \n") pbs.close() os.system('qsub '+bin_file+ ".pbs") return def main(dir): srr_dir = os.path.join(os.getcwd(), dir, "SRR") index_file = os.path.join(dir, "SraRunTable.txt") file_info = pd.read_csv(index_file, sep="\t", index_col="Run") bin_dir = os.path.join(os.getcwd(), dir, "fastq_bin") if not os.path.exists(bin_dir): os.mkdir(bin_dir) fastq_dir = os.path.join(os.getcwd(), dir, "fastq") if not os.path.exists(fastq_dir): os.mkdir(fastq_dir) for file in glob.glob(srr_dir + "/*"): srr = os.path.basename(file) p = file_info.loc[srr, "LibraryLayout"] fastq_dump(file, srr, p, bin_dir, fastq_dir) return if __name__ == "__main__": main(sys.argv[1]) ## python fastq_dump.py ADAR_CLIP/ ## python fastq_dump.py iCLIP_ezh2_hct116/
[ "wybyw@hotmail.com" ]
wybyw@hotmail.com
058036d71d7aeaa73d4d60eea299548cb948c99e
96f0e94af345fbdc3a5851b9984a3164df1d1333
/KMeans_Final.py
e20bdea102adc86e7de57525b04d8f9b482d3706
[]
no_license
shazli1/Implement-the-K-means-Clustering-Algorithm
3eb0a929018e6d99499df6ef3faa1c4e74f6d15a
8d0486d0d0330bc8b4e5027fd0c456747b0c260a
refs/heads/master
2020-04-20T11:21:36.321005
2019-02-02T09:16:03
2019-02-02T09:16:03
168,814,043
1
0
null
null
null
null
UTF-8
Python
false
false
10,184
py
import numpy as np import random import matplotlib.pyplot as plt import math import statistics def separate_data(seq): ''' Function to separate 2D input list into two 1D lists (x & y) ''' temp_x = [] temp_y = [] for i in range(len(seq)): temp_x.append(seq[i][0]) temp_y.append(seq[i][1]) return temp_x, temp_y def calculate_rnk(data_points, mu1, mu2, mu3): ''' This Function estimates "rnk" of each point and do the clustering based on distance between each point and Mu1, Mu2 & Mu3. The Function returns the 3 lists of computed cluster points. ''' first_cluster_points = [] second_cluster_points = [] third_cluster_points = [] for m in range(len(data_points)): # Calculate the distance between each point & the 3 centers distance_to_first_center = (x[m] - mu1[0])**2 + (y[m] - mu1[1])**2 distance_to_second_center = (x[m] - mu2[0])**2 + (y[m] - mu2[1])**2 distance_to_third_center = (x[m] - mu3[0])**2 + (y[m] - mu3[1])**2 total_distances = [distance_to_first_center, distance_to_second_center, distance_to_third_center] if total_distances.index(min(total_distances)) == 0: first_cluster_points.append(data_points[m]) elif total_distances.index(min(total_distances)) == 1: second_cluster_points.append(data_points[m]) else: third_cluster_points.append(data_points[m]) return [first_cluster_points, second_cluster_points, third_cluster_points] def compute_mu(cluster1, cluster2, cluster3): ''' This Function computes "Mu-k" based on the points of each cluster (according to K-Mean Algorithm). ''' # Compute First Center again based on cluster points: if len(cluster1) == 0: mean1 = 0 else: x_acc = 0 y_acc = 0 for a in range(len(cluster1)): x_acc += cluster1[a][0] y_acc += cluster1[a][1] mean1 = [(1 / len(cluster1)) * x_acc, (1 / len(cluster1)) * y_acc] # Compute Second Center again based on cluster points: if len(cluster2) == 0: mean2 = 0 else: x_acc1 = 0 y_acc1 = 0 for s in range(len(cluster2)): x_acc1 += cluster2[s][0] y_acc1 += cluster2[s][1] mean2 = [(1 / len(cluster2)) * x_acc1, (1 / len(cluster2)) * y_acc1] # Compute Third Center again based on cluster points: if len(cluster3) == 0: mean3 = 0 else: x_acc2 = 0 y_acc2 = 0 for d in range(len(cluster3)): x_acc2 += cluster3[d][0] y_acc2 += cluster3[d][1] mean3 = [(1 / len(cluster3)) * x_acc2, (1 / len(cluster3)) * y_acc2] return mean1, mean2, mean3 def calculate_average_distance(final_center1, final_center2, final_center3, final_cluster1, final_cluster2, final_cluster3): ''' This Function estimates average distance between the points and the centers of their corresponding clusters. ''' # Start with cluster 1: temp_cluster1 = 0 for q in range(len(final_cluster1)): temp_cluster1 += (np.array(final_cluster1[q]) - np.array(final_center1))**2 total_cluster1 = (1 / len(final_cluster1)) * temp_cluster1 # Cluster 2 calculation: temp_cluster2 = 0 for w in range(len(final_cluster2)): temp_cluster2 += (np.array(final_cluster2[w]) - np.array(final_center2))**2 total_cluster2 = (1 / len(final_cluster2)) * temp_cluster2 # Cluster 3 calculation: temp_cluster3 = 0 for e in range(len(final_cluster3)): temp_cluster3 += (np.array(final_cluster3[e]) - np.array(final_center3))**2 total_cluster3 = (1 / len(final_cluster3)) * temp_cluster3 total_average_distance = (1 / 3) * (total_cluster1 + total_cluster2 + total_cluster3) return total_average_distance ###################################################### Load Data & Start the 100 Iterations ########################################################### data = np.loadtxt(r'C:\Users\chtv2985\Desktop\Assig 4\Data.txt') # load data data_list = data.tolist() x, y = separate_data(data_list) # separate data input points into x & y lists # Apply K-Means algorithm for 100 times: total_clustered_points = [] total_calculated_means = [] all_average_distances = [] iteration_number = 1 for n in range(100): # Select the First Center randomly: random_x = random.choice(list(enumerate(x))) # randomly select data point from x and keep it's index, random_x[0] is the index and # random_x[1] is the element itself first_center = [random_x[1], y[random_x[0]]] # select data point from y with the corresponding index # Compute Second Center according to max distance from First Center: second_center_list = [] for j in range(len(data_list)): temp = np.linalg.norm(np.array(first_center) - np.array(data_list[j])) # Calculate Euclidean distance between each point & 1st center second_center_list.append(temp) second_center = data_list[second_center_list.index(max(second_center_list))] # Select Second Center with the max distance from 1st center # Compute Third Center according to max distance from Second Center (after excluding First Center from list): third_center_list = [] data_list_temp = [] for l in range(len(data_list)): # Copy data points to another temp list data_list_temp.append(data_list[l]) del data_list_temp[random_x[0]] # Remove first center from data list before we compute the third center for k in range(len(data_list_temp)): temp2 = np.linalg.norm(np.array(second_center) - np.array(data_list_temp[k])) third_center_list.append(temp2) third_center = data_list_temp[third_center_list.index(max(third_center_list))] # Cluster data points based on computed centers: first_clustering_output = calculate_rnk(data_list, first_center, second_center, third_center) # Re-calculate the three centers based on clusters average (mean): first_center_modified, second_center_modified, third_center_modified = compute_mu(first_clustering_output[0], first_clustering_output[1], first_clustering_output[2]) # Now need to keep calculating centers till K-means algorithm converges: i = 1 while first_center != first_center_modified or second_center != second_center_modified or third_center != third_center_modified: first_center = first_center_modified second_center = second_center_modified third_center = third_center_modified second_clustering_output = calculate_rnk(data_list, first_center_modified, second_center_modified, third_center_modified) first_center_modified, second_center_modified, third_center_modified = compute_mu(second_clustering_output[0], second_clustering_output[1], second_clustering_output[2]) print("(for Mu's Convergence) Internal Sub-iteration Number: " + str(i)) i += 1 print("Finish, K-Means Algorithm Converged!") # After algorithm convergence, we need to calculate the average of distances between points and their corresponding centers in each cluster calculated_distance = calculate_average_distance(first_center_modified, second_center_modified, third_center_modified, second_clustering_output[0], second_clustering_output[1], second_clustering_output[2]) print("Final Calculated Centers: ") print(first_center_modified, second_center_modified, third_center_modified) total_calculated_means.append([first_center_modified, second_center_modified, third_center_modified]) total_clustered_points.append([second_clustering_output[0], second_clustering_output[1], second_clustering_output[2]]) all_average_distances.append(calculated_distance) print("Iteration Number: " + str(iteration_number)) iteration_number += 1 print("=============================================================================================================") ######################################################## Check & Plot Obtained Clustered Data ####################################################### # Check the obtained centers in the 100 iterations: # We will compare using the mean of the three centers of each operation (with round to the 3rd decimal digit) check_difference = 0 for u in range(len(total_calculated_means)): if round(statistics.mean(total_calculated_means[0][0])+statistics.mean(total_calculated_means[0][1])+statistics.mean(total_calculated_means[0][2]), 3) != round(statistics.mean(total_calculated_means[u][0])+statistics.mean(total_calculated_means[u][1])+statistics.mean(total_calculated_means[u][2]), 3): check_difference += 1 print("Different Centers Found at Index (iteration) Number: " + str(u)) if check_difference == 0: print("All Centers in the 100 Iterations have the same value!") # As we obtained the same 3 centers in all of the 100 iterations # Therefore, we shall use any of them to finally cluster data. Let's choose the firstly calculated centers. # Separating final clustered data into x & y lists: cluster1_points_x , cluster1_points_y = separate_data(total_clustered_points[0][0]) cluster2_points_x , cluster2_points_y = separate_data(total_clustered_points[0][1]) cluster3_points_x , cluster3_points_y = separate_data(total_clustered_points[0][2]) # Plot the 3 obtained clusters: plt.plot(cluster1_points_x, cluster1_points_y, 'yX', label='Cluster 1') plt.plot(cluster2_points_x, cluster2_points_y, 'rX', label='Cluster 2') plt.plot(cluster3_points_x, cluster3_points_y, 'bX', label='Cluster 3') plt.title('Clustered Data Points') plt.xlabel('X-axis') plt.ylabel('Y-axis') plt.legend(loc='best', framealpha=1, borderpad=1) plt.grid() plt.show()
[ "noreply@github.com" ]
shazli1.noreply@github.com
31a8ee2f618c59712db0a0451b3bf34286fed3f2
cd53ecf7c85992619ff8042228323772cefd19a9
/FetchWeather.py
e734d979b47482a88ae2f18422accccbf76af2c3
[]
no_license
AllanSasi/Tkinter-apps
3d57f3a552682ff2626527e3f76ca49cc664fc88
7f3fcc4f081ab8a29ee2191e12817db07d4cc278
refs/heads/master
2020-06-29T09:01:09.802958
2019-08-15T11:46:24
2019-08-15T11:46:24
200,493,762
2
0
null
null
null
null
UTF-8
Python
false
false
1,652
py
import requests import tkinter as tk from tkinter import font height = 700 width = 800 def get_weather(city): try: api_address='http://api.openweathermap.org/data/2.5/weather?appid=0c42f7f6b53b244c78a418f4f181282a&q=' url = api_address+city weather_data = requests.get(url).json() name = weather_data['name'] description = weather_data['weather'][0]['description'] temp = weather_data['main']['temp'] wind_speed = weather_data['wind']['speed'] lower_label['text'] = "Name: "+name+"\n"+"Description: "+description+"\n"+"Temperature: "+str(temp)+"\n"+"Wind speed: "+str(wind_speed) except: lower_label['text'] = "'"+city+"'"+"\n"+"Sorry not found!"+"\n"+"Please try again!!" root = tk.Tk() root.title('Weather') canvas = tk.Canvas(root,height=height,width=width) canvas.pack() background_image = tk.PhotoImage(file='bgImg.png') background_label = tk.Label(root,image=background_image) background_label.place(relwidth=1,relheight=1) frame = tk.Frame(root,bg="#4085c9",bd=5) frame.place(relx=0.5,rely=0.1,relwidth=0.75,relheight=0.1,anchor='n') entry = tk.Entry(frame,font=20) entry.place(relwidth=0.73,relheight=1) button = tk.Button(frame, text="Fetch Weather",font='Helvetica',command=lambda: get_weather(entry.get())) button.place(relx=0.7, relheight=1, relwidth=0.3) lower_frame = tk.Frame(root, bg='#80c1ff', bd=10) lower_frame.place(relx=0.5, rely=0.25, relwidth=0.75, relheight=0.7, anchor='n') lower_label = tk.Label(lower_frame,font=('times',35)) lower_label.place(relwidth=1,relheight=1) root.mainloop()
[ "noreply@github.com" ]
AllanSasi.noreply@github.com
f111a1ea81a814cb255132b8450958e7129755cb
f58cc3ce8403ee67e1b8541dc5eb910013ef7d97
/setup.py
0115475a52462684b280a4028d5e7e9f4ff873f8
[]
no_license
Revenue-Academy/Tax_Microsimulation
09578f6151f2357bd2b92746587c6d68040c135b
66774bfe8139dc75db83b1e9147bed516e44ec2b
refs/heads/master
2022-11-28T00:44:40.903209
2022-03-21T03:32:36
2022-03-21T03:32:36
157,344,951
2
46
null
2022-11-15T01:11:47
2018-11-13T08:21:14
Python
UTF-8
Python
false
false
1,512
py
import versioneer versioneer.VCS = 'git' versioneer.versionfile_source = 'taxcalc/_version.py' versioneer.versionfile_build = 'taxcalc/_version.py' versioneer.tag_prefix = '' # tags are like 1.2.0 versioneer.parentdir_prefix = 'taxcalc-' # dirname like 'taxcalc-1.2.0' try: from setuptools import setup except ImportError: from distutils.core import setup with open('README.md') as f: longdesc = f.read() version = versioneer.get_version() cmdclass = versioneer.get_cmdclass() config = { 'description': 'pitaxcalc-demo', 'url': 'https://github.com/TPRU-demo/pitaxcalc-demo', 'download_url': 'https://github.com/TPRU-demo/pitaxcalc-demo', 'description': 'pitaxcalc-demo', 'long_description': longdesc, 'version': version, 'cmdclass': cmdclass, 'license': 'MIT', 'packages': ['taxcalc'], 'include_package_data': True, 'name': 'taxcalc', 'install_requires': ['numpy', 'pandas', 'numba', 'toolz'], 'classifiers': [ 'Development Status :: 4 - Beta', 'Intended Audience :: Developers', 'Natural Language :: English', 'License :: OSI Approved :: MIT License', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.6', 'Topic :: Software Development :: Libraries :: Python Modules'], 'tests_require': ['pytest'] } setup(**config)
[ "noreply@github.com" ]
Revenue-Academy.noreply@github.com
e282c61f8f7d73a6a9a9b19756951aa6a76fb54a
dd56f43045f9f55d8aab611bd392079e90228336
/app.py
6dda277bd9d64e431eabbf75f0e52b403558b80f
[ "MIT" ]
permissive
Hongseokzip/KakaoTalk-Bot-Boilerplate
009df4cc290a118897c7f7116ee90b574f585932
0e6d9d43c8abba617c1807a03738273d11c4a848
refs/heads/master
2021-06-18T03:11:33.762719
2017-06-24T07:46:13
2017-06-24T07:46:13
67,749,844
8
1
null
null
null
null
UTF-8
Python
false
false
282
py
# -*- coding: utf-8 -*- from flask import Flask from kakao_bot import kakao_bot app = Flask(__name__) app.register_blueprint(kakao_bot, url_prefix="/iface") # if url_prefix, set url_prefix parameter if __name__ == '__main__': app.run(debug=True, host='0.0.0.0', port=8888)
[ "roland.korea@gmail.com" ]
roland.korea@gmail.com
4504dad8b0ad9094d2e593ea304d2fee9d445ebd
6bce12b16c63be60a6547f04625252ab86a4ef99
/firstpython.py
e26be6db1fb50755bd3180db7c93e115bf3456b0
[]
no_license
richyi18/testrepo
6fdd8b4829791131177ccefa162d8390a20273d5
5754e9ed461d723889a7f40d446c76e0180ebd79
refs/heads/main
2023-03-31T21:16:48.063241
2021-03-26T20:58:21
2021-03-26T20:58:21
351,667,664
0
0
null
2021-03-26T06:03:26
2021-03-26T05:02:58
Python
UTF-8
Python
false
false
41
py
# print message print("new python file")
[ "noreply@github.com" ]
richyi18.noreply@github.com
b367eeae10d19857c1c15843a03767b6bb179797
bbc61fe39037810826b481d965f295ef5a21dd36
/qa/rpc-tests/wallet.py
9de5f5760ea14b83ca23245fae7895082b8a12d1
[ "MIT" ]
permissive
matthewchincy92/unionew
df7d58f39b752b1b31deb3a0917f7528e3771ef0
91951af8a98fb85eefa556d52cff5c1bd52a2e33
refs/heads/master
2021-04-03T02:53:01.283946
2018-10-23T04:53:45
2018-10-23T04:53:45
124,864,764
0
0
null
null
null
null
UTF-8
Python
false
false
15,588
py
#!/usr/bin/env python2 # coding=utf-8 # ^^^^^^^^^^^^ TODO remove when supporting only Python3 # Copyright (c) 2014-2015 The Bitcoin Core developers # Distributed under the MIT software license, see the accompanying # file COPYING or http://www.opensource.org/licenses/mit-license.php. from test_framework.test_framework import BitcoinTestFramework from test_framework.util import * class WalletTest (BitcoinTestFramework): def check_fee_amount(self, curr_balance, balance_with_fee, fee_per_byte, tx_size): """Return curr_balance after asserting the fee was in range""" fee = balance_with_fee - curr_balance target_fee = fee_per_byte * tx_size if fee < target_fee: raise AssertionError("Fee of %s UNIO too low! (Should be %s UNIO)"%(str(fee), str(target_fee))) # allow the node's estimation to be at most 2 bytes off if fee > fee_per_byte * (tx_size + 2): raise AssertionError("Fee of %s UNIO too high! (Should be %s UNIO)"%(str(fee), str(target_fee))) return curr_balance def setup_chain(self): print("Initializing test directory "+self.options.tmpdir) initialize_chain_clean(self.options.tmpdir, 4) def setup_network(self, split=False): self.nodes = start_nodes(3, self.options.tmpdir) connect_nodes_bi(self.nodes,0,1) connect_nodes_bi(self.nodes,1,2) connect_nodes_bi(self.nodes,0,2) self.is_network_split=False self.sync_all() def run_test (self): # Check that there's no UTXO on none of the nodes assert_equal(len(self.nodes[0].listunspent()), 0) assert_equal(len(self.nodes[1].listunspent()), 0) assert_equal(len(self.nodes[2].listunspent()), 0) print "Mining blocks..." self.nodes[0].generate(1) walletinfo = self.nodes[0].getwalletinfo() assert_equal(walletinfo['immature_balance'], 500) assert_equal(walletinfo['balance'], 0) self.sync_all() self.nodes[1].generate(101) self.sync_all() assert_equal(self.nodes[0].getbalance(), 500) assert_equal(self.nodes[1].getbalance(), 500) assert_equal(self.nodes[2].getbalance(), 0) # Check that only first and second nodes have UTXOs assert_equal(len(self.nodes[0].listunspent()), 1) assert_equal(len(self.nodes[1].listunspent()), 1) assert_equal(len(self.nodes[2].listunspent()), 0) # Send 210 UNIO from 0 to 2 using sendtoaddress call. # Second transaction will be child of first, and will require a fee self.nodes[0].sendtoaddress(self.nodes[2].getnewaddress(), 110) self.nodes[0].sendtoaddress(self.nodes[2].getnewaddress(), 100) walletinfo = self.nodes[0].getwalletinfo() assert_equal(walletinfo['immature_balance'], 0) # Have node0 mine a block, thus it will collect its own fee. self.nodes[0].generate(1) self.sync_all() # Exercise locking of unspent outputs unspent_0 = self.nodes[2].listunspent()[0] unspent_0 = {"txid": unspent_0["txid"], "vout": unspent_0["vout"]} self.nodes[2].lockunspent(False, [unspent_0]) assert_raises(JSONRPCException, self.nodes[2].sendtoaddress, self.nodes[2].getnewaddress(), 200) assert_equal([unspent_0], self.nodes[2].listlockunspent()) self.nodes[2].lockunspent(True, [unspent_0]) assert_equal(len(self.nodes[2].listlockunspent()), 0) # Have node1 generate 100 blocks (so node0 can recover the fee) self.nodes[1].generate(100) self.sync_all() # node0 should end up with 1000 UNIO in block rewards plus fees, but # minus the 210 plus fees sent to node2 assert_equal(self.nodes[0].getbalance(), 1000-210) assert_equal(self.nodes[2].getbalance(), 210) # Node0 should have two unspent outputs. # Create a couple of transactions to send them to node2, submit them through # node1, and make sure both node0 and node2 pick them up properly: node0utxos = self.nodes[0].listunspent(1) assert_equal(len(node0utxos), 2) # create both transactions txns_to_send = [] for utxo in node0utxos: inputs = [] outputs = {} inputs.append({ "txid" : utxo["txid"], "vout" : utxo["vout"]}) outputs[self.nodes[2].getnewaddress("from1")] = utxo["amount"] raw_tx = self.nodes[0].createrawtransaction(inputs, outputs) txns_to_send.append(self.nodes[0].signrawtransaction(raw_tx)) # Have node 1 (miner) send the transactions self.nodes[1].sendrawtransaction(txns_to_send[0]["hex"], True) self.nodes[1].sendrawtransaction(txns_to_send[1]["hex"], True) # Have node1 mine a block to confirm transactions: self.nodes[1].generate(1) self.sync_all() assert_equal(self.nodes[0].getbalance(), 0) assert_equal(self.nodes[2].getbalance(), 1000) assert_equal(self.nodes[2].getbalance("from1"), 1000-210) # Send 100 UNIO normal address = self.nodes[0].getnewaddress("test") fee_per_byte = Decimal('0.00001') / 1000 self.nodes[2].settxfee(fee_per_byte * 1000) txid = self.nodes[2].sendtoaddress(address, 100, "", "", False) self.nodes[2].generate(1) self.sync_all() node_2_bal = self.check_fee_amount(self.nodes[2].getbalance(), Decimal('900'), fee_per_byte, count_bytes(self.nodes[2].getrawtransaction(txid))) assert_equal(self.nodes[0].getbalance(), Decimal('100')) # Send 100 UNIO with subtract fee from amount txid = self.nodes[2].sendtoaddress(address, 100, "", "", True) self.nodes[2].generate(1) self.sync_all() node_2_bal -= Decimal('100') assert_equal(self.nodes[2].getbalance(), node_2_bal) node_0_bal = self.check_fee_amount(self.nodes[0].getbalance(), Decimal('200'), fee_per_byte, count_bytes(self.nodes[2].getrawtransaction(txid))) # Sendmany 100 UNIO txid = self.nodes[2].sendmany('from1', {address: 100}, 0, False, "", []) self.nodes[2].generate(1) self.sync_all() node_0_bal += Decimal('100') node_2_bal = self.check_fee_amount(self.nodes[2].getbalance(), node_2_bal - Decimal('100'), fee_per_byte, count_bytes(self.nodes[2].getrawtransaction(txid))) assert_equal(self.nodes[0].getbalance(), node_0_bal) # Sendmany 100 UNIO with subtract fee from amount txid = self.nodes[2].sendmany('from1', {address: 100}, 0, False, "", [address]) self.nodes[2].generate(1) self.sync_all() node_2_bal -= Decimal('100') assert_equal(self.nodes[2].getbalance(), node_2_bal) node_0_bal = self.check_fee_amount(self.nodes[0].getbalance(), node_0_bal + Decimal('100'), fee_per_byte, count_bytes(self.nodes[2].getrawtransaction(txid))) # Test ResendWalletTransactions: # Create a couple of transactions, then start up a fourth # node (nodes[3]) and ask nodes[0] to rebroadcast. # EXPECT: nodes[3] should have those transactions in its mempool. txid1 = self.nodes[0].sendtoaddress(self.nodes[1].getnewaddress(), 1) txid2 = self.nodes[1].sendtoaddress(self.nodes[0].getnewaddress(), 1) sync_mempools(self.nodes) self.nodes.append(start_node(3, self.options.tmpdir)) connect_nodes_bi(self.nodes, 0, 3) sync_blocks(self.nodes) relayed = self.nodes[0].resendwallettransactions() assert_equal(set(relayed), {txid1, txid2}) sync_mempools(self.nodes) assert(txid1 in self.nodes[3].getrawmempool()) # Exercise balance rpcs assert_equal(self.nodes[0].getwalletinfo()["unconfirmed_balance"], 1) assert_equal(self.nodes[0].getunconfirmedbalance(), 1) #check if we can list zero value tx as available coins #1. create rawtx #2. hex-changed one output to 0.0 #3. sign and send #4. check if recipient (node0) can list the zero value tx usp = self.nodes[1].listunspent() inputs = [{"txid":usp[0]['txid'], "vout":usp[0]['vout']}] outputs = {self.nodes[1].getnewaddress(): 499.998, self.nodes[0].getnewaddress(): 11.11} rawTx = self.nodes[1].createrawtransaction(inputs, outputs).replace("c0833842", "00000000") #replace 11.11 with 0.0 (int32) decRawTx = self.nodes[1].decoderawtransaction(rawTx) signedRawTx = self.nodes[1].signrawtransaction(rawTx) decRawTx = self.nodes[1].decoderawtransaction(signedRawTx['hex']) zeroValueTxid= decRawTx['txid'] sendResp = self.nodes[1].sendrawtransaction(signedRawTx['hex']) self.sync_all() self.nodes[1].generate(1) #mine a block self.sync_all() unspentTxs = self.nodes[0].listunspent() #zero value tx must be in listunspents output found = False for uTx in unspentTxs: if uTx['txid'] == zeroValueTxid: found = True assert_equal(uTx['amount'], Decimal('0')) assert(found) #do some -walletbroadcast tests stop_nodes(self.nodes) wait_bitcoinds() self.nodes = start_nodes(3, self.options.tmpdir, [["-walletbroadcast=0"],["-walletbroadcast=0"],["-walletbroadcast=0"]]) connect_nodes_bi(self.nodes,0,1) connect_nodes_bi(self.nodes,1,2) connect_nodes_bi(self.nodes,0,2) self.sync_all() txIdNotBroadcasted = self.nodes[0].sendtoaddress(self.nodes[2].getnewaddress(), 2) txObjNotBroadcasted = self.nodes[0].gettransaction(txIdNotBroadcasted) self.nodes[1].generate(1) #mine a block, tx should not be in there self.sync_all() assert_equal(self.nodes[2].getbalance(), node_2_bal) #should not be changed because tx was not broadcasted #now broadcast from another node, mine a block, sync, and check the balance self.nodes[1].sendrawtransaction(txObjNotBroadcasted['hex']) self.nodes[1].generate(1) self.sync_all() node_2_bal += 2 txObjNotBroadcasted = self.nodes[0].gettransaction(txIdNotBroadcasted) assert_equal(self.nodes[2].getbalance(), node_2_bal) #create another tx txIdNotBroadcasted = self.nodes[0].sendtoaddress(self.nodes[2].getnewaddress(), 2) #restart the nodes with -walletbroadcast=1 stop_nodes(self.nodes) wait_bitcoinds() self.nodes = start_nodes(3, self.options.tmpdir) connect_nodes_bi(self.nodes,0,1) connect_nodes_bi(self.nodes,1,2) connect_nodes_bi(self.nodes,0,2) sync_blocks(self.nodes) self.nodes[0].generate(1) sync_blocks(self.nodes) node_2_bal += 2 #tx should be added to balance because after restarting the nodes tx should be broadcastet assert_equal(self.nodes[2].getbalance(), node_2_bal) #send a tx with value in a string (PR#6380 +) txId = self.nodes[0].sendtoaddress(self.nodes[2].getnewaddress(), "2") txObj = self.nodes[0].gettransaction(txId) assert_equal(txObj['amount'], Decimal('-2')) txId = self.nodes[0].sendtoaddress(self.nodes[2].getnewaddress(), "0.0001") txObj = self.nodes[0].gettransaction(txId) assert_equal(txObj['amount'], Decimal('-0.0001')) #check if JSON parser can handle scientific notation in strings txId = self.nodes[0].sendtoaddress(self.nodes[2].getnewaddress(), "1e-4") txObj = self.nodes[0].gettransaction(txId) assert_equal(txObj['amount'], Decimal('-0.0001')) try: txId = self.nodes[0].sendtoaddress(self.nodes[2].getnewaddress(), "1f-4") except JSONRPCException as e: assert("Invalid amount" in e.error['message']) else: raise AssertionError("Must not parse invalid amounts") try: self.nodes[0].generate("2") raise AssertionError("Must not accept strings as numeric") except JSONRPCException as e: assert("not an integer" in e.error['message']) # Import address and private key to check correct behavior of spendable unspents # 1. Send some coins to generate new UTXO address_to_import = self.nodes[2].getnewaddress() txid = self.nodes[0].sendtoaddress(address_to_import, 1) self.nodes[0].generate(1) self.sync_all() # 2. Import address from node2 to node1 self.nodes[1].importaddress(address_to_import) # 3. Validate that the imported address is watch-only on node1 assert(self.nodes[1].validateaddress(address_to_import)["iswatchonly"]) # 4. Check that the unspents after import are not spendable assert_array_result(self.nodes[1].listunspent(), {"address": address_to_import}, {"spendable": False}) # 5. Import private key of the previously imported address on node1 priv_key = self.nodes[2].dumpprivkey(address_to_import) self.nodes[1].importprivkey(priv_key) # 6. Check that the unspents are now spendable on node1 assert_array_result(self.nodes[1].listunspent(), {"address": address_to_import}, {"spendable": True}) #check if wallet or blochchain maintenance changes the balance self.sync_all() blocks = self.nodes[0].generate(2) self.sync_all() balance_nodes = [self.nodes[i].getbalance() for i in range(3)] block_count = self.nodes[0].getblockcount() # Check modes: # - True: unicode escaped as \u.... # - False: unicode directly as UTF-8 for mode in [True, False]: self.nodes[0].ensure_ascii = mode # unicode check: Basic Multilingual Plane, Supplementary Plane respectively for s in [u'рыба', u'𝅘𝅥𝅯']: addr = self.nodes[0].getaccountaddress(s) label = self.nodes[0].getaccount(addr) assert_equal(label.encode('utf-8'), s.encode('utf-8')) # TODO remove encode(...) when supporting only Python3 assert(s in self.nodes[0].listaccounts().keys()) self.nodes[0].ensure_ascii = True # restore to default # maintenance tests maintenance = [ '-rescan', '-reindex', '-zapwallettxes=1', '-zapwallettxes=2', '-salvagewallet', ] for m in maintenance: print "check " + m stop_nodes(self.nodes) wait_bitcoinds() self.nodes = start_nodes(3, self.options.tmpdir, [[m]] * 3) while m == '-reindex' and [block_count] * 3 != [self.nodes[i].getblockcount() for i in range(3)]: # reindex will leave rpc warm up "early"; Wait for it to finish time.sleep(0.1) assert_equal(balance_nodes, [self.nodes[i].getbalance() for i in range(3)]) # Exercise listsinceblock with the last two blocks coinbase_tx_1 = self.nodes[0].listsinceblock(blocks[0]) assert_equal(coinbase_tx_1["lastblock"], blocks[1]) assert_equal(len(coinbase_tx_1["transactions"]), 1) assert_equal(coinbase_tx_1["transactions"][0]["blockhash"], blocks[1]) assert_equal(len(self.nodes[0].listsinceblock(blocks[1])["transactions"]), 0) if __name__ == '__main__': WalletTest ().main ()
[ "matthew@wtech.software" ]
matthew@wtech.software
21e78f848f064785d83a197c76d5f7ad1c305786
4f12bc4f423d39fdaf28efd95556d4d914dae2c6
/eBooksWeb/books/migrations/0001_initial.py
cd03c8957b2fd9a241b03c35a4e54b9c2b35ba8b
[]
no_license
patrikch/eBooks
5941615afd0cd4761c14f3f24c533cfb2084f6a5
c2e5ddbd566ca14a8918f865526a5aba9c69ad4c
refs/heads/master
2020-04-06T11:32:42.708777
2014-12-13T23:32:43
2014-12-13T23:32:43
null
0
0
null
null
null
null
UTF-8
Python
false
false
2,059
py
# -*- coding: utf-8 -*- from __future__ import unicode_literals from django.db import models, migrations class Migration(migrations.Migration): dependencies = [ ] operations = [ migrations.CreateModel( name='Book', fields=[ ('id', models.AutoField(serialize=False, primary_key=True, verbose_name='ID', auto_created=True)), ('ebookfilename', models.CharField(max_length=50)), ('name', models.CharField(max_length=100)), ('authors', models.CharField(max_length=100, blank=True)), ('publisher', models.CharField(max_length=50, blank=True)), ('format', models.CharField(max_length=5)), ('pubYear', models.IntegerField(null=True, blank=True)), ], options={ }, bases=(models.Model,), ), migrations.CreateModel( name='Key', fields=[ ('id', models.AutoField(serialize=False, primary_key=True, verbose_name='ID', auto_created=True)), ('key', models.CharField(max_length=20)), ('parent', models.IntegerField(null=True, blank=True)), ], options={ }, bases=(models.Model,), ), migrations.AddField( model_name='book', name='keys', field=models.ManyToManyField(to='books.Key'), preserve_default=True, ), migrations.CreateModel( name='Location', fields=[ ('id', models.AutoField(serialize=False, primary_key=True, verbose_name='ID', auto_created=True)), ('dvd', models.CharField(max_length=10)), ], options={ }, bases=(models.Model,), ), migrations.AddField( model_name='book', name='location', field=models.ForeignKey(to='books.Location'), preserve_default=True, ), ]
[ "patrikch@centrum.cz" ]
patrikch@centrum.cz
61afeff649476ccfa96444f55ce277a5c3b00660
4152f980fba1667bb64cb8ab254039fe038b6320
/django/mysite/learn/views.py
267ca2f001f0c74709e2d58a07a901c3020909e9
[]
no_license
wzq224/work_home
161b179e8a1bef4c4e126a12d5cf9b14ebebfad1
ac3285e40af7e386e6a0a2eb0aed45924e8c3f0d
refs/heads/master
2021-01-21T12:59:04.457411
2016-04-27T17:21:03
2016-04-27T17:21:03
54,992,266
0
0
null
null
null
null
UTF-8
Python
false
false
543
py
#coding:utf-8 from django.shortcuts import render from django.http import HttpResponse # def index(request): # return HttpResponse(u"傻逼") def add(request): a = request.GET['a'] b = request.GET['b'] c = int(a)+int(b) return HttpResponse(str(c)) def add2(request,a,b): c = int(a)+int(b) return HttpResponse(str(c)) def home(request): return render(request, 'home.html') def index(request): return render(request, 'index.html') def show_add_form(request): return render(request, 'add_form.html')
[ "wzq224@gmail.com" ]
wzq224@gmail.com
3c6adec786102f38a24e54d1edd84c1f82ea9eaf
a0f0efaaaf69d6ccdc2a91596db29f04025f122c
/build/ca_description/catkin_generated/generate_cached_setup.py
16516c811fa0d462788d39fa25874b59435c8d62
[]
no_license
chiuhandsome/ros_ws_test-git
75da2723154c0dadbcec8d7b3b1f3f8b49aa5cd6
619909130c23927ccc902faa3ff6d04ae0f0fba9
refs/heads/master
2022-12-24T05:45:43.845717
2020-09-22T10:12:54
2020-09-22T10:12:54
297,582,735
0
0
null
null
null
null
UTF-8
Python
false
false
6,518
py
# -*- coding: utf-8 -*- from __future__ import print_function import os import stat import sys # find the import for catkin's python package - either from source space or from an installed underlay if os.path.exists(os.path.join('/opt/ros/melodic/share/catkin/cmake', 'catkinConfig.cmake.in')): sys.path.insert(0, os.path.join('/opt/ros/melodic/share/catkin/cmake', '..', 'python')) try: from catkin.environment_cache import generate_environment_script except ImportError: # search for catkin package in all workspaces and prepend to path for workspace in '/home/handsome/ros_ws/install/yocs_cmd_vel_mux;/home/handsome/ros_ws/install/urdf_tutorial;/home/handsome/ros_ws/install/tuw_waypoint_to_spline_msgs;/home/handsome/ros_ws/install/tuw_multi_robot_router;/home/handsome/ros_ws/install/tuw_voronoi_graph;/home/handsome/ros_ws/install/tuw_vehicle_msgs;/home/handsome/ros_ws/install/tuw_order_planner;/home/handsome/ros_ws/install/tuw_object_rviz;/home/handsome/ros_ws/install/tuw_object_msgs;/home/handsome/ros_ws/install/tuw_nav_rviz;/home/handsome/ros_ws/install/tuw_multi_robot_local_behavior_controller;/home/handsome/ros_ws/install/tuw_multi_robot_ctrl;/home/handsome/ros_ws/install/tuw_nav_msgs;/home/handsome/ros_ws/install/tuw_multi_robot_rviz;/home/handsome/ros_ws/install/tuw_multi_robot_goal_generator;/home/handsome/ros_ws/install/robot_scheduling_utility;/home/handsome/ros_ws/install/robot_scheduling_actions;/home/handsome/ros_ws/install/actionlib_modules_bridge;/home/handsome/ros_ws/install/tuw_multi_robot_msgs;/home/handsome/ros_ws/install/tuw_multi_robot_demo;/home/handsome/ros_ws/install/tuw_local_controller_msgs;/home/handsome/ros_ws/install/tuw_geometry_rviz;/home/handsome/ros_ws/install/tuw_geometry_msgs;/home/handsome/ros_ws/install/tuw_geometry;/home/handsome/ros_ws/install/tuw_gazebo_msgs;/home/handsome/ros_ws/install/tuw_control;/home/handsome/ros_ws/install/tuw_airskin_msgs;/home/handsome/ros_ws/install/turtlebot_teleop;/home/handsome/ros_ws/install/tug_example_pnp_server;/home/handsome/ros_ws/install/tug_example_actions;/home/handsome/ros_ws/install/tug_example_msgs;/home/handsome/ros_ws/install/timed_roslaunch;/home/handsome/ros_ws/install/teb2_local_planner;/home/handsome/ros_ws/install/stated_roslaunch;/home/handsome/ros_ws/install/spatio_temporal_voxel_layer;/home/handsome/ros_ws/install/robot_udp_bridge;/home/handsome/ros_ws/install/robot_database_bridge;/home/handsome/ros_ws/install/samsungcmd_msgs;/home/handsome/ros_ws/install/rplidar_ros;/home/handsome/ros_ws/install/rp_action;/home/handsome/ros_ws/install/rp_action_msgs;/home/handsome/ros_ws/install/rosserial_xbee;/home/handsome/ros_ws/install/rosserial_windows;/home/handsome/ros_ws/install/rosserial_tivac;/home/handsome/ros_ws/install/rosserial_test;/home/handsome/ros_ws/install/rosserial_server;/home/handsome/ros_ws/install/rosserial_python;/home/handsome/ros_ws/install/rosserial_mbed;/home/handsome/ros_ws/install/rosserial_embeddedlinux;/home/handsome/ros_ws/install/rosserial_arduino;/home/handsome/ros_ws/install/rosserial_client;/home/handsome/ros_ws/install/rosserial_msgs;/home/handsome/ros_ws/install/cellctrl_qtgui_bridge;/home/handsome/ros_ws/install/car_db_manager_qtgui;/home/handsome/ros_ws/install/car_db_manager_bridge;/home/handsome/ros_ws/install/car_db_manager_action;/home/handsome/ros_ws/install/ros_utility_tools;/home/handsome/ros_ws/install/ros_package_test;/home/handsome/ros_ws/install/ros_package_manager;/home/handsome/ros_ws/install/robot_scheduling_server;/home/handsome/ros_ws/install/robot_scheduling_msgs;/home/handsome/ros_ws/install/robot_localization;/home/handsome/ros_ws/install/robot_control_msgs;/home/handsome/ros_ws/install/reset_location;/home/handsome/ros_ws/install/razor_imu_9dof;/home/handsome/ros_ws/install/pnp_rosplan;/home/handsome/ros_ws/install/actionlib_pnp_controller;/home/handsome/ros_ws/install/actionlib_modules_controller;/home/handsome/ros_ws/install/pnp_ros;/home/handsome/ros_ws/install/pnp_msgs;/home/handsome/ros_ws/install/open_auto_dock;/home/handsome/ros_ws/install/open_auto_dock_msgs;/home/handsome/ros_ws/install/omron_os32c_driver;/home/handsome/ros_ws/install/dlux_plugins;/home/handsome/ros_ws/install/dlux_global_planner;/home/handsome/ros_ws/install/nav_grid_pub_sub;/home/handsome/ros_ws/install/dwb_critics;/home/handsome/ros_ws/install/nav_grid_iterators;/home/handsome/ros_ws/install/locomove_base;/home/handsome/ros_ws/install/locomotor;/home/handsome/ros_ws/install/nav_core_adapter;/home/handsome/ros_ws/install/dwb_plugins;/home/handsome/ros_ws/install/dwb_local_planner;/home/handsome/ros_ws/install/nav_2d_utils;/home/handsome/ros_ws/install/global_planner_tests;/home/handsome/ros_ws/install/costmap_queue;/home/handsome/ros_ws/install/nav_core2;/home/handsome/ros_ws/install/nav_grid;/home/handsome/ros_ws/install/car_schedule_msgs;/home/handsome/ros_ws/install/actionlib_modules_msgs;/home/handsome/ros_ws/install/locomotor_msgs;/home/handsome/ros_ws/install/dwb_msgs;/home/handsome/ros_ws/install/nav_2d_msgs;/home/handsome/ros_ws/install/mongodb_log;/home/handsome/ros_ws/install/mongodb_store;/home/handsome/ros_ws/install/mongodb_store_msgs;/home/handsome/ros_ws/install/ca_driver;/home/handsome/ros_ws/install/i_robot_stage;/home/handsome/ros_ws/install/i_robot_navigation;/home/handsome/ros_ws/install/hyc_order_planner;/home/handsome/ros_ws/install/hyc_multi_robot_msgs;/home/handsome/ros_ws/install/fetch_open_auto_dock;/home/handsome/ros_ws/install/fetch_auto_dock_msgs;/home/handsome/ros_ws/install/change_teb2_max_vel_x_onfly;/home/handsome/ros_ws/install/cellctrl_control_msgs;/home/handsome/ros_ws/install/car_db_manager_msgs;/home/handsome/ros_ws/install/ca_msgs;/home/handsome/ros_ws/install/ca_description;/home/handsome/ros_ws/install/botcmd_msgs;/opt/ros/melodic'.split(';'): python_path = os.path.join(workspace, 'lib/python2.7/dist-packages') if os.path.isdir(os.path.join(python_path, 'catkin')): sys.path.insert(0, python_path) break from catkin.environment_cache import generate_environment_script code = generate_environment_script('/home/handsome/ros_ws_test/build/ca_description/devel/env.sh') output_filename = '/home/handsome/ros_ws_test/build/ca_description/catkin_generated/setup_cached.sh' with open(output_filename, 'w') as f: # print('Generate script for cached setup "%s"' % output_filename) f.write('\n'.join(code)) mode = os.stat(output_filename).st_mode os.chmod(output_filename, mode | stat.S_IXUSR)
[ "chiuhandsome1966@gmail.com" ]
chiuhandsome1966@gmail.com
439e5931b82c7331c374c12eecf47520ac5e3800
97497fd3790244cde7044f135820aaed39f0616e
/home/migrations/0012_auto_20210124_1539.py
8bb96372c0ab0a2567e56f7ccb69d7d3c3e30896
[]
no_license
kpnemre/Django_KaanFilo
bf0e1deb1a4f2f67421cbbac942573f5918f1d0f
6b971f93d93d83898a5a8b2e94181618f40ac602
refs/heads/master
2023-04-04T02:02:53.593385
2021-04-01T06:59:45
2021-04-01T06:59:45
331,926,213
0
0
null
null
null
null
UTF-8
Python
false
false
611
py
# Generated by Django 3.1.5 on 2021-01-24 12:39 from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('home', '0011_auto_20210124_1040'), ] operations = [ migrations.AlterModelOptions( name='setting', options={'verbose_name': 'Ayar', 'verbose_name_plural': 'Ayarlar'}, ), migrations.AlterField( model_name='setting', name='teams', field=models.BooleanField(default=False, verbose_name='KaanFilo ekibinin sergilenmesi için tıklayınız.'), ), ]
[ "kpnemre51@gmail.com" ]
kpnemre51@gmail.com
71703c92dd334e10357f19bd84934a934e64b817
b5d98a1b6208a494094c5a99fab28cd1053529ab
/falconsbookings.py
f65edea06736a043b8143044e10f2785136da0a6
[]
no_license
charlesastaylor/falcons-bookings
036f376a0de113b8d0ef552a7eba5d45d0b4c182
c7fb7c051a690e5b158754073f0ce945e07f4bd5
refs/heads/master
2022-09-24T14:23:04.257806
2020-01-26T15:30:43
2020-01-26T15:30:43
212,200,746
0
0
null
2022-09-16T18:10:40
2019-10-01T21:14:05
Python
UTF-8
Python
false
false
999
py
import click from flask_mail import Message from flask.cli import AppGroup from app import app, db, user_datastore, mail from app.models import User, Role, Session, UserSession @app.shell_context_processor def make_shell_context(): return {'db': db, 'User': User, 'Session': Session, 'UserSession': UserSession, 'Role': Role, 'user_datastore': user_datastore} setup_cli = AppGroup('setup') @setup_cli.command('roles') def setup_roles(): pass # moved this functionaliy to before first request, left boiler plate for future cli commands app.cli.add_command(setup_cli) @app.cli.command('mail-server') def start_mail_server(): import smtpd import asyncore server = smtpd.DebuggingServer(('localhost', 8025), None) print("Debug smtpd mail server started") asyncore.loop() @app.cli.command('mail-test') def send_test_email(): msg = Message("Hello", recipients=[app.config['TEST_EMAIL']]) msg.body = "Testing 1 2 3" mail.send(msg)
[ "charlesastaylor@gmail.com" ]
charlesastaylor@gmail.com
6819674180d41b7a9f98b291623ff7c2064d0dcb
e831f1f63092e092eaed3fbb56bcf372a5876ee1
/amc13/amc13_v1_1_2/dev_tools/amc13Config/systemVars.py
b9fc2a98c72b76c3415d0429ef7f11e0beb3507f
[]
no_license
gm2-pisa/gm2daq
2f3ca646c8446e72d16f25894ec6b96d6b9f6c98
4e659df627d002567b77b5faf3f98a42076396d3
refs/heads/master
2021-01-10T10:45:45.018048
2016-02-14T18:46:24
2016-02-14T18:46:24
51,254,852
0
0
null
null
null
null
UTF-8
Python
false
false
466
py
#File to specify what the default varaibles addresses are used in your system #Default IP address for commercial MCH module # our NAT MCH address #DEFAULT_HOST_IP="192.168.1.41" # our Vadatech MCH address DEFAULT_HOST_IP="192.168.1.230" #Default AMC13 slot number DEFAULT_AMC13_SLOT=13 #Location of 'config_tools'. This should never need to be changed DEFAULT_CONFIG_DIR="./config_tools" #Network base for your uTCA crate's AMC modules NETWORK_BASE="192.168.1"
[ "alusiani@gmail.com" ]
alusiani@gmail.com
eae8b3209d6bc393175a808474d408b99ff23572
6032fee3ca662d4dd6a34ade7e36947a699ea4f6
/DCASE2020_baseline_platform/data_utils/DataLoad.py
b34124eebde87b82f30aa9c4cb543d2a24e1c706
[]
no_license
JHU-LCAP/CRSTmodel
6247b4a6abf0dcdfa2f46a098774a9e914fcf3b1
0e72449a746cb21adcf7ab661225453dd517a51a
refs/heads/main
2023-06-17T07:31:07.407747
2021-07-01T14:19:21
2021-07-01T14:19:21
371,424,802
3
3
null
null
null
null
UTF-8
Python
false
false
10,066
py
import bisect import numpy as np import pandas as pd import torch import random import warnings from torch.utils.data import Dataset from torch.utils.data.sampler import Sampler from utilities.Logger import create_logger import config as cfg from utilities.Transforms import Compose torch.manual_seed(0) random.seed(0) logger = create_logger(__name__, terminal_level=cfg.terminal_level) class DataLoadDf(Dataset): """ Class derived from pytorch DESED Prepare the data to be use in a batch mode Args: df: pandas.DataFrame, the dataframe containing the set infromation (feat_filenames, labels), it should contain these columns : "feature_filename" "feature_filename", "event_labels" "feature_filename", "onset", "offset", "event_label" encode_function: function(), function which encode labels transform: function(), (Default value = None), function to be applied to the sample (pytorch transformations) return_indexes: bool, (Default value = False) whether or not to return indexes when use __getitem__ Attributes: df: pandas.DataFrame, the dataframe containing the set information (feat_filenames, labels, ...) encode_function: function(), function which encode labels transform : function(), function to be applied to the sample (pytorch transformations) return_indexes: bool, whether or not to return indexes when use __getitem__ """ def __init__(self, df, encode_function=None, transform=None, return_indexes=False, in_memory=False): self.df = df self.encode_function = encode_function self.transform = transform self.return_indexes = return_indexes self.feat_filenames = df.feature_filename.drop_duplicates() self.filenames = df.filename.drop_duplicates() self.in_memory = in_memory if self.in_memory: self.features = {} def set_return_indexes(self, val): """ Set the value of self.return_indexes Args: val : bool, whether or not to return indexes when use __getitem__ """ self.return_indexes = val def get_feature_file_func(self, filename): """Get a feature file from a filename Args: filename: str, name of the file to get the feature Returns: numpy.array containing the features computed previously """ if not self.in_memory: data = np.load(filename).astype(np.float32) else: if self.features.get(filename) is None: data = np.load(filename).astype(np.float32) self.features[filename] = data else: data = self.features[filename] return data def __len__(self): """ Returns: int Length of the object """ length = len(self.feat_filenames) return length def get_sample(self, index): """From an index, get the features and the labels to create a sample Args: index: int, Index of the sample desired Returns: tuple Tuple containing the features and the labels (numpy.array, numpy.array) """ features = self.get_feature_file_func(self.feat_filenames.iloc[index]) if len(features) == 1: features = features[0] # event_labels means weak labels, event_label means strong labels if "event_labels" in self.df.columns or {"onset", "offset", "event_label"}.issubset(self.df.columns): if "event_labels" in self.df.columns: label = self.df.iloc[index]["event_labels"] if pd.isna(label): label = [] if type(label) is str: if label == "": label = [] else: label = label.split(",") else: cols = ["onset", "offset", "event_label"] label = self.df[self.df.filename == self.filenames.iloc[index]][cols] if label.empty: label = [] else: label = "empty" # trick to have -1 for unlabeled data and concat them with labeled if "filename" not in self.df.columns: raise NotImplementedError( "Dataframe to be encoded doesn't have specified columns: columns allowed: 'filename' for unlabeled;" "'filename', 'event_labels' for weak labels; 'filename' 'onset' 'offset' 'event_label' " "for strong labels, yours: {}".format(self.df.columns)) if index == 0: logger.debug("label to encode: {}".format(label)) if self.encode_function is not None: # labels are a list of string or list of list [[label, onset, offset]] y = self.encode_function(label) else: y = label sample = features, y return sample def __getitem__(self, index): """ Get a sample and transform it to be used in a ss_model, use the transformations Args: index : int, index of the sample desired Returns: tuple Tuple containing the features and the labels (numpy.array, numpy.array) or Tuple containing the features, the labels and the index (numpy.array, numpy.array, int) """ sample = self.get_sample(index) if self.transform: sample = self.transform(sample) if self.return_indexes: sample = (sample, index) return sample def set_transform(self, transform): """Set the transformations used on a sample Args: transform: function(), the new transformations """ self.transform = transform def add_transform(self, transform): if type(self.transform) is not Compose: raise TypeError("To add transform, the transform should already be a compose of transforms") transforms = self.transform.add_transform(transform) return DataLoadDf(self.df, self.encode_function, transforms, self.return_indexes, self.in_memory) class ConcatDataset(Dataset): """ DESED to concatenate multiple datasets. Purpose: useful to assemble different existing datasets, possibly large-scale datasets as the concatenation operation is done in an on-the-fly manner. Args: datasets : sequence, list of datasets to be concatenated """ @staticmethod def cumsum(sequence): r, s = [], 0 for e in sequence: l = len(e) r.append(l + s) s += l return r @property def cluster_indices(self): cluster_ind = [] prec = 0 for size in self.cumulative_sizes: cluster_ind.append(range(prec, size)) prec = size return cluster_ind def __init__(self, datasets): assert len(datasets) > 0, 'datasets should not be an empty iterable' self.datasets = list(datasets) self.cumulative_sizes = self.cumsum(self.datasets) def __len__(self): return self.cumulative_sizes[-1] def __getitem__(self, idx): dataset_idx = bisect.bisect_right(self.cumulative_sizes, idx) if dataset_idx == 0: sample_idx = idx else: sample_idx = idx - self.cumulative_sizes[dataset_idx - 1] return self.datasets[dataset_idx][sample_idx] @property def cummulative_sizes(self): warnings.warn("cummulative_sizes attribute is renamed to " "cumulative_sizes", DeprecationWarning, stacklevel=2) return self.cumulative_sizes @property def df(self): df = self.datasets[0].df for dataset in self.datasets[1:]: df = pd.concat([df, dataset.df], axis=0, ignore_index=True, sort=False) return df class MultiStreamBatchSampler(Sampler): """Takes a dataset with cluster_indices property, cuts it into batch-sized chunks Drops the extra items, not fitting into exact batches Args: data_source : DESED, a DESED to sample from. Should have a cluster_indices property batch_size : int, a batch size that you would like to use later with Dataloader class shuffle : bool, whether to shuffle the data or not Attributes: data_source : DESED, a DESED to sample from. Should have a cluster_indices property batch_size : int, a batch size that you would like to use later with Dataloader class shuffle : bool, whether to shuffle the data or not """ def __init__(self, data_source, batch_sizes, shuffle=True): super(MultiStreamBatchSampler, self).__init__(data_source) self.data_source = data_source self.batch_sizes = batch_sizes l_bs = len(batch_sizes) nb_dataset = len(self.data_source.cluster_indices) assert l_bs == nb_dataset, "batch_sizes must be the same length as the number of datasets in " \ "the source {} != {}".format(l_bs, nb_dataset) self.shuffle = shuffle def __iter__(self): indices = self.data_source.cluster_indices if self.shuffle: for i in range(len(self.batch_sizes)): indices[i] = np.random.permutation(indices[i]) iterators = [] for i in range(len(self.batch_sizes)): iterators.append(grouper(indices[i], self.batch_sizes[i])) return (sum(subbatch_ind, ()) for subbatch_ind in zip(*iterators)) def __len__(self): val = np.inf for i in range(len(self.batch_sizes)): val = min(val, len(self.data_source.cluster_indices[i]) // self.batch_sizes[i]) return val def grouper(iterable, n): "Collect data into fixed-length chunks or blocks" # grouper('ABCDEFG', 3) --> ABC DEF" args = [iter(iterable)] * n return zip(*args)
[ "noreply@github.com" ]
JHU-LCAP.noreply@github.com
38a5c63737318de28762fd1b34b766ae04e88dcc
68176666c17c1dd96de2a4df361ed643bd09a4dd
/watchlist/settings.py
24ac359627d319b7091528d237e1861a08c67212
[]
no_license
fhanspach/watchlist
0769268dfdd188d2fbad28cc6458c78b8b537026
e6a17958734ceedce4de71d9a2c10edbc6de0316
refs/heads/master
2021-01-18T14:15:53.616763
2015-08-09T11:45:10
2015-08-09T11:45:10
40,151,903
0
0
null
null
null
null
UTF-8
Python
false
false
2,681
py
""" Django settings for watchlist project. Generated by 'django-admin startproject' using Django 1.8.3. For more information on this file, see https://docs.djangoproject.com/en/1.8/topics/settings/ For the full list of settings and their values, see https://docs.djangoproject.com/en/1.8/ref/settings/ """ # Build paths inside the project like this: os.path.join(BASE_DIR, ...) import os BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) # Quick-start development settings - unsuitable for production # See https://docs.djangoproject.com/en/1.8/howto/deployment/checklist/ # SECURITY WARNING: keep the secret key used in production secret! SECRET_KEY = 'wfp@9_rhxqxqn)9q*oi@jixe9^y@=c5&51z3wmym_*2%dqkv&+' # SECURITY WARNING: don't run with debug turned on in production! DEBUG = True ALLOWED_HOSTS = [] # Application definition INSTALLED_APPS = ( 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.staticfiles', 'api', 'movies', 'ui' ) MIDDLEWARE_CLASSES = ( 'django.contrib.sessions.middleware.SessionMiddleware', 'django.middleware.common.CommonMiddleware', 'django.middleware.csrf.CsrfViewMiddleware', 'django.contrib.auth.middleware.AuthenticationMiddleware', 'django.contrib.auth.middleware.SessionAuthenticationMiddleware', 'django.contrib.messages.middleware.MessageMiddleware', 'django.middleware.clickjacking.XFrameOptionsMiddleware', 'django.middleware.security.SecurityMiddleware', ) ROOT_URLCONF = 'watchlist.urls' TEMPLATES = [ { 'BACKEND': 'django.template.backends.django.DjangoTemplates', 'DIRS': [], 'APP_DIRS': True, 'OPTIONS': { 'context_processors': [ 'django.template.context_processors.debug', 'django.template.context_processors.request', 'django.contrib.auth.context_processors.auth', 'django.contrib.messages.context_processors.messages', ], }, }, ] WSGI_APPLICATION = 'watchlist.wsgi.application' # Database # https://docs.djangoproject.com/en/1.8/ref/settings/#databases DATABASES = { 'default': { 'ENGINE': 'django.db.backends.sqlite3', 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'), } } # Internationalization # https://docs.djangoproject.com/en/1.8/topics/i18n/ LANGUAGE_CODE = 'en-us' TIME_ZONE = 'UTC' USE_I18N = True USE_L10N = True USE_TZ = True # Static files (CSS, JavaScript, Images) # https://docs.djangoproject.com/en/1.8/howto/static-files/ STATIC_URL = '/static/'
[ "f.hanspach@cuescience.de" ]
f.hanspach@cuescience.de
efd5725716855108dad2f2fc44c16794e460310b
969916f200f9b9224eda030af9c05d37e43845b9
/217.存在重复元素.py
2cebcf4470d13de34c49314c2d1241fc7d89b52e
[]
no_license
jackwener/leetcode
59d4213ed78c5e63b5468e28d3bfea399d4c74e0
17a11597629e09d39835bbc426b25f8a29a9ef24
refs/heads/master
2021-07-19T19:17:18.629906
2020-12-30T06:02:35
2020-12-30T06:02:35
228,057,672
0
0
null
null
null
null
UTF-8
Python
false
false
192
py
# # @lc app=leetcode.cn id=217 lang=python3 # # [217] 存在重复元素 # # @lc code=start class Solution: def containsDuplicate(self, nums: List[int]) -> bool: # @lc code=end
[ "894362844@qq.com" ]
894362844@qq.com
4cfee96f1d7f23c85e643f81a6c4cc9c4597b382
3b1d6b34239544d0b2ec1f5aaf76146eba689845
/Nova pasta (2)/Nova pasta/PythonHbsis/-property/ManipulacaoAT/classecriarguitarra.py
3dbe158db9dfad5a690238be92bee216a331f659
[]
no_license
eduardoanj/cursopyton
f99f756b050839c980a03a03a5b403895a96cdf9
3f2cc3ba3463869b4c5d934f7e7d2b9ea399a82b
refs/heads/master
2023-05-01T10:41:04.628576
2019-10-16T19:42:54
2019-10-16T19:42:54
null
0
0
null
null
null
null
UTF-8
Python
false
false
652
py
class Guitarra: def __init__(self, cordas, tarrachas, captador): self.__cordas = cordas self.__tarrachas = tarrachas self.__captador = captador #@property puxa os valores da classe. #@... .setter, seta novo valor para a classe. @property def cordas(self): return self.__cordas #set não precisa return, o get precisa def set_tarrachas(self, tarrachas): self.__tarrachas = tarrachas def get_tarrachas(self): return self.__tarrachas guitarra = Guitarra('Daddario', 'gottoh', 'dimarzio') guitarra.set_tarrachas('jumbo') print(guitarra.cordas) print(guitarra.get_tarrachas())
[ "eduardo_anjos15@yahoo.com" ]
eduardo_anjos15@yahoo.com
ca5ebd97d483e9f230c959e76658aa8e77475bfc
a683d4f647429b0f23388d1e491e112e15a45721
/splitSentence.py
08099a14dee6002139c18a2fc6dda16ca3c42130
[]
no_license
zhengyima/scraper-school
f999a50a19ef35aaa112e18ee23abaabbdfacd2e
ed0a95751f65831b4673d007280573ce048f0294
refs/heads/master
2020-04-08T16:06:53.366518
2018-11-28T13:29:05
2018-11-28T13:29:05
159,504,736
1
1
null
null
null
null
UTF-8
Python
false
false
342
py
import nltk nltk.download() import nltk.data def splitSentence(paragraph): tokenizer = nltk.data.load('tokenizers/punkt/english.pickle') sentences = tokenizer.tokenize(paragraph) return sentences #print("hello world`") #if __name__ == '__main__': print(splitSentence("My name is Tom. I am a boy. I like soccer!"))
[ "317958662@qq.com" ]
317958662@qq.com
2047511f9cf33dec55bba5391866c91495f9d24d
981fcfe446a0289752790fd0c5be24020cbaee07
/python2_Grammer/src/ku/matplot_/dot/2设置点的样式.py
03d7118fd8acf4abea24a3c319252e4eff548180
[]
no_license
lijianbo0130/My_Python
7ba45a631049f6defec3977e680cd9bd75d138d1
8bd7548c97d2e6d2982070e949f1433232db9e07
refs/heads/master
2020-12-24T18:42:19.103529
2016-05-30T03:03:34
2016-05-30T03:03:34
58,097,799
0
0
null
null
null
null
UTF-8
Python
false
false
551
py
#coding=utf-8 ''' Created on 2015年5月4日 @author: Administrator ''' def scatter(x, y, s=20, c='b', marker='o', cmap=None, norm=None, vmin=None, vmax=None, alpha=None, linewidths=None, verts=None, hold=None, **kwargs): ''' :param x: X向量 :param y: Y向量 :param s:size 点的大小 :param c:color 点的颜色 :param marker: 点的样式 :param cmap: :param norm: :param vmin: :param vmax: :param alpha: :param linewidths: :param verts: :param hold: '''
[ "lijianbo@zhongbiao.mobi" ]
lijianbo@zhongbiao.mobi
c845dc4ef076388ad01bfcfbb3b3499fc9400b9c
72b53d021a0119f41b3fcac192083d99b4bbdf29
/vid2frame.py
7d317642b0ccd91efa2c7569f9e8b39f59a30ee0
[]
no_license
pulsejet/cs219-spark-stitching
d78710ab10197bbd0dc4b1d789262559ec6beab3
70468e95c2ceb0e3036e4390341cfb8edb457705
refs/heads/master
2023-03-21T08:39:05.759353
2021-03-17T10:30:24
2021-03-17T10:30:24
343,575,400
0
0
null
null
null
null
UTF-8
Python
false
false
373
py
import cv2 def FrameCapture(path): vidObj = cv2.VideoCapture(path) count = 0 success = 1 while success: success, image = vidObj.read() try: cv2.imwrite("vid/frame%d.jpg" % count, image) count += 1 except Exception: print('Skip at', count) if __name__ == '__main__': FrameCapture("left.mp4")
[ "varunpatil@ucla.edu" ]
varunpatil@ucla.edu
9a96ee3e3890d83296ae2133c7c9d1595dd7c3c6
00b762e37ecef30ed04698033f719f04be9c5545
/scripts/test_results/scikit-learn_test_results/files/4_plot_roc_local.py
43df54f29e33f98eb8290a943711f1a858793715
[]
no_license
kenji-nicholson/smerge
4f9af17e2e516333b041727b77b8330e3255b7c2
3da9ebfdee02f9b4c882af1f26fe2e15d037271b
refs/heads/master
2020-07-22T02:32:03.579003
2018-06-08T00:40:53
2018-06-08T00:40:53
null
0
0
null
null
null
null
UTF-8
Python
false
false
4,373
py
""" ======================================= Receiver Operating Characteristic (ROC) ======================================= Example of Receiver Operating Characteristic (ROC) metric to evaluate classifier output quality. ROC curves typically feature true positive rate on the Y axis, and false positive rate on the X axis. This means that the top left corner of the plot is the "ideal" point - a false positive rate of zero, and a true positive rate of one. This is not very realistic, but it does mean that a larger area under the curve (AUC) is usually better. The "steepness" of ROC curves is also important, since it is ideal to maximize the true positive rate while minimizing the false positive rate. ROC curves are typically used in binary classification to study the output of a classifier. In order to extend ROC curve and ROC area to multi-class or multi-label classification, it is necessary to binarize the output. One ROC curve can be drawn per label, but one can also draw a ROC curve by considering each element of the label indicator matrix as a binary prediction (micro-averaging). Another evaluation measure for multi-class classification is macro-averaging, which gives equal weight to the classification of each label. .. note:: See also :func:`sklearn.metrics.roc_auc_score`, :ref:`example_model_selection_plot_roc_crossval.py`. """ print(__doc__) import numpy as np import matplotlib.pyplot as plt from sklearn import svm, datasets from sklearn.metrics import roc_curve, auc from sklearn.cross_validation import train_test_split from sklearn.preprocessing import label_binarize from sklearn.multiclass import OneVsRestClassifier # Import some data to play with iris = datasets.load_iris() X = iris.data y = iris.target # Binarize the output y = label_binarize(y, classes=[0, 1, 2]) n_classes = y.shape[1] # Add noisy features to make the problem harder random_state = np.random.RandomState(0) n_samples, n_features = X.shape X = np.c_[X, random_state.randn(n_samples, 200 * n_features)] # shuffle and split training and test sets X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=.5, random_state=0) # Learn to predict each class against the other classifier = OneVsRestClassifier(svm.SVC(kernel='linear', probability=True, random_state=random_state)) y_score = classifier.fit(X_train, y_train).decision_function(X_test) # Compute ROC curve and ROC area for each class fpr = dict() tpr = dict() roc_auc = dict() for i in range(n_classes): fpr[i], tpr[i], _ = roc_curve(y_test[:, i], y_score[:, i]) roc_auc[i] = auc(fpr[i], tpr[i]) # Compute micro-average ROC curve and ROC area fpr["micro"], tpr["micro"], _ = roc_curve(y_test.ravel(), y_score.ravel()) roc_auc["micro"] = auc(fpr["micro"], tpr["micro"]) # Plot of a ROC curve for a specific class plt.figure() plt.plot(fpr[2], tpr[2], label='ROC curve (area = %0.2f)' % roc_auc[2]) plt.plot([0, 1], [0, 1], 'k--') plt.xlim([0.0, 1.0]) plt.ylim([0.0, 1.05]) plt.xlabel('False Positive Rate') plt.ylabel('True Positive Rate') plt.title('Receiver operating characteristic example') plt.legend(loc="lower right") plt.show() # Plot ROC curve plt.figure() plt.plot(fpr["micro"], tpr["micro"], label='micro-average ROC curve (area = {0:0.2f})' ''.format(roc_auc["micro"])) # Compute macro-average ROC curve and ROC area fpr["macro"] = np.mean([fpr[i] for i in range(n_classes)], axis=0) tpr["macro"] = np.mean([tpr[i] for i in range(n_classes)], axis=0) roc_auc["macro"] = auc(fpr["macro"], tpr["macro"]) # Plot ROC curve plt.clf() plt.plot(fpr["micro"], tpr["micro"], label='micro-average ROC curve (area = {0:0.2f})' ''.format(roc_auc["micro"])) plt.plot(fpr["macro"], tpr["macro"], label='macro-average ROC curve (area = {0:0.2f})' ''.format(roc_auc["macro"])) for i in range(n_classes): plt.plot(fpr[i], tpr[i], label='ROC curve of class {0} (area = {1:0.2f})' ''.format(i, roc_auc[i])) plt.plot([0, 1], [0, 1], 'k--') plt.xlim([0.0, 1.0]) plt.ylim([0.0, 1.05]) plt.xlabel('False Positive Rate') plt.ylabel('True Positive Rate') plt.title('Some extension of Receiver operating characteristic to multi-class') plt.legend(loc="lower right") plt.show()
[ "srhee4@cs.washington.edu" ]
srhee4@cs.washington.edu
6ad5063b31f346984cb601876ebdc52c81182e7a
ca7aa979e7059467e158830b76673f5b77a0f5a3
/Python_codes/p03145/s436230804.py
67a8782f717d025da7aa616953b3e02be0aa9eaf
[]
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
59
py
AB, BC, CA = map(int, input().split()) print(BC * AB // 2)
[ "66529651+Aastha2104@users.noreply.github.com" ]
66529651+Aastha2104@users.noreply.github.com
303d6277cb70abb9504abd6d18cf1da2f54147de
d05f5cefa0b63470659b030eb4e1e25235695c2e
/plotting_utils/attention.py
cd3bf950c9822b44d8a09388539982ca5839e934
[ "Apache-2.0" ]
permissive
CLEANit/watch-and-learn
730ce3545d669c7710ed91bb6ab27e31397a2f21
e579abe81e2fa936c7cf42561643d38441edf52a
refs/heads/master
2022-11-06T08:47:39.759112
2020-06-29T02:01:04
2020-06-29T02:01:04
null
0
0
null
null
null
null
UTF-8
Python
false
false
2,758
py
import torch import numpy as np def flat_to_matrix(flat_arr: np.array, pattern: str, n_x: int, n_y: int) -> np.array: """Convert from flat array to matrix using snake pattern either through rows or columns :param flat_arr: flattened array :param pattern: snake pattern with which the matrix was originally flattened :param n_x: first dimension of original matrix :param n_y: second dimension of original matrix :return: resulting matrix after reconstruction """ new_arr = np.zeros((n_x, n_y)) k = 1 if pattern == "columns": for i in range(n_y): new_arr[:, i] = flat_arr[i*n_x: i*n_x + n_x][::k] k *= -1 if pattern == "rows": for i in range(n_x): new_arr[i, :] = flat_arr[i*n_y: i*n_y + n_y][::k] k *= -1 return new_arr def matrix_to_flat_idx(row_idx: int, col_idx: int, pattern: str, n_x: int, n_y: int) -> int: """Get index in flattened array from matrix indices :param row_idx: row index in matrix :param col_idx: column index in matrix :param pattern: snake pattern used to flatten matrix :param n_x: first dimension of original matrix :param n_y: second dimension of original matrix :return: index in flattened array """ if pattern == "columns": if (col_idx % 2) == 0: return col_idx*n_x + row_idx else: return col_idx*n_y + n_y - row_idx - 1 if pattern == "rows": if (row_idx % 2) == 0: return row_idx*n_x + col_idx else: return row_idx*n_x + n_x - col_idx - 1 def attention_2D_viz(attn_weights, i, j, n_x=8, n_y=8): # -1 due to missing first element in sequence rows_idx = matrix_to_flat_idx(i, j, "rows", n_x, n_y) - 1 cols_idx = matrix_to_flat_idx(i, j, "columns", n_x, n_y) - 1 batch_sum_rows = torch.sum(attn_weights[0][:, rows_idx, :], axis=0).detach().numpy() batch_sum_cols = torch.sum(attn_weights[1][:, cols_idx, :], axis=0).detach().numpy() complete_rows = np.pad(batch_sum_rows, (1, 0), constant_values=5) complete_cols = np.pad(batch_sum_cols, (1, 0), constant_values=5) matrix_rows = flat_to_matrix(complete_rows, "rows", n_x, n_y) matrix_cols = flat_to_matrix(complete_cols, "columns", n_x, n_y) return matrix_rows + matrix_cols def attention_1D_viz(attn_weights, i, j, n_x=8, n_y=8): # -1 due to missing first element in sequence rows_idx = matrix_to_flat_idx(i, j, "rows", n_x, n_y) - 1 batch_sum_rows = torch.sum(attn_weights[:, rows_idx, :], axis=0).detach().numpy() complete_rows = np.pad(batch_sum_rows, (1, 0), constant_values=5) matrix_rows = flat_to_matrix(complete_rows, "rows", n_x, n_y) return matrix_rows
[ "cm.patino10@uniandes.edu.co" ]
cm.patino10@uniandes.edu.co
40853388e0510ab6ad54885c3aec78d3d736444a
cba295a4755f40a15dae55eaf05fe4a3e1ca9b9d
/blog/migrations/0001_initial.py
97cfe952db32041f43a8bfc9e4060a7f0fcc4205
[]
no_license
Aeberl/my-first-blog
291f8c85d310a7ead497194a07b9e625539567aa
a002525c4471500d6dad151628dca0bb394b2cc9
refs/heads/master
2021-03-31T02:03:08.704625
2018-03-08T20:12:09
2018-03-08T20:12:09
124,435,103
0
0
null
null
null
null
UTF-8
Python
false
false
1,051
py
# -*- coding: utf-8 -*- # Generated by Django 1.11.7 on 2018-03-06 17:33 from __future__ import unicode_literals from django.conf import settings from django.db import migrations, models import django.db.models.deletion import django.utils.timezone class Migration(migrations.Migration): initial = True dependencies = [ migrations.swappable_dependency(settings.AUTH_USER_MODEL), ] operations = [ migrations.CreateModel( name='Post', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('title', models.CharField(max_length=200)), ('text', models.TextField()), ('created_date', models.DateTimeField(default=django.utils.timezone.now)), ('published_date', models.DateTimeField(blank=True, null=True)), ('author', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)), ], ), ]
[ "duabellan@gmail.com" ]
duabellan@gmail.com
83e8b4d1c71990bd8b37ca718bc5e302bd83f722
1a62f0ba230798d9db9ea0f0bcbde4752b44e012
/iol/gisweb/apps/IolDocument.py
ea2d1d39a32f509a8672ecaea3fa36ce7392f0c6
[]
no_license
mamogmx/iol.gisweb.apps
d22dd3120eeb69cf4f36a122ff9eb39b8ca35a5c
d9acf8aacb7b00d27c3566017c06372a91fbb67b
refs/heads/master
2021-01-01T05:33:06.799648
2015-04-07T10:08:30
2015-04-07T10:08:30
33,311,870
0
0
null
null
null
null
UTF-8
Python
false
false
19,589
py
# -*- coding: utf-8 -*- import os from zope.interface import Interface, implements, Attribute from zope.component import adapts from plone import api from AccessControl import ClassSecurityInfo from App.class_init import InitializeClass from Products.CMFPlomino.interfaces import IPlominoDocument, IPlominoForm from Products.CMFPlone.utils import getToolByName from zope.component import getGlobalSiteManager import config from zope.component import getUtility from .permissions import IOL_READ_PERMISSION,IOL_EDIT_PERMISSION from .interfaces import IIolDocument from .config import USER_CREDITABLE_FIELD,USER_UNIQUE_FIELD,IOL_APPS_FIELD,STATUS_FIELD from copy import deepcopy import simplejson as json from base64 import b64encode from DateTime import DateTime import datetime class IolDocument(object): implements(IIolDocument) adapts(IPlominoForm,IPlominoDocument) tipo_app = u"" security = ClassSecurityInfo() security.declareObjectPublic() def __init__(self,obj): self.document = obj if obj.portal_type == 'PlominoForm': tmp = obj.id.split('_') if len(tmp) > 2: app = tmp[-2] else: app = config.APP_FIELD_DEFAULT_VALUE self.tipo_app = app else: self.tipo_app = obj.getItem(config.APP_FIELD,config.APP_FIELD_DEFAULT_VALUE) security.declarePublic('getIolApp') def getIolApp(self): return self.tipo_app security.declarePublic('verificaRuolo') def verificaRuolo(self,ruolo): doc = self.document pm = api.portal.get().portal_membership #pm = getToolByName(self,'portal_membership') roles = pm.getAuthenticatedMember().getRolesInContext(doc) return ruolo in roles or 'Manager' in roles security.declarePublic('getLabels') def getLabels(self,field): obj = self.document db = obj.getParentDatabase() forms = db.getForms() fld = '' for frm in forms: if frm.getFormField(field): fld = frm.getFormField(field) lista = fld.getSettings().getSelectionList(obj) label = [i.split('|')[0] for i in lista] value = [i.split('|')[1] for i in lista] widget = fld.getSettings().widget # restuisce un valore testuale if widget == 'RADIO': if obj.getItem(field)!=None: diz={} for i,v in enumerate(value): diz[v] = label[i] ll=[] if obj.getItem(field) in diz.keys(): return diz[obj.getItem(field)] # restituisce una lista di etichette elif widget == 'CHECKBOX': if obj.getItem(field)!=None: diz={} for i,v in enumerate(value): diz[v] = label[i] ll=[] for i in obj.getItem(field): if i in diz.keys(): ll.append(diz[i]) return ll elif widget == 'SELECT': if obj.getItem(field)!=None: diz={} for i,v in enumerate(value): diz[v] = label[i] ll=[] if isinstance(obj.getItem(field),list): for i in obj.getItem(field): if i in diz.keys(): ll.append(diz[i]) return ll else: return diz[obj.getItem(field)] security.declarePublic('sendMail') def sendMail(self, Object, msg, To, From='', as_script=False): """ Facility for sending emails using Plone MailHost * context: the context (ex. portal) from which get the MailHost * msg: dtml type is requested * To: the recipient list * From: the sender address * as_script: if true error message will not be notified through PortalMessage """ doc = self.document success = 0 messages = [] mail_host = getToolByName(doc, 'MailHost') try: mail_host.send(msg, To, From or mail_host.getProperty('email_from_address'), Object) except Exception as err: err_msg = '%s: %s' % (type(err), err) err = (unicode(err_msg, errors='replace'), 'error') wrn_msg = '''ATTENZIONE! Non e' stato possibile inviare la mail con oggetto: %s''' % Object wrn = (unicode(wrn_msg, errors='replace'), 'warning') messages.append(err) messages.append(wrn) else: success = 1 ok_msg = '''La mail con oggetto "%s" e' stata inviata correttamente''' % Object ok = (unicode(ok_msg, errors='replace'), 'info') messages.append(ok) if not as_script: plone_tools = getToolByName(doc.getParentDatabase().aq_inner, 'plone_utils') for imsg in messages: plone_tools.addPortalMessage(*imsg, request=doc.REQUEST) return success else: return dict(success=success, messages=messages) security.declarePublic('getFieldValue') def getFieldValue(self,field): obj = self.document db = obj.getParentDatabase() form = obj.getForm() fld = form.getFormField(field) if fld != None: adapt = fld.getSettings() fieldvalue = adapt.getFieldValue(form, obj) return fieldvalue security.declareProtected(IOL_READ_PERMISSION,'getIolRoles') def getIolRoles(self): obj = self.document result = dict( iol_owner=[], iol_viewer=[], iol_reviewer = [], iol_manager = [], ) for usr,roles in obj.get_local_roles(): if 'Owner' in roles: result['iol_owner'].append(usr) if 'iol-viewer' in roles: result['iol_viewer'].append(usr) if 'iol-reviewer' in roles: result['iol_reviewer'].append(usr) if 'iol-manager' in roles: result['iol_manager'].append(usr) return result security.declarePublic('updateStatus') #security.declareProtected(IOL_READ_PERMISSION,'updateStatus') def updateStatus(self): obj = self.document obj.setItem(STATUS_FIELD,api.content.get_state(obj=obj) ) db = obj.getParentDatabase() # update index db.getIndex().indexDocument(obj) # update portal_catalog if db.getIndexInPortal(): db.portal_catalog.catalog_object(obj, "/".join(db.getPhysicalPath() + (obj.getId(),))) security.declarePublic('isActionSupported') def isActionSupported(self, tr=''): obj = self.document if not tr: return False wf = getToolByName(self.document, 'portal_workflow') for wfname in wf.getChainFor(obj): wf = wf.getWorkflowById(wfname) if wf.isActionSupported(obj, tr): return True return False security.declarePublic('wfState') def wfState(self): wf = getToolByName(self.document, 'portal_workflow') return wf.getInfoFor(self.document, 'review_state') security.declareProtected(IOL_READ_PERMISSION,'wfInfo') def wfInfo(self,): obj = self.document result = dict( wf_chain=list(), wf_state='', wf_variables=dict(), wf_actions=list(), wf_history=list(), ) wftool = getToolByName(obj, 'portal_workflow') result['wf_state'] = self.wfState() for wf_id in wftool.getChainFor(obj): result['wf_chain'].append(wf_id) for wf_var in wftool.getCatalogVariablesFor(obj): result['wf_variables'][wf_var] = wftool.getInfoFor(obj, wf_var, default='') result['wf_actions'] = [dict(id=res['id'],title=res['name'],url=res['url']) for res in wftool.listActions(object=obj)] result['wf_history'] = wftool.getInfoFor(obj, 'review_history', default=[]) return result security.declareProtected(IOL_READ_PERMISSION,'getInfoFor') def getInfoFor(self,info,wf_id=''): obj = self.document wf = getToolByName(obj, 'portal_workflow') return wf.getInfoFor(obj,info,default='') security.declarePublic('getDatagridValue') def getDatagridValue(self,field='',form=''): doc = self.document db = doc.getParentDatabase() if form: frm = db.getForm(form) else: frm = doc.getForm() fld = frm.getFormField(field) elenco_fields = fld.getSettings().field_mapping lista_fields = elenco_fields.split(',') diz_tot=[] for idx,itm in enumerate(doc.getItem(field)): diz = {} for k,v in enumerate(lista_fields): diz[v] = doc.getItem(field)[idx][k] diz_tot.append(diz) return diz_tot # method to get info on attachment field security.declarePublic('getAttachmentInfo') def getAttachmentInfo(self, field=''): doc = self.document result = list() files_list = doc.getItem(field, None) if files_list and type(files_list) == type(dict()): for k, v in files_list.items(): f = doc.getfile(k, asFile=True) size = f.get_size() mime = f.getContentType() # TODO select correct icon basing on mimetype file_info = dict( name=k, mimetype=mime, size=size, url="%s/%s" % (doc.absolute_url(), k), icon="", b64file=b64encode(f.__str__()) ) result.append(file_info) return result # Assign selected user to Iol Groups def _assignGroups(self,obj,username,grps): portal_groups = getToolByName(obj, 'portal_groups') for grp in grps: portal_groups.addPrincipalToGroup(username, grp) # remove selected user from groups def _removeGroups(self,obj,username,grps): portal_groups = getToolByName(obj, 'portal_groups') for grp in grps: portal_groups.removePrincipalFromGroup(username, grp) #Assign ownership to selected user def _assignOwner(self,obj,user,add=True): if add: username = user.getUserName() obj.manage_setLocalRoles(username, ["Owner",]) else: obj.changeOwnership(user) obj.reindexObjectSecurity() #Procedure that search all documents of the selected user, assign him ownership, and move him in iol groups security.declarePublic('accreditaUtente') def accreditaUtente(self): obj = self.document user = obj.getOwner() username = user.getUserName() apps = obj.getItem(IOL_APPS_FIELD,[]) #for appName in apps: #app = App(appName) #for grp in app.getOwnerGroups(): # self._assignGroups(obj,username,[grp]) self._assignGroups(obj,username,apps) catalog = api.portal.get_tool('portal_catalog') brains = catalog(portal_type='PlominoDatabase') unique = obj.getItem(USER_UNIQUE_FIELD,'') cont = 0 brains = [] for brain in brains: db = brain.getObject() idx = db.getIndex() req = dict(USER_CREDITABLE_FIELD = unique) for br in idx.dbsearch(req,only_allowed=False): doc = br.getObject() self._assignOwner(doc,user) cont += 1 return cont security.declarePublic('revocaUtente') def revocaUtente(self): obj = self.document user = obj.getOwner() username = user.getUserName() apps = obj.getItem(IOL_APPS_FIELD,[]) self._removeGroups(obj,username,apps) def _serialDatagridItem(doc, obj ): result = list() itemvalue = doc.getItem(obj['name']) for el in itemvalue: i = 0 res = dict() for fld in obj['field_list']: res[fld]= el[i] i+=1 result.append(res) return result security.declarePublic('serializeDoc') def serializeDoc(self): doc = self.document results = dict(deepcopy(doc.items)) frm = doc.getForm() fieldnames = [] for i in frm.getFormFields(includesubforms=True, doc=None, applyhidewhen=False): if i.getFieldType()=='DATAGRID': fieldnames.append(dict(field=i,name=i.getId(),form=i.getSettings().associated_form,field_list=i.getSettings().field_mapping.split(','))) try: for f in fieldnames: if f['name'] in results: del results[f['name']] results[f['name']]=self._serialDatagridItem(doc,f) except: results[f['name']]= [] api.portal.show_message(message='Errore nel campo %s' %f['name'], request=doc.REQUEST) return results security.declarePublic('docToJson') def docToJson(self): return json.dumps(self.serializeDoc(),default=DateTime.DateTime.ISO,use_decimal=True) security.declarePublic('renderSimpleValue') def renderSimpleValue(self,itemvalue,field,fieldtype): doc = self.document db = doc.getParentDatabase() if not fieldtype: fieldtype = field.getFieldType() renderedValue = None if itemvalue and field: if fieldtype == 'SELECTION': nfo = dict([i.split('|')[::-1] for i in field.getSettings().getSelectionList(doc)]) if isinstance(itemvalue, basestring): renderedValue = nfo.get(itemvalue) or itemvalue elif isinstance(itemvalue[0], dict): import pdb; pdb.set_trace() renderedValue = [i.keys() for i in itemvalue] else: renderedValue = [(nfo.get(i) or i) for i in itemvalue] elif fieldtype not in ('TEXT', 'NUMBER', ): # not worth it to call the template to render text and numbers # it is an expensive operation fieldtemplate = db.getRenderingTemplate('%sFieldRead' % fieldtype) \ or db.getRenderingTemplate('DefaultFieldRead') renderedValue = fieldtemplate(fieldname=field.getId(), fieldvalue = itemvalue, selection = field.getSettings().getSelectionList(doc), field = field, doc = doc ).strip() if renderedValue == None: if not itemvalue: renderedValue = '' elif fieldtype == 'TEXT': renderedValue = itemvalue elif fieldtype == 'NUMBER': custom_format = None if not field else field.getSettings('format') renderedValue = str(itemvalue) if not custom_format else custom_format % itemvalue elif fieldtype == 'DATETIME': if field: custom_format = field.getSettings('format') or db.getDateTimeFormat() else: custom_format = db.getDateTimeFormat() try: renderedValue = itemvalue.strftime(custom_format) except: renderedValue = itemvalue else: try: json.dumps(itemvalue) except TypeError: renderedValue = u'%s' % itemvalue else: renderedValue = itemvalue return renderedValue #Returns a list of 2-tuples with the data contained in the document item security.declarePublic('serialItem') def serialItem(self, name, fieldnames = [],fieldsubset = [],fieldsremove=[]): doc = self.document db = doc.getParentDatabase() result = list() itemvalue = doc.getItem(name) if itemvalue == '': self.getFieldValue(name) form = doc.getForm() if not fieldnames: fieldnames = [i.getId() for i in form.getFormFields(includesubforms=True, doc=None, applyhidewhen=False)] if name in fieldnames: field = form.getFormField(name) fieldtype = field.getFieldType() else: field = None if isinstance(itemvalue, (int, float, )): fieldtype = 'NUMBER' elif isinstance(itemvalue, DateTime): fieldtype = 'DATETIME' elif isinstance(itemvalue,list): fieldtype = 'SELECTION' else: fieldtype = 'TEXT' assert fieldtype, 'No fieldtype is specified for "%(name)s" with value "%(itemvalue)s"' % locals() # arbitrary assumption if fieldtype == 'DATE': fieldtype = 'DATETIME' if fieldtype == 'DATAGRID' or (fieldtype == 'DOCLINK'): sub_result = list() if fieldtype == 'DATAGRID': grid_form = db.getForm(field.getSettings().associated_form) grid_field_names = field.getSettings().field_mapping.split(',') for innervalue in itemvalue or []: if fieldtype == 'DOCLINK': sub_doc = db.getDocument(innervalue) sub_element = dict(self.serialDoc(fieldsubset=fieldsubset,fieldsremove=fieldsremove,doc=sub_doc)) else: sub_element = dict([(k, self.renderSimpleValue(v, grid_form.getFormField(k))) for k,v in zip(grid_field_names, innervalue)]) sub_result.append(sub_element) result.append((name, sub_result)) else: renderedValue = self.renderSimpleValue(itemvalue,field,fieldtype) result.append((name, renderedValue)) return result security.declarePublic('serialDoc') def serialDoc(self,fieldsubset='',fieldsremove='',doc=''): if doc == '': doc = self.document db = doc.getParentDatabase() form = doc.getForm() fieldnames = [i.getId() for i in form.getFormFields(includesubforms=True, doc=None, applyhidewhen=False)] contentKeys = fieldnames + [i for i in doc.getItems() if i not in fieldnames] if fieldsubset and isinstance(fieldsubset, basestring): fieldsubset = fieldsubset.split(',') if fieldsremove and isinstance(fieldsremove, basestring): fieldsremove = fieldsremove.split(',') if fieldsubset: contentKeys = [i for i in contentKeys if i in fieldsubset] if fieldsremove: contentKeys = [i for i in contentKeys if i not in fieldsremove] result = [] for key in contentKeys: result += self.serialItem(key,fieldnames=fieldnames,fieldsubset=fieldsubset,fieldsremove=fieldsremove) # Output rendering if format == 'json': doc.REQUEST.RESPONSE.setHeader("Content-type", "application/json") return json.dumps(dict(result)) elif format == 'xml': assert GOT_XML, '%s' % err doc.REQUEST.RESPONSE.setHeader("Content-type", "text/xml") return '<?xml version="1.0" encoding="UTF-8"?>\n' + dict2xml(dict(info=dict(result))) else: return result InitializeClass(IolDocument)
[ "marco.carbone@gmx.com" ]
marco.carbone@gmx.com
b1c67853753f58f63363e131dc7eec65b7dd69d8
54f0473c1f689fb49486077ad19af658824f0e2d
/test/myScripts/crab/grid_170524/grid/crab_ZJ_ptsqmin4_tune6/inputs/PSetDump.py
0c6f69baa2a926f9444bbfd48044541e8f27c1a4
[]
no_license
kjpena/VptGenAnalysis
b80ee60d9e82950deafc009674749a287c327741
09df2f50347573eda2f0f14a92bae0760114f6c3
refs/heads/master
2021-01-20T00:28:28.212463
2017-08-17T15:27:21
2017-08-17T15:27:21
83,793,800
0
0
null
2017-04-11T12:32:14
2017-03-03T11:59:18
Python
UTF-8
Python
false
false
961,154
py
import FWCore.ParameterSet.Config as cms process = cms.Process("GEN") process.source = cms.Source("PoolSource", fileNames = cms.untracked.vstring('/store/cmst3/user/psilva/Wmass/Wminusj/seed_9_pwgevents.lhe'), inputCommands = cms.untracked.vstring('keep *') ) process.AODEventContent = cms.PSet( compressionAlgorithm = cms.untracked.string('LZMA'), compressionLevel = cms.untracked.int32(4), eventAutoFlushCompressedSize = cms.untracked.int32(15728640), outputCommands = cms.untracked.vstring( ('drop *', 'keep ClusterSummary_clusterSummaryProducer_*_*', 'keep *_dt4DSegments_*_*', 'keep *_dt4DCosmicSegments_*_*', 'keep *_cscSegments_*_*', 'keep *_rpcRecHits_*_*', 'keep *_castorreco_*_*', 'keep *_reducedHcalRecHits_*_*', 'keep HcalUnpackerReport_castorDigis_*_*', 'keep HcalUnpackerReport_hcalDigiAlCaMB_*_*', 'keep HcalUnpackerReport_hcalDigis_*_*', 'keep *_selectDigi_*_*', 'keep EcalRecHitsSorted_reducedEcalRecHitsEB_*_*', 'keep EcalRecHitsSorted_reducedEcalRecHitsEE_*_*', 'keep EcalRecHitsSorted_reducedEcalRecHitsES_*_*', 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', 'keep recoCaloClusters_hybridSuperClusters_*_*', 'keep recoSuperClusters_hybridSuperClusters_uncleanOnlyHybridSuperClusters_*', 'keep recoCaloClusters_multi5x5SuperClusters_multi5x5EndcapBasicClusters_*', 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', 'keep recoPreshowerClusters_multi5x5SuperClustersWithPreshower_*_*', 'keep recoPreshowerClusterShapes_multi5x5PreshowerClusterShape_*_*', 'keep recoSuperClusters_particleFlowSuperClusterECAL_*_*', 'keep recoCaloClusters_particleFlowSuperClusterECAL_*_*', 'keep recoTracks_GsfGlobalElectronTest_*_*', 'keep recoGsfTracks_electronGsfTracks_*_*', 'keep recoTracks_generalTracks_*_*', 'keep recoTracks_conversionStepTracks_*_*', 'keep recoTracks_beamhaloTracks_*_*', 'keep recoTracks_ctfPixelLess_*_*', 'keep *_dedxHarmonic2_*_*', 'keep *_dedxHitInfo_*_*', 'keep *_trackExtrapolator_*_*', 'keep *_generalTracks_MVAValues_*', 'keep *_generalTracks_MVAVals_*', 'keep *_ak4CaloJets_*_*', 'keep *_ak4PFJetsCHS_*_*', 'keep *_ak8PFJetsCHS_*_*', 'keep *_ak8PFJetsCHSSoftDrop_*_*', 'keep *_cmsTopTagPFJetsCHS_*_*', 'keep *_ak4PFJets_*_*', 'keep *_JetPlusTrackZSPCorJetAntiKt4_*_*', 'keep *_ak4TrackJets_*_*', 'keep recoRecoChargedRefCandidates_trackRefsForJets_*_*', 'keep *_caloTowers_*_*', 'keep *_CastorTowerReco_*_*', 'keep *_ak4JetTracksAssociatorAtVertex_*_*', 'keep *_ak4JetTracksAssociatorAtVertexPF_*_*', 'keep *_ak4JetTracksAssociatorExplicit_*_*', 'keep *_ak4JetExtender_*_*', 'keep *_ak4JetID_*_*', 'keep *_ak5CastorJets_*_*', 'keep *_ak5CastorJetID_*_*', 'keep *_ak7CastorJets_*_*', 'keep *_ak7CastorJetID_*_*', 'keep *_fixedGridRhoAll_*_*', 'keep *_fixedGridRhoFastjetAll_*_*', 'keep *_fixedGridRhoFastjetAllTmp_*_*', 'keep *_fixedGridRhoFastjetCentral_*_*', 'keep *_fixedGridRhoFastjetAllCalo_*_*', 'keep *_fixedGridRhoFastjetCentralCalo_*_*', 'keep *_fixedGridRhoFastjetCentralChargedPileUp_*_*', 'keep *_fixedGridRhoFastjetCentralNeutral_*_*', 'drop doubles_*Jets_rhos_*', 'drop doubles_*Jets_sigmas_*', 'keep *_ak8PFJetsCHSSoftDropMass_*_*', 'keep recoCaloMETs_caloMet_*_*', 'keep recoCaloMETs_caloMetBE_*_*', 'keep recoCaloMETs_caloMetBEFO_*_*', 'keep recoCaloMETs_caloMetM_*_*', 'keep recoPFMETs_pfMet_*_*', 'keep recoPFMETs_pfChMet_*_*', 'keep recoPFMETs_pfMetEI_*_*', 'keep recoMuonMETCorrectionDataedmValueMap_muonMETValueMapProducer_*_*', 'drop recoHcalNoiseRBXs_*_*_*', 'keep HcalNoiseSummary_hcalnoise_*_*', 'keep recoGlobalHaloData_GlobalHaloData_*_*', 'keep recoCSCHaloData_CSCHaloData_*_*', 'keep recoBeamHaloSummary_BeamHaloSummary_*_*', 'keep *_muons_*_*', 'keep *_particleFlow_muons_*', 'drop *_muons_muons1stStep2muonsMap_*', 'drop recoIsoDepositedmValueMap_muons_*_*', 'drop doubleedmValueMap_muons_muPFIso*_*', 'keep recoTracks_standAloneMuons_*_*', 'keep recoTrackExtras_standAloneMuons_*_*', 'keep TrackingRecHitsOwned_standAloneMuons_*_*', 'keep recoTracks_globalMuons_*_*', 'keep recoTrackExtras_globalMuons_*_*', 'keep recoTracks_tevMuons_*_*', 'keep recoTrackExtras_tevMuons_*_*', 'keep recoTracks_generalTracks_*_*', 'keep recoTracks_displacedTracks_*_*', 'keep recoTracksToOnerecoTracksAssociation_tevMuons_*_*', 'keep recoTracks_displacedGlobalMuons_*_*', 'keep recoTrackExtras_displacedGlobalMuons_*_*', 'keep TrackingRecHitsOwned_displacedGlobalMuons_*_*', 'keep recoTracks_cosmicMuons_*_*', 'keep recoMuons_muonsFromCosmics_*_*', 'keep recoTracks_cosmicMuons1Leg_*_*', 'keep recoMuons_muonsFromCosmics1Leg_*_*', 'keep recoTracks_refittedStandAloneMuons_*_*', 'keep recoTrackExtras_refittedStandAloneMuons_*_*', 'keep TrackingRecHitsOwned_refittedStandAloneMuons_*_*', 'keep recoTracks_displacedStandAloneMuons__*', 'keep recoTrackExtras_displacedStandAloneMuons_*_*', 'keep TrackingRecHitsOwned_displacedStandAloneMuons_*_*', 'keep *_softPFElectronBJetTags_*_*', 'keep *_softPFMuonBJetTags_*_*', 'keep *_pfTrackCountingHighEffBJetTags_*_*', 'keep *_pfJetProbabilityBJetTags_*_*', 'keep *_pfJetBProbabilityBJetTags_*_*', 'keep *_pfSimpleSecondaryVertexHighEffBJetTags_*_*', 'keep *_pfSimpleInclusiveSecondaryVertexHighEffBJetTags_*_*', 'keep *_pfCombinedSecondaryVertexV2BJetTags_*_*', 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTags_*_*', 'keep *_pfCombinedMVAV2BJetTags_*_*', 'keep *_inclusiveCandidateSecondaryVertices_*_*', 'keep *_inclusiveCandidateSecondaryVerticesCvsL_*_*', 'keep *_pfCombinedCvsLJetTags_*_*', 'keep *_pfCombinedCvsBJetTags_*_*', 'keep recoRecoTauPiZeros_hpsPFTauProducer_pizeros_*', 'keep recoPFTaus_hpsPFTauProducer_*_*', 'keep *_hpsPFTauDiscriminationByDeadECALElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByDecayModeFinding_*_*', 'keep *_hpsPFTauDiscriminationByDecayModeFindingNewDMs_*_*', 'keep *_hpsPFTauDiscriminationByDecayModeFindingOldDMs_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolation_*_*', 'keep *_hpsPFTauDiscriminationByLooseChargedIsolation_*_*', 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3Hits_*_*', 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3HitsdR03_*_*', 'keep *_hpsPFTauDiscriminationByLooseMuonRejection3_*_*', 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3Hits_*_*', 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3HitsdR03_*_*', 'keep *_hpsPFTauDiscriminationByRawCombinedIsolationDBSumPtCorr3Hits_*_*', 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3Hits_*_*', 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3HitsdR03_*_*', 'keep *_hpsPFTauDiscriminationByTightMuonRejection3_*_*', 'keep *_hpsPFTauDiscriminationByPhotonPtSumOutsideSignalCone_*_*', 'keep *_hpsPFTauNeutralIsoPtSum_*_*', 'keep *_hpsPFTauPUcorrPtSum_*_*', 'keep *_hpsPFTauChargedIsoPtSum_*_*', 'keep *_hpsPFTauTransverseImpactParameters_*_*', 'keep *_hpsPFTauFootprintCorrection_*_*', 'keep *_hpsPFTauNeutralIsoPtSumWeight_*_*', 'keep *_hpsPFTauPhotonPtSumOutsideSignalCone_*_*', 'keep *_hpsPFTauDiscriminationByMVA6rawElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6VLooseElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6LooseElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6MediumElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6TightElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6VTightElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBoldDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBnewDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWoldDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWnewDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauChargedIsoPtSumdR03_*_*', 'keep *_hpsPFTauNeutralIsoPtSumdR03_*_*', 'keep *_hpsPFTauNeutralIsoPtSumWeightdR03_*_*', 'keep *_hpsPFTauFootprintCorrectiondR03_*_*', 'keep *_hpsPFTauPhotonPtSumOutsideSignalConedR03_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBdR03oldDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWdR03oldDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_offlinePrimaryVertices__*', 'keep *_offlinePrimaryVerticesWithBS_*_*', 'keep *_offlinePrimaryVerticesFromCosmicTracks_*_*', 'keep *_nuclearInteractionMaker_*_*', 'keep *_generalV0Candidates_*_*', 'keep *_inclusiveSecondaryVertices_*_*', 'keep recoGsfElectronCores_gsfElectronCores_*_*', 'keep recoGsfElectronCores_gedGsfElectronCores_*_*', 'keep recoGsfElectrons_gsfElectrons_*_*', 'keep recoGsfElectrons_gedGsfElectrons_*_*', 'keep recoGsfElectronCores_uncleanedOnlyGsfElectronCores_*_*', 'keep recoGsfElectrons_uncleanedOnlyGsfElectrons_*_*', 'keep floatedmValueMap_eidRobustLoose_*_*', 'keep floatedmValueMap_eidRobustTight_*_*', 'keep floatedmValueMap_eidRobustHighEnergy_*_*', 'keep floatedmValueMap_eidLoose_*_*', 'keep floatedmValueMap_eidTight_*_*', 'keep *_egmGedGsfElectronPFIsolation_*_*', 'keep *_photonEcalPFClusterIsolationProducer_*_*', 'keep *_electronEcalPFClusterIsolationProducer_*_*', 'keep *_photonHcalPFClusterIsolationProducer_*_*', 'keep *_electronHcalPFClusterIsolationProducer_*_*', 'drop *_egmGsfElectronIDs_*_*', 'drop *_egmPhotonIDs_*_*', 'keep recoPhotonCores_gedPhotonCore_*_*', 'keep recoPhotons_gedPhotons_*_*', 'keep *_particleBasedIsolation_*_*', 'drop *_gedPhotons_valMapPFEgammaCandToPhoton_*', 'keep recoPhotonCores_photonCore_*_*', 'keep recoPhotons_photons_*_*', 'keep recoConversions_conversions_*_*', 'keep recoConversions_mustacheConversions_*_*', 'drop *_conversions_uncleanedConversions_*', 'keep recoConversions_allConversions_*_*', 'keep recoConversions_allConversionsOldEG_*_*', 'keep recoTracks_ckfOutInTracksFromConversions_*_*', 'keep recoTracks_ckfInOutTracksFromConversions_*_*', 'keep recoConversions_uncleanedOnlyAllConversions_*_*', 'keep recoTracks_uncleanedOnlyCkfOutInTracksFromConversions_*_*', 'keep recoTracks_uncleanedOnlyCkfInOutTracksFromConversions_*_*', 'keep *_PhotonIDProd_*_*', 'keep *_PhotonIDProdGED_*_*', 'keep *_hfRecoEcalCandidate_*_*', 'keep recoRecoEcalCandidates_hfRecoEcalCandidate_*_*', 'keep *_hfEMClusters_*_*', 'keep *_gedGsfElectronCores_*_*', 'keep *_gedGsfElectrons_*_*', 'drop CaloTowersSorted_towerMakerPF_*_*', 'drop *_pfElectronTranslator_*_*', 'keep recoPFRecHits_particleFlowClusterECAL_Cleaned_*', 'keep recoPFRecHits_particleFlowClusterHCAL_Cleaned_*', 'keep recoPFRecHits_particleFlowClusterHO_Cleaned_*', 'keep recoPFRecHits_particleFlowClusterHF_Cleaned_*', 'keep recoPFRecHits_particleFlowClusterPS_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitECAL_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitHBHE_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitHF_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitHO_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitPS_Cleaned_*', 'keep recoCaloClusters_particleFlowEGamma_*_*', 'keep recoSuperClusters_particleFlowEGamma_*_*', 'keep recoCaloClusters_particleFlowSuperClusterECAL_*_*', 'keep recoSuperClusters_particleFlowSuperClusterECAL_*_*', 'keep recoConversions_particleFlowEGamma_*_*', 'keep recoPFCandidates_particleFlow_*_*', 'keep recoPFCandidates_particleFlowTmp_*_*', 'drop recoPFCandidates_particleFlowTmp__*', 'keep *_particleFlow_electrons_*', 'keep *_particleFlow_photons_*', 'keep *_particleFlow_muons_*', 'keep recoCaloClusters_pfElectronTranslator_*_*', 'keep recoPreshowerClusters_pfElectronTranslator_*_*', 'keep recoSuperClusters_pfElectronTranslator_*_*', 'keep recoCaloClusters_pfPhotonTranslator_*_*', 'keep recoPreshowerClusters_pfPhotonTranslator_*_*', 'keep recoSuperClusters_pfPhotonTranslator_*_*', 'keep recoPhotons_pfPhotonTranslator_*_*', 'keep recoPhotonCores_pfPhotonTranslator_*_*', 'keep recoConversions_pfPhotonTranslator_*_*', 'keep *_particleFlowPtrs_*_*', 'keep *_particleFlowTmpPtrs_*_*', 'keep *_offlineBeamSpot_*_*', 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', 'keep *_l1GtRecord_*_*', 'keep *_l1GtTriggerMenuLite_*_*', 'keep *_conditionsInEdm_*_*', 'keep *_l1extraParticles_*_*', 'keep *_l1L1GtObjectMap_*_*', 'keep LumiSummary_lumiProducer_*_*', 'drop *_hlt*_*_*', 'keep *_hltGtStage2ObjectMap_*_*', 'keep edmTriggerResults_*_*_*', 'keep triggerTriggerEvent_*_*_*', 'keep L1AcceptBunchCrossings_scalersRawToDigi_*_*', 'keep L1TriggerScalerss_scalersRawToDigi_*_*', 'keep Level1TriggerScalerss_scalersRawToDigi_*_*', 'keep LumiScalerss_scalersRawToDigi_*_*', 'keep BeamSpotOnlines_scalersRawToDigi_*_*', 'keep DcsStatuss_scalersRawToDigi_*_*', 'keep *_tcdsDigis_*_*', 'keep *_logErrorHarvester_*_*', 'keep *_pfIsolatedElectronsEI_*_*', 'keep *_pfIsolatedMuonsEI_*_*', 'keep recoPFJets_pfJetsEI_*_*', 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTagsEI_*_*', 'keep recoPFTaus_pfTausEI_*_*', 'keep recoPFTauDiscriminator_pfTausDiscriminationByDecayModeFinding_*_*', 'keep recoPFTauDiscriminator_pfTausDiscriminationByIsolation_*_*', 'keep recoPFMETs_pfMetEI_*_*' ) ) ) process.AODSIMEventContent = cms.PSet( compressionAlgorithm = cms.untracked.string('LZMA'), compressionLevel = cms.untracked.int32(4), eventAutoFlushCompressedSize = cms.untracked.int32(15728640), outputCommands = cms.untracked.vstring( ('drop *', 'drop *', 'keep ClusterSummary_clusterSummaryProducer_*_*', 'keep *_dt4DSegments_*_*', 'keep *_dt4DCosmicSegments_*_*', 'keep *_cscSegments_*_*', 'keep *_rpcRecHits_*_*', 'keep *_castorreco_*_*', 'keep *_reducedHcalRecHits_*_*', 'keep HcalUnpackerReport_castorDigis_*_*', 'keep HcalUnpackerReport_hcalDigiAlCaMB_*_*', 'keep HcalUnpackerReport_hcalDigis_*_*', 'keep *_selectDigi_*_*', 'keep EcalRecHitsSorted_reducedEcalRecHitsEB_*_*', 'keep EcalRecHitsSorted_reducedEcalRecHitsEE_*_*', 'keep EcalRecHitsSorted_reducedEcalRecHitsES_*_*', 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', 'keep recoCaloClusters_hybridSuperClusters_*_*', 'keep recoSuperClusters_hybridSuperClusters_uncleanOnlyHybridSuperClusters_*', 'keep recoCaloClusters_multi5x5SuperClusters_multi5x5EndcapBasicClusters_*', 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', 'keep recoPreshowerClusters_multi5x5SuperClustersWithPreshower_*_*', 'keep recoPreshowerClusterShapes_multi5x5PreshowerClusterShape_*_*', 'keep recoSuperClusters_particleFlowSuperClusterECAL_*_*', 'keep recoCaloClusters_particleFlowSuperClusterECAL_*_*', 'keep recoTracks_GsfGlobalElectronTest_*_*', 'keep recoGsfTracks_electronGsfTracks_*_*', 'keep recoTracks_generalTracks_*_*', 'keep recoTracks_conversionStepTracks_*_*', 'keep recoTracks_beamhaloTracks_*_*', 'keep recoTracks_ctfPixelLess_*_*', 'keep *_dedxHarmonic2_*_*', 'keep *_dedxHitInfo_*_*', 'keep *_trackExtrapolator_*_*', 'keep *_generalTracks_MVAValues_*', 'keep *_generalTracks_MVAVals_*', 'keep *_ak4CaloJets_*_*', 'keep *_ak4PFJetsCHS_*_*', 'keep *_ak8PFJetsCHS_*_*', 'keep *_ak8PFJetsCHSSoftDrop_*_*', 'keep *_cmsTopTagPFJetsCHS_*_*', 'keep *_ak4PFJets_*_*', 'keep *_JetPlusTrackZSPCorJetAntiKt4_*_*', 'keep *_ak4TrackJets_*_*', 'keep recoRecoChargedRefCandidates_trackRefsForJets_*_*', 'keep *_caloTowers_*_*', 'keep *_CastorTowerReco_*_*', 'keep *_ak4JetTracksAssociatorAtVertex_*_*', 'keep *_ak4JetTracksAssociatorAtVertexPF_*_*', 'keep *_ak4JetTracksAssociatorExplicit_*_*', 'keep *_ak4JetExtender_*_*', 'keep *_ak4JetID_*_*', 'keep *_ak5CastorJets_*_*', 'keep *_ak5CastorJetID_*_*', 'keep *_ak7CastorJets_*_*', 'keep *_ak7CastorJetID_*_*', 'keep *_fixedGridRhoAll_*_*', 'keep *_fixedGridRhoFastjetAll_*_*', 'keep *_fixedGridRhoFastjetAllTmp_*_*', 'keep *_fixedGridRhoFastjetCentral_*_*', 'keep *_fixedGridRhoFastjetAllCalo_*_*', 'keep *_fixedGridRhoFastjetCentralCalo_*_*', 'keep *_fixedGridRhoFastjetCentralChargedPileUp_*_*', 'keep *_fixedGridRhoFastjetCentralNeutral_*_*', 'drop doubles_*Jets_rhos_*', 'drop doubles_*Jets_sigmas_*', 'keep *_ak8PFJetsCHSSoftDropMass_*_*', 'keep recoCaloMETs_caloMet_*_*', 'keep recoCaloMETs_caloMetBE_*_*', 'keep recoCaloMETs_caloMetBEFO_*_*', 'keep recoCaloMETs_caloMetM_*_*', 'keep recoPFMETs_pfMet_*_*', 'keep recoPFMETs_pfChMet_*_*', 'keep recoPFMETs_pfMetEI_*_*', 'keep recoMuonMETCorrectionDataedmValueMap_muonMETValueMapProducer_*_*', 'drop recoHcalNoiseRBXs_*_*_*', 'keep HcalNoiseSummary_hcalnoise_*_*', 'keep recoGlobalHaloData_GlobalHaloData_*_*', 'keep recoCSCHaloData_CSCHaloData_*_*', 'keep recoBeamHaloSummary_BeamHaloSummary_*_*', 'keep *_muons_*_*', 'keep *_particleFlow_muons_*', 'drop *_muons_muons1stStep2muonsMap_*', 'drop recoIsoDepositedmValueMap_muons_*_*', 'drop doubleedmValueMap_muons_muPFIso*_*', 'keep recoTracks_standAloneMuons_*_*', 'keep recoTrackExtras_standAloneMuons_*_*', 'keep TrackingRecHitsOwned_standAloneMuons_*_*', 'keep recoTracks_globalMuons_*_*', 'keep recoTrackExtras_globalMuons_*_*', 'keep recoTracks_tevMuons_*_*', 'keep recoTrackExtras_tevMuons_*_*', 'keep recoTracks_generalTracks_*_*', 'keep recoTracks_displacedTracks_*_*', 'keep recoTracksToOnerecoTracksAssociation_tevMuons_*_*', 'keep recoTracks_displacedGlobalMuons_*_*', 'keep recoTrackExtras_displacedGlobalMuons_*_*', 'keep TrackingRecHitsOwned_displacedGlobalMuons_*_*', 'keep recoTracks_cosmicMuons_*_*', 'keep recoMuons_muonsFromCosmics_*_*', 'keep recoTracks_cosmicMuons1Leg_*_*', 'keep recoMuons_muonsFromCosmics1Leg_*_*', 'keep recoTracks_refittedStandAloneMuons_*_*', 'keep recoTrackExtras_refittedStandAloneMuons_*_*', 'keep TrackingRecHitsOwned_refittedStandAloneMuons_*_*', 'keep recoTracks_displacedStandAloneMuons__*', 'keep recoTrackExtras_displacedStandAloneMuons_*_*', 'keep TrackingRecHitsOwned_displacedStandAloneMuons_*_*', 'keep *_softPFElectronBJetTags_*_*', 'keep *_softPFMuonBJetTags_*_*', 'keep *_pfTrackCountingHighEffBJetTags_*_*', 'keep *_pfJetProbabilityBJetTags_*_*', 'keep *_pfJetBProbabilityBJetTags_*_*', 'keep *_pfSimpleSecondaryVertexHighEffBJetTags_*_*', 'keep *_pfSimpleInclusiveSecondaryVertexHighEffBJetTags_*_*', 'keep *_pfCombinedSecondaryVertexV2BJetTags_*_*', 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTags_*_*', 'keep *_pfCombinedMVAV2BJetTags_*_*', 'keep *_inclusiveCandidateSecondaryVertices_*_*', 'keep *_inclusiveCandidateSecondaryVerticesCvsL_*_*', 'keep *_pfCombinedCvsLJetTags_*_*', 'keep *_pfCombinedCvsBJetTags_*_*', 'keep recoRecoTauPiZeros_hpsPFTauProducer_pizeros_*', 'keep recoPFTaus_hpsPFTauProducer_*_*', 'keep *_hpsPFTauDiscriminationByDeadECALElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByDecayModeFinding_*_*', 'keep *_hpsPFTauDiscriminationByDecayModeFindingNewDMs_*_*', 'keep *_hpsPFTauDiscriminationByDecayModeFindingOldDMs_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolation_*_*', 'keep *_hpsPFTauDiscriminationByLooseChargedIsolation_*_*', 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3Hits_*_*', 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3HitsdR03_*_*', 'keep *_hpsPFTauDiscriminationByLooseMuonRejection3_*_*', 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3Hits_*_*', 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3HitsdR03_*_*', 'keep *_hpsPFTauDiscriminationByRawCombinedIsolationDBSumPtCorr3Hits_*_*', 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3Hits_*_*', 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3HitsdR03_*_*', 'keep *_hpsPFTauDiscriminationByTightMuonRejection3_*_*', 'keep *_hpsPFTauDiscriminationByPhotonPtSumOutsideSignalCone_*_*', 'keep *_hpsPFTauNeutralIsoPtSum_*_*', 'keep *_hpsPFTauPUcorrPtSum_*_*', 'keep *_hpsPFTauChargedIsoPtSum_*_*', 'keep *_hpsPFTauTransverseImpactParameters_*_*', 'keep *_hpsPFTauFootprintCorrection_*_*', 'keep *_hpsPFTauNeutralIsoPtSumWeight_*_*', 'keep *_hpsPFTauPhotonPtSumOutsideSignalCone_*_*', 'keep *_hpsPFTauDiscriminationByMVA6rawElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6VLooseElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6LooseElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6MediumElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6TightElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6VTightElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBoldDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBnewDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWoldDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWnewDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauChargedIsoPtSumdR03_*_*', 'keep *_hpsPFTauNeutralIsoPtSumdR03_*_*', 'keep *_hpsPFTauNeutralIsoPtSumWeightdR03_*_*', 'keep *_hpsPFTauFootprintCorrectiondR03_*_*', 'keep *_hpsPFTauPhotonPtSumOutsideSignalConedR03_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBdR03oldDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWdR03oldDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_offlinePrimaryVertices__*', 'keep *_offlinePrimaryVerticesWithBS_*_*', 'keep *_offlinePrimaryVerticesFromCosmicTracks_*_*', 'keep *_nuclearInteractionMaker_*_*', 'keep *_generalV0Candidates_*_*', 'keep *_inclusiveSecondaryVertices_*_*', 'keep recoGsfElectronCores_gsfElectronCores_*_*', 'keep recoGsfElectronCores_gedGsfElectronCores_*_*', 'keep recoGsfElectrons_gsfElectrons_*_*', 'keep recoGsfElectrons_gedGsfElectrons_*_*', 'keep recoGsfElectronCores_uncleanedOnlyGsfElectronCores_*_*', 'keep recoGsfElectrons_uncleanedOnlyGsfElectrons_*_*', 'keep floatedmValueMap_eidRobustLoose_*_*', 'keep floatedmValueMap_eidRobustTight_*_*', 'keep floatedmValueMap_eidRobustHighEnergy_*_*', 'keep floatedmValueMap_eidLoose_*_*', 'keep floatedmValueMap_eidTight_*_*', 'keep *_egmGedGsfElectronPFIsolation_*_*', 'keep *_photonEcalPFClusterIsolationProducer_*_*', 'keep *_electronEcalPFClusterIsolationProducer_*_*', 'keep *_photonHcalPFClusterIsolationProducer_*_*', 'keep *_electronHcalPFClusterIsolationProducer_*_*', 'drop *_egmGsfElectronIDs_*_*', 'drop *_egmPhotonIDs_*_*', 'keep recoPhotonCores_gedPhotonCore_*_*', 'keep recoPhotons_gedPhotons_*_*', 'keep *_particleBasedIsolation_*_*', 'drop *_gedPhotons_valMapPFEgammaCandToPhoton_*', 'keep recoPhotonCores_photonCore_*_*', 'keep recoPhotons_photons_*_*', 'keep recoConversions_conversions_*_*', 'keep recoConversions_mustacheConversions_*_*', 'drop *_conversions_uncleanedConversions_*', 'keep recoConversions_allConversions_*_*', 'keep recoConversions_allConversionsOldEG_*_*', 'keep recoTracks_ckfOutInTracksFromConversions_*_*', 'keep recoTracks_ckfInOutTracksFromConversions_*_*', 'keep recoConversions_uncleanedOnlyAllConversions_*_*', 'keep recoTracks_uncleanedOnlyCkfOutInTracksFromConversions_*_*', 'keep recoTracks_uncleanedOnlyCkfInOutTracksFromConversions_*_*', 'keep *_PhotonIDProd_*_*', 'keep *_PhotonIDProdGED_*_*', 'keep *_hfRecoEcalCandidate_*_*', 'keep recoRecoEcalCandidates_hfRecoEcalCandidate_*_*', 'keep *_hfEMClusters_*_*', 'keep *_gedGsfElectronCores_*_*', 'keep *_gedGsfElectrons_*_*', 'drop CaloTowersSorted_towerMakerPF_*_*', 'drop *_pfElectronTranslator_*_*', 'keep recoPFRecHits_particleFlowClusterECAL_Cleaned_*', 'keep recoPFRecHits_particleFlowClusterHCAL_Cleaned_*', 'keep recoPFRecHits_particleFlowClusterHO_Cleaned_*', 'keep recoPFRecHits_particleFlowClusterHF_Cleaned_*', 'keep recoPFRecHits_particleFlowClusterPS_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitECAL_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitHBHE_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitHF_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitHO_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitPS_Cleaned_*', 'keep recoCaloClusters_particleFlowEGamma_*_*', 'keep recoSuperClusters_particleFlowEGamma_*_*', 'keep recoCaloClusters_particleFlowSuperClusterECAL_*_*', 'keep recoSuperClusters_particleFlowSuperClusterECAL_*_*', 'keep recoConversions_particleFlowEGamma_*_*', 'keep recoPFCandidates_particleFlow_*_*', 'keep recoPFCandidates_particleFlowTmp_*_*', 'drop recoPFCandidates_particleFlowTmp__*', 'keep *_particleFlow_electrons_*', 'keep *_particleFlow_photons_*', 'keep *_particleFlow_muons_*', 'keep recoCaloClusters_pfElectronTranslator_*_*', 'keep recoPreshowerClusters_pfElectronTranslator_*_*', 'keep recoSuperClusters_pfElectronTranslator_*_*', 'keep recoCaloClusters_pfPhotonTranslator_*_*', 'keep recoPreshowerClusters_pfPhotonTranslator_*_*', 'keep recoSuperClusters_pfPhotonTranslator_*_*', 'keep recoPhotons_pfPhotonTranslator_*_*', 'keep recoPhotonCores_pfPhotonTranslator_*_*', 'keep recoConversions_pfPhotonTranslator_*_*', 'keep *_particleFlowPtrs_*_*', 'keep *_particleFlowTmpPtrs_*_*', 'keep *_offlineBeamSpot_*_*', 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', 'keep *_l1GtRecord_*_*', 'keep *_l1GtTriggerMenuLite_*_*', 'keep *_conditionsInEdm_*_*', 'keep *_l1extraParticles_*_*', 'keep *_l1L1GtObjectMap_*_*', 'keep LumiSummary_lumiProducer_*_*', 'drop *_hlt*_*_*', 'keep *_hltGtStage2ObjectMap_*_*', 'keep edmTriggerResults_*_*_*', 'keep triggerTriggerEvent_*_*_*', 'keep L1AcceptBunchCrossings_scalersRawToDigi_*_*', 'keep L1TriggerScalerss_scalersRawToDigi_*_*', 'keep Level1TriggerScalerss_scalersRawToDigi_*_*', 'keep LumiScalerss_scalersRawToDigi_*_*', 'keep BeamSpotOnlines_scalersRawToDigi_*_*', 'keep DcsStatuss_scalersRawToDigi_*_*', 'keep *_tcdsDigis_*_*', 'keep *_logErrorHarvester_*_*', 'keep *_pfIsolatedElectronsEI_*_*', 'keep *_pfIsolatedMuonsEI_*_*', 'keep recoPFJets_pfJetsEI_*_*', 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTagsEI_*_*', 'keep recoPFTaus_pfTausEI_*_*', 'keep recoPFTauDiscriminator_pfTausDiscriminationByDecayModeFinding_*_*', 'keep recoPFTauDiscriminator_pfTausDiscriminationByIsolation_*_*', 'keep recoPFMETs_pfMetEI_*_*', 'keep LHERunInfoProduct_*_*_*', 'keep LHEEventProduct_*_*_*', 'keep GenRunInfoProduct_generator_*_*', 'keep GenLumiInfoHeader_generator_*_*', 'keep GenLumiInfoProduct_generator_*_*', 'keep GenEventInfoProduct_generator_*_*', 'keep GenFilterInfo_*_*_*', 'keep *_genParticles_*_*', 'keep *_allTrackMCMatch_*_*', 'keep *_ak4GenJets_*_*', 'keep *_ak8GenJets_*_*', 'keep *_ak4GenJetsNoNu_*_*', 'keep *_ak8GenJetsNoNu_*_*', 'keep *_genParticle_*_*', 'keep recoGenMETs_*_*_*', 'keep PileupSummaryInfos_*_*_*', 'keep int_*_bunchSpacing_*' ) ) ) process.AnomalousCellParameters = cms.PSet( maxBadEcalCells = cms.uint32(9999999), maxBadHcalCells = cms.uint32(9999999), maxProblematicEcalCells = cms.uint32(9999999), maxProblematicHcalCells = cms.uint32(9999999), maxRecoveredEcalCells = cms.uint32(9999999), maxRecoveredHcalCells = cms.uint32(9999999) ) process.BeamSpotAOD = cms.PSet( outputCommands = cms.untracked.vstring('keep *_offlineBeamSpot_*_*') ) process.BeamSpotFEVT = cms.PSet( outputCommands = cms.untracked.vstring('keep *_offlineBeamSpot_*_*') ) process.BeamSpotRECO = cms.PSet( outputCommands = cms.untracked.vstring('keep *_offlineBeamSpot_*_*') ) process.Centered7TeV2011CollisionVtxSmearingParameters = cms.PSet( Alpha = cms.double(0.0), BetaStar = cms.double(150.0), Emittance = cms.double(6.7e-08), Phi = cms.double(0.0), SigmaZ = cms.double(5.22), TimeOffset = cms.double(0.0), X0 = cms.double(0.0), Y0 = cms.double(0.0), Z0 = cms.double(0.0) ) process.CommonEventContent = cms.PSet( outputCommands = cms.untracked.vstring('keep *_logErrorHarvester_*_*') ) process.DATAMIXEREventContent = cms.PSet( eventAutoFlushCompressedSize = cms.untracked.int32(5242880), outputCommands = cms.untracked.vstring('drop *', 'keep CSCDetIdCSCALCTDigiMuonDigiCollection_muonCSCDigis_MuonCSCALCTDigi_*', 'keep CSCDetIdCSCCLCTDigiMuonDigiCollection_muonCSCDigis_MuonCSCCLCTDigi_*', 'keep CSCDetIdCSCComparatorDigiMuonDigiCollection_muonCSCDigis_MuonCSCComparatorDigi_*', 'keep CSCDetIdCSCCorrelatedLCTDigiMuonDigiCollection_csctfDigis_*_*', 'keep CSCDetIdCSCCorrelatedLCTDigiMuonDigiCollection_muonCSCDigis_MuonCSCCorrelatedLCTDigi_*', 'keep CSCDetIdCSCRPCDigiMuonDigiCollection_muonCSCDigis_MuonCSCRPCDigi_*', 'keep CSCDetIdCSCStripDigiMuonDigiCollection_muonCSCDigis_MuonCSCStripDigi_*', 'keep CSCDetIdCSCWireDigiMuonDigiCollection_muonCSCDigis_MuonCSCWireDigi_*', 'keep DTLayerIdDTDigiMuonDigiCollection_muonDTDigis_*_*', 'keep PixelDigiedmDetSetVector_siPixelDigis_*_*', 'keep SiStripDigiedmDetSetVector_siStripDigis_*_*', 'keep RPCDetIdRPCDigiMuonDigiCollection_muonRPCDigis_*_*', 'keep HBHEDataFramesSorted_hcalDigis_*_*', 'keep HFDataFramesSorted_hcalDigis_*_*', 'keep HODataFramesSorted_hcalDigis_*_*', 'keep QIE10DataFrameHcalDataFrameContainer_hcalDigis_*_*', 'keep ZDCDataFramesSorted_hcalDigis_*_*', 'keep CastorDataFramesSorted_castorDigis_*_*', 'keep EBDigiCollection_ecalDigis_*_*', 'keep EEDigiCollection_ecalDigis_*_*', 'keep ESDigiCollection_ecalPreshowerDigis_*_*'), splitLevel = cms.untracked.int32(0) ) process.DQMEventContent = cms.PSet( outputCommands = cms.untracked.vstring('drop *', 'keep *_MEtoEDMConverter_*_*'), splitLevel = cms.untracked.int32(0) ) process.DigiToRawFEVT = cms.PSet( outputCommands = cms.untracked.vstring('keep FEDRawDataCollection_source_*_*', 'keep FEDRawDataCollection_rawDataCollector_*_*') ) process.EITopPAGEventContent = cms.PSet( outputCommands = cms.untracked.vstring('keep *_pfIsolatedElectronsEI_*_*', 'keep *_pfIsolatedMuonsEI_*_*', 'keep recoPFJets_pfJetsEI_*_*', 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTagsEI_*_*', 'keep recoPFTaus_pfTausEI_*_*', 'keep recoPFTauDiscriminator_pfTausDiscriminationByDecayModeFinding_*_*', 'keep recoPFTauDiscriminator_pfTausDiscriminationByIsolation_*_*', 'keep recoPFMETs_pfMetEI_*_*') ) process.Early10TeVCollisionVtxSmearingParameters = cms.PSet( Alpha = cms.double(0.0), BetaStar = cms.double(300.0), Emittance = cms.double(1.406e-07), Phi = cms.double(0.0), SigmaZ = cms.double(3.8), TimeOffset = cms.double(0.0), X0 = cms.double(0.0322), Y0 = cms.double(0.0), Z0 = cms.double(0.0) ) process.Early10TeVX322Y10000VtxSmearingParameters = cms.PSet( Alpha = cms.double(0.0), BetaStar = cms.double(300.0), Emittance = cms.double(1.406e-07), Phi = cms.double(0.0), SigmaZ = cms.double(3.8), TimeOffset = cms.double(0.0), X0 = cms.double(0.0322), Y0 = cms.double(1.0), Z0 = cms.double(0.0) ) process.Early10TeVX322Y1000VtxSmearingParameters = cms.PSet( Alpha = cms.double(0.0), BetaStar = cms.double(300.0), Emittance = cms.double(1.406e-07), Phi = cms.double(0.0), SigmaZ = cms.double(3.8), TimeOffset = cms.double(0.0), X0 = cms.double(0.0322), Y0 = cms.double(0.1), Z0 = cms.double(0.0) ) process.Early10TeVX322Y100VtxSmearingParameters = cms.PSet( Alpha = cms.double(0.0), BetaStar = cms.double(300.0), Emittance = cms.double(1.406e-07), Phi = cms.double(0.0), SigmaZ = cms.double(3.8), TimeOffset = cms.double(0.0), X0 = cms.double(0.0322), Y0 = cms.double(0.01), Z0 = cms.double(0.0) ) process.Early10TeVX322Y250VtxSmearingParameters = cms.PSet( Alpha = cms.double(0.0), BetaStar = cms.double(300.0), Emittance = cms.double(1.406e-07), Phi = cms.double(0.0), SigmaZ = cms.double(3.8), TimeOffset = cms.double(0.0), X0 = cms.double(0.0322), Y0 = cms.double(0.025), Z0 = cms.double(0.0) ) process.Early10TeVX322Y5000VtxSmearingParameters = cms.PSet( Alpha = cms.double(0.0), BetaStar = cms.double(300.0), Emittance = cms.double(1.406e-07), Phi = cms.double(0.0), SigmaZ = cms.double(3.8), TimeOffset = cms.double(0.0), X0 = cms.double(0.0322), Y0 = cms.double(0.5), Z0 = cms.double(0.0) ) process.Early10TeVX322Y500VtxSmearingParameters = cms.PSet( Alpha = cms.double(0.0), BetaStar = cms.double(300.0), Emittance = cms.double(1.406e-07), Phi = cms.double(0.0), SigmaZ = cms.double(3.8), TimeOffset = cms.double(0.0), X0 = cms.double(0.0322), Y0 = cms.double(0.05), Z0 = cms.double(0.0) ) process.Early2p2TeVCollisionVtxSmearingParameters = cms.PSet( Alpha = cms.double(0.0), BetaStar = cms.double(1100.0), Emittance = cms.double(6.4e-07), Phi = cms.double(0.0), SigmaZ = cms.double(5.5), TimeOffset = cms.double(0.0), X0 = cms.double(0.0322), Y0 = cms.double(0.0), Z0 = cms.double(0.0) ) process.Early7TeVCollisionVtxSmearingParameters = cms.PSet( Alpha = cms.double(0.0), BetaStar = cms.double(1100.0), Emittance = cms.double(2e-07), Phi = cms.double(0.0), SigmaZ = cms.double(4.2), TimeOffset = cms.double(0.0), X0 = cms.double(0.0322), Y0 = cms.double(0.0), Z0 = cms.double(0.0) ) process.Early900GeVCollisionVtxSmearingParameters = cms.PSet( Alpha = cms.double(0.0), BetaStar = cms.double(1100.0), Emittance = cms.double(1.564e-06), Phi = cms.double(0.0), SigmaZ = cms.double(7.4), TimeOffset = cms.double(0.0), X0 = cms.double(0.0322), Y0 = cms.double(0.0), Z0 = cms.double(0.0) ) process.EarlyCollisionVtxSmearingParameters = cms.PSet( Alpha = cms.double(0.0), BetaStar = cms.double(200.0), Emittance = cms.double(1.006e-07), Phi = cms.double(0.0), SigmaZ = cms.double(5.3), TimeOffset = cms.double(0.0), X0 = cms.double(0.0322), Y0 = cms.double(0.0), Z0 = cms.double(0.0) ) process.EvtScalersAOD = cms.PSet( outputCommands = cms.untracked.vstring('keep L1AcceptBunchCrossings_scalersRawToDigi_*_*', 'keep L1TriggerScalerss_scalersRawToDigi_*_*', 'keep Level1TriggerScalerss_scalersRawToDigi_*_*', 'keep LumiScalerss_scalersRawToDigi_*_*', 'keep BeamSpotOnlines_scalersRawToDigi_*_*', 'keep DcsStatuss_scalersRawToDigi_*_*') ) process.EvtScalersRECO = cms.PSet( outputCommands = cms.untracked.vstring('keep L1AcceptBunchCrossings_scalersRawToDigi_*_*', 'keep L1TriggerScalerss_scalersRawToDigi_*_*', 'keep Level1TriggerScalerss_scalersRawToDigi_*_*', 'keep LumiScalerss_scalersRawToDigi_*_*', 'keep BeamSpotOnlines_scalersRawToDigi_*_*', 'keep DcsStatuss_scalersRawToDigi_*_*', 'keep DcsStatuss_hltScalersRawToDigi_*_*') ) process.FASTPUEventContent = cms.PSet( outputCommands = cms.untracked.vstring('drop *', 'keep *_famosSimHits_*_*', 'keep *_MuonSimHits_*_*', 'drop *_famosSimHits_VertexTypes_*', 'keep *_generalTracksBeforeMixing_*_*', 'drop *_generalTracksBeforeMixing_MVAValues_*', 'drop *_generalTracksBeforeMixing_QualityMasks_*', 'keep edmHepMCProduct_generatorSmeared_*_*') ) process.FEVTDEBUGEventContent = cms.PSet( eventAutoFlushCompressedSize = cms.untracked.int32(5242880), outputCommands = cms.untracked.vstring( ('drop *', 'drop *', 'drop *', 'keep FEDRawDataCollection_rawDataCollector_*_*', 'keep FEDRawDataCollection_source_*_*', 'keep FEDRawDataCollection_rawDataCollector_*_*', 'keep FEDRawDataCollection_source_*_*', 'drop *_hlt*_*_*', 'keep *_hltGtStage2ObjectMap_*_*', 'keep FEDRawDataCollection_rawDataCollector_*_*', 'keep FEDRawDataCollection_source_*_*', 'keep edmTriggerResults_*_*_*', 'keep triggerTriggerEvent_*_*_*', 'keep *_g4SimHits_*_*', 'keep edmHepMCProduct_source_*_*', 'keep *_allTrackMCMatch_*_*', 'keep StripDigiSimLinkedmDetSetVector_simMuonCSCDigis_*_*', 'keep CSCDetIdCSCComparatorDigiMuonDigiCollection_simMuonCSCDigis_*_*', 'keep DTLayerIdDTDigiSimLinkMuonDigiCollection_simMuonDTDigis_*_*', 'keep RPCDigiSimLinkedmDetSetVector_simMuonRPCDigis_*_*', 'keep EBSrFlagsSorted_simEcalDigis_*_*', 'keep EESrFlagsSorted_simEcalDigis_*_*', 'keep CrossingFramePlaybackInfoNew_*_*_*', 'keep PileupSummaryInfos_*_*_*', 'keep int_*_bunchSpacing_*', 'keep LHERunInfoProduct_*_*_*', 'keep LHEEventProduct_*_*_*', 'keep GenRunInfoProduct_generator_*_*', 'keep GenLumiInfoHeader_generator_*_*', 'keep GenLumiInfoProduct_generator_*_*', 'keep GenEventInfoProduct_generator_*_*', 'keep edmHepMCProduct_generatorSmeared_*_*', 'keep GenFilterInfo_*_*_*', 'keep *_genParticles_*_*', 'keep recoGenJets_*_*_*', 'keep *_genParticle_*_*', 'keep recoGenMETs_*_*_*', 'keep FEDRawDataCollection_source_*_*', 'keep FEDRawDataCollection_rawDataCollector_*_*', 'keep *_MEtoEDMConverter_*_*', 'keep *_randomEngineStateProducer_*_*', 'keep DetIdedmEDCollection_siStripDigis_*_*', 'keep DetIdedmEDCollection_siPixelDigis_*_*', 'keep *_siPixelClusters_*_*', 'keep *_siStripClusters_*_*', 'keep ClusterSummary_clusterSummaryProducer_*_*', 'keep *_dt1DRecHits_*_*', 'keep *_dt4DSegments_*_*', 'keep *_dt1DCosmicRecHits_*_*', 'keep *_dt4DCosmicSegments_*_*', 'keep *_csc2DRecHits_*_*', 'keep *_cscSegments_*_*', 'keep *_rpcRecHits_*_*', 'keep *_hbhereco_*_*', 'keep *_hbheprereco_*_*', 'keep *_hfreco_*_*', 'keep *_horeco_*_*', 'keep HBHERecHitsSorted_hbherecoMB_*_*', 'keep HORecHitsSorted_horecoMB_*_*', 'keep HFRecHitsSorted_hfrecoMB_*_*', 'keep ZDCDataFramesSorted_hcalDigis_*_*', 'keep ZDCRecHitsSorted_*_*_*', 'keep *_reducedHcalRecHits_*_*', 'keep *_castorreco_*_*', 'keep HcalUnpackerReport_castorDigis_*_*', 'keep HcalUnpackerReport_hcalDigiAlCaMB_*_*', 'keep HcalUnpackerReport_hcalDigis_*_*', 'keep *_ecalPreshowerRecHit_*_*', 'keep *_ecalRecHit_*_*', 'keep *_ecalCompactTrigPrim_*_*', 'keep *_ecalTPSkim_*_*', 'keep *_selectDigi_*_*', 'keep EcalRecHitsSorted_reducedEcalRecHitsEE_*_*', 'keep EcalRecHitsSorted_reducedEcalRecHitsEB_*_*', 'keep EcalRecHitsSorted_reducedEcalRecHitsES_*_*', 'keep *_hybridSuperClusters_*_*', 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', 'keep *_multi5x5SuperClusters_*_*', 'keep recoSuperClusters_multi5x5SuperClusters_*_*', 'keep recoSuperClusters_multi5x5SuperClustersWithPreshower_*_*', 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', 'keep recoPreshowerClusters_multi5x5SuperClustersWithPreshower_*_*', 'keep recoPreshowerClusterShapes_multi5x5PreshowerClusterShape_*_*', 'keep *_particleFlowSuperClusterECAL_*_*', 'drop recoClusterShapes_*_*_*', 'drop recoBasicClustersToOnerecoClusterShapesAssociation_*_*_*', 'drop recoBasicClusters_multi5x5BasicClusters_multi5x5BarrelBasicClusters_*', 'drop recoSuperClusters_multi5x5SuperClusters_multi5x5BarrelSuperClusters_*', 'keep *_CkfElectronCandidates_*_*', 'keep *_GsfGlobalElectronTest_*_*', 'keep *_electronMergedSeeds_*_*', 'keep recoGsfTracks_electronGsfTracks_*_*', 'keep recoGsfTrackExtras_electronGsfTracks_*_*', 'keep recoTrackExtras_electronGsfTracks_*_*', 'keep TrackingRecHitsOwned_electronGsfTracks_*_*', 'keep recoTracks_generalTracks_*_*', 'keep recoTrackExtras_generalTracks_*_*', 'keep TrackingRecHitsOwned_generalTracks_*_*', 'keep *_generalTracks_MVAValues_*', 'keep *_generalTracks_MVAVals_*', 'keep TrackingRecHitsOwned_extraFromSeeds_*_*', 'keep uints_extraFromSeeds_*_*', 'keep recoTracks_beamhaloTracks_*_*', 'keep recoTrackExtras_beamhaloTracks_*_*', 'keep TrackingRecHitsOwned_beamhaloTracks_*_*', 'keep recoTracks_conversionStepTracks_*_*', 'keep recoTrackExtras_conversionStepTracks_*_*', 'keep TrackingRecHitsOwned_conversionStepTracks_*_*', 'keep *_ctfPixelLess_*_*', 'keep *_dedxTruncated40_*_*', 'keep *_dedxHitInfo_*_*', 'keep *_dedxHarmonic2_*_*', 'keep *_trackExtrapolator_*_*', 'keep *_ak4CaloJets_*_*', 'keep *_ak4PFJets_*_*', 'keep *_ak4PFJetsCHS_*_*', 'keep *_ak8PFJetsCHS_*_*', 'keep *_ak8PFJetsCHSSoftDrop_*_*', 'keep *_cmsTopTagPFJetsCHS_*_*', 'keep *_JetPlusTrackZSPCorJetAntiKt4_*_*', 'keep *_ak4TrackJets_*_*', 'keep recoRecoChargedRefCandidates_trackRefsForJets_*_*', 'keep *_caloTowers_*_*', 'keep *_towerMaker_*_*', 'keep *_CastorTowerReco_*_*', 'keep *_ak4JetTracksAssociatorAtVertex_*_*', 'keep *_ak4JetTracksAssociatorAtVertexPF_*_*', 'keep *_ak4JetTracksAssociatorAtCaloFace_*_*', 'keep *_ak4JetTracksAssociatorExplicit_*_*', 'keep *_ak4JetExtender_*_*', 'keep *_ak4JetID_*_*', 'keep *_ak5CastorJets_*_*', 'keep *_ak5CastorJetID_*_*', 'keep *_ak7CastorJets_*_*', 'keep *_ak7CastorJetID_*_*', 'keep *_fixedGridRhoAll_*_*', 'keep *_fixedGridRhoFastjetAll_*_*', 'keep *_fixedGridRhoFastjetAllTmp_*_*', 'keep *_fixedGridRhoFastjetAllCalo_*_*', 'keep *_fixedGridRhoFastjetCentral_*_*', 'keep *_fixedGridRhoFastjetCentralCalo_*_*', 'keep *_fixedGridRhoFastjetCentralChargedPileUp_*_*', 'keep *_fixedGridRhoFastjetCentralNeutral_*_*', 'keep *_ak8PFJetsCHSSoftDropMass_*_*', 'keep recoCaloMETs_caloMet_*_*', 'keep recoCaloMETs_caloMetBE_*_*', 'keep recoCaloMETs_caloMetBEFO_*_*', 'keep recoCaloMETs_caloMetM_*_*', 'keep recoPFMETs_pfMet_*_*', 'keep recoPFMETs_pfChMet_*_*', 'keep recoPFMETs_pfMetEI_*_*', 'keep recoMuonMETCorrectionDataedmValueMap_muonMETValueMapProducer_*_*', 'keep recoHcalNoiseRBXs_hcalnoise_*_*', 'keep HcalNoiseSummary_hcalnoise_*_*', 'keep recoCSCHaloData_CSCHaloData_*_*', 'keep recoEcalHaloData_EcalHaloData_*_*', 'keep recoGlobalHaloData_GlobalHaloData_*_*', 'keep recoHcalHaloData_HcalHaloData_*_*', 'keep recoBeamHaloSummary_BeamHaloSummary_*_*', 'keep *_MuonSeed_*_*', 'keep *_ancientMuonSeed_*_*', 'keep *_displacedMuonSeeds_*_*', 'keep TrackingRecHitsOwned_globalMuons_*_*', 'keep TrackingRecHitsOwned_tevMuons_*_*', 'keep recoCaloMuons_calomuons_*_*', 'keep *_CosmicMuonSeed_*_*', 'keep recoTrackExtras_cosmicMuons_*_*', 'keep TrackingRecHitsOwned_cosmicMuons_*_*', 'keep recoTrackExtras_cosmicMuons1Leg_*_*', 'keep TrackingRecHitsOwned_cosmicMuons1Leg_*_*', 'keep recoTracks_cosmicsVetoTracks_*_*', 'keep *_SETMuonSeed_*_*', 'keep recoTracks_standAloneSETMuons_*_*', 'keep recoTrackExtras_standAloneSETMuons_*_*', 'keep TrackingRecHitsOwned_standAloneSETMuons_*_*', 'keep recoTracks_globalSETMuons_*_*', 'keep recoTrackExtras_globalSETMuons_*_*', 'keep TrackingRecHitsOwned_globalSETMuons_*_*', 'keep recoMuons_muonsWithSET_*_*', 'keep *_muons_*_*', 'keep *_particleFlow_muons_*', 'drop *_muons_muons1stStep2muonsMap_*', 'drop recoIsoDepositedmValueMap_muons_*_*', 'drop doubleedmValueMap_muons_muPFIso*_*', 'keep recoTracks_standAloneMuons_*_*', 'keep recoTrackExtras_standAloneMuons_*_*', 'keep TrackingRecHitsOwned_standAloneMuons_*_*', 'keep recoTracks_globalMuons_*_*', 'keep recoTrackExtras_globalMuons_*_*', 'keep recoTracks_tevMuons_*_*', 'keep recoTrackExtras_tevMuons_*_*', 'keep recoTracks_generalTracks_*_*', 'keep recoTracks_displacedTracks_*_*', 'keep recoTracksToOnerecoTracksAssociation_tevMuons_*_*', 'keep recoTracks_displacedGlobalMuons_*_*', 'keep recoTrackExtras_displacedGlobalMuons_*_*', 'keep TrackingRecHitsOwned_displacedGlobalMuons_*_*', 'keep recoTracks_cosmicMuons_*_*', 'keep recoMuons_muonsFromCosmics_*_*', 'keep recoTracks_cosmicMuons1Leg_*_*', 'keep recoMuons_muonsFromCosmics1Leg_*_*', 'keep recoTracks_refittedStandAloneMuons_*_*', 'keep recoTrackExtras_refittedStandAloneMuons_*_*', 'keep TrackingRecHitsOwned_refittedStandAloneMuons_*_*', 'keep recoTracks_displacedStandAloneMuons__*', 'keep recoTrackExtras_displacedStandAloneMuons_*_*', 'keep TrackingRecHitsOwned_displacedStandAloneMuons_*_*', 'keep *_muIsoDepositTk_*_*', 'keep *_muIsoDepositCalByAssociatorTowers_*_*', 'keep *_muIsoDepositCalByAssociatorHits_*_*', 'keep *_muIsoDepositJets_*_*', 'keep *_muGlobalIsoDepositCtfTk_*_*', 'keep *_muGlobalIsoDepositCalByAssociatorTowers_*_*', 'keep *_muGlobalIsoDepositCalByAssociatorHits_*_*', 'keep *_muGlobalIsoDepositJets_*_*', 'keep *_softPFMuonsTagInfos_*_*', 'keep *_softPFElectronsTagInfos_*_*', 'keep *_softPFElectronBJetTags_*_*', 'keep *_softPFMuonBJetTags_*_*', 'keep *_pfImpactParameterTagInfos_*_*', 'keep *_pfTrackCountingHighEffBJetTags_*_*', 'keep *_pfJetProbabilityBJetTags_*_*', 'keep *_pfJetBProbabilityBJetTags_*_*', 'keep *_pfSecondaryVertexTagInfos_*_*', 'keep *_pfInclusiveSecondaryVertexFinderTagInfos_*_*', 'keep *_pfSimpleSecondaryVertexHighEffBJetTags_*_*', 'keep *_pfSimpleInclusiveSecondaryVertexHighEffBJetTags_*_*', 'keep *_pfCombinedSecondaryVertexV2BJetTags_*_*', 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTags_*_*', 'keep *_pfCombinedMVAV2BJetTags_*_*', 'keep *_inclusiveCandidateSecondaryVertices_*_*', 'keep *_inclusiveCandidateSecondaryVerticesCvsL_*_*', 'keep *_pfInclusiveSecondaryVertexFinderCvsLTagInfos_*_*', 'keep *_pfCombinedCvsLJetTags_*_*', 'keep *_pfCombinedCvsBJetTags_*_*', 'keep recoRecoTauPiZeros_hpsPFTauProducer_pizeros_*', 'keep recoPFTaus_hpsPFTauProducer_*_*', 'keep *_hpsPFTauDiscriminationByDeadECALElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByDecayModeFinding_*_*', 'keep *_hpsPFTauDiscriminationByDecayModeFindingNewDMs_*_*', 'keep *_hpsPFTauDiscriminationByDecayModeFindingOldDMs_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolation_*_*', 'keep *_hpsPFTauDiscriminationByLooseChargedIsolation_*_*', 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3Hits_*_*', 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3HitsdR03_*_*', 'keep *_hpsPFTauDiscriminationByLooseElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByLooseMuonRejection3_*_*', 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3Hits_*_*', 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3HitsdR03_*_*', 'keep *_hpsPFTauDiscriminationByRawCombinedIsolationDBSumPtCorr3Hits_*_*', 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3Hits_*_*', 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3HitsdR03_*_*', 'keep *_hpsPFTauDiscriminationByTightMuonRejection3_*_*', 'keep *_hpsPFTauDiscriminationByPhotonPtSumOutsideSignalCone_*_*', 'keep *_hpsPFTauNeutralIsoPtSum_*_*', 'keep *_hpsPFTauPUcorrPtSum_*_*', 'keep *_hpsPFTauChargedIsoPtSum_*_*', 'keep *_hpsPFTauTransverseImpactParameters_*_*', 'keep *_hpsPFTauFootprintCorrection_*_*', 'keep *_hpsPFTauNeutralIsoPtSumWeight_*_*', 'keep *_hpsPFTauPhotonPtSumOutsideSignalCone_*_*', 'keep *_hpsPFTauDiscriminationByMVA6rawElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6VLooseElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6LooseElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6MediumElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6TightElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6VTightElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBoldDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBnewDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWoldDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWnewDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauChargedIsoPtSumdR03_*_*', 'keep *_hpsPFTauNeutralIsoPtSumdR03_*_*', 'keep *_hpsPFTauNeutralIsoPtSumWeightdR03_*_*', 'keep *_hpsPFTauFootprintCorrectiondR03_*_*', 'keep *_hpsPFTauPhotonPtSumOutsideSignalConedR03_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBdR03oldDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWdR03oldDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_offlinePrimaryVertices__*', 'keep *_offlinePrimaryVerticesWithBS_*_*', 'keep *_offlinePrimaryVerticesFromCosmicTracks_*_*', 'keep *_nuclearInteractionMaker_*_*', 'keep *_generalV0Candidates_*_*', 'keep *_inclusiveSecondaryVertices_*_*', 'keep recoGsfElectronCores_gsfElectronCores_*_*', 'keep recoGsfElectronCores_gedGsfElectronCores_*_*', 'keep recoGsfElectrons_gsfElectrons_*_*', 'keep recoGsfElectrons_gedGsfElectrons_*_*', 'keep recoGsfElectronCores_uncleanedOnlyGsfElectronCores_*_*', 'keep recoGsfElectrons_uncleanedOnlyGsfElectrons_*_*', 'keep floatedmValueMap_eidRobustLoose_*_*', 'keep floatedmValueMap_eidRobustTight_*_*', 'keep floatedmValueMap_eidRobustHighEnergy_*_*', 'keep floatedmValueMap_eidLoose_*_*', 'keep floatedmValueMap_eidTight_*_*', 'keep *_egmGedGsfElectronPFIsolation_*_*', 'keep *_photonEcalPFClusterIsolationProducer_*_*', 'keep *_electronEcalPFClusterIsolationProducer_*_*', 'keep *_photonHcalPFClusterIsolationProducer_*_*', 'keep *_electronHcalPFClusterIsolationProducer_*_*', 'drop *_egmGsfElectronIDs_*_*', 'drop *_egmPhotonIDs_*_*', 'keep *_gedPhotonCore_*_*', 'keep *_gedPhotons_*_*', 'keep *_particleBasedIsolation_*_*', 'keep recoPhotons_mustachePhotons_*_*', 'keep recoPhotonCores_mustachePhotonCore_*_*', 'keep recoPhotons_photons_*_*', 'keep recoPhotonCores_photonCore_*_*', 'keep recoConversions_conversions_*_*', 'keep recoConversions_mustacheConversions_*_*', 'drop *_conversions_uncleanedConversions_*', 'drop *_gedPhotonsTmp_valMapPFEgammaCandToPhoton_*', 'keep recoConversions_allConversions_*_*', 'keep recoConversions_allConversionsOldEG_*_*', 'keep recoTracks_ckfOutInTracksFromConversions_*_*', 'keep recoTracks_ckfInOutTracksFromConversions_*_*', 'keep recoTrackExtras_ckfOutInTracksFromConversions_*_*', 'keep recoTrackExtras_ckfInOutTracksFromConversions_*_*', 'keep TrackingRecHitsOwned_ckfOutInTracksFromConversions_*_*', 'keep TrackingRecHitsOwned_ckfInOutTracksFromConversions_*_*', 'keep recoConversions_uncleanedOnlyAllConversions_*_*', 'keep recoTracks_uncleanedOnlyCkfOutInTracksFromConversions_*_*', 'keep recoTracks_uncleanedOnlyCkfInOutTracksFromConversions_*_*', 'keep recoTrackExtras_uncleanedOnlyCkfOutInTracksFromConversions_*_*', 'keep recoTrackExtras_uncleanedOnlyCkfInOutTracksFromConversions_*_*', 'keep TrackingRecHitsOwned_uncleanedOnlyCkfOutInTracksFromConversions_*_*', 'keep TrackingRecHitsOwned_uncleanedOnlyCkfInOutTracksFromConversions_*_*', 'keep *_PhotonIDProd_*_*', 'keep *_PhotonIDProdGED_*_*', 'keep recoRecoEcalCandidates_hfRecoEcalCandidate_*_*', 'keep *_hfEMClusters_*_*', 'keep *_gedGsfElectronCores_*_*', 'keep *_gedGsfElectrons_*_*', 'keep *_pixelTracks_*_*', 'keep *_pixelVertices_*_*', 'drop CaloTowersSorted_towerMakerPF_*_*', 'keep recoPFRecHits_particleFlowClusterECAL_Cleaned_*', 'keep recoPFRecHits_particleFlowClusterHCAL_Cleaned_*', 'keep recoPFRecHits_particleFlowClusterHO_Cleaned_*', 'keep recoPFRecHits_particleFlowClusterHF_Cleaned_*', 'keep recoPFRecHits_particleFlowClusterPS_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitECAL_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitHBHE_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitHF_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitHO_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitPS_Cleaned_*', 'keep recoPFClusters_particleFlowClusterECAL_*_*', 'keep recoPFClusters_particleFlowClusterHCAL_*_*', 'keep recoPFClusters_particleFlowClusterHO_*_*', 'keep recoPFClusters_particleFlowClusterHF_*_*', 'keep recoPFClusters_particleFlowClusterPS_*_*', 'keep recoPFBlocks_particleFlowBlock_*_*', 'keep recoPFCandidates_particleFlowEGamma_*_*', 'keep recoCaloClusters_particleFlowEGamma_*_*', 'keep recoSuperClusters_particleFlowEGamma_*_*', 'keep recoConversions_particleFlowEGamma_*_*', 'keep recoPFCandidates_particleFlow_*_*', 'keep recoPFCandidates_particleFlowTmp_electrons_*', 'keep recoPFCandidates_particleFlowTmp_*_*', 'drop recoPFCandidates_particleFlowTmp__*', 'keep recoPFDisplacedVertexs_particleFlowDisplacedVertex_*_*', 'keep *_pfElectronTranslator_*_*', 'keep *_pfPhotonTranslator_*_*', 'keep *_particleFlow_electrons_*', 'keep *_particleFlow_photons_*', 'keep *_particleFlow_muons_*', 'keep *_trackerDrivenElectronSeeds_preid_*', 'keep *_particleFlowPtrs_*_*', 'keep *_particleFlowTmpPtrs_*_*', 'keep *_offlineBeamSpot_*_*', 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', 'keep *_l1GtRecord_*_*', 'keep *_l1GtTriggerMenuLite_*_*', 'keep *_conditionsInEdm_*_*', 'keep *_l1extraParticles_*_*', 'keep *_l1L1GtObjectMap_*_*', 'keep L1MuGMTReadoutCollection_gtDigis_*_*', 'keep L1GctEmCand*_gctDigis_*_*', 'keep L1GctJetCand*_gctDigis_*_*', 'keep L1GctEtHad*_gctDigis_*_*', 'keep L1GctEtMiss*_gctDigis_*_*', 'keep L1GctEtTotal*_gctDigis_*_*', 'keep L1GctHtMiss*_gctDigis_*_*', 'keep L1GctJetCounts*_gctDigis_*_*', 'keep L1GctHFRingEtSums*_gctDigis_*_*', 'keep L1GctHFBitCounts*_gctDigis_*_*', 'keep LumiDetails_lumiProducer_*_*', 'keep LumiSummary_lumiProducer_*_*', 'drop *_hlt*_*_*', 'keep *_hltGtStage2ObjectMap_*_*', 'keep edmTriggerResults_*_*_*', 'keep triggerTriggerEvent_*_*_*', 'keep LHERunInfoProduct_*_*_*', 'keep LHEEventProduct_*_*_*', 'keep GenRunInfoProduct_generator_*_*', 'keep GenLumiInfoHeader_generator_*_*', 'keep GenLumiInfoProduct_generator_*_*', 'keep GenEventInfoProduct_generator_*_*', 'keep edmHepMCProduct_generatorSmeared_*_*', 'keep GenFilterInfo_*_*_*', 'keep *_genParticles_*_*', 'keep recoGenMETs_*_*_*', 'keep *_ak4GenJets_*_*', 'keep *_ak8GenJets_*_*', 'keep *_ak4GenJetsNoNu_*_*', 'keep *_ak8GenJetsNoNu_*_*', 'keep *_genParticle_*_*', 'keep edmHepMCProduct_source_*_*', 'keep SimTracks_g4SimHits_*_*', 'keep SimVertexs_g4SimHits_*_*', 'keep *_allTrackMCMatch_*_*', 'keep StripDigiSimLinkedmDetSetVector_simMuonCSCDigis_*_*', 'keep DTLayerIdDTDigiSimLinkMuonDigiCollection_simMuonDTDigis_*_*', 'keep RPCDigiSimLinkedmDetSetVector_simMuonRPCDigis_*_*', 'keep PileupSummaryInfos_*_*_*', 'keep int_*_bunchSpacing_*', 'keep L1AcceptBunchCrossings_scalersRawToDigi_*_*', 'keep L1TriggerScalerss_scalersRawToDigi_*_*', 'keep Level1TriggerScalerss_scalersRawToDigi_*_*', 'keep LumiScalerss_scalersRawToDigi_*_*', 'keep BeamSpotOnlines_scalersRawToDigi_*_*', 'keep DcsStatuss_scalersRawToDigi_*_*', 'keep DcsStatuss_hltScalersRawToDigi_*_*', 'keep *_logErrorHarvester_*_*', 'keep *_pfIsolatedElectronsEI_*_*', 'keep *_pfIsolatedMuonsEI_*_*', 'keep recoPFJets_pfJetsEI_*_*', 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTagsEI_*_*', 'keep recoPFTaus_pfTausEI_*_*', 'keep recoPFTauDiscriminator_pfTausDiscriminationByDecayModeFinding_*_*', 'keep recoPFTauDiscriminator_pfTausDiscriminationByIsolation_*_*', 'keep recoPFMETs_pfMetEI_*_*', 'keep *_tcdsDigis_*_*', 'keep *_simCscTriggerPrimitiveDigis_*_*', 'keep *_simDtTriggerPrimitiveDigis_*_*', 'keep *_simRpcTriggerDigis_*_*', 'keep *_simRctDigis_*_*', 'keep *_simCsctfDigis_*_*', 'keep *_simCsctfTrackDigis_*_*', 'keep *_simDttfDigis_*_*', 'keep *_simGctDigis_*_*', 'keep *_simCaloStage1Digis_*_*', 'keep *_simCaloStage1FinalDigis_*_*', 'keep *_simCaloStage2Layer1Digis_*_*', 'keep *_simCaloStage2Digis_*_*', 'keep *_simGmtDigis_*_*', 'keep *_simGtDigis_*_*', 'keep *_cscTriggerPrimitiveDigis_*_*', 'keep *_dtTriggerPrimitiveDigis_*_*', 'keep *_rpcTriggerDigis_*_*', 'keep *_rctDigis_*_*', 'keep *_csctfDigis_*_*', 'keep *_csctfTrackDigis_*_*', 'keep *_dttfDigis_*_*', 'keep *_gctDigis_*_*', 'keep *_gmtDigis_*_*', 'keep *_gtDigis_*_*', 'keep *_gtEvmDigis_*_*', 'keep *_l1GtRecord_*_*', 'keep *_l1GtTriggerMenuLite_*_*', 'keep *_conditionsInEdm_*_*', 'keep *_l1extraParticles_*_*', 'keep *_l1L1GtObjectMap_*_*', 'keep LumiDetails_lumiProducer_*_*', 'keep LumiSummary_lumiProducer_*_*', 'drop *_trackingtruthprod_*_*', 'drop *_electrontruth_*_*', 'keep *_mix_MergedTrackTruth_*', 'keep CrossingFramePlaybackInfoNew_*_*_*', 'keep *_simSiPixelDigis_*_*', 'keep *_simSiStripDigis_*_*', 'drop *_mix_simSiPixelDigis*_*', 'drop *_mix_simSiStripDigis*_*', 'keep *_allTrackMCMatch_*_*', 'keep *_trackingParticleRecoTrackAsssociation_*_*', 'keep *_assoc2secStepTk_*_*', 'keep *_assoc2thStepTk_*_*', 'keep *_assoc2GsfTracks_*_*', 'keep *_assocOutInConversionTracks_*_*', 'keep *_assocInOutConversionTracks_*_*', 'keep *_simMuonCSCDigis_*_*', 'keep *_simMuonDTDigis_*_*', 'keep *_simMuonRPCDigis_*_*', 'keep *_simEcalDigis_*_*', 'keep *_simEcalPreshowerDigis_*_*', 'keep *_simEcalTriggerPrimitiveDigis_*_*', 'keep *_simHcalDigis_*_*', 'keep ZDCDataFramesSorted_simHcalUnsuppressedDigis_*_*', 'drop ZDCDataFramesSorted_mix_simHcalUnsuppressedDigis*_*', 'keep *_simHcalTriggerPrimitiveDigis_*_*' ) ), splitLevel = cms.untracked.int32(0) ) process.FEVTDEBUGHLTEventContent = cms.PSet( eventAutoFlushCompressedSize = cms.untracked.int32(10485760), outputCommands = cms.untracked.vstring( ('drop *', 'drop *', 'drop *', 'drop *', 'keep FEDRawDataCollection_rawDataCollector_*_*', 'keep FEDRawDataCollection_source_*_*', 'keep FEDRawDataCollection_rawDataCollector_*_*', 'keep FEDRawDataCollection_source_*_*', 'drop *_hlt*_*_*', 'keep *_hltGtStage2ObjectMap_*_*', 'keep FEDRawDataCollection_rawDataCollector_*_*', 'keep FEDRawDataCollection_source_*_*', 'keep edmTriggerResults_*_*_*', 'keep triggerTriggerEvent_*_*_*', 'keep *_g4SimHits_*_*', 'keep edmHepMCProduct_source_*_*', 'keep *_allTrackMCMatch_*_*', 'keep StripDigiSimLinkedmDetSetVector_simMuonCSCDigis_*_*', 'keep CSCDetIdCSCComparatorDigiMuonDigiCollection_simMuonCSCDigis_*_*', 'keep DTLayerIdDTDigiSimLinkMuonDigiCollection_simMuonDTDigis_*_*', 'keep RPCDigiSimLinkedmDetSetVector_simMuonRPCDigis_*_*', 'keep EBSrFlagsSorted_simEcalDigis_*_*', 'keep EESrFlagsSorted_simEcalDigis_*_*', 'keep CrossingFramePlaybackInfoNew_*_*_*', 'keep PileupSummaryInfos_*_*_*', 'keep int_*_bunchSpacing_*', 'keep LHERunInfoProduct_*_*_*', 'keep LHEEventProduct_*_*_*', 'keep GenRunInfoProduct_generator_*_*', 'keep GenLumiInfoHeader_generator_*_*', 'keep GenLumiInfoProduct_generator_*_*', 'keep GenEventInfoProduct_generator_*_*', 'keep edmHepMCProduct_generatorSmeared_*_*', 'keep GenFilterInfo_*_*_*', 'keep *_genParticles_*_*', 'keep recoGenJets_*_*_*', 'keep *_genParticle_*_*', 'keep recoGenMETs_*_*_*', 'keep FEDRawDataCollection_source_*_*', 'keep FEDRawDataCollection_rawDataCollector_*_*', 'keep *_MEtoEDMConverter_*_*', 'keep *_randomEngineStateProducer_*_*', 'keep DetIdedmEDCollection_siStripDigis_*_*', 'keep DetIdedmEDCollection_siPixelDigis_*_*', 'keep *_siPixelClusters_*_*', 'keep *_siStripClusters_*_*', 'keep ClusterSummary_clusterSummaryProducer_*_*', 'keep *_dt1DRecHits_*_*', 'keep *_dt4DSegments_*_*', 'keep *_dt1DCosmicRecHits_*_*', 'keep *_dt4DCosmicSegments_*_*', 'keep *_csc2DRecHits_*_*', 'keep *_cscSegments_*_*', 'keep *_rpcRecHits_*_*', 'keep *_hbhereco_*_*', 'keep *_hbheprereco_*_*', 'keep *_hfreco_*_*', 'keep *_horeco_*_*', 'keep HBHERecHitsSorted_hbherecoMB_*_*', 'keep HORecHitsSorted_horecoMB_*_*', 'keep HFRecHitsSorted_hfrecoMB_*_*', 'keep ZDCDataFramesSorted_hcalDigis_*_*', 'keep ZDCRecHitsSorted_*_*_*', 'keep *_reducedHcalRecHits_*_*', 'keep *_castorreco_*_*', 'keep HcalUnpackerReport_castorDigis_*_*', 'keep HcalUnpackerReport_hcalDigiAlCaMB_*_*', 'keep HcalUnpackerReport_hcalDigis_*_*', 'keep *_ecalPreshowerRecHit_*_*', 'keep *_ecalRecHit_*_*', 'keep *_ecalCompactTrigPrim_*_*', 'keep *_ecalTPSkim_*_*', 'keep *_selectDigi_*_*', 'keep EcalRecHitsSorted_reducedEcalRecHitsEE_*_*', 'keep EcalRecHitsSorted_reducedEcalRecHitsEB_*_*', 'keep EcalRecHitsSorted_reducedEcalRecHitsES_*_*', 'keep *_hybridSuperClusters_*_*', 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', 'keep *_multi5x5SuperClusters_*_*', 'keep recoSuperClusters_multi5x5SuperClusters_*_*', 'keep recoSuperClusters_multi5x5SuperClustersWithPreshower_*_*', 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', 'keep recoPreshowerClusters_multi5x5SuperClustersWithPreshower_*_*', 'keep recoPreshowerClusterShapes_multi5x5PreshowerClusterShape_*_*', 'keep *_particleFlowSuperClusterECAL_*_*', 'drop recoClusterShapes_*_*_*', 'drop recoBasicClustersToOnerecoClusterShapesAssociation_*_*_*', 'drop recoBasicClusters_multi5x5BasicClusters_multi5x5BarrelBasicClusters_*', 'drop recoSuperClusters_multi5x5SuperClusters_multi5x5BarrelSuperClusters_*', 'keep *_CkfElectronCandidates_*_*', 'keep *_GsfGlobalElectronTest_*_*', 'keep *_electronMergedSeeds_*_*', 'keep recoGsfTracks_electronGsfTracks_*_*', 'keep recoGsfTrackExtras_electronGsfTracks_*_*', 'keep recoTrackExtras_electronGsfTracks_*_*', 'keep TrackingRecHitsOwned_electronGsfTracks_*_*', 'keep recoTracks_generalTracks_*_*', 'keep recoTrackExtras_generalTracks_*_*', 'keep TrackingRecHitsOwned_generalTracks_*_*', 'keep *_generalTracks_MVAValues_*', 'keep *_generalTracks_MVAVals_*', 'keep TrackingRecHitsOwned_extraFromSeeds_*_*', 'keep uints_extraFromSeeds_*_*', 'keep recoTracks_beamhaloTracks_*_*', 'keep recoTrackExtras_beamhaloTracks_*_*', 'keep TrackingRecHitsOwned_beamhaloTracks_*_*', 'keep recoTracks_conversionStepTracks_*_*', 'keep recoTrackExtras_conversionStepTracks_*_*', 'keep TrackingRecHitsOwned_conversionStepTracks_*_*', 'keep *_ctfPixelLess_*_*', 'keep *_dedxTruncated40_*_*', 'keep *_dedxHitInfo_*_*', 'keep *_dedxHarmonic2_*_*', 'keep *_trackExtrapolator_*_*', 'keep *_ak4CaloJets_*_*', 'keep *_ak4PFJets_*_*', 'keep *_ak4PFJetsCHS_*_*', 'keep *_ak8PFJetsCHS_*_*', 'keep *_ak8PFJetsCHSSoftDrop_*_*', 'keep *_cmsTopTagPFJetsCHS_*_*', 'keep *_JetPlusTrackZSPCorJetAntiKt4_*_*', 'keep *_ak4TrackJets_*_*', 'keep recoRecoChargedRefCandidates_trackRefsForJets_*_*', 'keep *_caloTowers_*_*', 'keep *_towerMaker_*_*', 'keep *_CastorTowerReco_*_*', 'keep *_ak4JetTracksAssociatorAtVertex_*_*', 'keep *_ak4JetTracksAssociatorAtVertexPF_*_*', 'keep *_ak4JetTracksAssociatorAtCaloFace_*_*', 'keep *_ak4JetTracksAssociatorExplicit_*_*', 'keep *_ak4JetExtender_*_*', 'keep *_ak4JetID_*_*', 'keep *_ak5CastorJets_*_*', 'keep *_ak5CastorJetID_*_*', 'keep *_ak7CastorJets_*_*', 'keep *_ak7CastorJetID_*_*', 'keep *_fixedGridRhoAll_*_*', 'keep *_fixedGridRhoFastjetAll_*_*', 'keep *_fixedGridRhoFastjetAllTmp_*_*', 'keep *_fixedGridRhoFastjetAllCalo_*_*', 'keep *_fixedGridRhoFastjetCentral_*_*', 'keep *_fixedGridRhoFastjetCentralCalo_*_*', 'keep *_fixedGridRhoFastjetCentralChargedPileUp_*_*', 'keep *_fixedGridRhoFastjetCentralNeutral_*_*', 'keep *_ak8PFJetsCHSSoftDropMass_*_*', 'keep recoCaloMETs_caloMet_*_*', 'keep recoCaloMETs_caloMetBE_*_*', 'keep recoCaloMETs_caloMetBEFO_*_*', 'keep recoCaloMETs_caloMetM_*_*', 'keep recoPFMETs_pfMet_*_*', 'keep recoPFMETs_pfChMet_*_*', 'keep recoPFMETs_pfMetEI_*_*', 'keep recoMuonMETCorrectionDataedmValueMap_muonMETValueMapProducer_*_*', 'keep recoHcalNoiseRBXs_hcalnoise_*_*', 'keep HcalNoiseSummary_hcalnoise_*_*', 'keep recoCSCHaloData_CSCHaloData_*_*', 'keep recoEcalHaloData_EcalHaloData_*_*', 'keep recoGlobalHaloData_GlobalHaloData_*_*', 'keep recoHcalHaloData_HcalHaloData_*_*', 'keep recoBeamHaloSummary_BeamHaloSummary_*_*', 'keep *_MuonSeed_*_*', 'keep *_ancientMuonSeed_*_*', 'keep *_displacedMuonSeeds_*_*', 'keep TrackingRecHitsOwned_globalMuons_*_*', 'keep TrackingRecHitsOwned_tevMuons_*_*', 'keep recoCaloMuons_calomuons_*_*', 'keep *_CosmicMuonSeed_*_*', 'keep recoTrackExtras_cosmicMuons_*_*', 'keep TrackingRecHitsOwned_cosmicMuons_*_*', 'keep recoTrackExtras_cosmicMuons1Leg_*_*', 'keep TrackingRecHitsOwned_cosmicMuons1Leg_*_*', 'keep recoTracks_cosmicsVetoTracks_*_*', 'keep *_SETMuonSeed_*_*', 'keep recoTracks_standAloneSETMuons_*_*', 'keep recoTrackExtras_standAloneSETMuons_*_*', 'keep TrackingRecHitsOwned_standAloneSETMuons_*_*', 'keep recoTracks_globalSETMuons_*_*', 'keep recoTrackExtras_globalSETMuons_*_*', 'keep TrackingRecHitsOwned_globalSETMuons_*_*', 'keep recoMuons_muonsWithSET_*_*', 'keep *_muons_*_*', 'keep *_particleFlow_muons_*', 'drop *_muons_muons1stStep2muonsMap_*', 'drop recoIsoDepositedmValueMap_muons_*_*', 'drop doubleedmValueMap_muons_muPFIso*_*', 'keep recoTracks_standAloneMuons_*_*', 'keep recoTrackExtras_standAloneMuons_*_*', 'keep TrackingRecHitsOwned_standAloneMuons_*_*', 'keep recoTracks_globalMuons_*_*', 'keep recoTrackExtras_globalMuons_*_*', 'keep recoTracks_tevMuons_*_*', 'keep recoTrackExtras_tevMuons_*_*', 'keep recoTracks_generalTracks_*_*', 'keep recoTracks_displacedTracks_*_*', 'keep recoTracksToOnerecoTracksAssociation_tevMuons_*_*', 'keep recoTracks_displacedGlobalMuons_*_*', 'keep recoTrackExtras_displacedGlobalMuons_*_*', 'keep TrackingRecHitsOwned_displacedGlobalMuons_*_*', 'keep recoTracks_cosmicMuons_*_*', 'keep recoMuons_muonsFromCosmics_*_*', 'keep recoTracks_cosmicMuons1Leg_*_*', 'keep recoMuons_muonsFromCosmics1Leg_*_*', 'keep recoTracks_refittedStandAloneMuons_*_*', 'keep recoTrackExtras_refittedStandAloneMuons_*_*', 'keep TrackingRecHitsOwned_refittedStandAloneMuons_*_*', 'keep recoTracks_displacedStandAloneMuons__*', 'keep recoTrackExtras_displacedStandAloneMuons_*_*', 'keep TrackingRecHitsOwned_displacedStandAloneMuons_*_*', 'keep *_muIsoDepositTk_*_*', 'keep *_muIsoDepositCalByAssociatorTowers_*_*', 'keep *_muIsoDepositCalByAssociatorHits_*_*', 'keep *_muIsoDepositJets_*_*', 'keep *_muGlobalIsoDepositCtfTk_*_*', 'keep *_muGlobalIsoDepositCalByAssociatorTowers_*_*', 'keep *_muGlobalIsoDepositCalByAssociatorHits_*_*', 'keep *_muGlobalIsoDepositJets_*_*', 'keep *_softPFMuonsTagInfos_*_*', 'keep *_softPFElectronsTagInfos_*_*', 'keep *_softPFElectronBJetTags_*_*', 'keep *_softPFMuonBJetTags_*_*', 'keep *_pfImpactParameterTagInfos_*_*', 'keep *_pfTrackCountingHighEffBJetTags_*_*', 'keep *_pfJetProbabilityBJetTags_*_*', 'keep *_pfJetBProbabilityBJetTags_*_*', 'keep *_pfSecondaryVertexTagInfos_*_*', 'keep *_pfInclusiveSecondaryVertexFinderTagInfos_*_*', 'keep *_pfSimpleSecondaryVertexHighEffBJetTags_*_*', 'keep *_pfSimpleInclusiveSecondaryVertexHighEffBJetTags_*_*', 'keep *_pfCombinedSecondaryVertexV2BJetTags_*_*', 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTags_*_*', 'keep *_pfCombinedMVAV2BJetTags_*_*', 'keep *_inclusiveCandidateSecondaryVertices_*_*', 'keep *_inclusiveCandidateSecondaryVerticesCvsL_*_*', 'keep *_pfInclusiveSecondaryVertexFinderCvsLTagInfos_*_*', 'keep *_pfCombinedCvsLJetTags_*_*', 'keep *_pfCombinedCvsBJetTags_*_*', 'keep recoRecoTauPiZeros_hpsPFTauProducer_pizeros_*', 'keep recoPFTaus_hpsPFTauProducer_*_*', 'keep *_hpsPFTauDiscriminationByDeadECALElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByDecayModeFinding_*_*', 'keep *_hpsPFTauDiscriminationByDecayModeFindingNewDMs_*_*', 'keep *_hpsPFTauDiscriminationByDecayModeFindingOldDMs_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolation_*_*', 'keep *_hpsPFTauDiscriminationByLooseChargedIsolation_*_*', 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3Hits_*_*', 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3HitsdR03_*_*', 'keep *_hpsPFTauDiscriminationByLooseElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByLooseMuonRejection3_*_*', 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3Hits_*_*', 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3HitsdR03_*_*', 'keep *_hpsPFTauDiscriminationByRawCombinedIsolationDBSumPtCorr3Hits_*_*', 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3Hits_*_*', 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3HitsdR03_*_*', 'keep *_hpsPFTauDiscriminationByTightMuonRejection3_*_*', 'keep *_hpsPFTauDiscriminationByPhotonPtSumOutsideSignalCone_*_*', 'keep *_hpsPFTauNeutralIsoPtSum_*_*', 'keep *_hpsPFTauPUcorrPtSum_*_*', 'keep *_hpsPFTauChargedIsoPtSum_*_*', 'keep *_hpsPFTauTransverseImpactParameters_*_*', 'keep *_hpsPFTauFootprintCorrection_*_*', 'keep *_hpsPFTauNeutralIsoPtSumWeight_*_*', 'keep *_hpsPFTauPhotonPtSumOutsideSignalCone_*_*', 'keep *_hpsPFTauDiscriminationByMVA6rawElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6VLooseElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6LooseElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6MediumElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6TightElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6VTightElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBoldDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBnewDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWoldDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWnewDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauChargedIsoPtSumdR03_*_*', 'keep *_hpsPFTauNeutralIsoPtSumdR03_*_*', 'keep *_hpsPFTauNeutralIsoPtSumWeightdR03_*_*', 'keep *_hpsPFTauFootprintCorrectiondR03_*_*', 'keep *_hpsPFTauPhotonPtSumOutsideSignalConedR03_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBdR03oldDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWdR03oldDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_offlinePrimaryVertices__*', 'keep *_offlinePrimaryVerticesWithBS_*_*', 'keep *_offlinePrimaryVerticesFromCosmicTracks_*_*', 'keep *_nuclearInteractionMaker_*_*', 'keep *_generalV0Candidates_*_*', 'keep *_inclusiveSecondaryVertices_*_*', 'keep recoGsfElectronCores_gsfElectronCores_*_*', 'keep recoGsfElectronCores_gedGsfElectronCores_*_*', 'keep recoGsfElectrons_gsfElectrons_*_*', 'keep recoGsfElectrons_gedGsfElectrons_*_*', 'keep recoGsfElectronCores_uncleanedOnlyGsfElectronCores_*_*', 'keep recoGsfElectrons_uncleanedOnlyGsfElectrons_*_*', 'keep floatedmValueMap_eidRobustLoose_*_*', 'keep floatedmValueMap_eidRobustTight_*_*', 'keep floatedmValueMap_eidRobustHighEnergy_*_*', 'keep floatedmValueMap_eidLoose_*_*', 'keep floatedmValueMap_eidTight_*_*', 'keep *_egmGedGsfElectronPFIsolation_*_*', 'keep *_photonEcalPFClusterIsolationProducer_*_*', 'keep *_electronEcalPFClusterIsolationProducer_*_*', 'keep *_photonHcalPFClusterIsolationProducer_*_*', 'keep *_electronHcalPFClusterIsolationProducer_*_*', 'drop *_egmGsfElectronIDs_*_*', 'drop *_egmPhotonIDs_*_*', 'keep *_gedPhotonCore_*_*', 'keep *_gedPhotons_*_*', 'keep *_particleBasedIsolation_*_*', 'keep recoPhotons_mustachePhotons_*_*', 'keep recoPhotonCores_mustachePhotonCore_*_*', 'keep recoPhotons_photons_*_*', 'keep recoPhotonCores_photonCore_*_*', 'keep recoConversions_conversions_*_*', 'keep recoConversions_mustacheConversions_*_*', 'drop *_conversions_uncleanedConversions_*', 'drop *_gedPhotonsTmp_valMapPFEgammaCandToPhoton_*', 'keep recoConversions_allConversions_*_*', 'keep recoConversions_allConversionsOldEG_*_*', 'keep recoTracks_ckfOutInTracksFromConversions_*_*', 'keep recoTracks_ckfInOutTracksFromConversions_*_*', 'keep recoTrackExtras_ckfOutInTracksFromConversions_*_*', 'keep recoTrackExtras_ckfInOutTracksFromConversions_*_*', 'keep TrackingRecHitsOwned_ckfOutInTracksFromConversions_*_*', 'keep TrackingRecHitsOwned_ckfInOutTracksFromConversions_*_*', 'keep recoConversions_uncleanedOnlyAllConversions_*_*', 'keep recoTracks_uncleanedOnlyCkfOutInTracksFromConversions_*_*', 'keep recoTracks_uncleanedOnlyCkfInOutTracksFromConversions_*_*', 'keep recoTrackExtras_uncleanedOnlyCkfOutInTracksFromConversions_*_*', 'keep recoTrackExtras_uncleanedOnlyCkfInOutTracksFromConversions_*_*', 'keep TrackingRecHitsOwned_uncleanedOnlyCkfOutInTracksFromConversions_*_*', 'keep TrackingRecHitsOwned_uncleanedOnlyCkfInOutTracksFromConversions_*_*', 'keep *_PhotonIDProd_*_*', 'keep *_PhotonIDProdGED_*_*', 'keep recoRecoEcalCandidates_hfRecoEcalCandidate_*_*', 'keep *_hfEMClusters_*_*', 'keep *_gedGsfElectronCores_*_*', 'keep *_gedGsfElectrons_*_*', 'keep *_pixelTracks_*_*', 'keep *_pixelVertices_*_*', 'drop CaloTowersSorted_towerMakerPF_*_*', 'keep recoPFRecHits_particleFlowClusterECAL_Cleaned_*', 'keep recoPFRecHits_particleFlowClusterHCAL_Cleaned_*', 'keep recoPFRecHits_particleFlowClusterHO_Cleaned_*', 'keep recoPFRecHits_particleFlowClusterHF_Cleaned_*', 'keep recoPFRecHits_particleFlowClusterPS_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitECAL_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitHBHE_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitHF_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitHO_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitPS_Cleaned_*', 'keep recoPFClusters_particleFlowClusterECAL_*_*', 'keep recoPFClusters_particleFlowClusterHCAL_*_*', 'keep recoPFClusters_particleFlowClusterHO_*_*', 'keep recoPFClusters_particleFlowClusterHF_*_*', 'keep recoPFClusters_particleFlowClusterPS_*_*', 'keep recoPFBlocks_particleFlowBlock_*_*', 'keep recoPFCandidates_particleFlowEGamma_*_*', 'keep recoCaloClusters_particleFlowEGamma_*_*', 'keep recoSuperClusters_particleFlowEGamma_*_*', 'keep recoConversions_particleFlowEGamma_*_*', 'keep recoPFCandidates_particleFlow_*_*', 'keep recoPFCandidates_particleFlowTmp_electrons_*', 'keep recoPFCandidates_particleFlowTmp_*_*', 'drop recoPFCandidates_particleFlowTmp__*', 'keep recoPFDisplacedVertexs_particleFlowDisplacedVertex_*_*', 'keep *_pfElectronTranslator_*_*', 'keep *_pfPhotonTranslator_*_*', 'keep *_particleFlow_electrons_*', 'keep *_particleFlow_photons_*', 'keep *_particleFlow_muons_*', 'keep *_trackerDrivenElectronSeeds_preid_*', 'keep *_particleFlowPtrs_*_*', 'keep *_particleFlowTmpPtrs_*_*', 'keep *_offlineBeamSpot_*_*', 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', 'keep *_l1GtRecord_*_*', 'keep *_l1GtTriggerMenuLite_*_*', 'keep *_conditionsInEdm_*_*', 'keep *_l1extraParticles_*_*', 'keep *_l1L1GtObjectMap_*_*', 'keep L1MuGMTReadoutCollection_gtDigis_*_*', 'keep L1GctEmCand*_gctDigis_*_*', 'keep L1GctJetCand*_gctDigis_*_*', 'keep L1GctEtHad*_gctDigis_*_*', 'keep L1GctEtMiss*_gctDigis_*_*', 'keep L1GctEtTotal*_gctDigis_*_*', 'keep L1GctHtMiss*_gctDigis_*_*', 'keep L1GctJetCounts*_gctDigis_*_*', 'keep L1GctHFRingEtSums*_gctDigis_*_*', 'keep L1GctHFBitCounts*_gctDigis_*_*', 'keep LumiDetails_lumiProducer_*_*', 'keep LumiSummary_lumiProducer_*_*', 'drop *_hlt*_*_*', 'keep *_hltGtStage2ObjectMap_*_*', 'keep edmTriggerResults_*_*_*', 'keep triggerTriggerEvent_*_*_*', 'keep LHERunInfoProduct_*_*_*', 'keep LHEEventProduct_*_*_*', 'keep GenRunInfoProduct_generator_*_*', 'keep GenLumiInfoHeader_generator_*_*', 'keep GenLumiInfoProduct_generator_*_*', 'keep GenEventInfoProduct_generator_*_*', 'keep edmHepMCProduct_generatorSmeared_*_*', 'keep GenFilterInfo_*_*_*', 'keep *_genParticles_*_*', 'keep recoGenMETs_*_*_*', 'keep *_ak4GenJets_*_*', 'keep *_ak8GenJets_*_*', 'keep *_ak4GenJetsNoNu_*_*', 'keep *_ak8GenJetsNoNu_*_*', 'keep *_genParticle_*_*', 'keep edmHepMCProduct_source_*_*', 'keep SimTracks_g4SimHits_*_*', 'keep SimVertexs_g4SimHits_*_*', 'keep *_allTrackMCMatch_*_*', 'keep StripDigiSimLinkedmDetSetVector_simMuonCSCDigis_*_*', 'keep DTLayerIdDTDigiSimLinkMuonDigiCollection_simMuonDTDigis_*_*', 'keep RPCDigiSimLinkedmDetSetVector_simMuonRPCDigis_*_*', 'keep PileupSummaryInfos_*_*_*', 'keep int_*_bunchSpacing_*', 'keep L1AcceptBunchCrossings_scalersRawToDigi_*_*', 'keep L1TriggerScalerss_scalersRawToDigi_*_*', 'keep Level1TriggerScalerss_scalersRawToDigi_*_*', 'keep LumiScalerss_scalersRawToDigi_*_*', 'keep BeamSpotOnlines_scalersRawToDigi_*_*', 'keep DcsStatuss_scalersRawToDigi_*_*', 'keep DcsStatuss_hltScalersRawToDigi_*_*', 'keep *_logErrorHarvester_*_*', 'keep *_pfIsolatedElectronsEI_*_*', 'keep *_pfIsolatedMuonsEI_*_*', 'keep recoPFJets_pfJetsEI_*_*', 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTagsEI_*_*', 'keep recoPFTaus_pfTausEI_*_*', 'keep recoPFTauDiscriminator_pfTausDiscriminationByDecayModeFinding_*_*', 'keep recoPFTauDiscriminator_pfTausDiscriminationByIsolation_*_*', 'keep recoPFMETs_pfMetEI_*_*', 'keep *_tcdsDigis_*_*', 'keep *_simCscTriggerPrimitiveDigis_*_*', 'keep *_simDtTriggerPrimitiveDigis_*_*', 'keep *_simRpcTriggerDigis_*_*', 'keep *_simRctDigis_*_*', 'keep *_simCsctfDigis_*_*', 'keep *_simCsctfTrackDigis_*_*', 'keep *_simDttfDigis_*_*', 'keep *_simGctDigis_*_*', 'keep *_simCaloStage1Digis_*_*', 'keep *_simCaloStage1FinalDigis_*_*', 'keep *_simCaloStage2Layer1Digis_*_*', 'keep *_simCaloStage2Digis_*_*', 'keep *_simGmtDigis_*_*', 'keep *_simGtDigis_*_*', 'keep *_cscTriggerPrimitiveDigis_*_*', 'keep *_dtTriggerPrimitiveDigis_*_*', 'keep *_rpcTriggerDigis_*_*', 'keep *_rctDigis_*_*', 'keep *_csctfDigis_*_*', 'keep *_csctfTrackDigis_*_*', 'keep *_dttfDigis_*_*', 'keep *_gctDigis_*_*', 'keep *_gmtDigis_*_*', 'keep *_gtDigis_*_*', 'keep *_gtEvmDigis_*_*', 'keep *_l1GtRecord_*_*', 'keep *_l1GtTriggerMenuLite_*_*', 'keep *_conditionsInEdm_*_*', 'keep *_l1extraParticles_*_*', 'keep *_l1L1GtObjectMap_*_*', 'keep LumiDetails_lumiProducer_*_*', 'keep LumiSummary_lumiProducer_*_*', 'drop *_trackingtruthprod_*_*', 'drop *_electrontruth_*_*', 'keep *_mix_MergedTrackTruth_*', 'keep CrossingFramePlaybackInfoNew_*_*_*', 'keep *_simSiPixelDigis_*_*', 'keep *_simSiStripDigis_*_*', 'drop *_mix_simSiPixelDigis*_*', 'drop *_mix_simSiStripDigis*_*', 'keep *_allTrackMCMatch_*_*', 'keep *_trackingParticleRecoTrackAsssociation_*_*', 'keep *_assoc2secStepTk_*_*', 'keep *_assoc2thStepTk_*_*', 'keep *_assoc2GsfTracks_*_*', 'keep *_assocOutInConversionTracks_*_*', 'keep *_assocInOutConversionTracks_*_*', 'keep *_simMuonCSCDigis_*_*', 'keep *_simMuonDTDigis_*_*', 'keep *_simMuonRPCDigis_*_*', 'keep *_simEcalDigis_*_*', 'keep *_simEcalPreshowerDigis_*_*', 'keep *_simEcalTriggerPrimitiveDigis_*_*', 'keep *_simHcalDigis_*_*', 'keep ZDCDataFramesSorted_simHcalUnsuppressedDigis_*_*', 'drop ZDCDataFramesSorted_mix_simHcalUnsuppressedDigis*_*', 'keep *_simHcalTriggerPrimitiveDigis_*_*', 'drop *_hlt*_*_*', 'keep *_hltAK4CaloJetsCorrectedIDPassed_*_*', 'keep *_hltAK4CaloJetsIDPassed_*_*', 'keep *_hltAK4CaloJets_*_*', 'keep *_hltAK4PFJetsCorrected_*_*', 'keep *_hltAK4PFJetsForTaus_*_*', 'keep *_hltAK4PFJets_*_*', 'keep *_hltAlCaEtaEBRechitsToDigisLowPU_*_*', 'keep *_hltAlCaEtaEBRechitsToDigis_*_*', 'keep *_hltAlCaEtaEERechitsToDigisLowPU_*_*', 'keep *_hltAlCaEtaEERechitsToDigis_*_*', 'keep *_hltAlCaEtaRecHitsFilterEBonly_*_*', 'keep *_hltAlCaEtaRecHitsFilterEEonlyRegionalLowPU_etaEcalRecHitsES_*', 'keep *_hltAlCaEtaRecHitsFilterEEonlyRegional_etaEcalRecHitsES_*', 'keep *_hltAlCaEtaRecHitsFilterEEonly_*_*', 'keep *_hltAlCaEtaRecHitsFilter_*_*', 'keep *_hltAlCaPhiSymStream_*_*', 'keep *_hltAlCaPi0EBRechitsToDigisLowPU_*_*', 'keep *_hltAlCaPi0EBRechitsToDigis_*_*', 'keep *_hltAlCaPi0EERechitsToDigisLowPU_*_*', 'keep *_hltAlCaPi0EERechitsToDigis_*_*', 'keep *_hltAlCaPi0RecHitsFilterEBonly_*_*', 'keep *_hltAlCaPi0RecHitsFilterEEonlyRegionalLowPU_pi0EcalRecHitsES_*', 'keep *_hltAlCaPi0RecHitsFilterEEonlyRegional_pi0EcalRecHitsES_*', 'keep *_hltAlCaPi0RecHitsFilterEEonly_*_*', 'keep *_hltAlCaPi0RecHitsFilter_*_*', 'keep *_hltBLifetimeL25AssociatorbbPhiL1FastJetFastPV_*_*', 'keep *_hltBLifetimeL25BJetTagsbbPhiL1FastJetFastPV_*_*', 'keep *_hltBLifetimeL25TagInfosbbPhiL1FastJetFastPV_*_*', 'keep *_hltBLifetimeL3AssociatorbbPhiL1FastJetFastPV_*_*', 'keep *_hltBLifetimeL3BJetTagsbbPhiL1FastJetFastPV_*_*', 'keep *_hltBLifetimeL3TagInfosbbPhiL1FastJetFastPV_*_*', 'keep *_hltBLifetimeRegionalCtfWithMaterialTracksbbPhiL1FastJetFastPV_*_*', 'keep *_hltBSoftMuonDiJet110Mu5L3FilterByDR_*_*', 'keep *_hltBSoftMuonDiJet110Mu5SelL3BJetTagsByDR_*_*', 'keep *_hltBSoftMuonDiJet20Mu5L3FilterByDR_*_*', 'keep *_hltBSoftMuonDiJet20Mu5SelL3BJetTagsByDR_*_*', 'keep *_hltBSoftMuonDiJet40Mu5L3FilterByDR_*_*', 'keep *_hltBSoftMuonDiJet40Mu5SelL3BJetTagsByDR_*_*', 'keep *_hltBSoftMuonDiJet70Mu5L3FilterByDR_*_*', 'keep *_hltBSoftMuonDiJet70Mu5SelL3BJetTagsByDR_*_*', 'keep *_hltBSoftMuonMu5L3_*_*', 'keep *_hltCSVJetTagSingleTopEle27_*_*', 'keep *_hltCSVJetTagSingleTopIsoMu24_*_*', 'keep *_hltCaloJetCorrectedRegional_*_*', 'keep *_hltCaloJetCorrected_*_*', 'keep *_hltCaloJetL1FastJetCorrected_*_*', 'keep *_hltCaloStage2Digis_*_*', 'keep *_hltCleanedCorrectedIslandBarrelSuperClustersHI_*_*', 'keep *_hltCleanedHiCorrectedIslandBarrelSuperClustersHI_*_*', 'keep *_hltCombinedSecondaryVertexBJetTagsCalo_*_*', 'keep *_hltCombinedSecondaryVertexBJetTagsPF_*_*', 'keep *_hltConvPFTausTightIsoTrackFindingIsolation_*_*', 'keep *_hltConvPFTausTightIsoTrackFinding_*_*', 'keep *_hltConvPFTausTightIsoTrackPt5Isolation_*_*', 'keep *_hltConvPFTausTightIsoTrackPt5_*_*', 'keep *_hltConvPFTausTightIso_*_*', 'keep *_hltConvPFTausTrackFindingLooseIsolation_*_*', 'keep *_hltConvPFTausTrackFinding_*_*', 'keep *_hltConvPFTaus_*_*', 'keep *_hltCorrectedIslandBarrelSuperClustersHI_*_*', 'keep *_hltCorrectedIslandEndcapSuperClustersHI_*_*', 'keep *_hltCsc2DRecHits_*_*', 'keep *_hltCscSegments_*_*', 'keep *_hltDoublePFTau25TrackPt5MediumIsolationProng4L1HLTMatched_*_*', 'keep *_hltDoublePFTau25TrackPt5MediumIsolationProng4_*_*', 'keep *_hltDoublePFTau25TrackPt5MediumIsolation_*_*', 'keep *_hltDoublePFTau25TrackPt5_*_*', 'keep *_hltDoublePFTau25_*_*', 'keep *_hltDoublePFTauTightIso45Track5_*_*', 'keep *_hltDoublePFTauTightIso45Track_*_*', 'keep *_hltDt4DSegments_*_*', 'keep *_hltEcalPhiSymFilter_*_*', 'keep *_hltEcalRecHitAll_*_*', 'keep *_hltEle20CaloIdVTCaloIsoTTrkIdTTrkIsoTTrackIsoFilterL1SingleEG18orL1SingleEG20_*_*', 'keep *_hltEle20CaloIdVTTrkIdTDphiFilter_*_*', 'keep *_hltEle27WP85PixelMatchElectronsL1Seeded_*_*', 'keep *_hltFEDSelectorLumiPixels_*_*', 'keep *_hltFastPVPixelTracksMerger_*_*', 'keep *_hltFastPVPixelTracksRecover_*_*', 'keep *_hltFastPVPixelTracks_*_*', 'keep *_hltFastPVPixelVertices3D_*_*', 'keep *_hltFastPVPixelVertices_*_*', 'keep *_hltFastPixelBLifetimeL3TagInfos_*_*', 'keep *_hltFastPrimaryVertex_*_*', 'keep *_hltFilterDoubleIsoPFTau45Trk5LeadTrack5IsolationL1HLTMatched_*_*', 'keep *_hltFilterL2EtCutDoublePFIsoTau45Trk5_*_*', 'keep *_hltFilterL2EtCutSingleIsoPFTau35Trk20MET70_*_*', 'keep *_hltFilterSingleIsoPFTau35Trk20LeadTrackPt20_*_*', 'keep *_hltFilterSingleIsoPFTau35Trk20MET60LeadTrack20IsolationL1HLTMatched_*_*', 'keep *_hltFilterSingleIsoPFTau35Trk20MET70LeadTrack20IsolationL1HLTMatched_*_*', 'keep *_hltGmtStage2Digis_*_*', 'keep *_hltGoodOnlinePVs_*_*', 'keep *_hltGtStage2Digis_*_*', 'keep *_hltGtStage2ObjectMap_*_*', 'keep *_hltHICaloJetCorrected_*_*', 'keep *_hltHICaloJetIDPassed_*_*', 'keep *_hltHIGoodLooseTracks_*_*', 'keep *_hltHIPixel3PrimTracks_*_*', 'keep *_hltHISelectedVertex_*_*', 'keep *_hltHISiPixelClusters_*_*', 'keep *_hltHITIPTCorrectorHB_*_*', 'keep *_hltHITIPTCorrectorHE_*_*', 'keep *_hltHiCorrectedIslandBarrelSuperClustersHI_*_*', 'keep *_hltHiCorrectedIslandEndcapSuperClustersHI_*_*', 'keep *_hltHiIslandSuperClustersHI_*_*', 'keep *_hltIsolPixelTrackProdHB_*_*', 'keep *_hltIsolPixelTrackProdHE_*_*', 'keep *_hltIter0PFlowTrackSelectionHighPurity_*_*', 'keep *_hltIter1Merged_*_*', 'keep *_hltIter1PFlowTrackSelectionHighPurity_*_*', 'keep *_hltIter2Merged_*_*', 'keep *_hltIter2PFlowTrackSelectionHighPurity_*_*', 'keep *_hltIter3Merged_*_*', 'keep *_hltIter4Merged_*_*', 'keep *_hltIterativeCone5PileupSubtractionCaloJets_*_*', 'keep *_hltL1HLTSingleIsoPFTau35Trk20Met60JetsMatch_*_*', 'keep *_hltL1IsoElectronTrackIsol_*_*', 'keep *_hltL1NonIsoElectronTrackIsol_*_*', 'keep *_hltL1SeededRecoEcalCandidate_*_*', 'keep *_hltL1sDoubleTauJet44Eta2p17orDoubleJet64Central_*_*', 'keep *_hltL1sDoubleTauJet44erorDoubleJetC64_*_*', 'keep *_hltL1sL1EG18er_*_*', 'keep *_hltL1sL1ETM36ORETM40_*_*', 'keep *_hltL1sL1Jet52ETM30_*_*', 'keep *_hltL1sL1SingleEG12_*_*', 'keep *_hltL1sL1SingleEG15_*_*', 'keep *_hltL1sL1SingleEG18orL1SingleEG20_*_*', 'keep *_hltL1sL1SingleMu10_*_*', 'keep *_hltL1sL1SingleMu14Eta2p1_*_*', 'keep *_hltL1sMu16Eta2p1_*_*', 'keep *_hltL2MuonCandidatesNoVtx_*_*', 'keep *_hltL2MuonCandidates_*_*', 'keep *_hltL2MuonSeeds_*_*', 'keep *_hltL2Muons_*_*', 'keep *_hltL2TauJets_*_*', 'keep *_hltL3MuonCandidates_*_*', 'keep *_hltL3MuonsIOHit_*_*', 'keep *_hltL3MuonsLinksCombination_*_*', 'keep *_hltL3MuonsOIHit_*_*', 'keep *_hltL3MuonsOIState_*_*', 'keep *_hltL3Muons_*_*', 'keep *_hltL3NoFiltersNoVtxMuonCandidates_*_*', 'keep *_hltL3NoFiltersNoVtxMuons_*_*', 'keep *_hltL3SecondaryVertexTagInfos_*_*', 'keep *_hltL3TkFromL2OICombination_*_*', 'keep *_hltL3TkTracksFromL2IOHit_*_*', 'keep *_hltL3TkTracksFromL2OIHit_*_*', 'keep *_hltL3TkTracksFromL2OIState_*_*', 'keep *_hltL3TkTracksFromL2_*_*', 'keep *_hltL3TrackCandidateFromL2IOHit_*_*', 'keep *_hltL3TrackCandidateFromL2OIHit_*_*', 'keep *_hltL3TrackCandidateFromL2OIState_*_*', 'keep *_hltL3TrajSeedIOHit_*_*', 'keep *_hltL3TrajSeedOIHit_*_*', 'keep *_hltL3TrajSeedOIState_*_*', 'keep *_hltL3TrajectorySeed_*_*', 'keep *_hltL3crIsoL1sMu16Eta2p1L1f0L2f16QL3f18QL3crIsoRhoFiltered0p15_*_*', 'keep *_hltLeadingCentralJets30SingleTopEle27_*_*', 'keep *_hltLeadingCentralJets30SingleTopIsoMu24_*_*', 'keep *_hltMet_*_*', 'keep *_hltMu8Ele17CaloIdTCaloIsoVLPixelMatchFilter_*_*', 'keep *_hltMuTrackJpsiCtfTrackCands_*_*', 'keep *_hltMuTrackJpsiPixelTrackCands_*_*', 'keep *_hltMuonCSCDigis_*_*', 'keep *_hltMuonCSCDigis_MuonCSCStripDigi_*', 'keep *_hltMuonCSCDigis_MuonCSCWireDigi_*', 'keep *_hltMuonDTDigis_*_*', 'keep *_hltMuonRPCDigis_*_*', 'keep *_hltOnlineBeamSpot_*_*', 'keep *_hltOnlinePrimaryVertices_*_*', 'keep *_hltOverlapFilterEle20LooseIsoPFTau20OldVersion_*_*', 'keep *_hltOverlapFilterIsoEle20MediumIsoPFTau20_*_*', 'keep *_hltOverlapFilterIsoMu15IsoPFTau20_*_*', 'keep *_hltOverlapFilterIsoMu15MediumIsoPFTau20_*_*', 'keep *_hltOverlapFilterIsoMu15TightIsoPFTau20_*_*', 'keep *_hltOverlapFilterIsoMu18LooseIsoPFTau20_*_*', 'keep *_hltOverlapFilterIsoMu18PFTau25TrackPt5Prong4_*_*', 'keep *_hltPFJetForBtag_*_*', 'keep *_hltPFTau15TrackLooseIso_*_*', 'keep *_hltPFTau15Track_*_*', 'keep *_hltPFTau15_*_*', 'keep *_hltPFTau20IsoMuVertex_*_*', 'keep *_hltPFTau20TrackLooseIso_*_*', 'keep *_hltPFTau20Track_*_*', 'keep *_hltPFTau20_*_*', 'keep *_hltPFTau25TrackPt5MediumIsolationProng4IsoMuVertex_*_*', 'keep *_hltPFTau25TrackPt5MediumIsolationProng4_*_*', 'keep *_hltPFTau25TrackPt5MediumIsolation_*_*', 'keep *_hltPFTau25TrackPt5_*_*', 'keep *_hltPFTau25_*_*', 'keep *_hltPFTau35TrackPt20LooseIsoProng2_*_*', 'keep *_hltPFTau35TrackPt20LooseIso_*_*', 'keep *_hltPFTau35TrackPt20_*_*', 'keep *_hltPFTau35Track_*_*', 'keep *_hltPFTau35_*_*', 'keep *_hltPFTauEleVertex20_*_*', 'keep *_hltPFTauJetTracksAssociator_*_*', 'keep *_hltPFTauMediumIso20TrackMediumIso_*_*', 'keep *_hltPFTauMediumIso20Track_*_*', 'keep *_hltPFTauMediumIso20_*_*', 'keep *_hltPFTauMediumIso35Track_*_*', 'keep *_hltPFTauMediumIso35_*_*', 'keep *_hltPFTauTagInfo_*_*', 'keep *_hltPFTauTightIso20TrackTightIso_*_*', 'keep *_hltPFTauTightIso20Track_*_*', 'keep *_hltPFTauTightIso20_*_*', 'keep *_hltPFlowTrackSelectionHighPurity_*_*', 'keep *_hltParticleFlowForTaus_*_*', 'keep *_hltParticleFlow_*_*', 'keep *_hltPixelMatch3HitElectronsActivity_*_*', 'keep *_hltPixelMatch3HitElectronsL1Seeded_*_*', 'keep *_hltPixelMatchCleanElectronsL1Seeded_*_*', 'keep *_hltPixelMatchElectronsActivity_*_*', 'keep *_hltPixelMatchElectronsL1Iso_*_*', 'keep *_hltPixelMatchElectronsL1NonIso_*_*', 'keep *_hltPixelMatchElectronsL1Seeded_*_*', 'keep *_hltPixelTracks_*_*', 'keep *_hltPixelVertices3DbbPhi_*_*', 'keep *_hltPixelVertices_*_*', 'keep *_hltRecoEcalSuperClusterActivityCandidateSC4_*_*', 'keep *_hltRecoEcalSuperClusterActivityCandidateSC5_*_*', 'keep *_hltRecoEcalSuperClusterActivityCandidate_*_*', 'keep *_hltRpcRecHits_*_*', 'keep *_hltSelector4CentralJetsL1FastJet_*_*', 'keep *_hltSelector8CentralJetsL1FastJet_*_*', 'keep *_hltSelectorJets20L1FastJet_*_*', 'keep *_hltSiPixelCluster_*_*', 'keep *_hltSiPixelClusters_*_*', 'keep *_hltSiStripClusters_*_*', 'keep *_hltSiStripRawToClustersFacility_*_*', 'keep *_hltSingleMu15L3Filtered15_*_*', 'keep *_hltSingleMuIsoL1s14L3IsoFiltered15eta2p1_*_*', 'keep *_hltSingleMuIsoL3IsoFiltered15_*_*', 'keep *_hltTowerMakerForAll_*_*', 'keep *_hltTowerMakerForMuons_*_*', 'keep *_hltTriggerSummaryAOD_*_*', 'keep *_hltTriggerSummaryRAW_*_*', 'keep *_hltTrimmedPixelVertices_*_*', 'keep *_hltVerticesL3_*_*', 'keep *_hltVerticesPFSelector_*_*', 'keep DcsStatuss_hltScalersRawToDigi_*_*', 'keep FEDRawDataCollection_rawDataCollector_*_*', 'keep FEDRawDataCollection_rawDataRepacker_*_*', 'keep FEDRawDataCollection_source_*_*', 'keep FEDRawDataCollection_virginRawDataRepacker_*_*', 'keep L2MuonTrajectorySeeds_hltL2MuonSeeds_*_*', 'keep L3MuonTrajectorySeeds_hltHIL3TrajSeedOIHit_*_*', 'keep L3MuonTrajectorySeeds_hltHIL3TrajectorySeed_*_*', 'keep L3MuonTrajectorySeeds_hltL3TrajSeedOIState_*_*', 'keep LumiScalerss_hltScalersRawToDigi_*_*', 'keep SiPixelClusteredmNewDetSetVector_hltSiPixelClusters_*_*', 'keep TrackCandidates_hltHIL3TrackCandidateFromL2OIHit_*_*', 'keep TrackCandidates_hltHIL3TrackCandidateFromL2OIState_*_*', 'keep TrackingRecHitsOwned_hltL3Muons_*_*', 'keep edmTriggerResults_*_*_*', 'keep recoCaloJets_*_*_*', 'keep recoCaloMETs_*_*_*', 'keep recoCaloMETs_hltMet_*_*', 'keep recoCompositeCandidates_*_*_*', 'keep recoElectrons_*_*_*', 'keep recoIsolatedPixelTrackCandidates_*_*_*', 'keep recoMETs_*_*_*', 'keep recoPFJets_*_*_*', 'keep recoPFTaus_*_*_*', 'keep recoRecoChargedCandidates_*_*_*', 'keep recoRecoChargedCandidates_hltHIL3MuonCandidates_*_*', 'keep recoRecoChargedCandidates_hltL2MuonCandidates_*_*', 'keep recoRecoEcalCandidatesToValuefloatAssociation_hltL1IsoHLTClusterShape_*_*', 'keep recoRecoEcalCandidatesToValuefloatAssociation_hltL1IsolatedPhotonEcalIsol_*_*', 'keep recoRecoEcalCandidatesToValuefloatAssociation_hltL1IsolatedPhotonHcalForHE_*_*', 'keep recoRecoEcalCandidatesToValuefloatAssociation_hltL1IsolatedPhotonHcalIsol_*_*', 'keep recoRecoEcalCandidatesToValuefloatAssociation_hltL1NonIsoHLTClusterShape_*_*', 'keep recoRecoEcalCandidatesToValuefloatAssociation_hltL1NonIsolatedPhotonEcalIsol_*_*', 'keep recoRecoEcalCandidatesToValuefloatAssociation_hltL1NonIsolatedPhotonHcalForHE_*_*', 'keep recoRecoEcalCandidatesToValuefloatAssociation_hltL1NonIsolatedPhotonHcalIsol_*_*', 'keep recoRecoEcalCandidates_*_*_*', 'keep recoRecoEcalCandidates_hltL1IsoRecoEcalCandidate_*_*', 'keep recoRecoEcalCandidates_hltL1NonIsoRecoEcalCandidate_*_*', 'keep recoTrackExtras_hltHIL3MuonsOIHit_*_*', 'keep recoTrackExtras_hltHIL3MuonsOIState_*_*', 'keep recoTracks_hltHIL3MuonsOIHit_*_*', 'keep recoTracks_hltHIL3MuonsOIState_*_*', 'keep recoTracks_hltHIL3Muons_*_*', 'keep recoTracks_hltHIL3TkTracksFromL2OIHit_*_*', 'keep recoTracks_hltHIL3TkTracksFromL2OIState_*_*', 'keep recoTracks_hltHIL3TkTracksFromL2_*_*', 'keep triggerTriggerEventWithRefs_*_*_*', 'keep triggerTriggerEvent_*_*_*', 'keep triggerTriggerFilterObjectWithRefs_*_*_*', 'keep *_*_MergedTrackTruth_*', 'keep *_*_StripDigiSimLink_*', 'keep *_*_PixelDigiSimLink_*', 'keep *_*_MuonCSCStripDigiSimLinks_*', 'keep *_*_MuonCSCWireDigiSimLinks_*', 'keep *_*_RPCDigiSimLink_*', 'keep DTLayerIdDTDigiSimLinkMuonDigiCollection_*_*_*' ) ), splitLevel = cms.untracked.int32(0) ) process.FEVTEventContent = cms.PSet( eventAutoFlushCompressedSize = cms.untracked.int32(5242880), outputCommands = cms.untracked.vstring( ('drop *', 'drop *', 'keep FEDRawDataCollection_rawDataCollector_*_*', 'keep FEDRawDataCollection_source_*_*', 'keep FEDRawDataCollection_rawDataCollector_*_*', 'keep FEDRawDataCollection_source_*_*', 'drop *_hlt*_*_*', 'keep *_hltGtStage2ObjectMap_*_*', 'keep FEDRawDataCollection_rawDataCollector_*_*', 'keep FEDRawDataCollection_source_*_*', 'keep edmTriggerResults_*_*_*', 'keep triggerTriggerEvent_*_*_*', 'keep DetIdedmEDCollection_siStripDigis_*_*', 'keep DetIdedmEDCollection_siPixelDigis_*_*', 'keep *_siPixelClusters_*_*', 'keep *_siStripClusters_*_*', 'keep ClusterSummary_clusterSummaryProducer_*_*', 'keep *_dt1DRecHits_*_*', 'keep *_dt4DSegments_*_*', 'keep *_dt1DCosmicRecHits_*_*', 'keep *_dt4DCosmicSegments_*_*', 'keep *_csc2DRecHits_*_*', 'keep *_cscSegments_*_*', 'keep *_rpcRecHits_*_*', 'keep *_hbhereco_*_*', 'keep *_hbheprereco_*_*', 'keep *_hfreco_*_*', 'keep *_horeco_*_*', 'keep HBHERecHitsSorted_hbherecoMB_*_*', 'keep HORecHitsSorted_horecoMB_*_*', 'keep HFRecHitsSorted_hfrecoMB_*_*', 'keep ZDCDataFramesSorted_hcalDigis_*_*', 'keep ZDCRecHitsSorted_*_*_*', 'keep *_reducedHcalRecHits_*_*', 'keep *_castorreco_*_*', 'keep HcalUnpackerReport_castorDigis_*_*', 'keep HcalUnpackerReport_hcalDigiAlCaMB_*_*', 'keep HcalUnpackerReport_hcalDigis_*_*', 'keep *_ecalPreshowerRecHit_*_*', 'keep *_ecalRecHit_*_*', 'keep *_ecalCompactTrigPrim_*_*', 'keep *_ecalTPSkim_*_*', 'keep *_selectDigi_*_*', 'keep EcalRecHitsSorted_reducedEcalRecHitsEE_*_*', 'keep EcalRecHitsSorted_reducedEcalRecHitsEB_*_*', 'keep EcalRecHitsSorted_reducedEcalRecHitsES_*_*', 'keep *_hybridSuperClusters_*_*', 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', 'keep *_multi5x5SuperClusters_*_*', 'keep recoSuperClusters_multi5x5SuperClusters_*_*', 'keep recoSuperClusters_multi5x5SuperClustersWithPreshower_*_*', 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', 'keep recoPreshowerClusters_multi5x5SuperClustersWithPreshower_*_*', 'keep recoPreshowerClusterShapes_multi5x5PreshowerClusterShape_*_*', 'keep *_particleFlowSuperClusterECAL_*_*', 'drop recoClusterShapes_*_*_*', 'drop recoBasicClustersToOnerecoClusterShapesAssociation_*_*_*', 'drop recoBasicClusters_multi5x5BasicClusters_multi5x5BarrelBasicClusters_*', 'drop recoSuperClusters_multi5x5SuperClusters_multi5x5BarrelSuperClusters_*', 'keep *_CkfElectronCandidates_*_*', 'keep *_GsfGlobalElectronTest_*_*', 'keep *_electronMergedSeeds_*_*', 'keep recoGsfTracks_electronGsfTracks_*_*', 'keep recoGsfTrackExtras_electronGsfTracks_*_*', 'keep recoTrackExtras_electronGsfTracks_*_*', 'keep TrackingRecHitsOwned_electronGsfTracks_*_*', 'keep recoTracks_generalTracks_*_*', 'keep recoTrackExtras_generalTracks_*_*', 'keep TrackingRecHitsOwned_generalTracks_*_*', 'keep *_generalTracks_MVAValues_*', 'keep *_generalTracks_MVAVals_*', 'keep TrackingRecHitsOwned_extraFromSeeds_*_*', 'keep uints_extraFromSeeds_*_*', 'keep recoTracks_beamhaloTracks_*_*', 'keep recoTrackExtras_beamhaloTracks_*_*', 'keep TrackingRecHitsOwned_beamhaloTracks_*_*', 'keep recoTracks_conversionStepTracks_*_*', 'keep recoTrackExtras_conversionStepTracks_*_*', 'keep TrackingRecHitsOwned_conversionStepTracks_*_*', 'keep *_ctfPixelLess_*_*', 'keep *_dedxTruncated40_*_*', 'keep *_dedxHitInfo_*_*', 'keep *_dedxHarmonic2_*_*', 'keep *_trackExtrapolator_*_*', 'keep *_ak4CaloJets_*_*', 'keep *_ak4PFJets_*_*', 'keep *_ak4PFJetsCHS_*_*', 'keep *_ak8PFJetsCHS_*_*', 'keep *_ak8PFJetsCHSSoftDrop_*_*', 'keep *_cmsTopTagPFJetsCHS_*_*', 'keep *_JetPlusTrackZSPCorJetAntiKt4_*_*', 'keep *_ak4TrackJets_*_*', 'keep recoRecoChargedRefCandidates_trackRefsForJets_*_*', 'keep *_caloTowers_*_*', 'keep *_towerMaker_*_*', 'keep *_CastorTowerReco_*_*', 'keep *_ak4JetTracksAssociatorAtVertex_*_*', 'keep *_ak4JetTracksAssociatorAtVertexPF_*_*', 'keep *_ak4JetTracksAssociatorAtCaloFace_*_*', 'keep *_ak4JetTracksAssociatorExplicit_*_*', 'keep *_ak4JetExtender_*_*', 'keep *_ak4JetID_*_*', 'keep *_ak5CastorJets_*_*', 'keep *_ak5CastorJetID_*_*', 'keep *_ak7CastorJets_*_*', 'keep *_ak7CastorJetID_*_*', 'keep *_fixedGridRhoAll_*_*', 'keep *_fixedGridRhoFastjetAll_*_*', 'keep *_fixedGridRhoFastjetAllTmp_*_*', 'keep *_fixedGridRhoFastjetAllCalo_*_*', 'keep *_fixedGridRhoFastjetCentral_*_*', 'keep *_fixedGridRhoFastjetCentralCalo_*_*', 'keep *_fixedGridRhoFastjetCentralChargedPileUp_*_*', 'keep *_fixedGridRhoFastjetCentralNeutral_*_*', 'keep *_ak8PFJetsCHSSoftDropMass_*_*', 'keep recoCaloMETs_caloMet_*_*', 'keep recoCaloMETs_caloMetBE_*_*', 'keep recoCaloMETs_caloMetBEFO_*_*', 'keep recoCaloMETs_caloMetM_*_*', 'keep recoPFMETs_pfMet_*_*', 'keep recoPFMETs_pfChMet_*_*', 'keep recoPFMETs_pfMetEI_*_*', 'keep recoMuonMETCorrectionDataedmValueMap_muonMETValueMapProducer_*_*', 'keep recoHcalNoiseRBXs_hcalnoise_*_*', 'keep HcalNoiseSummary_hcalnoise_*_*', 'keep recoCSCHaloData_CSCHaloData_*_*', 'keep recoEcalHaloData_EcalHaloData_*_*', 'keep recoGlobalHaloData_GlobalHaloData_*_*', 'keep recoHcalHaloData_HcalHaloData_*_*', 'keep recoBeamHaloSummary_BeamHaloSummary_*_*', 'keep *_MuonSeed_*_*', 'keep *_ancientMuonSeed_*_*', 'keep *_displacedMuonSeeds_*_*', 'keep TrackingRecHitsOwned_globalMuons_*_*', 'keep TrackingRecHitsOwned_tevMuons_*_*', 'keep recoCaloMuons_calomuons_*_*', 'keep *_CosmicMuonSeed_*_*', 'keep recoTrackExtras_cosmicMuons_*_*', 'keep TrackingRecHitsOwned_cosmicMuons_*_*', 'keep recoTrackExtras_cosmicMuons1Leg_*_*', 'keep TrackingRecHitsOwned_cosmicMuons1Leg_*_*', 'keep recoTracks_cosmicsVetoTracks_*_*', 'keep *_SETMuonSeed_*_*', 'keep recoTracks_standAloneSETMuons_*_*', 'keep recoTrackExtras_standAloneSETMuons_*_*', 'keep TrackingRecHitsOwned_standAloneSETMuons_*_*', 'keep recoTracks_globalSETMuons_*_*', 'keep recoTrackExtras_globalSETMuons_*_*', 'keep TrackingRecHitsOwned_globalSETMuons_*_*', 'keep recoMuons_muonsWithSET_*_*', 'keep *_muons_*_*', 'keep *_particleFlow_muons_*', 'drop *_muons_muons1stStep2muonsMap_*', 'drop recoIsoDepositedmValueMap_muons_*_*', 'drop doubleedmValueMap_muons_muPFIso*_*', 'keep recoTracks_standAloneMuons_*_*', 'keep recoTrackExtras_standAloneMuons_*_*', 'keep TrackingRecHitsOwned_standAloneMuons_*_*', 'keep recoTracks_globalMuons_*_*', 'keep recoTrackExtras_globalMuons_*_*', 'keep recoTracks_tevMuons_*_*', 'keep recoTrackExtras_tevMuons_*_*', 'keep recoTracks_generalTracks_*_*', 'keep recoTracks_displacedTracks_*_*', 'keep recoTracksToOnerecoTracksAssociation_tevMuons_*_*', 'keep recoTracks_displacedGlobalMuons_*_*', 'keep recoTrackExtras_displacedGlobalMuons_*_*', 'keep TrackingRecHitsOwned_displacedGlobalMuons_*_*', 'keep recoTracks_cosmicMuons_*_*', 'keep recoMuons_muonsFromCosmics_*_*', 'keep recoTracks_cosmicMuons1Leg_*_*', 'keep recoMuons_muonsFromCosmics1Leg_*_*', 'keep recoTracks_refittedStandAloneMuons_*_*', 'keep recoTrackExtras_refittedStandAloneMuons_*_*', 'keep TrackingRecHitsOwned_refittedStandAloneMuons_*_*', 'keep recoTracks_displacedStandAloneMuons__*', 'keep recoTrackExtras_displacedStandAloneMuons_*_*', 'keep TrackingRecHitsOwned_displacedStandAloneMuons_*_*', 'keep *_muIsoDepositTk_*_*', 'keep *_muIsoDepositCalByAssociatorTowers_*_*', 'keep *_muIsoDepositCalByAssociatorHits_*_*', 'keep *_muIsoDepositJets_*_*', 'keep *_muGlobalIsoDepositCtfTk_*_*', 'keep *_muGlobalIsoDepositCalByAssociatorTowers_*_*', 'keep *_muGlobalIsoDepositCalByAssociatorHits_*_*', 'keep *_muGlobalIsoDepositJets_*_*', 'keep *_softPFMuonsTagInfos_*_*', 'keep *_softPFElectronsTagInfos_*_*', 'keep *_softPFElectronBJetTags_*_*', 'keep *_softPFMuonBJetTags_*_*', 'keep *_pfImpactParameterTagInfos_*_*', 'keep *_pfTrackCountingHighEffBJetTags_*_*', 'keep *_pfJetProbabilityBJetTags_*_*', 'keep *_pfJetBProbabilityBJetTags_*_*', 'keep *_pfSecondaryVertexTagInfos_*_*', 'keep *_pfInclusiveSecondaryVertexFinderTagInfos_*_*', 'keep *_pfSimpleSecondaryVertexHighEffBJetTags_*_*', 'keep *_pfSimpleInclusiveSecondaryVertexHighEffBJetTags_*_*', 'keep *_pfCombinedSecondaryVertexV2BJetTags_*_*', 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTags_*_*', 'keep *_pfCombinedMVAV2BJetTags_*_*', 'keep *_inclusiveCandidateSecondaryVertices_*_*', 'keep *_inclusiveCandidateSecondaryVerticesCvsL_*_*', 'keep *_pfInclusiveSecondaryVertexFinderCvsLTagInfos_*_*', 'keep *_pfCombinedCvsLJetTags_*_*', 'keep *_pfCombinedCvsBJetTags_*_*', 'keep recoRecoTauPiZeros_hpsPFTauProducer_pizeros_*', 'keep recoPFTaus_hpsPFTauProducer_*_*', 'keep *_hpsPFTauDiscriminationByDeadECALElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByDecayModeFinding_*_*', 'keep *_hpsPFTauDiscriminationByDecayModeFindingNewDMs_*_*', 'keep *_hpsPFTauDiscriminationByDecayModeFindingOldDMs_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolation_*_*', 'keep *_hpsPFTauDiscriminationByLooseChargedIsolation_*_*', 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3Hits_*_*', 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3HitsdR03_*_*', 'keep *_hpsPFTauDiscriminationByLooseElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByLooseMuonRejection3_*_*', 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3Hits_*_*', 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3HitsdR03_*_*', 'keep *_hpsPFTauDiscriminationByRawCombinedIsolationDBSumPtCorr3Hits_*_*', 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3Hits_*_*', 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3HitsdR03_*_*', 'keep *_hpsPFTauDiscriminationByTightMuonRejection3_*_*', 'keep *_hpsPFTauDiscriminationByPhotonPtSumOutsideSignalCone_*_*', 'keep *_hpsPFTauNeutralIsoPtSum_*_*', 'keep *_hpsPFTauPUcorrPtSum_*_*', 'keep *_hpsPFTauChargedIsoPtSum_*_*', 'keep *_hpsPFTauTransverseImpactParameters_*_*', 'keep *_hpsPFTauFootprintCorrection_*_*', 'keep *_hpsPFTauNeutralIsoPtSumWeight_*_*', 'keep *_hpsPFTauPhotonPtSumOutsideSignalCone_*_*', 'keep *_hpsPFTauDiscriminationByMVA6rawElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6VLooseElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6LooseElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6MediumElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6TightElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6VTightElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBoldDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBnewDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWoldDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWnewDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauChargedIsoPtSumdR03_*_*', 'keep *_hpsPFTauNeutralIsoPtSumdR03_*_*', 'keep *_hpsPFTauNeutralIsoPtSumWeightdR03_*_*', 'keep *_hpsPFTauFootprintCorrectiondR03_*_*', 'keep *_hpsPFTauPhotonPtSumOutsideSignalConedR03_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBdR03oldDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWdR03oldDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_offlinePrimaryVertices__*', 'keep *_offlinePrimaryVerticesWithBS_*_*', 'keep *_offlinePrimaryVerticesFromCosmicTracks_*_*', 'keep *_nuclearInteractionMaker_*_*', 'keep *_generalV0Candidates_*_*', 'keep *_inclusiveSecondaryVertices_*_*', 'keep recoGsfElectronCores_gsfElectronCores_*_*', 'keep recoGsfElectronCores_gedGsfElectronCores_*_*', 'keep recoGsfElectrons_gsfElectrons_*_*', 'keep recoGsfElectrons_gedGsfElectrons_*_*', 'keep recoGsfElectronCores_uncleanedOnlyGsfElectronCores_*_*', 'keep recoGsfElectrons_uncleanedOnlyGsfElectrons_*_*', 'keep floatedmValueMap_eidRobustLoose_*_*', 'keep floatedmValueMap_eidRobustTight_*_*', 'keep floatedmValueMap_eidRobustHighEnergy_*_*', 'keep floatedmValueMap_eidLoose_*_*', 'keep floatedmValueMap_eidTight_*_*', 'keep *_egmGedGsfElectronPFIsolation_*_*', 'keep *_photonEcalPFClusterIsolationProducer_*_*', 'keep *_electronEcalPFClusterIsolationProducer_*_*', 'keep *_photonHcalPFClusterIsolationProducer_*_*', 'keep *_electronHcalPFClusterIsolationProducer_*_*', 'drop *_egmGsfElectronIDs_*_*', 'drop *_egmPhotonIDs_*_*', 'keep *_gedPhotonCore_*_*', 'keep *_gedPhotons_*_*', 'keep *_particleBasedIsolation_*_*', 'keep recoPhotons_mustachePhotons_*_*', 'keep recoPhotonCores_mustachePhotonCore_*_*', 'keep recoPhotons_photons_*_*', 'keep recoPhotonCores_photonCore_*_*', 'keep recoConversions_conversions_*_*', 'keep recoConversions_mustacheConversions_*_*', 'drop *_conversions_uncleanedConversions_*', 'drop *_gedPhotonsTmp_valMapPFEgammaCandToPhoton_*', 'keep recoConversions_allConversions_*_*', 'keep recoConversions_allConversionsOldEG_*_*', 'keep recoTracks_ckfOutInTracksFromConversions_*_*', 'keep recoTracks_ckfInOutTracksFromConversions_*_*', 'keep recoTrackExtras_ckfOutInTracksFromConversions_*_*', 'keep recoTrackExtras_ckfInOutTracksFromConversions_*_*', 'keep TrackingRecHitsOwned_ckfOutInTracksFromConversions_*_*', 'keep TrackingRecHitsOwned_ckfInOutTracksFromConversions_*_*', 'keep recoConversions_uncleanedOnlyAllConversions_*_*', 'keep recoTracks_uncleanedOnlyCkfOutInTracksFromConversions_*_*', 'keep recoTracks_uncleanedOnlyCkfInOutTracksFromConversions_*_*', 'keep recoTrackExtras_uncleanedOnlyCkfOutInTracksFromConversions_*_*', 'keep recoTrackExtras_uncleanedOnlyCkfInOutTracksFromConversions_*_*', 'keep TrackingRecHitsOwned_uncleanedOnlyCkfOutInTracksFromConversions_*_*', 'keep TrackingRecHitsOwned_uncleanedOnlyCkfInOutTracksFromConversions_*_*', 'keep *_PhotonIDProd_*_*', 'keep *_PhotonIDProdGED_*_*', 'keep recoRecoEcalCandidates_hfRecoEcalCandidate_*_*', 'keep *_hfEMClusters_*_*', 'keep *_gedGsfElectronCores_*_*', 'keep *_gedGsfElectrons_*_*', 'keep *_pixelTracks_*_*', 'keep *_pixelVertices_*_*', 'drop CaloTowersSorted_towerMakerPF_*_*', 'keep recoPFRecHits_particleFlowClusterECAL_Cleaned_*', 'keep recoPFRecHits_particleFlowClusterHCAL_Cleaned_*', 'keep recoPFRecHits_particleFlowClusterHO_Cleaned_*', 'keep recoPFRecHits_particleFlowClusterHF_Cleaned_*', 'keep recoPFRecHits_particleFlowClusterPS_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitECAL_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitHBHE_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitHF_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitHO_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitPS_Cleaned_*', 'keep recoPFClusters_particleFlowClusterECAL_*_*', 'keep recoPFClusters_particleFlowClusterHCAL_*_*', 'keep recoPFClusters_particleFlowClusterHO_*_*', 'keep recoPFClusters_particleFlowClusterHF_*_*', 'keep recoPFClusters_particleFlowClusterPS_*_*', 'keep recoPFBlocks_particleFlowBlock_*_*', 'keep recoPFCandidates_particleFlowEGamma_*_*', 'keep recoCaloClusters_particleFlowEGamma_*_*', 'keep recoSuperClusters_particleFlowEGamma_*_*', 'keep recoConversions_particleFlowEGamma_*_*', 'keep recoPFCandidates_particleFlow_*_*', 'keep recoPFCandidates_particleFlowTmp_electrons_*', 'keep recoPFCandidates_particleFlowTmp_*_*', 'drop recoPFCandidates_particleFlowTmp__*', 'keep recoPFDisplacedVertexs_particleFlowDisplacedVertex_*_*', 'keep *_pfElectronTranslator_*_*', 'keep *_pfPhotonTranslator_*_*', 'keep *_particleFlow_electrons_*', 'keep *_particleFlow_photons_*', 'keep *_particleFlow_muons_*', 'keep *_trackerDrivenElectronSeeds_preid_*', 'keep *_particleFlowPtrs_*_*', 'keep *_particleFlowTmpPtrs_*_*', 'keep *_offlineBeamSpot_*_*', 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', 'keep *_l1GtRecord_*_*', 'keep *_l1GtTriggerMenuLite_*_*', 'keep *_conditionsInEdm_*_*', 'keep *_l1extraParticles_*_*', 'keep *_l1L1GtObjectMap_*_*', 'keep L1MuGMTReadoutCollection_gtDigis_*_*', 'keep L1GctEmCand*_gctDigis_*_*', 'keep L1GctJetCand*_gctDigis_*_*', 'keep L1GctEtHad*_gctDigis_*_*', 'keep L1GctEtMiss*_gctDigis_*_*', 'keep L1GctEtTotal*_gctDigis_*_*', 'keep L1GctHtMiss*_gctDigis_*_*', 'keep L1GctJetCounts*_gctDigis_*_*', 'keep L1GctHFRingEtSums*_gctDigis_*_*', 'keep L1GctHFBitCounts*_gctDigis_*_*', 'keep LumiDetails_lumiProducer_*_*', 'keep LumiSummary_lumiProducer_*_*', 'drop *_hlt*_*_*', 'keep *_hltGtStage2ObjectMap_*_*', 'keep edmTriggerResults_*_*_*', 'keep triggerTriggerEvent_*_*_*', 'keep L1AcceptBunchCrossings_scalersRawToDigi_*_*', 'keep L1TriggerScalerss_scalersRawToDigi_*_*', 'keep Level1TriggerScalerss_scalersRawToDigi_*_*', 'keep LumiScalerss_scalersRawToDigi_*_*', 'keep BeamSpotOnlines_scalersRawToDigi_*_*', 'keep DcsStatuss_scalersRawToDigi_*_*', 'keep DcsStatuss_hltScalersRawToDigi_*_*', 'keep *_tcdsDigis_*_*', 'keep *_logErrorHarvester_*_*', 'keep *_pfIsolatedElectronsEI_*_*', 'keep *_pfIsolatedMuonsEI_*_*', 'keep recoPFJets_pfJetsEI_*_*', 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTagsEI_*_*', 'keep recoPFTaus_pfTausEI_*_*', 'keep recoPFTauDiscriminator_pfTausDiscriminationByDecayModeFinding_*_*', 'keep recoPFTauDiscriminator_pfTausDiscriminationByIsolation_*_*', 'keep recoPFMETs_pfMetEI_*_*' ) ), splitLevel = cms.untracked.int32(0) ) process.FEVTHLTALLEventContent = cms.PSet( eventAutoFlushCompressedSize = cms.untracked.int32(5242880), outputCommands = cms.untracked.vstring( ('drop *', 'drop *', 'drop *', 'keep FEDRawDataCollection_rawDataCollector_*_*', 'keep FEDRawDataCollection_source_*_*', 'keep FEDRawDataCollection_rawDataCollector_*_*', 'keep FEDRawDataCollection_source_*_*', 'drop *_hlt*_*_*', 'keep *_hltGtStage2ObjectMap_*_*', 'keep FEDRawDataCollection_rawDataCollector_*_*', 'keep FEDRawDataCollection_source_*_*', 'keep edmTriggerResults_*_*_*', 'keep triggerTriggerEvent_*_*_*', 'keep DetIdedmEDCollection_siStripDigis_*_*', 'keep DetIdedmEDCollection_siPixelDigis_*_*', 'keep *_siPixelClusters_*_*', 'keep *_siStripClusters_*_*', 'keep ClusterSummary_clusterSummaryProducer_*_*', 'keep *_dt1DRecHits_*_*', 'keep *_dt4DSegments_*_*', 'keep *_dt1DCosmicRecHits_*_*', 'keep *_dt4DCosmicSegments_*_*', 'keep *_csc2DRecHits_*_*', 'keep *_cscSegments_*_*', 'keep *_rpcRecHits_*_*', 'keep *_hbhereco_*_*', 'keep *_hbheprereco_*_*', 'keep *_hfreco_*_*', 'keep *_horeco_*_*', 'keep HBHERecHitsSorted_hbherecoMB_*_*', 'keep HORecHitsSorted_horecoMB_*_*', 'keep HFRecHitsSorted_hfrecoMB_*_*', 'keep ZDCDataFramesSorted_hcalDigis_*_*', 'keep ZDCRecHitsSorted_*_*_*', 'keep *_reducedHcalRecHits_*_*', 'keep *_castorreco_*_*', 'keep HcalUnpackerReport_castorDigis_*_*', 'keep HcalUnpackerReport_hcalDigiAlCaMB_*_*', 'keep HcalUnpackerReport_hcalDigis_*_*', 'keep *_ecalPreshowerRecHit_*_*', 'keep *_ecalRecHit_*_*', 'keep *_ecalCompactTrigPrim_*_*', 'keep *_ecalTPSkim_*_*', 'keep *_selectDigi_*_*', 'keep EcalRecHitsSorted_reducedEcalRecHitsEE_*_*', 'keep EcalRecHitsSorted_reducedEcalRecHitsEB_*_*', 'keep EcalRecHitsSorted_reducedEcalRecHitsES_*_*', 'keep *_hybridSuperClusters_*_*', 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', 'keep *_multi5x5SuperClusters_*_*', 'keep recoSuperClusters_multi5x5SuperClusters_*_*', 'keep recoSuperClusters_multi5x5SuperClustersWithPreshower_*_*', 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', 'keep recoPreshowerClusters_multi5x5SuperClustersWithPreshower_*_*', 'keep recoPreshowerClusterShapes_multi5x5PreshowerClusterShape_*_*', 'keep *_particleFlowSuperClusterECAL_*_*', 'drop recoClusterShapes_*_*_*', 'drop recoBasicClustersToOnerecoClusterShapesAssociation_*_*_*', 'drop recoBasicClusters_multi5x5BasicClusters_multi5x5BarrelBasicClusters_*', 'drop recoSuperClusters_multi5x5SuperClusters_multi5x5BarrelSuperClusters_*', 'keep *_CkfElectronCandidates_*_*', 'keep *_GsfGlobalElectronTest_*_*', 'keep *_electronMergedSeeds_*_*', 'keep recoGsfTracks_electronGsfTracks_*_*', 'keep recoGsfTrackExtras_electronGsfTracks_*_*', 'keep recoTrackExtras_electronGsfTracks_*_*', 'keep TrackingRecHitsOwned_electronGsfTracks_*_*', 'keep recoTracks_generalTracks_*_*', 'keep recoTrackExtras_generalTracks_*_*', 'keep TrackingRecHitsOwned_generalTracks_*_*', 'keep *_generalTracks_MVAValues_*', 'keep *_generalTracks_MVAVals_*', 'keep TrackingRecHitsOwned_extraFromSeeds_*_*', 'keep uints_extraFromSeeds_*_*', 'keep recoTracks_beamhaloTracks_*_*', 'keep recoTrackExtras_beamhaloTracks_*_*', 'keep TrackingRecHitsOwned_beamhaloTracks_*_*', 'keep recoTracks_conversionStepTracks_*_*', 'keep recoTrackExtras_conversionStepTracks_*_*', 'keep TrackingRecHitsOwned_conversionStepTracks_*_*', 'keep *_ctfPixelLess_*_*', 'keep *_dedxTruncated40_*_*', 'keep *_dedxHitInfo_*_*', 'keep *_dedxHarmonic2_*_*', 'keep *_trackExtrapolator_*_*', 'keep *_ak4CaloJets_*_*', 'keep *_ak4PFJets_*_*', 'keep *_ak4PFJetsCHS_*_*', 'keep *_ak8PFJetsCHS_*_*', 'keep *_ak8PFJetsCHSSoftDrop_*_*', 'keep *_cmsTopTagPFJetsCHS_*_*', 'keep *_JetPlusTrackZSPCorJetAntiKt4_*_*', 'keep *_ak4TrackJets_*_*', 'keep recoRecoChargedRefCandidates_trackRefsForJets_*_*', 'keep *_caloTowers_*_*', 'keep *_towerMaker_*_*', 'keep *_CastorTowerReco_*_*', 'keep *_ak4JetTracksAssociatorAtVertex_*_*', 'keep *_ak4JetTracksAssociatorAtVertexPF_*_*', 'keep *_ak4JetTracksAssociatorAtCaloFace_*_*', 'keep *_ak4JetTracksAssociatorExplicit_*_*', 'keep *_ak4JetExtender_*_*', 'keep *_ak4JetID_*_*', 'keep *_ak5CastorJets_*_*', 'keep *_ak5CastorJetID_*_*', 'keep *_ak7CastorJets_*_*', 'keep *_ak7CastorJetID_*_*', 'keep *_fixedGridRhoAll_*_*', 'keep *_fixedGridRhoFastjetAll_*_*', 'keep *_fixedGridRhoFastjetAllTmp_*_*', 'keep *_fixedGridRhoFastjetAllCalo_*_*', 'keep *_fixedGridRhoFastjetCentral_*_*', 'keep *_fixedGridRhoFastjetCentralCalo_*_*', 'keep *_fixedGridRhoFastjetCentralChargedPileUp_*_*', 'keep *_fixedGridRhoFastjetCentralNeutral_*_*', 'keep *_ak8PFJetsCHSSoftDropMass_*_*', 'keep recoCaloMETs_caloMet_*_*', 'keep recoCaloMETs_caloMetBE_*_*', 'keep recoCaloMETs_caloMetBEFO_*_*', 'keep recoCaloMETs_caloMetM_*_*', 'keep recoPFMETs_pfMet_*_*', 'keep recoPFMETs_pfChMet_*_*', 'keep recoPFMETs_pfMetEI_*_*', 'keep recoMuonMETCorrectionDataedmValueMap_muonMETValueMapProducer_*_*', 'keep recoHcalNoiseRBXs_hcalnoise_*_*', 'keep HcalNoiseSummary_hcalnoise_*_*', 'keep recoCSCHaloData_CSCHaloData_*_*', 'keep recoEcalHaloData_EcalHaloData_*_*', 'keep recoGlobalHaloData_GlobalHaloData_*_*', 'keep recoHcalHaloData_HcalHaloData_*_*', 'keep recoBeamHaloSummary_BeamHaloSummary_*_*', 'keep *_MuonSeed_*_*', 'keep *_ancientMuonSeed_*_*', 'keep *_displacedMuonSeeds_*_*', 'keep TrackingRecHitsOwned_globalMuons_*_*', 'keep TrackingRecHitsOwned_tevMuons_*_*', 'keep recoCaloMuons_calomuons_*_*', 'keep *_CosmicMuonSeed_*_*', 'keep recoTrackExtras_cosmicMuons_*_*', 'keep TrackingRecHitsOwned_cosmicMuons_*_*', 'keep recoTrackExtras_cosmicMuons1Leg_*_*', 'keep TrackingRecHitsOwned_cosmicMuons1Leg_*_*', 'keep recoTracks_cosmicsVetoTracks_*_*', 'keep *_SETMuonSeed_*_*', 'keep recoTracks_standAloneSETMuons_*_*', 'keep recoTrackExtras_standAloneSETMuons_*_*', 'keep TrackingRecHitsOwned_standAloneSETMuons_*_*', 'keep recoTracks_globalSETMuons_*_*', 'keep recoTrackExtras_globalSETMuons_*_*', 'keep TrackingRecHitsOwned_globalSETMuons_*_*', 'keep recoMuons_muonsWithSET_*_*', 'keep *_muons_*_*', 'keep *_particleFlow_muons_*', 'drop *_muons_muons1stStep2muonsMap_*', 'drop recoIsoDepositedmValueMap_muons_*_*', 'drop doubleedmValueMap_muons_muPFIso*_*', 'keep recoTracks_standAloneMuons_*_*', 'keep recoTrackExtras_standAloneMuons_*_*', 'keep TrackingRecHitsOwned_standAloneMuons_*_*', 'keep recoTracks_globalMuons_*_*', 'keep recoTrackExtras_globalMuons_*_*', 'keep recoTracks_tevMuons_*_*', 'keep recoTrackExtras_tevMuons_*_*', 'keep recoTracks_generalTracks_*_*', 'keep recoTracks_displacedTracks_*_*', 'keep recoTracksToOnerecoTracksAssociation_tevMuons_*_*', 'keep recoTracks_displacedGlobalMuons_*_*', 'keep recoTrackExtras_displacedGlobalMuons_*_*', 'keep TrackingRecHitsOwned_displacedGlobalMuons_*_*', 'keep recoTracks_cosmicMuons_*_*', 'keep recoMuons_muonsFromCosmics_*_*', 'keep recoTracks_cosmicMuons1Leg_*_*', 'keep recoMuons_muonsFromCosmics1Leg_*_*', 'keep recoTracks_refittedStandAloneMuons_*_*', 'keep recoTrackExtras_refittedStandAloneMuons_*_*', 'keep TrackingRecHitsOwned_refittedStandAloneMuons_*_*', 'keep recoTracks_displacedStandAloneMuons__*', 'keep recoTrackExtras_displacedStandAloneMuons_*_*', 'keep TrackingRecHitsOwned_displacedStandAloneMuons_*_*', 'keep *_muIsoDepositTk_*_*', 'keep *_muIsoDepositCalByAssociatorTowers_*_*', 'keep *_muIsoDepositCalByAssociatorHits_*_*', 'keep *_muIsoDepositJets_*_*', 'keep *_muGlobalIsoDepositCtfTk_*_*', 'keep *_muGlobalIsoDepositCalByAssociatorTowers_*_*', 'keep *_muGlobalIsoDepositCalByAssociatorHits_*_*', 'keep *_muGlobalIsoDepositJets_*_*', 'keep *_softPFMuonsTagInfos_*_*', 'keep *_softPFElectronsTagInfos_*_*', 'keep *_softPFElectronBJetTags_*_*', 'keep *_softPFMuonBJetTags_*_*', 'keep *_pfImpactParameterTagInfos_*_*', 'keep *_pfTrackCountingHighEffBJetTags_*_*', 'keep *_pfJetProbabilityBJetTags_*_*', 'keep *_pfJetBProbabilityBJetTags_*_*', 'keep *_pfSecondaryVertexTagInfos_*_*', 'keep *_pfInclusiveSecondaryVertexFinderTagInfos_*_*', 'keep *_pfSimpleSecondaryVertexHighEffBJetTags_*_*', 'keep *_pfSimpleInclusiveSecondaryVertexHighEffBJetTags_*_*', 'keep *_pfCombinedSecondaryVertexV2BJetTags_*_*', 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTags_*_*', 'keep *_pfCombinedMVAV2BJetTags_*_*', 'keep *_inclusiveCandidateSecondaryVertices_*_*', 'keep *_inclusiveCandidateSecondaryVerticesCvsL_*_*', 'keep *_pfInclusiveSecondaryVertexFinderCvsLTagInfos_*_*', 'keep *_pfCombinedCvsLJetTags_*_*', 'keep *_pfCombinedCvsBJetTags_*_*', 'keep recoRecoTauPiZeros_hpsPFTauProducer_pizeros_*', 'keep recoPFTaus_hpsPFTauProducer_*_*', 'keep *_hpsPFTauDiscriminationByDeadECALElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByDecayModeFinding_*_*', 'keep *_hpsPFTauDiscriminationByDecayModeFindingNewDMs_*_*', 'keep *_hpsPFTauDiscriminationByDecayModeFindingOldDMs_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolation_*_*', 'keep *_hpsPFTauDiscriminationByLooseChargedIsolation_*_*', 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3Hits_*_*', 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3HitsdR03_*_*', 'keep *_hpsPFTauDiscriminationByLooseElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByLooseMuonRejection3_*_*', 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3Hits_*_*', 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3HitsdR03_*_*', 'keep *_hpsPFTauDiscriminationByRawCombinedIsolationDBSumPtCorr3Hits_*_*', 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3Hits_*_*', 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3HitsdR03_*_*', 'keep *_hpsPFTauDiscriminationByTightMuonRejection3_*_*', 'keep *_hpsPFTauDiscriminationByPhotonPtSumOutsideSignalCone_*_*', 'keep *_hpsPFTauNeutralIsoPtSum_*_*', 'keep *_hpsPFTauPUcorrPtSum_*_*', 'keep *_hpsPFTauChargedIsoPtSum_*_*', 'keep *_hpsPFTauTransverseImpactParameters_*_*', 'keep *_hpsPFTauFootprintCorrection_*_*', 'keep *_hpsPFTauNeutralIsoPtSumWeight_*_*', 'keep *_hpsPFTauPhotonPtSumOutsideSignalCone_*_*', 'keep *_hpsPFTauDiscriminationByMVA6rawElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6VLooseElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6LooseElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6MediumElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6TightElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6VTightElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBoldDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBnewDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWoldDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWnewDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauChargedIsoPtSumdR03_*_*', 'keep *_hpsPFTauNeutralIsoPtSumdR03_*_*', 'keep *_hpsPFTauNeutralIsoPtSumWeightdR03_*_*', 'keep *_hpsPFTauFootprintCorrectiondR03_*_*', 'keep *_hpsPFTauPhotonPtSumOutsideSignalConedR03_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBdR03oldDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWdR03oldDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_offlinePrimaryVertices__*', 'keep *_offlinePrimaryVerticesWithBS_*_*', 'keep *_offlinePrimaryVerticesFromCosmicTracks_*_*', 'keep *_nuclearInteractionMaker_*_*', 'keep *_generalV0Candidates_*_*', 'keep *_inclusiveSecondaryVertices_*_*', 'keep recoGsfElectronCores_gsfElectronCores_*_*', 'keep recoGsfElectronCores_gedGsfElectronCores_*_*', 'keep recoGsfElectrons_gsfElectrons_*_*', 'keep recoGsfElectrons_gedGsfElectrons_*_*', 'keep recoGsfElectronCores_uncleanedOnlyGsfElectronCores_*_*', 'keep recoGsfElectrons_uncleanedOnlyGsfElectrons_*_*', 'keep floatedmValueMap_eidRobustLoose_*_*', 'keep floatedmValueMap_eidRobustTight_*_*', 'keep floatedmValueMap_eidRobustHighEnergy_*_*', 'keep floatedmValueMap_eidLoose_*_*', 'keep floatedmValueMap_eidTight_*_*', 'keep *_egmGedGsfElectronPFIsolation_*_*', 'keep *_photonEcalPFClusterIsolationProducer_*_*', 'keep *_electronEcalPFClusterIsolationProducer_*_*', 'keep *_photonHcalPFClusterIsolationProducer_*_*', 'keep *_electronHcalPFClusterIsolationProducer_*_*', 'drop *_egmGsfElectronIDs_*_*', 'drop *_egmPhotonIDs_*_*', 'keep *_gedPhotonCore_*_*', 'keep *_gedPhotons_*_*', 'keep *_particleBasedIsolation_*_*', 'keep recoPhotons_mustachePhotons_*_*', 'keep recoPhotonCores_mustachePhotonCore_*_*', 'keep recoPhotons_photons_*_*', 'keep recoPhotonCores_photonCore_*_*', 'keep recoConversions_conversions_*_*', 'keep recoConversions_mustacheConversions_*_*', 'drop *_conversions_uncleanedConversions_*', 'drop *_gedPhotonsTmp_valMapPFEgammaCandToPhoton_*', 'keep recoConversions_allConversions_*_*', 'keep recoConversions_allConversionsOldEG_*_*', 'keep recoTracks_ckfOutInTracksFromConversions_*_*', 'keep recoTracks_ckfInOutTracksFromConversions_*_*', 'keep recoTrackExtras_ckfOutInTracksFromConversions_*_*', 'keep recoTrackExtras_ckfInOutTracksFromConversions_*_*', 'keep TrackingRecHitsOwned_ckfOutInTracksFromConversions_*_*', 'keep TrackingRecHitsOwned_ckfInOutTracksFromConversions_*_*', 'keep recoConversions_uncleanedOnlyAllConversions_*_*', 'keep recoTracks_uncleanedOnlyCkfOutInTracksFromConversions_*_*', 'keep recoTracks_uncleanedOnlyCkfInOutTracksFromConversions_*_*', 'keep recoTrackExtras_uncleanedOnlyCkfOutInTracksFromConversions_*_*', 'keep recoTrackExtras_uncleanedOnlyCkfInOutTracksFromConversions_*_*', 'keep TrackingRecHitsOwned_uncleanedOnlyCkfOutInTracksFromConversions_*_*', 'keep TrackingRecHitsOwned_uncleanedOnlyCkfInOutTracksFromConversions_*_*', 'keep *_PhotonIDProd_*_*', 'keep *_PhotonIDProdGED_*_*', 'keep recoRecoEcalCandidates_hfRecoEcalCandidate_*_*', 'keep *_hfEMClusters_*_*', 'keep *_gedGsfElectronCores_*_*', 'keep *_gedGsfElectrons_*_*', 'keep *_pixelTracks_*_*', 'keep *_pixelVertices_*_*', 'drop CaloTowersSorted_towerMakerPF_*_*', 'keep recoPFRecHits_particleFlowClusterECAL_Cleaned_*', 'keep recoPFRecHits_particleFlowClusterHCAL_Cleaned_*', 'keep recoPFRecHits_particleFlowClusterHO_Cleaned_*', 'keep recoPFRecHits_particleFlowClusterHF_Cleaned_*', 'keep recoPFRecHits_particleFlowClusterPS_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitECAL_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitHBHE_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitHF_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitHO_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitPS_Cleaned_*', 'keep recoPFClusters_particleFlowClusterECAL_*_*', 'keep recoPFClusters_particleFlowClusterHCAL_*_*', 'keep recoPFClusters_particleFlowClusterHO_*_*', 'keep recoPFClusters_particleFlowClusterHF_*_*', 'keep recoPFClusters_particleFlowClusterPS_*_*', 'keep recoPFBlocks_particleFlowBlock_*_*', 'keep recoPFCandidates_particleFlowEGamma_*_*', 'keep recoCaloClusters_particleFlowEGamma_*_*', 'keep recoSuperClusters_particleFlowEGamma_*_*', 'keep recoConversions_particleFlowEGamma_*_*', 'keep recoPFCandidates_particleFlow_*_*', 'keep recoPFCandidates_particleFlowTmp_electrons_*', 'keep recoPFCandidates_particleFlowTmp_*_*', 'drop recoPFCandidates_particleFlowTmp__*', 'keep recoPFDisplacedVertexs_particleFlowDisplacedVertex_*_*', 'keep *_pfElectronTranslator_*_*', 'keep *_pfPhotonTranslator_*_*', 'keep *_particleFlow_electrons_*', 'keep *_particleFlow_photons_*', 'keep *_particleFlow_muons_*', 'keep *_trackerDrivenElectronSeeds_preid_*', 'keep *_particleFlowPtrs_*_*', 'keep *_particleFlowTmpPtrs_*_*', 'keep *_offlineBeamSpot_*_*', 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', 'keep *_l1GtRecord_*_*', 'keep *_l1GtTriggerMenuLite_*_*', 'keep *_conditionsInEdm_*_*', 'keep *_l1extraParticles_*_*', 'keep *_l1L1GtObjectMap_*_*', 'keep L1MuGMTReadoutCollection_gtDigis_*_*', 'keep L1GctEmCand*_gctDigis_*_*', 'keep L1GctJetCand*_gctDigis_*_*', 'keep L1GctEtHad*_gctDigis_*_*', 'keep L1GctEtMiss*_gctDigis_*_*', 'keep L1GctEtTotal*_gctDigis_*_*', 'keep L1GctHtMiss*_gctDigis_*_*', 'keep L1GctJetCounts*_gctDigis_*_*', 'keep L1GctHFRingEtSums*_gctDigis_*_*', 'keep L1GctHFBitCounts*_gctDigis_*_*', 'keep LumiDetails_lumiProducer_*_*', 'keep LumiSummary_lumiProducer_*_*', 'drop *_hlt*_*_*', 'keep *_hltGtStage2ObjectMap_*_*', 'keep edmTriggerResults_*_*_*', 'keep triggerTriggerEvent_*_*_*', 'keep L1AcceptBunchCrossings_scalersRawToDigi_*_*', 'keep L1TriggerScalerss_scalersRawToDigi_*_*', 'keep Level1TriggerScalerss_scalersRawToDigi_*_*', 'keep LumiScalerss_scalersRawToDigi_*_*', 'keep BeamSpotOnlines_scalersRawToDigi_*_*', 'keep DcsStatuss_scalersRawToDigi_*_*', 'keep DcsStatuss_hltScalersRawToDigi_*_*', 'keep *_tcdsDigis_*_*', 'keep *_logErrorHarvester_*_*', 'keep *_pfIsolatedElectronsEI_*_*', 'keep *_pfIsolatedMuonsEI_*_*', 'keep recoPFJets_pfJetsEI_*_*', 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTagsEI_*_*', 'keep recoPFTaus_pfTausEI_*_*', 'keep recoPFTauDiscriminator_pfTausDiscriminationByDecayModeFinding_*_*', 'keep recoPFTauDiscriminator_pfTausDiscriminationByIsolation_*_*', 'keep recoPFMETs_pfMetEI_*_*', 'keep *_*_*_HLT' ) ), splitLevel = cms.untracked.int32(0) ) process.FEVTSIMEventContent = cms.PSet( eventAutoFlushCompressedSize = cms.untracked.int32(5242880), outputCommands = cms.untracked.vstring( ('drop *', 'drop *', 'keep FEDRawDataCollection_rawDataCollector_*_*', 'keep FEDRawDataCollection_source_*_*', 'keep FEDRawDataCollection_rawDataCollector_*_*', 'keep FEDRawDataCollection_source_*_*', 'drop *_hlt*_*_*', 'keep *_hltGtStage2ObjectMap_*_*', 'keep FEDRawDataCollection_rawDataCollector_*_*', 'keep FEDRawDataCollection_source_*_*', 'keep edmTriggerResults_*_*_*', 'keep triggerTriggerEvent_*_*_*', 'keep *_g4SimHits_*_*', 'keep edmHepMCProduct_source_*_*', 'keep *_allTrackMCMatch_*_*', 'keep StripDigiSimLinkedmDetSetVector_simMuonCSCDigis_*_*', 'keep CSCDetIdCSCComparatorDigiMuonDigiCollection_simMuonCSCDigis_*_*', 'keep DTLayerIdDTDigiSimLinkMuonDigiCollection_simMuonDTDigis_*_*', 'keep RPCDigiSimLinkedmDetSetVector_simMuonRPCDigis_*_*', 'keep EBSrFlagsSorted_simEcalDigis_*_*', 'keep EESrFlagsSorted_simEcalDigis_*_*', 'keep CrossingFramePlaybackInfoNew_*_*_*', 'keep PileupSummaryInfos_*_*_*', 'keep int_*_bunchSpacing_*', 'keep LHERunInfoProduct_*_*_*', 'keep LHEEventProduct_*_*_*', 'keep GenRunInfoProduct_generator_*_*', 'keep GenLumiInfoHeader_generator_*_*', 'keep GenLumiInfoProduct_generator_*_*', 'keep GenEventInfoProduct_generator_*_*', 'keep edmHepMCProduct_generatorSmeared_*_*', 'keep GenFilterInfo_*_*_*', 'keep *_genParticles_*_*', 'keep recoGenJets_*_*_*', 'keep *_genParticle_*_*', 'keep recoGenMETs_*_*_*', 'keep FEDRawDataCollection_source_*_*', 'keep FEDRawDataCollection_rawDataCollector_*_*', 'keep *_MEtoEDMConverter_*_*', 'keep *_randomEngineStateProducer_*_*', 'keep DetIdedmEDCollection_siStripDigis_*_*', 'keep DetIdedmEDCollection_siPixelDigis_*_*', 'keep *_siPixelClusters_*_*', 'keep *_siStripClusters_*_*', 'keep ClusterSummary_clusterSummaryProducer_*_*', 'keep *_dt1DRecHits_*_*', 'keep *_dt4DSegments_*_*', 'keep *_dt1DCosmicRecHits_*_*', 'keep *_dt4DCosmicSegments_*_*', 'keep *_csc2DRecHits_*_*', 'keep *_cscSegments_*_*', 'keep *_rpcRecHits_*_*', 'keep *_hbhereco_*_*', 'keep *_hbheprereco_*_*', 'keep *_hfreco_*_*', 'keep *_horeco_*_*', 'keep HBHERecHitsSorted_hbherecoMB_*_*', 'keep HORecHitsSorted_horecoMB_*_*', 'keep HFRecHitsSorted_hfrecoMB_*_*', 'keep ZDCDataFramesSorted_hcalDigis_*_*', 'keep ZDCRecHitsSorted_*_*_*', 'keep *_reducedHcalRecHits_*_*', 'keep *_castorreco_*_*', 'keep HcalUnpackerReport_castorDigis_*_*', 'keep HcalUnpackerReport_hcalDigiAlCaMB_*_*', 'keep HcalUnpackerReport_hcalDigis_*_*', 'keep *_ecalPreshowerRecHit_*_*', 'keep *_ecalRecHit_*_*', 'keep *_ecalCompactTrigPrim_*_*', 'keep *_ecalTPSkim_*_*', 'keep *_selectDigi_*_*', 'keep EcalRecHitsSorted_reducedEcalRecHitsEE_*_*', 'keep EcalRecHitsSorted_reducedEcalRecHitsEB_*_*', 'keep EcalRecHitsSorted_reducedEcalRecHitsES_*_*', 'keep *_hybridSuperClusters_*_*', 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', 'keep *_multi5x5SuperClusters_*_*', 'keep recoSuperClusters_multi5x5SuperClusters_*_*', 'keep recoSuperClusters_multi5x5SuperClustersWithPreshower_*_*', 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', 'keep recoPreshowerClusters_multi5x5SuperClustersWithPreshower_*_*', 'keep recoPreshowerClusterShapes_multi5x5PreshowerClusterShape_*_*', 'keep *_particleFlowSuperClusterECAL_*_*', 'drop recoClusterShapes_*_*_*', 'drop recoBasicClustersToOnerecoClusterShapesAssociation_*_*_*', 'drop recoBasicClusters_multi5x5BasicClusters_multi5x5BarrelBasicClusters_*', 'drop recoSuperClusters_multi5x5SuperClusters_multi5x5BarrelSuperClusters_*', 'keep *_CkfElectronCandidates_*_*', 'keep *_GsfGlobalElectronTest_*_*', 'keep *_electronMergedSeeds_*_*', 'keep recoGsfTracks_electronGsfTracks_*_*', 'keep recoGsfTrackExtras_electronGsfTracks_*_*', 'keep recoTrackExtras_electronGsfTracks_*_*', 'keep TrackingRecHitsOwned_electronGsfTracks_*_*', 'keep recoTracks_generalTracks_*_*', 'keep recoTrackExtras_generalTracks_*_*', 'keep TrackingRecHitsOwned_generalTracks_*_*', 'keep *_generalTracks_MVAValues_*', 'keep *_generalTracks_MVAVals_*', 'keep TrackingRecHitsOwned_extraFromSeeds_*_*', 'keep uints_extraFromSeeds_*_*', 'keep recoTracks_beamhaloTracks_*_*', 'keep recoTrackExtras_beamhaloTracks_*_*', 'keep TrackingRecHitsOwned_beamhaloTracks_*_*', 'keep recoTracks_conversionStepTracks_*_*', 'keep recoTrackExtras_conversionStepTracks_*_*', 'keep TrackingRecHitsOwned_conversionStepTracks_*_*', 'keep *_ctfPixelLess_*_*', 'keep *_dedxTruncated40_*_*', 'keep *_dedxHitInfo_*_*', 'keep *_dedxHarmonic2_*_*', 'keep *_trackExtrapolator_*_*', 'keep *_ak4CaloJets_*_*', 'keep *_ak4PFJets_*_*', 'keep *_ak4PFJetsCHS_*_*', 'keep *_ak8PFJetsCHS_*_*', 'keep *_ak8PFJetsCHSSoftDrop_*_*', 'keep *_cmsTopTagPFJetsCHS_*_*', 'keep *_JetPlusTrackZSPCorJetAntiKt4_*_*', 'keep *_ak4TrackJets_*_*', 'keep recoRecoChargedRefCandidates_trackRefsForJets_*_*', 'keep *_caloTowers_*_*', 'keep *_towerMaker_*_*', 'keep *_CastorTowerReco_*_*', 'keep *_ak4JetTracksAssociatorAtVertex_*_*', 'keep *_ak4JetTracksAssociatorAtVertexPF_*_*', 'keep *_ak4JetTracksAssociatorAtCaloFace_*_*', 'keep *_ak4JetTracksAssociatorExplicit_*_*', 'keep *_ak4JetExtender_*_*', 'keep *_ak4JetID_*_*', 'keep *_ak5CastorJets_*_*', 'keep *_ak5CastorJetID_*_*', 'keep *_ak7CastorJets_*_*', 'keep *_ak7CastorJetID_*_*', 'keep *_fixedGridRhoAll_*_*', 'keep *_fixedGridRhoFastjetAll_*_*', 'keep *_fixedGridRhoFastjetAllTmp_*_*', 'keep *_fixedGridRhoFastjetAllCalo_*_*', 'keep *_fixedGridRhoFastjetCentral_*_*', 'keep *_fixedGridRhoFastjetCentralCalo_*_*', 'keep *_fixedGridRhoFastjetCentralChargedPileUp_*_*', 'keep *_fixedGridRhoFastjetCentralNeutral_*_*', 'keep *_ak8PFJetsCHSSoftDropMass_*_*', 'keep recoCaloMETs_caloMet_*_*', 'keep recoCaloMETs_caloMetBE_*_*', 'keep recoCaloMETs_caloMetBEFO_*_*', 'keep recoCaloMETs_caloMetM_*_*', 'keep recoPFMETs_pfMet_*_*', 'keep recoPFMETs_pfChMet_*_*', 'keep recoPFMETs_pfMetEI_*_*', 'keep recoMuonMETCorrectionDataedmValueMap_muonMETValueMapProducer_*_*', 'keep recoHcalNoiseRBXs_hcalnoise_*_*', 'keep HcalNoiseSummary_hcalnoise_*_*', 'keep recoCSCHaloData_CSCHaloData_*_*', 'keep recoEcalHaloData_EcalHaloData_*_*', 'keep recoGlobalHaloData_GlobalHaloData_*_*', 'keep recoHcalHaloData_HcalHaloData_*_*', 'keep recoBeamHaloSummary_BeamHaloSummary_*_*', 'keep *_MuonSeed_*_*', 'keep *_ancientMuonSeed_*_*', 'keep *_displacedMuonSeeds_*_*', 'keep TrackingRecHitsOwned_globalMuons_*_*', 'keep TrackingRecHitsOwned_tevMuons_*_*', 'keep recoCaloMuons_calomuons_*_*', 'keep *_CosmicMuonSeed_*_*', 'keep recoTrackExtras_cosmicMuons_*_*', 'keep TrackingRecHitsOwned_cosmicMuons_*_*', 'keep recoTrackExtras_cosmicMuons1Leg_*_*', 'keep TrackingRecHitsOwned_cosmicMuons1Leg_*_*', 'keep recoTracks_cosmicsVetoTracks_*_*', 'keep *_SETMuonSeed_*_*', 'keep recoTracks_standAloneSETMuons_*_*', 'keep recoTrackExtras_standAloneSETMuons_*_*', 'keep TrackingRecHitsOwned_standAloneSETMuons_*_*', 'keep recoTracks_globalSETMuons_*_*', 'keep recoTrackExtras_globalSETMuons_*_*', 'keep TrackingRecHitsOwned_globalSETMuons_*_*', 'keep recoMuons_muonsWithSET_*_*', 'keep *_muons_*_*', 'keep *_particleFlow_muons_*', 'drop *_muons_muons1stStep2muonsMap_*', 'drop recoIsoDepositedmValueMap_muons_*_*', 'drop doubleedmValueMap_muons_muPFIso*_*', 'keep recoTracks_standAloneMuons_*_*', 'keep recoTrackExtras_standAloneMuons_*_*', 'keep TrackingRecHitsOwned_standAloneMuons_*_*', 'keep recoTracks_globalMuons_*_*', 'keep recoTrackExtras_globalMuons_*_*', 'keep recoTracks_tevMuons_*_*', 'keep recoTrackExtras_tevMuons_*_*', 'keep recoTracks_generalTracks_*_*', 'keep recoTracks_displacedTracks_*_*', 'keep recoTracksToOnerecoTracksAssociation_tevMuons_*_*', 'keep recoTracks_displacedGlobalMuons_*_*', 'keep recoTrackExtras_displacedGlobalMuons_*_*', 'keep TrackingRecHitsOwned_displacedGlobalMuons_*_*', 'keep recoTracks_cosmicMuons_*_*', 'keep recoMuons_muonsFromCosmics_*_*', 'keep recoTracks_cosmicMuons1Leg_*_*', 'keep recoMuons_muonsFromCosmics1Leg_*_*', 'keep recoTracks_refittedStandAloneMuons_*_*', 'keep recoTrackExtras_refittedStandAloneMuons_*_*', 'keep TrackingRecHitsOwned_refittedStandAloneMuons_*_*', 'keep recoTracks_displacedStandAloneMuons__*', 'keep recoTrackExtras_displacedStandAloneMuons_*_*', 'keep TrackingRecHitsOwned_displacedStandAloneMuons_*_*', 'keep *_muIsoDepositTk_*_*', 'keep *_muIsoDepositCalByAssociatorTowers_*_*', 'keep *_muIsoDepositCalByAssociatorHits_*_*', 'keep *_muIsoDepositJets_*_*', 'keep *_muGlobalIsoDepositCtfTk_*_*', 'keep *_muGlobalIsoDepositCalByAssociatorTowers_*_*', 'keep *_muGlobalIsoDepositCalByAssociatorHits_*_*', 'keep *_muGlobalIsoDepositJets_*_*', 'keep *_softPFMuonsTagInfos_*_*', 'keep *_softPFElectronsTagInfos_*_*', 'keep *_softPFElectronBJetTags_*_*', 'keep *_softPFMuonBJetTags_*_*', 'keep *_pfImpactParameterTagInfos_*_*', 'keep *_pfTrackCountingHighEffBJetTags_*_*', 'keep *_pfJetProbabilityBJetTags_*_*', 'keep *_pfJetBProbabilityBJetTags_*_*', 'keep *_pfSecondaryVertexTagInfos_*_*', 'keep *_pfInclusiveSecondaryVertexFinderTagInfos_*_*', 'keep *_pfSimpleSecondaryVertexHighEffBJetTags_*_*', 'keep *_pfSimpleInclusiveSecondaryVertexHighEffBJetTags_*_*', 'keep *_pfCombinedSecondaryVertexV2BJetTags_*_*', 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTags_*_*', 'keep *_pfCombinedMVAV2BJetTags_*_*', 'keep *_inclusiveCandidateSecondaryVertices_*_*', 'keep *_inclusiveCandidateSecondaryVerticesCvsL_*_*', 'keep *_pfInclusiveSecondaryVertexFinderCvsLTagInfos_*_*', 'keep *_pfCombinedCvsLJetTags_*_*', 'keep *_pfCombinedCvsBJetTags_*_*', 'keep recoRecoTauPiZeros_hpsPFTauProducer_pizeros_*', 'keep recoPFTaus_hpsPFTauProducer_*_*', 'keep *_hpsPFTauDiscriminationByDeadECALElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByDecayModeFinding_*_*', 'keep *_hpsPFTauDiscriminationByDecayModeFindingNewDMs_*_*', 'keep *_hpsPFTauDiscriminationByDecayModeFindingOldDMs_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolation_*_*', 'keep *_hpsPFTauDiscriminationByLooseChargedIsolation_*_*', 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3Hits_*_*', 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3HitsdR03_*_*', 'keep *_hpsPFTauDiscriminationByLooseElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByLooseMuonRejection3_*_*', 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3Hits_*_*', 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3HitsdR03_*_*', 'keep *_hpsPFTauDiscriminationByRawCombinedIsolationDBSumPtCorr3Hits_*_*', 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3Hits_*_*', 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3HitsdR03_*_*', 'keep *_hpsPFTauDiscriminationByTightMuonRejection3_*_*', 'keep *_hpsPFTauDiscriminationByPhotonPtSumOutsideSignalCone_*_*', 'keep *_hpsPFTauNeutralIsoPtSum_*_*', 'keep *_hpsPFTauPUcorrPtSum_*_*', 'keep *_hpsPFTauChargedIsoPtSum_*_*', 'keep *_hpsPFTauTransverseImpactParameters_*_*', 'keep *_hpsPFTauFootprintCorrection_*_*', 'keep *_hpsPFTauNeutralIsoPtSumWeight_*_*', 'keep *_hpsPFTauPhotonPtSumOutsideSignalCone_*_*', 'keep *_hpsPFTauDiscriminationByMVA6rawElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6VLooseElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6LooseElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6MediumElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6TightElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6VTightElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBoldDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBnewDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWoldDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWnewDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauChargedIsoPtSumdR03_*_*', 'keep *_hpsPFTauNeutralIsoPtSumdR03_*_*', 'keep *_hpsPFTauNeutralIsoPtSumWeightdR03_*_*', 'keep *_hpsPFTauFootprintCorrectiondR03_*_*', 'keep *_hpsPFTauPhotonPtSumOutsideSignalConedR03_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBdR03oldDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWdR03oldDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_offlinePrimaryVertices__*', 'keep *_offlinePrimaryVerticesWithBS_*_*', 'keep *_offlinePrimaryVerticesFromCosmicTracks_*_*', 'keep *_nuclearInteractionMaker_*_*', 'keep *_generalV0Candidates_*_*', 'keep *_inclusiveSecondaryVertices_*_*', 'keep recoGsfElectronCores_gsfElectronCores_*_*', 'keep recoGsfElectronCores_gedGsfElectronCores_*_*', 'keep recoGsfElectrons_gsfElectrons_*_*', 'keep recoGsfElectrons_gedGsfElectrons_*_*', 'keep recoGsfElectronCores_uncleanedOnlyGsfElectronCores_*_*', 'keep recoGsfElectrons_uncleanedOnlyGsfElectrons_*_*', 'keep floatedmValueMap_eidRobustLoose_*_*', 'keep floatedmValueMap_eidRobustTight_*_*', 'keep floatedmValueMap_eidRobustHighEnergy_*_*', 'keep floatedmValueMap_eidLoose_*_*', 'keep floatedmValueMap_eidTight_*_*', 'keep *_egmGedGsfElectronPFIsolation_*_*', 'keep *_photonEcalPFClusterIsolationProducer_*_*', 'keep *_electronEcalPFClusterIsolationProducer_*_*', 'keep *_photonHcalPFClusterIsolationProducer_*_*', 'keep *_electronHcalPFClusterIsolationProducer_*_*', 'drop *_egmGsfElectronIDs_*_*', 'drop *_egmPhotonIDs_*_*', 'keep *_gedPhotonCore_*_*', 'keep *_gedPhotons_*_*', 'keep *_particleBasedIsolation_*_*', 'keep recoPhotons_mustachePhotons_*_*', 'keep recoPhotonCores_mustachePhotonCore_*_*', 'keep recoPhotons_photons_*_*', 'keep recoPhotonCores_photonCore_*_*', 'keep recoConversions_conversions_*_*', 'keep recoConversions_mustacheConversions_*_*', 'drop *_conversions_uncleanedConversions_*', 'drop *_gedPhotonsTmp_valMapPFEgammaCandToPhoton_*', 'keep recoConversions_allConversions_*_*', 'keep recoConversions_allConversionsOldEG_*_*', 'keep recoTracks_ckfOutInTracksFromConversions_*_*', 'keep recoTracks_ckfInOutTracksFromConversions_*_*', 'keep recoTrackExtras_ckfOutInTracksFromConversions_*_*', 'keep recoTrackExtras_ckfInOutTracksFromConversions_*_*', 'keep TrackingRecHitsOwned_ckfOutInTracksFromConversions_*_*', 'keep TrackingRecHitsOwned_ckfInOutTracksFromConversions_*_*', 'keep recoConversions_uncleanedOnlyAllConversions_*_*', 'keep recoTracks_uncleanedOnlyCkfOutInTracksFromConversions_*_*', 'keep recoTracks_uncleanedOnlyCkfInOutTracksFromConversions_*_*', 'keep recoTrackExtras_uncleanedOnlyCkfOutInTracksFromConversions_*_*', 'keep recoTrackExtras_uncleanedOnlyCkfInOutTracksFromConversions_*_*', 'keep TrackingRecHitsOwned_uncleanedOnlyCkfOutInTracksFromConversions_*_*', 'keep TrackingRecHitsOwned_uncleanedOnlyCkfInOutTracksFromConversions_*_*', 'keep *_PhotonIDProd_*_*', 'keep *_PhotonIDProdGED_*_*', 'keep recoRecoEcalCandidates_hfRecoEcalCandidate_*_*', 'keep *_hfEMClusters_*_*', 'keep *_gedGsfElectronCores_*_*', 'keep *_gedGsfElectrons_*_*', 'keep *_pixelTracks_*_*', 'keep *_pixelVertices_*_*', 'drop CaloTowersSorted_towerMakerPF_*_*', 'keep recoPFRecHits_particleFlowClusterECAL_Cleaned_*', 'keep recoPFRecHits_particleFlowClusterHCAL_Cleaned_*', 'keep recoPFRecHits_particleFlowClusterHO_Cleaned_*', 'keep recoPFRecHits_particleFlowClusterHF_Cleaned_*', 'keep recoPFRecHits_particleFlowClusterPS_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitECAL_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitHBHE_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitHF_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitHO_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitPS_Cleaned_*', 'keep recoPFClusters_particleFlowClusterECAL_*_*', 'keep recoPFClusters_particleFlowClusterHCAL_*_*', 'keep recoPFClusters_particleFlowClusterHO_*_*', 'keep recoPFClusters_particleFlowClusterHF_*_*', 'keep recoPFClusters_particleFlowClusterPS_*_*', 'keep recoPFBlocks_particleFlowBlock_*_*', 'keep recoPFCandidates_particleFlowEGamma_*_*', 'keep recoCaloClusters_particleFlowEGamma_*_*', 'keep recoSuperClusters_particleFlowEGamma_*_*', 'keep recoConversions_particleFlowEGamma_*_*', 'keep recoPFCandidates_particleFlow_*_*', 'keep recoPFCandidates_particleFlowTmp_electrons_*', 'keep recoPFCandidates_particleFlowTmp_*_*', 'drop recoPFCandidates_particleFlowTmp__*', 'keep recoPFDisplacedVertexs_particleFlowDisplacedVertex_*_*', 'keep *_pfElectronTranslator_*_*', 'keep *_pfPhotonTranslator_*_*', 'keep *_particleFlow_electrons_*', 'keep *_particleFlow_photons_*', 'keep *_particleFlow_muons_*', 'keep *_trackerDrivenElectronSeeds_preid_*', 'keep *_particleFlowPtrs_*_*', 'keep *_particleFlowTmpPtrs_*_*', 'keep *_offlineBeamSpot_*_*', 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', 'keep *_l1GtRecord_*_*', 'keep *_l1GtTriggerMenuLite_*_*', 'keep *_conditionsInEdm_*_*', 'keep *_l1extraParticles_*_*', 'keep *_l1L1GtObjectMap_*_*', 'keep L1MuGMTReadoutCollection_gtDigis_*_*', 'keep L1GctEmCand*_gctDigis_*_*', 'keep L1GctJetCand*_gctDigis_*_*', 'keep L1GctEtHad*_gctDigis_*_*', 'keep L1GctEtMiss*_gctDigis_*_*', 'keep L1GctEtTotal*_gctDigis_*_*', 'keep L1GctHtMiss*_gctDigis_*_*', 'keep L1GctJetCounts*_gctDigis_*_*', 'keep L1GctHFRingEtSums*_gctDigis_*_*', 'keep L1GctHFBitCounts*_gctDigis_*_*', 'keep LumiDetails_lumiProducer_*_*', 'keep LumiSummary_lumiProducer_*_*', 'drop *_hlt*_*_*', 'keep *_hltGtStage2ObjectMap_*_*', 'keep edmTriggerResults_*_*_*', 'keep triggerTriggerEvent_*_*_*', 'keep LHERunInfoProduct_*_*_*', 'keep LHEEventProduct_*_*_*', 'keep GenRunInfoProduct_generator_*_*', 'keep GenLumiInfoHeader_generator_*_*', 'keep GenLumiInfoProduct_generator_*_*', 'keep GenEventInfoProduct_generator_*_*', 'keep edmHepMCProduct_generatorSmeared_*_*', 'keep GenFilterInfo_*_*_*', 'keep *_genParticles_*_*', 'keep recoGenMETs_*_*_*', 'keep *_ak4GenJets_*_*', 'keep *_ak8GenJets_*_*', 'keep *_ak4GenJetsNoNu_*_*', 'keep *_ak8GenJetsNoNu_*_*', 'keep *_genParticle_*_*', 'keep edmHepMCProduct_source_*_*', 'keep SimTracks_g4SimHits_*_*', 'keep SimVertexs_g4SimHits_*_*', 'keep *_allTrackMCMatch_*_*', 'keep StripDigiSimLinkedmDetSetVector_simMuonCSCDigis_*_*', 'keep DTLayerIdDTDigiSimLinkMuonDigiCollection_simMuonDTDigis_*_*', 'keep RPCDigiSimLinkedmDetSetVector_simMuonRPCDigis_*_*', 'keep PileupSummaryInfos_*_*_*', 'keep int_*_bunchSpacing_*', 'keep L1AcceptBunchCrossings_scalersRawToDigi_*_*', 'keep L1TriggerScalerss_scalersRawToDigi_*_*', 'keep Level1TriggerScalerss_scalersRawToDigi_*_*', 'keep LumiScalerss_scalersRawToDigi_*_*', 'keep BeamSpotOnlines_scalersRawToDigi_*_*', 'keep DcsStatuss_scalersRawToDigi_*_*', 'keep DcsStatuss_hltScalersRawToDigi_*_*', 'keep *_logErrorHarvester_*_*', 'keep *_pfIsolatedElectronsEI_*_*', 'keep *_pfIsolatedMuonsEI_*_*', 'keep recoPFJets_pfJetsEI_*_*', 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTagsEI_*_*', 'keep recoPFTaus_pfTausEI_*_*', 'keep recoPFTauDiscriminator_pfTausDiscriminationByDecayModeFinding_*_*', 'keep recoPFTauDiscriminator_pfTausDiscriminationByIsolation_*_*', 'keep recoPFMETs_pfMetEI_*_*', 'keep *_tcdsDigis_*_*' ) ), splitLevel = cms.untracked.int32(0) ) process.FlatVtxSmearingParameters = cms.PSet( MaxX = cms.double(0.0015), MaxY = cms.double(0.0015), MaxZ = cms.double(5.3), MinX = cms.double(-0.0015), MinY = cms.double(-0.0015), MinZ = cms.double(-5.3), TimeOffset = cms.double(0.0) ) process.GENRAWEventContent = cms.PSet( eventAutoFlushCompressedSize = cms.untracked.int32(5242880), outputCommands = cms.untracked.vstring('drop *', 'drop *', 'keep FEDRawDataCollection_rawDataCollector_*_*', 'keep FEDRawDataCollection_source_*_*', 'keep FEDRawDataCollection_rawDataCollector_*_*', 'keep FEDRawDataCollection_source_*_*', 'drop *_hlt*_*_*', 'keep *_hltGtStage2ObjectMap_*_*', 'keep FEDRawDataCollection_rawDataCollector_*_*', 'keep FEDRawDataCollection_source_*_*', 'keep edmTriggerResults_*_*_*', 'keep triggerTriggerEvent_*_*_*', 'keep LHERunInfoProduct_*_*_*', 'keep LHEEventProduct_*_*_*', 'keep GenRunInfoProduct_generator_*_*', 'keep GenLumiInfoHeader_generator_*_*', 'keep GenLumiInfoProduct_generator_*_*', 'keep GenEventInfoProduct_generator_*_*', 'keep edmHepMCProduct_generatorSmeared_*_*', 'keep GenFilterInfo_*_*_*', 'keep *_genParticles_*_*', 'keep edmHepMCProduct_source_*_*', 'keep SimTracks_g4SimHits_*_*', 'keep SimVertexs_g4SimHits_*_*', 'keep *_allTrackMCMatch_*_*', 'keep StripDigiSimLinkedmDetSetVector_simMuonCSCDigis_*_*', 'keep DTLayerIdDTDigiSimLinkMuonDigiCollection_simMuonDTDigis_*_*', 'keep RPCDigiSimLinkedmDetSetVector_simMuonRPCDigis_*_*', 'keep PileupSummaryInfos_*_*_*', 'keep int_*_bunchSpacing_*', 'keep recoGenMETs_*_*_*', 'keep recoGenJets_*_*_*', 'keep *_genParticle_*_*', 'keep *_MEtoEDMConverter_*_*', 'keep *_randomEngineStateProducer_*_*', 'keep FEDRawDataCollection_source_*_*', 'keep FEDRawDataCollection_rawDataCollector_*_*', 'keep *_logErrorHarvester_*_*'), splitLevel = cms.untracked.int32(0) ) process.GaussVtxSmearingParameters = cms.PSet( MeanX = cms.double(0.0), MeanY = cms.double(0.0), MeanZ = cms.double(0.0), SigmaX = cms.double(0.0015), SigmaY = cms.double(0.0015), SigmaZ = cms.double(5.3), TimeOffset = cms.double(0.0) ) process.GenJetParameters = cms.PSet( Active_Area_Repeats = cms.int32(5), GhostArea = cms.double(0.01), Ghost_EtaMax = cms.double(6.0), Rho_EtaMax = cms.double(4.5), doAreaFastjet = cms.bool(False), doPUOffsetCorr = cms.bool(False), doPVCorrection = cms.bool(False), doRhoFastjet = cms.bool(False), inputEMin = cms.double(0.0), inputEtMin = cms.double(0.0), jetPtMin = cms.double(3.0), jetType = cms.string('GenJet'), minSeed = cms.uint32(14327), nSigmaPU = cms.double(1.0), radiusPU = cms.double(0.5), src = cms.InputTag("genParticlesForJets"), srcPVs = cms.InputTag(""), useDeterministicSeed = cms.bool(True) ) process.GeneratorInterfaceAOD = cms.PSet( outputCommands = cms.untracked.vstring('keep LHERunInfoProduct_*_*_*', 'keep LHEEventProduct_*_*_*', 'keep GenRunInfoProduct_generator_*_*', 'keep GenLumiInfoHeader_generator_*_*', 'keep GenLumiInfoProduct_generator_*_*', 'keep GenEventInfoProduct_generator_*_*', 'keep GenFilterInfo_*_*_*', 'keep *_genParticles_*_*') ) process.GeneratorInterfaceLHE = cms.PSet( outputCommands = cms.untracked.vstring('keep LHERunInfoProduct_*_*_*', 'keep LHEEventProduct_*_*_*', 'keep *_externalLHEProducer_LHEScriptOutput_*') ) process.GeneratorInterfaceRAW = cms.PSet( outputCommands = cms.untracked.vstring('keep LHERunInfoProduct_*_*_*', 'keep LHEEventProduct_*_*_*', 'keep GenRunInfoProduct_generator_*_*', 'keep GenLumiInfoHeader_generator_*_*', 'keep GenLumiInfoProduct_generator_*_*', 'keep GenEventInfoProduct_generator_*_*', 'keep edmHepMCProduct_generatorSmeared_*_*', 'keep GenFilterInfo_*_*_*', 'keep *_genParticles_*_*') ) process.GeneratorInterfaceRECO = cms.PSet( outputCommands = cms.untracked.vstring('keep LHERunInfoProduct_*_*_*', 'keep LHEEventProduct_*_*_*', 'keep GenRunInfoProduct_generator_*_*', 'keep GenLumiInfoHeader_generator_*_*', 'keep GenLumiInfoProduct_generator_*_*', 'keep GenEventInfoProduct_generator_*_*', 'keep edmHepMCProduct_generatorSmeared_*_*', 'keep GenFilterInfo_*_*_*', 'keep *_genParticles_*_*') ) process.HLTDEBUGEventContent = cms.PSet( eventAutoFlushCompressedSize = cms.untracked.int32(5242880), outputCommands = cms.untracked.vstring( ('drop *', 'keep *_logErrorHarvester_*_*', 'drop *_hlt*_*_*', 'keep *_hltAK4CaloJetsCorrectedIDPassed_*_*', 'keep *_hltAK4CaloJetsIDPassed_*_*', 'keep *_hltAK4CaloJets_*_*', 'keep *_hltAK4PFJetsCorrected_*_*', 'keep *_hltAK4PFJetsForTaus_*_*', 'keep *_hltAK4PFJets_*_*', 'keep *_hltAlCaEtaEBRechitsToDigisLowPU_*_*', 'keep *_hltAlCaEtaEBRechitsToDigis_*_*', 'keep *_hltAlCaEtaEERechitsToDigisLowPU_*_*', 'keep *_hltAlCaEtaEERechitsToDigis_*_*', 'keep *_hltAlCaEtaRecHitsFilterEBonly_*_*', 'keep *_hltAlCaEtaRecHitsFilterEEonlyRegionalLowPU_etaEcalRecHitsES_*', 'keep *_hltAlCaEtaRecHitsFilterEEonlyRegional_etaEcalRecHitsES_*', 'keep *_hltAlCaEtaRecHitsFilterEEonly_*_*', 'keep *_hltAlCaEtaRecHitsFilter_*_*', 'keep *_hltAlCaPhiSymStream_*_*', 'keep *_hltAlCaPi0EBRechitsToDigisLowPU_*_*', 'keep *_hltAlCaPi0EBRechitsToDigis_*_*', 'keep *_hltAlCaPi0EERechitsToDigisLowPU_*_*', 'keep *_hltAlCaPi0EERechitsToDigis_*_*', 'keep *_hltAlCaPi0RecHitsFilterEBonly_*_*', 'keep *_hltAlCaPi0RecHitsFilterEEonlyRegionalLowPU_pi0EcalRecHitsES_*', 'keep *_hltAlCaPi0RecHitsFilterEEonlyRegional_pi0EcalRecHitsES_*', 'keep *_hltAlCaPi0RecHitsFilterEEonly_*_*', 'keep *_hltAlCaPi0RecHitsFilter_*_*', 'keep *_hltBLifetimeL25AssociatorbbPhiL1FastJetFastPV_*_*', 'keep *_hltBLifetimeL25BJetTagsbbPhiL1FastJetFastPV_*_*', 'keep *_hltBLifetimeL25TagInfosbbPhiL1FastJetFastPV_*_*', 'keep *_hltBLifetimeL3AssociatorbbPhiL1FastJetFastPV_*_*', 'keep *_hltBLifetimeL3BJetTagsbbPhiL1FastJetFastPV_*_*', 'keep *_hltBLifetimeL3TagInfosbbPhiL1FastJetFastPV_*_*', 'keep *_hltBLifetimeRegionalCtfWithMaterialTracksbbPhiL1FastJetFastPV_*_*', 'keep *_hltBSoftMuonDiJet110Mu5L3FilterByDR_*_*', 'keep *_hltBSoftMuonDiJet110Mu5SelL3BJetTagsByDR_*_*', 'keep *_hltBSoftMuonDiJet20Mu5L3FilterByDR_*_*', 'keep *_hltBSoftMuonDiJet20Mu5SelL3BJetTagsByDR_*_*', 'keep *_hltBSoftMuonDiJet40Mu5L3FilterByDR_*_*', 'keep *_hltBSoftMuonDiJet40Mu5SelL3BJetTagsByDR_*_*', 'keep *_hltBSoftMuonDiJet70Mu5L3FilterByDR_*_*', 'keep *_hltBSoftMuonDiJet70Mu5SelL3BJetTagsByDR_*_*', 'keep *_hltBSoftMuonMu5L3_*_*', 'keep *_hltCSVJetTagSingleTopEle27_*_*', 'keep *_hltCSVJetTagSingleTopIsoMu24_*_*', 'keep *_hltCaloJetCorrectedRegional_*_*', 'keep *_hltCaloJetCorrected_*_*', 'keep *_hltCaloJetL1FastJetCorrected_*_*', 'keep *_hltCaloStage2Digis_*_*', 'keep *_hltCleanedCorrectedIslandBarrelSuperClustersHI_*_*', 'keep *_hltCleanedHiCorrectedIslandBarrelSuperClustersHI_*_*', 'keep *_hltCombinedSecondaryVertexBJetTagsCalo_*_*', 'keep *_hltCombinedSecondaryVertexBJetTagsPF_*_*', 'keep *_hltConvPFTausTightIsoTrackFindingIsolation_*_*', 'keep *_hltConvPFTausTightIsoTrackFinding_*_*', 'keep *_hltConvPFTausTightIsoTrackPt5Isolation_*_*', 'keep *_hltConvPFTausTightIsoTrackPt5_*_*', 'keep *_hltConvPFTausTightIso_*_*', 'keep *_hltConvPFTausTrackFindingLooseIsolation_*_*', 'keep *_hltConvPFTausTrackFinding_*_*', 'keep *_hltConvPFTaus_*_*', 'keep *_hltCorrectedIslandBarrelSuperClustersHI_*_*', 'keep *_hltCorrectedIslandEndcapSuperClustersHI_*_*', 'keep *_hltCsc2DRecHits_*_*', 'keep *_hltCscSegments_*_*', 'keep *_hltDoublePFTau25TrackPt5MediumIsolationProng4L1HLTMatched_*_*', 'keep *_hltDoublePFTau25TrackPt5MediumIsolationProng4_*_*', 'keep *_hltDoublePFTau25TrackPt5MediumIsolation_*_*', 'keep *_hltDoublePFTau25TrackPt5_*_*', 'keep *_hltDoublePFTau25_*_*', 'keep *_hltDoublePFTauTightIso45Track5_*_*', 'keep *_hltDoublePFTauTightIso45Track_*_*', 'keep *_hltDt4DSegments_*_*', 'keep *_hltEcalPhiSymFilter_*_*', 'keep *_hltEcalRecHitAll_*_*', 'keep *_hltEle20CaloIdVTCaloIsoTTrkIdTTrkIsoTTrackIsoFilterL1SingleEG18orL1SingleEG20_*_*', 'keep *_hltEle20CaloIdVTTrkIdTDphiFilter_*_*', 'keep *_hltEle27WP85PixelMatchElectronsL1Seeded_*_*', 'keep *_hltFEDSelectorLumiPixels_*_*', 'keep *_hltFastPVPixelTracksMerger_*_*', 'keep *_hltFastPVPixelTracksRecover_*_*', 'keep *_hltFastPVPixelTracks_*_*', 'keep *_hltFastPVPixelVertices3D_*_*', 'keep *_hltFastPVPixelVertices_*_*', 'keep *_hltFastPixelBLifetimeL3TagInfos_*_*', 'keep *_hltFastPrimaryVertex_*_*', 'keep *_hltFilterDoubleIsoPFTau45Trk5LeadTrack5IsolationL1HLTMatched_*_*', 'keep *_hltFilterL2EtCutDoublePFIsoTau45Trk5_*_*', 'keep *_hltFilterL2EtCutSingleIsoPFTau35Trk20MET70_*_*', 'keep *_hltFilterSingleIsoPFTau35Trk20LeadTrackPt20_*_*', 'keep *_hltFilterSingleIsoPFTau35Trk20MET60LeadTrack20IsolationL1HLTMatched_*_*', 'keep *_hltFilterSingleIsoPFTau35Trk20MET70LeadTrack20IsolationL1HLTMatched_*_*', 'keep *_hltGmtStage2Digis_*_*', 'keep *_hltGoodOnlinePVs_*_*', 'keep *_hltGtStage2Digis_*_*', 'keep *_hltGtStage2ObjectMap_*_*', 'keep *_hltHICaloJetCorrected_*_*', 'keep *_hltHICaloJetIDPassed_*_*', 'keep *_hltHIGoodLooseTracks_*_*', 'keep *_hltHIPixel3PrimTracks_*_*', 'keep *_hltHISelectedVertex_*_*', 'keep *_hltHISiPixelClusters_*_*', 'keep *_hltHITIPTCorrectorHB_*_*', 'keep *_hltHITIPTCorrectorHE_*_*', 'keep *_hltHiCorrectedIslandBarrelSuperClustersHI_*_*', 'keep *_hltHiCorrectedIslandEndcapSuperClustersHI_*_*', 'keep *_hltHiIslandSuperClustersHI_*_*', 'keep *_hltIsolPixelTrackProdHB_*_*', 'keep *_hltIsolPixelTrackProdHE_*_*', 'keep *_hltIter0PFlowTrackSelectionHighPurity_*_*', 'keep *_hltIter1Merged_*_*', 'keep *_hltIter1PFlowTrackSelectionHighPurity_*_*', 'keep *_hltIter2Merged_*_*', 'keep *_hltIter2PFlowTrackSelectionHighPurity_*_*', 'keep *_hltIter3Merged_*_*', 'keep *_hltIter4Merged_*_*', 'keep *_hltIterativeCone5PileupSubtractionCaloJets_*_*', 'keep *_hltL1HLTSingleIsoPFTau35Trk20Met60JetsMatch_*_*', 'keep *_hltL1IsoElectronTrackIsol_*_*', 'keep *_hltL1NonIsoElectronTrackIsol_*_*', 'keep *_hltL1SeededRecoEcalCandidate_*_*', 'keep *_hltL1sDoubleTauJet44Eta2p17orDoubleJet64Central_*_*', 'keep *_hltL1sDoubleTauJet44erorDoubleJetC64_*_*', 'keep *_hltL1sL1EG18er_*_*', 'keep *_hltL1sL1ETM36ORETM40_*_*', 'keep *_hltL1sL1Jet52ETM30_*_*', 'keep *_hltL1sL1SingleEG12_*_*', 'keep *_hltL1sL1SingleEG15_*_*', 'keep *_hltL1sL1SingleEG18orL1SingleEG20_*_*', 'keep *_hltL1sL1SingleMu10_*_*', 'keep *_hltL1sL1SingleMu14Eta2p1_*_*', 'keep *_hltL1sMu16Eta2p1_*_*', 'keep *_hltL2MuonCandidatesNoVtx_*_*', 'keep *_hltL2MuonCandidates_*_*', 'keep *_hltL2MuonSeeds_*_*', 'keep *_hltL2Muons_*_*', 'keep *_hltL2TauJets_*_*', 'keep *_hltL3MuonCandidates_*_*', 'keep *_hltL3MuonsIOHit_*_*', 'keep *_hltL3MuonsLinksCombination_*_*', 'keep *_hltL3MuonsOIHit_*_*', 'keep *_hltL3MuonsOIState_*_*', 'keep *_hltL3Muons_*_*', 'keep *_hltL3NoFiltersNoVtxMuonCandidates_*_*', 'keep *_hltL3NoFiltersNoVtxMuons_*_*', 'keep *_hltL3SecondaryVertexTagInfos_*_*', 'keep *_hltL3TkFromL2OICombination_*_*', 'keep *_hltL3TkTracksFromL2IOHit_*_*', 'keep *_hltL3TkTracksFromL2OIHit_*_*', 'keep *_hltL3TkTracksFromL2OIState_*_*', 'keep *_hltL3TkTracksFromL2_*_*', 'keep *_hltL3TrackCandidateFromL2IOHit_*_*', 'keep *_hltL3TrackCandidateFromL2OIHit_*_*', 'keep *_hltL3TrackCandidateFromL2OIState_*_*', 'keep *_hltL3TrajSeedIOHit_*_*', 'keep *_hltL3TrajSeedOIHit_*_*', 'keep *_hltL3TrajSeedOIState_*_*', 'keep *_hltL3TrajectorySeed_*_*', 'keep *_hltL3crIsoL1sMu16Eta2p1L1f0L2f16QL3f18QL3crIsoRhoFiltered0p15_*_*', 'keep *_hltLeadingCentralJets30SingleTopEle27_*_*', 'keep *_hltLeadingCentralJets30SingleTopIsoMu24_*_*', 'keep *_hltMet_*_*', 'keep *_hltMu8Ele17CaloIdTCaloIsoVLPixelMatchFilter_*_*', 'keep *_hltMuTrackJpsiCtfTrackCands_*_*', 'keep *_hltMuTrackJpsiPixelTrackCands_*_*', 'keep *_hltMuonCSCDigis_*_*', 'keep *_hltMuonCSCDigis_MuonCSCStripDigi_*', 'keep *_hltMuonCSCDigis_MuonCSCWireDigi_*', 'keep *_hltMuonDTDigis_*_*', 'keep *_hltMuonRPCDigis_*_*', 'keep *_hltOnlineBeamSpot_*_*', 'keep *_hltOnlinePrimaryVertices_*_*', 'keep *_hltOverlapFilterEle20LooseIsoPFTau20OldVersion_*_*', 'keep *_hltOverlapFilterIsoEle20MediumIsoPFTau20_*_*', 'keep *_hltOverlapFilterIsoMu15IsoPFTau20_*_*', 'keep *_hltOverlapFilterIsoMu15MediumIsoPFTau20_*_*', 'keep *_hltOverlapFilterIsoMu15TightIsoPFTau20_*_*', 'keep *_hltOverlapFilterIsoMu18LooseIsoPFTau20_*_*', 'keep *_hltOverlapFilterIsoMu18PFTau25TrackPt5Prong4_*_*', 'keep *_hltPFJetForBtag_*_*', 'keep *_hltPFTau15TrackLooseIso_*_*', 'keep *_hltPFTau15Track_*_*', 'keep *_hltPFTau15_*_*', 'keep *_hltPFTau20IsoMuVertex_*_*', 'keep *_hltPFTau20TrackLooseIso_*_*', 'keep *_hltPFTau20Track_*_*', 'keep *_hltPFTau20_*_*', 'keep *_hltPFTau25TrackPt5MediumIsolationProng4IsoMuVertex_*_*', 'keep *_hltPFTau25TrackPt5MediumIsolationProng4_*_*', 'keep *_hltPFTau25TrackPt5MediumIsolation_*_*', 'keep *_hltPFTau25TrackPt5_*_*', 'keep *_hltPFTau25_*_*', 'keep *_hltPFTau35TrackPt20LooseIsoProng2_*_*', 'keep *_hltPFTau35TrackPt20LooseIso_*_*', 'keep *_hltPFTau35TrackPt20_*_*', 'keep *_hltPFTau35Track_*_*', 'keep *_hltPFTau35_*_*', 'keep *_hltPFTauEleVertex20_*_*', 'keep *_hltPFTauJetTracksAssociator_*_*', 'keep *_hltPFTauMediumIso20TrackMediumIso_*_*', 'keep *_hltPFTauMediumIso20Track_*_*', 'keep *_hltPFTauMediumIso20_*_*', 'keep *_hltPFTauMediumIso35Track_*_*', 'keep *_hltPFTauMediumIso35_*_*', 'keep *_hltPFTauTagInfo_*_*', 'keep *_hltPFTauTightIso20TrackTightIso_*_*', 'keep *_hltPFTauTightIso20Track_*_*', 'keep *_hltPFTauTightIso20_*_*', 'keep *_hltPFlowTrackSelectionHighPurity_*_*', 'keep *_hltParticleFlowForTaus_*_*', 'keep *_hltParticleFlow_*_*', 'keep *_hltPixelMatch3HitElectronsActivity_*_*', 'keep *_hltPixelMatch3HitElectronsL1Seeded_*_*', 'keep *_hltPixelMatchCleanElectronsL1Seeded_*_*', 'keep *_hltPixelMatchElectronsActivity_*_*', 'keep *_hltPixelMatchElectronsL1Iso_*_*', 'keep *_hltPixelMatchElectronsL1NonIso_*_*', 'keep *_hltPixelMatchElectronsL1Seeded_*_*', 'keep *_hltPixelTracks_*_*', 'keep *_hltPixelVertices3DbbPhi_*_*', 'keep *_hltPixelVertices_*_*', 'keep *_hltRecoEcalSuperClusterActivityCandidateSC4_*_*', 'keep *_hltRecoEcalSuperClusterActivityCandidateSC5_*_*', 'keep *_hltRecoEcalSuperClusterActivityCandidate_*_*', 'keep *_hltRpcRecHits_*_*', 'keep *_hltSelector4CentralJetsL1FastJet_*_*', 'keep *_hltSelector8CentralJetsL1FastJet_*_*', 'keep *_hltSelectorJets20L1FastJet_*_*', 'keep *_hltSiPixelCluster_*_*', 'keep *_hltSiPixelClusters_*_*', 'keep *_hltSiStripClusters_*_*', 'keep *_hltSiStripRawToClustersFacility_*_*', 'keep *_hltSingleMu15L3Filtered15_*_*', 'keep *_hltSingleMuIsoL1s14L3IsoFiltered15eta2p1_*_*', 'keep *_hltSingleMuIsoL3IsoFiltered15_*_*', 'keep *_hltTowerMakerForAll_*_*', 'keep *_hltTowerMakerForMuons_*_*', 'keep *_hltTriggerSummaryAOD_*_*', 'keep *_hltTriggerSummaryRAW_*_*', 'keep *_hltTrimmedPixelVertices_*_*', 'keep *_hltVerticesL3_*_*', 'keep *_hltVerticesPFSelector_*_*', 'keep DcsStatuss_hltScalersRawToDigi_*_*', 'keep FEDRawDataCollection_rawDataCollector_*_*', 'keep FEDRawDataCollection_rawDataRepacker_*_*', 'keep FEDRawDataCollection_source_*_*', 'keep FEDRawDataCollection_virginRawDataRepacker_*_*', 'keep L2MuonTrajectorySeeds_hltL2MuonSeeds_*_*', 'keep L3MuonTrajectorySeeds_hltHIL3TrajSeedOIHit_*_*', 'keep L3MuonTrajectorySeeds_hltHIL3TrajectorySeed_*_*', 'keep L3MuonTrajectorySeeds_hltL3TrajSeedOIState_*_*', 'keep LumiScalerss_hltScalersRawToDigi_*_*', 'keep SiPixelClusteredmNewDetSetVector_hltSiPixelClusters_*_*', 'keep TrackCandidates_hltHIL3TrackCandidateFromL2OIHit_*_*', 'keep TrackCandidates_hltHIL3TrackCandidateFromL2OIState_*_*', 'keep TrackingRecHitsOwned_hltL3Muons_*_*', 'keep edmTriggerResults_*_*_*', 'keep recoCaloJets_*_*_*', 'keep recoCaloMETs_*_*_*', 'keep recoCaloMETs_hltMet_*_*', 'keep recoCompositeCandidates_*_*_*', 'keep recoElectrons_*_*_*', 'keep recoIsolatedPixelTrackCandidates_*_*_*', 'keep recoMETs_*_*_*', 'keep recoPFJets_*_*_*', 'keep recoPFTaus_*_*_*', 'keep recoRecoChargedCandidates_*_*_*', 'keep recoRecoChargedCandidates_hltHIL3MuonCandidates_*_*', 'keep recoRecoChargedCandidates_hltL2MuonCandidates_*_*', 'keep recoRecoEcalCandidatesToValuefloatAssociation_hltL1IsoHLTClusterShape_*_*', 'keep recoRecoEcalCandidatesToValuefloatAssociation_hltL1IsolatedPhotonEcalIsol_*_*', 'keep recoRecoEcalCandidatesToValuefloatAssociation_hltL1IsolatedPhotonHcalForHE_*_*', 'keep recoRecoEcalCandidatesToValuefloatAssociation_hltL1IsolatedPhotonHcalIsol_*_*', 'keep recoRecoEcalCandidatesToValuefloatAssociation_hltL1NonIsoHLTClusterShape_*_*', 'keep recoRecoEcalCandidatesToValuefloatAssociation_hltL1NonIsolatedPhotonEcalIsol_*_*', 'keep recoRecoEcalCandidatesToValuefloatAssociation_hltL1NonIsolatedPhotonHcalForHE_*_*', 'keep recoRecoEcalCandidatesToValuefloatAssociation_hltL1NonIsolatedPhotonHcalIsol_*_*', 'keep recoRecoEcalCandidates_*_*_*', 'keep recoRecoEcalCandidates_hltL1IsoRecoEcalCandidate_*_*', 'keep recoRecoEcalCandidates_hltL1NonIsoRecoEcalCandidate_*_*', 'keep recoTrackExtras_hltHIL3MuonsOIHit_*_*', 'keep recoTrackExtras_hltHIL3MuonsOIState_*_*', 'keep recoTracks_hltHIL3MuonsOIHit_*_*', 'keep recoTracks_hltHIL3MuonsOIState_*_*', 'keep recoTracks_hltHIL3Muons_*_*', 'keep recoTracks_hltHIL3TkTracksFromL2OIHit_*_*', 'keep recoTracks_hltHIL3TkTracksFromL2OIState_*_*', 'keep recoTracks_hltHIL3TkTracksFromL2_*_*', 'keep triggerTriggerEventWithRefs_*_*_*', 'keep triggerTriggerEvent_*_*_*', 'keep triggerTriggerFilterObjectWithRefs_*_*_*' ) ), splitLevel = cms.untracked.int32(0) ) process.HLTDebugFEVT = cms.PSet( outputCommands = cms.vstring( ('drop *_hlt*_*_*', 'keep *_hltAK4CaloJetsCorrectedIDPassed_*_*', 'keep *_hltAK4CaloJetsIDPassed_*_*', 'keep *_hltAK4CaloJets_*_*', 'keep *_hltAK4PFJetsCorrected_*_*', 'keep *_hltAK4PFJetsForTaus_*_*', 'keep *_hltAK4PFJets_*_*', 'keep *_hltAlCaEtaEBRechitsToDigisLowPU_*_*', 'keep *_hltAlCaEtaEBRechitsToDigis_*_*', 'keep *_hltAlCaEtaEERechitsToDigisLowPU_*_*', 'keep *_hltAlCaEtaEERechitsToDigis_*_*', 'keep *_hltAlCaEtaRecHitsFilterEBonly_*_*', 'keep *_hltAlCaEtaRecHitsFilterEEonlyRegionalLowPU_etaEcalRecHitsES_*', 'keep *_hltAlCaEtaRecHitsFilterEEonlyRegional_etaEcalRecHitsES_*', 'keep *_hltAlCaEtaRecHitsFilterEEonly_*_*', 'keep *_hltAlCaEtaRecHitsFilter_*_*', 'keep *_hltAlCaPhiSymStream_*_*', 'keep *_hltAlCaPi0EBRechitsToDigisLowPU_*_*', 'keep *_hltAlCaPi0EBRechitsToDigis_*_*', 'keep *_hltAlCaPi0EERechitsToDigisLowPU_*_*', 'keep *_hltAlCaPi0EERechitsToDigis_*_*', 'keep *_hltAlCaPi0RecHitsFilterEBonly_*_*', 'keep *_hltAlCaPi0RecHitsFilterEEonlyRegionalLowPU_pi0EcalRecHitsES_*', 'keep *_hltAlCaPi0RecHitsFilterEEonlyRegional_pi0EcalRecHitsES_*', 'keep *_hltAlCaPi0RecHitsFilterEEonly_*_*', 'keep *_hltAlCaPi0RecHitsFilter_*_*', 'keep *_hltBLifetimeL25AssociatorbbPhiL1FastJetFastPV_*_*', 'keep *_hltBLifetimeL25BJetTagsbbPhiL1FastJetFastPV_*_*', 'keep *_hltBLifetimeL25TagInfosbbPhiL1FastJetFastPV_*_*', 'keep *_hltBLifetimeL3AssociatorbbPhiL1FastJetFastPV_*_*', 'keep *_hltBLifetimeL3BJetTagsbbPhiL1FastJetFastPV_*_*', 'keep *_hltBLifetimeL3TagInfosbbPhiL1FastJetFastPV_*_*', 'keep *_hltBLifetimeRegionalCtfWithMaterialTracksbbPhiL1FastJetFastPV_*_*', 'keep *_hltBSoftMuonDiJet110Mu5L3FilterByDR_*_*', 'keep *_hltBSoftMuonDiJet110Mu5SelL3BJetTagsByDR_*_*', 'keep *_hltBSoftMuonDiJet20Mu5L3FilterByDR_*_*', 'keep *_hltBSoftMuonDiJet20Mu5SelL3BJetTagsByDR_*_*', 'keep *_hltBSoftMuonDiJet40Mu5L3FilterByDR_*_*', 'keep *_hltBSoftMuonDiJet40Mu5SelL3BJetTagsByDR_*_*', 'keep *_hltBSoftMuonDiJet70Mu5L3FilterByDR_*_*', 'keep *_hltBSoftMuonDiJet70Mu5SelL3BJetTagsByDR_*_*', 'keep *_hltBSoftMuonMu5L3_*_*', 'keep *_hltCSVJetTagSingleTopEle27_*_*', 'keep *_hltCSVJetTagSingleTopIsoMu24_*_*', 'keep *_hltCaloJetCorrectedRegional_*_*', 'keep *_hltCaloJetCorrected_*_*', 'keep *_hltCaloJetL1FastJetCorrected_*_*', 'keep *_hltCaloStage2Digis_*_*', 'keep *_hltCleanedCorrectedIslandBarrelSuperClustersHI_*_*', 'keep *_hltCleanedHiCorrectedIslandBarrelSuperClustersHI_*_*', 'keep *_hltCombinedSecondaryVertexBJetTagsCalo_*_*', 'keep *_hltCombinedSecondaryVertexBJetTagsPF_*_*', 'keep *_hltConvPFTausTightIsoTrackFindingIsolation_*_*', 'keep *_hltConvPFTausTightIsoTrackFinding_*_*', 'keep *_hltConvPFTausTightIsoTrackPt5Isolation_*_*', 'keep *_hltConvPFTausTightIsoTrackPt5_*_*', 'keep *_hltConvPFTausTightIso_*_*', 'keep *_hltConvPFTausTrackFindingLooseIsolation_*_*', 'keep *_hltConvPFTausTrackFinding_*_*', 'keep *_hltConvPFTaus_*_*', 'keep *_hltCorrectedIslandBarrelSuperClustersHI_*_*', 'keep *_hltCorrectedIslandEndcapSuperClustersHI_*_*', 'keep *_hltCsc2DRecHits_*_*', 'keep *_hltCscSegments_*_*', 'keep *_hltDoublePFTau25TrackPt5MediumIsolationProng4L1HLTMatched_*_*', 'keep *_hltDoublePFTau25TrackPt5MediumIsolationProng4_*_*', 'keep *_hltDoublePFTau25TrackPt5MediumIsolation_*_*', 'keep *_hltDoublePFTau25TrackPt5_*_*', 'keep *_hltDoublePFTau25_*_*', 'keep *_hltDoublePFTauTightIso45Track5_*_*', 'keep *_hltDoublePFTauTightIso45Track_*_*', 'keep *_hltDt4DSegments_*_*', 'keep *_hltEcalPhiSymFilter_*_*', 'keep *_hltEcalRecHitAll_*_*', 'keep *_hltEle20CaloIdVTCaloIsoTTrkIdTTrkIsoTTrackIsoFilterL1SingleEG18orL1SingleEG20_*_*', 'keep *_hltEle20CaloIdVTTrkIdTDphiFilter_*_*', 'keep *_hltEle27WP85PixelMatchElectronsL1Seeded_*_*', 'keep *_hltFEDSelectorLumiPixels_*_*', 'keep *_hltFastPVPixelTracksMerger_*_*', 'keep *_hltFastPVPixelTracksRecover_*_*', 'keep *_hltFastPVPixelTracks_*_*', 'keep *_hltFastPVPixelVertices3D_*_*', 'keep *_hltFastPVPixelVertices_*_*', 'keep *_hltFastPixelBLifetimeL3TagInfos_*_*', 'keep *_hltFastPrimaryVertex_*_*', 'keep *_hltFilterDoubleIsoPFTau45Trk5LeadTrack5IsolationL1HLTMatched_*_*', 'keep *_hltFilterL2EtCutDoublePFIsoTau45Trk5_*_*', 'keep *_hltFilterL2EtCutSingleIsoPFTau35Trk20MET70_*_*', 'keep *_hltFilterSingleIsoPFTau35Trk20LeadTrackPt20_*_*', 'keep *_hltFilterSingleIsoPFTau35Trk20MET60LeadTrack20IsolationL1HLTMatched_*_*', 'keep *_hltFilterSingleIsoPFTau35Trk20MET70LeadTrack20IsolationL1HLTMatched_*_*', 'keep *_hltGmtStage2Digis_*_*', 'keep *_hltGoodOnlinePVs_*_*', 'keep *_hltGtStage2Digis_*_*', 'keep *_hltGtStage2ObjectMap_*_*', 'keep *_hltHICaloJetCorrected_*_*', 'keep *_hltHICaloJetIDPassed_*_*', 'keep *_hltHIGoodLooseTracks_*_*', 'keep *_hltHIPixel3PrimTracks_*_*', 'keep *_hltHISelectedVertex_*_*', 'keep *_hltHISiPixelClusters_*_*', 'keep *_hltHITIPTCorrectorHB_*_*', 'keep *_hltHITIPTCorrectorHE_*_*', 'keep *_hltHiCorrectedIslandBarrelSuperClustersHI_*_*', 'keep *_hltHiCorrectedIslandEndcapSuperClustersHI_*_*', 'keep *_hltHiIslandSuperClustersHI_*_*', 'keep *_hltIsolPixelTrackProdHB_*_*', 'keep *_hltIsolPixelTrackProdHE_*_*', 'keep *_hltIter0PFlowTrackSelectionHighPurity_*_*', 'keep *_hltIter1Merged_*_*', 'keep *_hltIter1PFlowTrackSelectionHighPurity_*_*', 'keep *_hltIter2Merged_*_*', 'keep *_hltIter2PFlowTrackSelectionHighPurity_*_*', 'keep *_hltIter3Merged_*_*', 'keep *_hltIter4Merged_*_*', 'keep *_hltIterativeCone5PileupSubtractionCaloJets_*_*', 'keep *_hltL1HLTSingleIsoPFTau35Trk20Met60JetsMatch_*_*', 'keep *_hltL1IsoElectronTrackIsol_*_*', 'keep *_hltL1NonIsoElectronTrackIsol_*_*', 'keep *_hltL1SeededRecoEcalCandidate_*_*', 'keep *_hltL1sDoubleTauJet44Eta2p17orDoubleJet64Central_*_*', 'keep *_hltL1sDoubleTauJet44erorDoubleJetC64_*_*', 'keep *_hltL1sL1EG18er_*_*', 'keep *_hltL1sL1ETM36ORETM40_*_*', 'keep *_hltL1sL1Jet52ETM30_*_*', 'keep *_hltL1sL1SingleEG12_*_*', 'keep *_hltL1sL1SingleEG15_*_*', 'keep *_hltL1sL1SingleEG18orL1SingleEG20_*_*', 'keep *_hltL1sL1SingleMu10_*_*', 'keep *_hltL1sL1SingleMu14Eta2p1_*_*', 'keep *_hltL1sMu16Eta2p1_*_*', 'keep *_hltL2MuonCandidatesNoVtx_*_*', 'keep *_hltL2MuonCandidates_*_*', 'keep *_hltL2MuonSeeds_*_*', 'keep *_hltL2Muons_*_*', 'keep *_hltL2TauJets_*_*', 'keep *_hltL3MuonCandidates_*_*', 'keep *_hltL3MuonsIOHit_*_*', 'keep *_hltL3MuonsLinksCombination_*_*', 'keep *_hltL3MuonsOIHit_*_*', 'keep *_hltL3MuonsOIState_*_*', 'keep *_hltL3Muons_*_*', 'keep *_hltL3NoFiltersNoVtxMuonCandidates_*_*', 'keep *_hltL3NoFiltersNoVtxMuons_*_*', 'keep *_hltL3SecondaryVertexTagInfos_*_*', 'keep *_hltL3TkFromL2OICombination_*_*', 'keep *_hltL3TkTracksFromL2IOHit_*_*', 'keep *_hltL3TkTracksFromL2OIHit_*_*', 'keep *_hltL3TkTracksFromL2OIState_*_*', 'keep *_hltL3TkTracksFromL2_*_*', 'keep *_hltL3TrackCandidateFromL2IOHit_*_*', 'keep *_hltL3TrackCandidateFromL2OIHit_*_*', 'keep *_hltL3TrackCandidateFromL2OIState_*_*', 'keep *_hltL3TrajSeedIOHit_*_*', 'keep *_hltL3TrajSeedOIHit_*_*', 'keep *_hltL3TrajSeedOIState_*_*', 'keep *_hltL3TrajectorySeed_*_*', 'keep *_hltL3crIsoL1sMu16Eta2p1L1f0L2f16QL3f18QL3crIsoRhoFiltered0p15_*_*', 'keep *_hltLeadingCentralJets30SingleTopEle27_*_*', 'keep *_hltLeadingCentralJets30SingleTopIsoMu24_*_*', 'keep *_hltMet_*_*', 'keep *_hltMu8Ele17CaloIdTCaloIsoVLPixelMatchFilter_*_*', 'keep *_hltMuTrackJpsiCtfTrackCands_*_*', 'keep *_hltMuTrackJpsiPixelTrackCands_*_*', 'keep *_hltMuonCSCDigis_*_*', 'keep *_hltMuonCSCDigis_MuonCSCStripDigi_*', 'keep *_hltMuonCSCDigis_MuonCSCWireDigi_*', 'keep *_hltMuonDTDigis_*_*', 'keep *_hltMuonRPCDigis_*_*', 'keep *_hltOnlineBeamSpot_*_*', 'keep *_hltOnlinePrimaryVertices_*_*', 'keep *_hltOverlapFilterEle20LooseIsoPFTau20OldVersion_*_*', 'keep *_hltOverlapFilterIsoEle20MediumIsoPFTau20_*_*', 'keep *_hltOverlapFilterIsoMu15IsoPFTau20_*_*', 'keep *_hltOverlapFilterIsoMu15MediumIsoPFTau20_*_*', 'keep *_hltOverlapFilterIsoMu15TightIsoPFTau20_*_*', 'keep *_hltOverlapFilterIsoMu18LooseIsoPFTau20_*_*', 'keep *_hltOverlapFilterIsoMu18PFTau25TrackPt5Prong4_*_*', 'keep *_hltPFJetForBtag_*_*', 'keep *_hltPFTau15TrackLooseIso_*_*', 'keep *_hltPFTau15Track_*_*', 'keep *_hltPFTau15_*_*', 'keep *_hltPFTau20IsoMuVertex_*_*', 'keep *_hltPFTau20TrackLooseIso_*_*', 'keep *_hltPFTau20Track_*_*', 'keep *_hltPFTau20_*_*', 'keep *_hltPFTau25TrackPt5MediumIsolationProng4IsoMuVertex_*_*', 'keep *_hltPFTau25TrackPt5MediumIsolationProng4_*_*', 'keep *_hltPFTau25TrackPt5MediumIsolation_*_*', 'keep *_hltPFTau25TrackPt5_*_*', 'keep *_hltPFTau25_*_*', 'keep *_hltPFTau35TrackPt20LooseIsoProng2_*_*', 'keep *_hltPFTau35TrackPt20LooseIso_*_*', 'keep *_hltPFTau35TrackPt20_*_*', 'keep *_hltPFTau35Track_*_*', 'keep *_hltPFTau35_*_*', 'keep *_hltPFTauEleVertex20_*_*', 'keep *_hltPFTauJetTracksAssociator_*_*', 'keep *_hltPFTauMediumIso20TrackMediumIso_*_*', 'keep *_hltPFTauMediumIso20Track_*_*', 'keep *_hltPFTauMediumIso20_*_*', 'keep *_hltPFTauMediumIso35Track_*_*', 'keep *_hltPFTauMediumIso35_*_*', 'keep *_hltPFTauTagInfo_*_*', 'keep *_hltPFTauTightIso20TrackTightIso_*_*', 'keep *_hltPFTauTightIso20Track_*_*', 'keep *_hltPFTauTightIso20_*_*', 'keep *_hltPFlowTrackSelectionHighPurity_*_*', 'keep *_hltParticleFlowForTaus_*_*', 'keep *_hltParticleFlow_*_*', 'keep *_hltPixelMatch3HitElectronsActivity_*_*', 'keep *_hltPixelMatch3HitElectronsL1Seeded_*_*', 'keep *_hltPixelMatchCleanElectronsL1Seeded_*_*', 'keep *_hltPixelMatchElectronsActivity_*_*', 'keep *_hltPixelMatchElectronsL1Iso_*_*', 'keep *_hltPixelMatchElectronsL1NonIso_*_*', 'keep *_hltPixelMatchElectronsL1Seeded_*_*', 'keep *_hltPixelTracks_*_*', 'keep *_hltPixelVertices3DbbPhi_*_*', 'keep *_hltPixelVertices_*_*', 'keep *_hltRecoEcalSuperClusterActivityCandidateSC4_*_*', 'keep *_hltRecoEcalSuperClusterActivityCandidateSC5_*_*', 'keep *_hltRecoEcalSuperClusterActivityCandidate_*_*', 'keep *_hltRpcRecHits_*_*', 'keep *_hltSelector4CentralJetsL1FastJet_*_*', 'keep *_hltSelector8CentralJetsL1FastJet_*_*', 'keep *_hltSelectorJets20L1FastJet_*_*', 'keep *_hltSiPixelCluster_*_*', 'keep *_hltSiPixelClusters_*_*', 'keep *_hltSiStripClusters_*_*', 'keep *_hltSiStripRawToClustersFacility_*_*', 'keep *_hltSingleMu15L3Filtered15_*_*', 'keep *_hltSingleMuIsoL1s14L3IsoFiltered15eta2p1_*_*', 'keep *_hltSingleMuIsoL3IsoFiltered15_*_*', 'keep *_hltTowerMakerForAll_*_*', 'keep *_hltTowerMakerForMuons_*_*', 'keep *_hltTriggerSummaryAOD_*_*', 'keep *_hltTriggerSummaryRAW_*_*', 'keep *_hltTrimmedPixelVertices_*_*', 'keep *_hltVerticesL3_*_*', 'keep *_hltVerticesPFSelector_*_*', 'keep DcsStatuss_hltScalersRawToDigi_*_*', 'keep FEDRawDataCollection_rawDataCollector_*_*', 'keep FEDRawDataCollection_rawDataRepacker_*_*', 'keep FEDRawDataCollection_source_*_*', 'keep FEDRawDataCollection_virginRawDataRepacker_*_*', 'keep L2MuonTrajectorySeeds_hltL2MuonSeeds_*_*', 'keep L3MuonTrajectorySeeds_hltHIL3TrajSeedOIHit_*_*', 'keep L3MuonTrajectorySeeds_hltHIL3TrajectorySeed_*_*', 'keep L3MuonTrajectorySeeds_hltL3TrajSeedOIState_*_*', 'keep LumiScalerss_hltScalersRawToDigi_*_*', 'keep SiPixelClusteredmNewDetSetVector_hltSiPixelClusters_*_*', 'keep TrackCandidates_hltHIL3TrackCandidateFromL2OIHit_*_*', 'keep TrackCandidates_hltHIL3TrackCandidateFromL2OIState_*_*', 'keep TrackingRecHitsOwned_hltL3Muons_*_*', 'keep edmTriggerResults_*_*_*', 'keep recoCaloJets_*_*_*', 'keep recoCaloMETs_*_*_*', 'keep recoCaloMETs_hltMet_*_*', 'keep recoCompositeCandidates_*_*_*', 'keep recoElectrons_*_*_*', 'keep recoIsolatedPixelTrackCandidates_*_*_*', 'keep recoMETs_*_*_*', 'keep recoPFJets_*_*_*', 'keep recoPFTaus_*_*_*', 'keep recoRecoChargedCandidates_*_*_*', 'keep recoRecoChargedCandidates_hltHIL3MuonCandidates_*_*', 'keep recoRecoChargedCandidates_hltL2MuonCandidates_*_*', 'keep recoRecoEcalCandidatesToValuefloatAssociation_hltL1IsoHLTClusterShape_*_*', 'keep recoRecoEcalCandidatesToValuefloatAssociation_hltL1IsolatedPhotonEcalIsol_*_*', 'keep recoRecoEcalCandidatesToValuefloatAssociation_hltL1IsolatedPhotonHcalForHE_*_*', 'keep recoRecoEcalCandidatesToValuefloatAssociation_hltL1IsolatedPhotonHcalIsol_*_*', 'keep recoRecoEcalCandidatesToValuefloatAssociation_hltL1NonIsoHLTClusterShape_*_*', 'keep recoRecoEcalCandidatesToValuefloatAssociation_hltL1NonIsolatedPhotonEcalIsol_*_*', 'keep recoRecoEcalCandidatesToValuefloatAssociation_hltL1NonIsolatedPhotonHcalForHE_*_*', 'keep recoRecoEcalCandidatesToValuefloatAssociation_hltL1NonIsolatedPhotonHcalIsol_*_*', 'keep recoRecoEcalCandidates_*_*_*', 'keep recoRecoEcalCandidates_hltL1IsoRecoEcalCandidate_*_*', 'keep recoRecoEcalCandidates_hltL1NonIsoRecoEcalCandidate_*_*', 'keep recoTrackExtras_hltHIL3MuonsOIHit_*_*', 'keep recoTrackExtras_hltHIL3MuonsOIState_*_*', 'keep recoTracks_hltHIL3MuonsOIHit_*_*', 'keep recoTracks_hltHIL3MuonsOIState_*_*', 'keep recoTracks_hltHIL3Muons_*_*', 'keep recoTracks_hltHIL3TkTracksFromL2OIHit_*_*', 'keep recoTracks_hltHIL3TkTracksFromL2OIState_*_*', 'keep recoTracks_hltHIL3TkTracksFromL2_*_*', 'keep triggerTriggerEventWithRefs_*_*_*', 'keep triggerTriggerEvent_*_*_*', 'keep triggerTriggerFilterObjectWithRefs_*_*_*' ) ) ) process.HLTDebugRAW = cms.PSet( outputCommands = cms.vstring( ('drop *_hlt*_*_*', 'keep *_hltAK4CaloJetsCorrectedIDPassed_*_*', 'keep *_hltAK4CaloJetsIDPassed_*_*', 'keep *_hltAK4CaloJets_*_*', 'keep *_hltAK4PFJetsCorrected_*_*', 'keep *_hltAK4PFJetsForTaus_*_*', 'keep *_hltAK4PFJets_*_*', 'keep *_hltAlCaEtaEBRechitsToDigisLowPU_*_*', 'keep *_hltAlCaEtaEBRechitsToDigis_*_*', 'keep *_hltAlCaEtaEERechitsToDigisLowPU_*_*', 'keep *_hltAlCaEtaEERechitsToDigis_*_*', 'keep *_hltAlCaEtaRecHitsFilterEBonly_*_*', 'keep *_hltAlCaEtaRecHitsFilterEEonlyRegionalLowPU_etaEcalRecHitsES_*', 'keep *_hltAlCaEtaRecHitsFilterEEonlyRegional_etaEcalRecHitsES_*', 'keep *_hltAlCaEtaRecHitsFilterEEonly_*_*', 'keep *_hltAlCaEtaRecHitsFilter_*_*', 'keep *_hltAlCaPhiSymStream_*_*', 'keep *_hltAlCaPi0EBRechitsToDigisLowPU_*_*', 'keep *_hltAlCaPi0EBRechitsToDigis_*_*', 'keep *_hltAlCaPi0EERechitsToDigisLowPU_*_*', 'keep *_hltAlCaPi0EERechitsToDigis_*_*', 'keep *_hltAlCaPi0RecHitsFilterEBonly_*_*', 'keep *_hltAlCaPi0RecHitsFilterEEonlyRegionalLowPU_pi0EcalRecHitsES_*', 'keep *_hltAlCaPi0RecHitsFilterEEonlyRegional_pi0EcalRecHitsES_*', 'keep *_hltAlCaPi0RecHitsFilterEEonly_*_*', 'keep *_hltAlCaPi0RecHitsFilter_*_*', 'keep *_hltBLifetimeL25AssociatorbbPhiL1FastJetFastPV_*_*', 'keep *_hltBLifetimeL25BJetTagsbbPhiL1FastJetFastPV_*_*', 'keep *_hltBLifetimeL25TagInfosbbPhiL1FastJetFastPV_*_*', 'keep *_hltBLifetimeL3AssociatorbbPhiL1FastJetFastPV_*_*', 'keep *_hltBLifetimeL3BJetTagsbbPhiL1FastJetFastPV_*_*', 'keep *_hltBLifetimeL3TagInfosbbPhiL1FastJetFastPV_*_*', 'keep *_hltBLifetimeRegionalCtfWithMaterialTracksbbPhiL1FastJetFastPV_*_*', 'keep *_hltBSoftMuonDiJet110Mu5L3FilterByDR_*_*', 'keep *_hltBSoftMuonDiJet110Mu5SelL3BJetTagsByDR_*_*', 'keep *_hltBSoftMuonDiJet20Mu5L3FilterByDR_*_*', 'keep *_hltBSoftMuonDiJet20Mu5SelL3BJetTagsByDR_*_*', 'keep *_hltBSoftMuonDiJet40Mu5L3FilterByDR_*_*', 'keep *_hltBSoftMuonDiJet40Mu5SelL3BJetTagsByDR_*_*', 'keep *_hltBSoftMuonDiJet70Mu5L3FilterByDR_*_*', 'keep *_hltBSoftMuonDiJet70Mu5SelL3BJetTagsByDR_*_*', 'keep *_hltBSoftMuonMu5L3_*_*', 'keep *_hltCSVJetTagSingleTopEle27_*_*', 'keep *_hltCSVJetTagSingleTopIsoMu24_*_*', 'keep *_hltCaloJetCorrectedRegional_*_*', 'keep *_hltCaloJetCorrected_*_*', 'keep *_hltCaloJetL1FastJetCorrected_*_*', 'keep *_hltCaloStage2Digis_*_*', 'keep *_hltCleanedCorrectedIslandBarrelSuperClustersHI_*_*', 'keep *_hltCleanedHiCorrectedIslandBarrelSuperClustersHI_*_*', 'keep *_hltCombinedSecondaryVertexBJetTagsCalo_*_*', 'keep *_hltCombinedSecondaryVertexBJetTagsPF_*_*', 'keep *_hltConvPFTausTightIsoTrackFindingIsolation_*_*', 'keep *_hltConvPFTausTightIsoTrackFinding_*_*', 'keep *_hltConvPFTausTightIsoTrackPt5Isolation_*_*', 'keep *_hltConvPFTausTightIsoTrackPt5_*_*', 'keep *_hltConvPFTausTightIso_*_*', 'keep *_hltConvPFTausTrackFindingLooseIsolation_*_*', 'keep *_hltConvPFTausTrackFinding_*_*', 'keep *_hltConvPFTaus_*_*', 'keep *_hltCorrectedIslandBarrelSuperClustersHI_*_*', 'keep *_hltCorrectedIslandEndcapSuperClustersHI_*_*', 'keep *_hltCsc2DRecHits_*_*', 'keep *_hltCscSegments_*_*', 'keep *_hltDoublePFTau25TrackPt5MediumIsolationProng4L1HLTMatched_*_*', 'keep *_hltDoublePFTau25TrackPt5MediumIsolationProng4_*_*', 'keep *_hltDoublePFTau25TrackPt5MediumIsolation_*_*', 'keep *_hltDoublePFTau25TrackPt5_*_*', 'keep *_hltDoublePFTau25_*_*', 'keep *_hltDoublePFTauTightIso45Track5_*_*', 'keep *_hltDoublePFTauTightIso45Track_*_*', 'keep *_hltDt4DSegments_*_*', 'keep *_hltEcalPhiSymFilter_*_*', 'keep *_hltEcalRecHitAll_*_*', 'keep *_hltEle20CaloIdVTCaloIsoTTrkIdTTrkIsoTTrackIsoFilterL1SingleEG18orL1SingleEG20_*_*', 'keep *_hltEle20CaloIdVTTrkIdTDphiFilter_*_*', 'keep *_hltEle27WP85PixelMatchElectronsL1Seeded_*_*', 'keep *_hltFEDSelectorLumiPixels_*_*', 'keep *_hltFastPVPixelTracksMerger_*_*', 'keep *_hltFastPVPixelTracksRecover_*_*', 'keep *_hltFastPVPixelTracks_*_*', 'keep *_hltFastPVPixelVertices3D_*_*', 'keep *_hltFastPVPixelVertices_*_*', 'keep *_hltFastPixelBLifetimeL3TagInfos_*_*', 'keep *_hltFastPrimaryVertex_*_*', 'keep *_hltFilterDoubleIsoPFTau45Trk5LeadTrack5IsolationL1HLTMatched_*_*', 'keep *_hltFilterL2EtCutDoublePFIsoTau45Trk5_*_*', 'keep *_hltFilterL2EtCutSingleIsoPFTau35Trk20MET70_*_*', 'keep *_hltFilterSingleIsoPFTau35Trk20LeadTrackPt20_*_*', 'keep *_hltFilterSingleIsoPFTau35Trk20MET60LeadTrack20IsolationL1HLTMatched_*_*', 'keep *_hltFilterSingleIsoPFTau35Trk20MET70LeadTrack20IsolationL1HLTMatched_*_*', 'keep *_hltGmtStage2Digis_*_*', 'keep *_hltGoodOnlinePVs_*_*', 'keep *_hltGtStage2Digis_*_*', 'keep *_hltGtStage2ObjectMap_*_*', 'keep *_hltHICaloJetCorrected_*_*', 'keep *_hltHICaloJetIDPassed_*_*', 'keep *_hltHIGoodLooseTracks_*_*', 'keep *_hltHIPixel3PrimTracks_*_*', 'keep *_hltHISelectedVertex_*_*', 'keep *_hltHISiPixelClusters_*_*', 'keep *_hltHITIPTCorrectorHB_*_*', 'keep *_hltHITIPTCorrectorHE_*_*', 'keep *_hltHiCorrectedIslandBarrelSuperClustersHI_*_*', 'keep *_hltHiCorrectedIslandEndcapSuperClustersHI_*_*', 'keep *_hltHiIslandSuperClustersHI_*_*', 'keep *_hltIsolPixelTrackProdHB_*_*', 'keep *_hltIsolPixelTrackProdHE_*_*', 'keep *_hltIter0PFlowTrackSelectionHighPurity_*_*', 'keep *_hltIter1Merged_*_*', 'keep *_hltIter1PFlowTrackSelectionHighPurity_*_*', 'keep *_hltIter2Merged_*_*', 'keep *_hltIter2PFlowTrackSelectionHighPurity_*_*', 'keep *_hltIter3Merged_*_*', 'keep *_hltIter4Merged_*_*', 'keep *_hltIterativeCone5PileupSubtractionCaloJets_*_*', 'keep *_hltL1HLTSingleIsoPFTau35Trk20Met60JetsMatch_*_*', 'keep *_hltL1IsoElectronTrackIsol_*_*', 'keep *_hltL1NonIsoElectronTrackIsol_*_*', 'keep *_hltL1SeededRecoEcalCandidate_*_*', 'keep *_hltL1sDoubleTauJet44Eta2p17orDoubleJet64Central_*_*', 'keep *_hltL1sDoubleTauJet44erorDoubleJetC64_*_*', 'keep *_hltL1sL1EG18er_*_*', 'keep *_hltL1sL1ETM36ORETM40_*_*', 'keep *_hltL1sL1Jet52ETM30_*_*', 'keep *_hltL1sL1SingleEG12_*_*', 'keep *_hltL1sL1SingleEG15_*_*', 'keep *_hltL1sL1SingleEG18orL1SingleEG20_*_*', 'keep *_hltL1sL1SingleMu10_*_*', 'keep *_hltL1sL1SingleMu14Eta2p1_*_*', 'keep *_hltL1sMu16Eta2p1_*_*', 'keep *_hltL2MuonCandidatesNoVtx_*_*', 'keep *_hltL2MuonCandidates_*_*', 'keep *_hltL2MuonSeeds_*_*', 'keep *_hltL2Muons_*_*', 'keep *_hltL2TauJets_*_*', 'keep *_hltL3MuonCandidates_*_*', 'keep *_hltL3MuonsIOHit_*_*', 'keep *_hltL3MuonsLinksCombination_*_*', 'keep *_hltL3MuonsOIHit_*_*', 'keep *_hltL3MuonsOIState_*_*', 'keep *_hltL3Muons_*_*', 'keep *_hltL3NoFiltersNoVtxMuonCandidates_*_*', 'keep *_hltL3NoFiltersNoVtxMuons_*_*', 'keep *_hltL3SecondaryVertexTagInfos_*_*', 'keep *_hltL3TkFromL2OICombination_*_*', 'keep *_hltL3TkTracksFromL2IOHit_*_*', 'keep *_hltL3TkTracksFromL2OIHit_*_*', 'keep *_hltL3TkTracksFromL2OIState_*_*', 'keep *_hltL3TkTracksFromL2_*_*', 'keep *_hltL3TrackCandidateFromL2IOHit_*_*', 'keep *_hltL3TrackCandidateFromL2OIHit_*_*', 'keep *_hltL3TrackCandidateFromL2OIState_*_*', 'keep *_hltL3TrajSeedIOHit_*_*', 'keep *_hltL3TrajSeedOIHit_*_*', 'keep *_hltL3TrajSeedOIState_*_*', 'keep *_hltL3TrajectorySeed_*_*', 'keep *_hltL3crIsoL1sMu16Eta2p1L1f0L2f16QL3f18QL3crIsoRhoFiltered0p15_*_*', 'keep *_hltLeadingCentralJets30SingleTopEle27_*_*', 'keep *_hltLeadingCentralJets30SingleTopIsoMu24_*_*', 'keep *_hltMet_*_*', 'keep *_hltMu8Ele17CaloIdTCaloIsoVLPixelMatchFilter_*_*', 'keep *_hltMuTrackJpsiCtfTrackCands_*_*', 'keep *_hltMuTrackJpsiPixelTrackCands_*_*', 'keep *_hltMuonCSCDigis_*_*', 'keep *_hltMuonCSCDigis_MuonCSCStripDigi_*', 'keep *_hltMuonCSCDigis_MuonCSCWireDigi_*', 'keep *_hltMuonDTDigis_*_*', 'keep *_hltMuonRPCDigis_*_*', 'keep *_hltOnlineBeamSpot_*_*', 'keep *_hltOnlinePrimaryVertices_*_*', 'keep *_hltOverlapFilterEle20LooseIsoPFTau20OldVersion_*_*', 'keep *_hltOverlapFilterIsoEle20MediumIsoPFTau20_*_*', 'keep *_hltOverlapFilterIsoMu15IsoPFTau20_*_*', 'keep *_hltOverlapFilterIsoMu15MediumIsoPFTau20_*_*', 'keep *_hltOverlapFilterIsoMu15TightIsoPFTau20_*_*', 'keep *_hltOverlapFilterIsoMu18LooseIsoPFTau20_*_*', 'keep *_hltOverlapFilterIsoMu18PFTau25TrackPt5Prong4_*_*', 'keep *_hltPFJetForBtag_*_*', 'keep *_hltPFTau15TrackLooseIso_*_*', 'keep *_hltPFTau15Track_*_*', 'keep *_hltPFTau15_*_*', 'keep *_hltPFTau20IsoMuVertex_*_*', 'keep *_hltPFTau20TrackLooseIso_*_*', 'keep *_hltPFTau20Track_*_*', 'keep *_hltPFTau20_*_*', 'keep *_hltPFTau25TrackPt5MediumIsolationProng4IsoMuVertex_*_*', 'keep *_hltPFTau25TrackPt5MediumIsolationProng4_*_*', 'keep *_hltPFTau25TrackPt5MediumIsolation_*_*', 'keep *_hltPFTau25TrackPt5_*_*', 'keep *_hltPFTau25_*_*', 'keep *_hltPFTau35TrackPt20LooseIsoProng2_*_*', 'keep *_hltPFTau35TrackPt20LooseIso_*_*', 'keep *_hltPFTau35TrackPt20_*_*', 'keep *_hltPFTau35Track_*_*', 'keep *_hltPFTau35_*_*', 'keep *_hltPFTauEleVertex20_*_*', 'keep *_hltPFTauJetTracksAssociator_*_*', 'keep *_hltPFTauMediumIso20TrackMediumIso_*_*', 'keep *_hltPFTauMediumIso20Track_*_*', 'keep *_hltPFTauMediumIso20_*_*', 'keep *_hltPFTauMediumIso35Track_*_*', 'keep *_hltPFTauMediumIso35_*_*', 'keep *_hltPFTauTagInfo_*_*', 'keep *_hltPFTauTightIso20TrackTightIso_*_*', 'keep *_hltPFTauTightIso20Track_*_*', 'keep *_hltPFTauTightIso20_*_*', 'keep *_hltPFlowTrackSelectionHighPurity_*_*', 'keep *_hltParticleFlowForTaus_*_*', 'keep *_hltParticleFlow_*_*', 'keep *_hltPixelMatch3HitElectronsActivity_*_*', 'keep *_hltPixelMatch3HitElectronsL1Seeded_*_*', 'keep *_hltPixelMatchCleanElectronsL1Seeded_*_*', 'keep *_hltPixelMatchElectronsActivity_*_*', 'keep *_hltPixelMatchElectronsL1Iso_*_*', 'keep *_hltPixelMatchElectronsL1NonIso_*_*', 'keep *_hltPixelMatchElectronsL1Seeded_*_*', 'keep *_hltPixelTracks_*_*', 'keep *_hltPixelVertices3DbbPhi_*_*', 'keep *_hltPixelVertices_*_*', 'keep *_hltRecoEcalSuperClusterActivityCandidateSC4_*_*', 'keep *_hltRecoEcalSuperClusterActivityCandidateSC5_*_*', 'keep *_hltRecoEcalSuperClusterActivityCandidate_*_*', 'keep *_hltRpcRecHits_*_*', 'keep *_hltSelector4CentralJetsL1FastJet_*_*', 'keep *_hltSelector8CentralJetsL1FastJet_*_*', 'keep *_hltSelectorJets20L1FastJet_*_*', 'keep *_hltSiPixelCluster_*_*', 'keep *_hltSiPixelClusters_*_*', 'keep *_hltSiStripClusters_*_*', 'keep *_hltSiStripRawToClustersFacility_*_*', 'keep *_hltSingleMu15L3Filtered15_*_*', 'keep *_hltSingleMuIsoL1s14L3IsoFiltered15eta2p1_*_*', 'keep *_hltSingleMuIsoL3IsoFiltered15_*_*', 'keep *_hltTowerMakerForAll_*_*', 'keep *_hltTowerMakerForMuons_*_*', 'keep *_hltTriggerSummaryAOD_*_*', 'keep *_hltTriggerSummaryRAW_*_*', 'keep *_hltTrimmedPixelVertices_*_*', 'keep *_hltVerticesL3_*_*', 'keep *_hltVerticesPFSelector_*_*', 'keep DcsStatuss_hltScalersRawToDigi_*_*', 'keep FEDRawDataCollection_rawDataCollector_*_*', 'keep FEDRawDataCollection_rawDataRepacker_*_*', 'keep FEDRawDataCollection_source_*_*', 'keep FEDRawDataCollection_virginRawDataRepacker_*_*', 'keep L2MuonTrajectorySeeds_hltL2MuonSeeds_*_*', 'keep L3MuonTrajectorySeeds_hltHIL3TrajSeedOIHit_*_*', 'keep L3MuonTrajectorySeeds_hltHIL3TrajectorySeed_*_*', 'keep L3MuonTrajectorySeeds_hltL3TrajSeedOIState_*_*', 'keep LumiScalerss_hltScalersRawToDigi_*_*', 'keep SiPixelClusteredmNewDetSetVector_hltSiPixelClusters_*_*', 'keep TrackCandidates_hltHIL3TrackCandidateFromL2OIHit_*_*', 'keep TrackCandidates_hltHIL3TrackCandidateFromL2OIState_*_*', 'keep TrackingRecHitsOwned_hltL3Muons_*_*', 'keep edmTriggerResults_*_*_*', 'keep recoCaloJets_*_*_*', 'keep recoCaloMETs_*_*_*', 'keep recoCaloMETs_hltMet_*_*', 'keep recoCompositeCandidates_*_*_*', 'keep recoElectrons_*_*_*', 'keep recoIsolatedPixelTrackCandidates_*_*_*', 'keep recoMETs_*_*_*', 'keep recoPFJets_*_*_*', 'keep recoPFTaus_*_*_*', 'keep recoRecoChargedCandidates_*_*_*', 'keep recoRecoChargedCandidates_hltHIL3MuonCandidates_*_*', 'keep recoRecoChargedCandidates_hltL2MuonCandidates_*_*', 'keep recoRecoEcalCandidatesToValuefloatAssociation_hltL1IsoHLTClusterShape_*_*', 'keep recoRecoEcalCandidatesToValuefloatAssociation_hltL1IsolatedPhotonEcalIsol_*_*', 'keep recoRecoEcalCandidatesToValuefloatAssociation_hltL1IsolatedPhotonHcalForHE_*_*', 'keep recoRecoEcalCandidatesToValuefloatAssociation_hltL1IsolatedPhotonHcalIsol_*_*', 'keep recoRecoEcalCandidatesToValuefloatAssociation_hltL1NonIsoHLTClusterShape_*_*', 'keep recoRecoEcalCandidatesToValuefloatAssociation_hltL1NonIsolatedPhotonEcalIsol_*_*', 'keep recoRecoEcalCandidatesToValuefloatAssociation_hltL1NonIsolatedPhotonHcalForHE_*_*', 'keep recoRecoEcalCandidatesToValuefloatAssociation_hltL1NonIsolatedPhotonHcalIsol_*_*', 'keep recoRecoEcalCandidates_*_*_*', 'keep recoRecoEcalCandidates_hltL1IsoRecoEcalCandidate_*_*', 'keep recoRecoEcalCandidates_hltL1NonIsoRecoEcalCandidate_*_*', 'keep recoTrackExtras_hltHIL3MuonsOIHit_*_*', 'keep recoTrackExtras_hltHIL3MuonsOIState_*_*', 'keep recoTracks_hltHIL3MuonsOIHit_*_*', 'keep recoTracks_hltHIL3MuonsOIState_*_*', 'keep recoTracks_hltHIL3Muons_*_*', 'keep recoTracks_hltHIL3TkTracksFromL2OIHit_*_*', 'keep recoTracks_hltHIL3TkTracksFromL2OIState_*_*', 'keep recoTracks_hltHIL3TkTracksFromL2_*_*', 'keep triggerTriggerEventWithRefs_*_*_*', 'keep triggerTriggerEvent_*_*_*', 'keep triggerTriggerFilterObjectWithRefs_*_*_*' ) ) ) process.HLTriggerAOD = cms.PSet( outputCommands = cms.vstring('drop *_hlt*_*_*', 'keep *_hltGtStage2ObjectMap_*_*', 'keep edmTriggerResults_*_*_*', 'keep triggerTriggerEvent_*_*_*') ) process.HLTriggerRAW = cms.PSet( outputCommands = cms.vstring('drop *_hlt*_*_*', 'keep *_hltGtStage2ObjectMap_*_*', 'keep FEDRawDataCollection_rawDataCollector_*_*', 'keep FEDRawDataCollection_source_*_*', 'keep edmTriggerResults_*_*_*', 'keep triggerTriggerEvent_*_*_*') ) process.HLTriggerRECO = cms.PSet( outputCommands = cms.vstring('drop *_hlt*_*_*', 'keep *_hltGtStage2ObjectMap_*_*', 'keep edmTriggerResults_*_*_*', 'keep triggerTriggerEvent_*_*_*') ) process.IOMCRAW = cms.PSet( outputCommands = cms.untracked.vstring('keep *_randomEngineStateProducer_*_*') ) process.L1TriggerAOD = cms.PSet( outputCommands = cms.untracked.vstring('keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', 'keep *_l1GtRecord_*_*', 'keep *_l1GtTriggerMenuLite_*_*', 'keep *_conditionsInEdm_*_*', 'keep *_l1extraParticles_*_*', 'keep *_l1L1GtObjectMap_*_*', 'keep LumiSummary_lumiProducer_*_*') ) process.L1TriggerFEVTDEBUG = cms.PSet( outputCommands = cms.untracked.vstring('keep *_simCscTriggerPrimitiveDigis_*_*', 'keep *_simDtTriggerPrimitiveDigis_*_*', 'keep *_simRpcTriggerDigis_*_*', 'keep *_simRctDigis_*_*', 'keep *_simCsctfDigis_*_*', 'keep *_simCsctfTrackDigis_*_*', 'keep *_simDttfDigis_*_*', 'keep *_simGctDigis_*_*', 'keep *_simCaloStage1Digis_*_*', 'keep *_simCaloStage1FinalDigis_*_*', 'keep *_simCaloStage2Layer1Digis_*_*', 'keep *_simCaloStage2Digis_*_*', 'keep *_simGmtDigis_*_*', 'keep *_simGtDigis_*_*', 'keep *_cscTriggerPrimitiveDigis_*_*', 'keep *_dtTriggerPrimitiveDigis_*_*', 'keep *_rpcTriggerDigis_*_*', 'keep *_rctDigis_*_*', 'keep *_csctfDigis_*_*', 'keep *_csctfTrackDigis_*_*', 'keep *_dttfDigis_*_*', 'keep *_gctDigis_*_*', 'keep *_gmtDigis_*_*', 'keep *_gtDigis_*_*', 'keep *_gtEvmDigis_*_*', 'keep *_l1GtRecord_*_*', 'keep *_l1GtTriggerMenuLite_*_*', 'keep *_conditionsInEdm_*_*', 'keep *_l1extraParticles_*_*', 'keep *_l1L1GtObjectMap_*_*', 'keep LumiDetails_lumiProducer_*_*', 'keep LumiSummary_lumiProducer_*_*') ) process.L1TriggerRAW = cms.PSet( outputCommands = cms.untracked.vstring('keep FEDRawDataCollection_rawDataCollector_*_*', 'keep FEDRawDataCollection_source_*_*') ) process.L1TriggerRAWDEBUG = cms.PSet( outputCommands = cms.untracked.vstring('keep FEDRawDataCollection_rawDataCollector_*_*', 'keep FEDRawDataCollection_source_*_*', 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', 'keep *_l1GtRecord_*_*', 'keep *_l1GtTriggerMenuLite_*_*', 'keep *_conditionsInEdm_*_*', 'keep *_l1extraParticles_*_*') ) process.L1TriggerRECO = cms.PSet( outputCommands = cms.untracked.vstring('keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', 'keep *_l1GtRecord_*_*', 'keep *_l1GtTriggerMenuLite_*_*', 'keep *_conditionsInEdm_*_*', 'keep *_l1extraParticles_*_*', 'keep *_l1L1GtObjectMap_*_*', 'keep L1MuGMTReadoutCollection_gtDigis_*_*', 'keep L1GctEmCand*_gctDigis_*_*', 'keep L1GctJetCand*_gctDigis_*_*', 'keep L1GctEtHad*_gctDigis_*_*', 'keep L1GctEtMiss*_gctDigis_*_*', 'keep L1GctEtTotal*_gctDigis_*_*', 'keep L1GctHtMiss*_gctDigis_*_*', 'keep L1GctJetCounts*_gctDigis_*_*', 'keep L1GctHFRingEtSums*_gctDigis_*_*', 'keep L1GctHFBitCounts*_gctDigis_*_*', 'keep LumiDetails_lumiProducer_*_*', 'keep LumiSummary_lumiProducer_*_*') ) process.LHEEventContent = cms.PSet( eventAutoFlushCompressedSize = cms.untracked.int32(5242880), outputCommands = cms.untracked.vstring('drop *', 'keep LHERunInfoProduct_*_*_*', 'keep LHEEventProduct_*_*_*', 'keep *_externalLHEProducer_LHEScriptOutput_*'), splitLevel = cms.untracked.int32(0) ) process.MEtoEDMConverterAOD = cms.PSet( outputCommands = cms.untracked.vstring() ) process.MEtoEDMConverterFEVT = cms.PSet( outputCommands = cms.untracked.vstring('keep *_MEtoEDMConverter_*_*') ) process.MEtoEDMConverterRECO = cms.PSet( outputCommands = cms.untracked.vstring() ) process.MINIAODEventContent = cms.PSet( compressionAlgorithm = cms.untracked.string('LZMA'), compressionLevel = cms.untracked.int32(4), eventAutoFlushCompressedSize = cms.untracked.int32(15728640), outputCommands = cms.untracked.vstring('drop *', 'drop *', 'keep *_slimmedPhotons_*_*', 'keep *_slimmedElectrons_*_*', 'keep *_slimmedMuons_*_*', 'keep *_slimmedTaus_*_*', 'keep *_slimmedTausBoosted_*_*', 'keep *_slimmedJets_*_*', 'keep *_slimmedJetsAK8_*_*', 'keep *_slimmedJetsPuppi_*_*', 'keep *_slimmedMETs_*_*', 'keep *_slimmedMETsNoHF_*_*', 'keep *_slimmedMETsPuppi_*_*', 'keep *_slimmedSecondaryVertices_*_*', 'keep *_slimmedJetsAK8PFCHSSoftDropPacked_SubJets_*', 'keep *_slimmedJetsAK8PFPuppiSoftDropPacked_SubJets_*', 'keep recoPhotonCores_reducedEgamma_*_*', 'keep recoGsfElectronCores_reducedEgamma_*_*', 'keep recoConversions_reducedEgamma_*_*', 'keep recoSuperClusters_reducedEgamma_*_*', 'keep recoCaloClusters_reducedEgamma_*_*', 'keep EcalRecHitsSorted_reducedEgamma_*_*', 'drop *_*_caloTowers_*', 'drop *_*_pfCandidates_*', 'drop *_*_genJets_*', 'keep *_offlineBeamSpot_*_*', 'keep *_offlineSlimmedPrimaryVertices_*_*', 'keep patPackedCandidates_packedPFCandidates_*_*', 'keep *_bunchSpacingProducer_*_*', 'keep double_fixedGridRhoAll__*', 'keep double_fixedGridRhoFastjetAll__*', 'keep double_fixedGridRhoFastjetAllCalo__*', 'keep double_fixedGridRhoFastjetCentral_*_*', 'keep double_fixedGridRhoFastjetCentralCalo__*', 'keep double_fixedGridRhoFastjetCentralChargedPileUp__*', 'keep double_fixedGridRhoFastjetCentralNeutral__*', 'keep *_selectedPatTrigger_*_*', 'keep patPackedTriggerPrescales_patTrigger__*', 'keep patPackedTriggerPrescales_patTrigger_l1max_*', 'keep patPackedTriggerPrescales_patTrigger_l1min_*', 'keep *_l1extraParticles_*_*', 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', 'keep *_gtStage2Digis__*', 'keep *_gmtStage2Digis_Muon_*', 'keep *_caloStage2Digis_Jet_*', 'keep *_caloStage2Digis_Tau_*', 'keep *_caloStage2Digis_EGamma_*', 'keep *_caloStage2Digis_EtSum_*', 'keep *_TriggerResults_*_HLT', 'keep *_TriggerResults_*_*', 'keep patPackedCandidates_lostTracks_*_*', 'keep HcalNoiseSummary_hcalnoise__*', 'keep recoCSCHaloData_CSCHaloData_*_*', 'keep recoBeamHaloSummary_BeamHaloSummary_*_*') ) process.MINIAODSIMEventContent = cms.PSet( compressionAlgorithm = cms.untracked.string('LZMA'), compressionLevel = cms.untracked.int32(4), eventAutoFlushCompressedSize = cms.untracked.int32(15728640), outputCommands = cms.untracked.vstring('drop *', 'drop *', 'keep *_slimmedPhotons_*_*', 'keep *_slimmedElectrons_*_*', 'keep *_slimmedMuons_*_*', 'keep *_slimmedTaus_*_*', 'keep *_slimmedTausBoosted_*_*', 'keep *_slimmedJets_*_*', 'keep *_slimmedJetsAK8_*_*', 'keep *_slimmedJetsPuppi_*_*', 'keep *_slimmedMETs_*_*', 'keep *_slimmedMETsNoHF_*_*', 'keep *_slimmedMETsPuppi_*_*', 'keep *_slimmedSecondaryVertices_*_*', 'keep *_slimmedJetsAK8PFCHSSoftDropPacked_SubJets_*', 'keep *_slimmedJetsAK8PFPuppiSoftDropPacked_SubJets_*', 'keep recoPhotonCores_reducedEgamma_*_*', 'keep recoGsfElectronCores_reducedEgamma_*_*', 'keep recoConversions_reducedEgamma_*_*', 'keep recoSuperClusters_reducedEgamma_*_*', 'keep recoCaloClusters_reducedEgamma_*_*', 'keep EcalRecHitsSorted_reducedEgamma_*_*', 'drop *_*_caloTowers_*', 'drop *_*_pfCandidates_*', 'drop *_*_genJets_*', 'keep *_offlineBeamSpot_*_*', 'keep *_offlineSlimmedPrimaryVertices_*_*', 'keep patPackedCandidates_packedPFCandidates_*_*', 'keep *_bunchSpacingProducer_*_*', 'keep double_fixedGridRhoAll__*', 'keep double_fixedGridRhoFastjetAll__*', 'keep double_fixedGridRhoFastjetAllCalo__*', 'keep double_fixedGridRhoFastjetCentral_*_*', 'keep double_fixedGridRhoFastjetCentralCalo__*', 'keep double_fixedGridRhoFastjetCentralChargedPileUp__*', 'keep double_fixedGridRhoFastjetCentralNeutral__*', 'keep *_selectedPatTrigger_*_*', 'keep patPackedTriggerPrescales_patTrigger__*', 'keep patPackedTriggerPrescales_patTrigger_l1max_*', 'keep patPackedTriggerPrescales_patTrigger_l1min_*', 'keep *_l1extraParticles_*_*', 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', 'keep *_gtStage2Digis__*', 'keep *_gmtStage2Digis_Muon_*', 'keep *_caloStage2Digis_Jet_*', 'keep *_caloStage2Digis_Tau_*', 'keep *_caloStage2Digis_EGamma_*', 'keep *_caloStage2Digis_EtSum_*', 'keep *_TriggerResults_*_HLT', 'keep *_TriggerResults_*_*', 'keep patPackedCandidates_lostTracks_*_*', 'keep HcalNoiseSummary_hcalnoise__*', 'keep recoCSCHaloData_CSCHaloData_*_*', 'keep recoBeamHaloSummary_BeamHaloSummary_*_*', 'keep *_slimmedGenJets*_*_*', 'keep patPackedGenParticles_packedGenParticles_*_*', 'keep recoGenParticles_prunedGenParticles_*_*', 'keep LHEEventProduct_*_*_*', 'keep PileupSummaryInfos_slimmedAddPileupInfo_*_*', 'keep GenFilterInfo_*_*_*', 'keep GenLumiInfoHeader_generator_*_*', 'keep GenLumiInfoProduct_*_*_*', 'keep GenEventInfoProduct_generator_*_*', 'keep LHERunInfoProduct_*_*_*', 'keep GenRunInfoProduct_*_*_*', 'keep L1GtTriggerMenuLite_l1GtTriggerMenuLite__*') ) process.MIXINGMODULEEventContent = cms.PSet( eventAutoFlushCompressedSize = cms.untracked.int32(5242880), outputCommands = cms.untracked.vstring('drop *', 'keep *_cfWriter_*_*'), splitLevel = cms.untracked.int32(0) ) process.MicroEventContent = cms.PSet( outputCommands = cms.untracked.vstring('drop *', 'keep *_slimmedPhotons_*_*', 'keep *_slimmedElectrons_*_*', 'keep *_slimmedMuons_*_*', 'keep *_slimmedTaus_*_*', 'keep *_slimmedTausBoosted_*_*', 'keep *_slimmedJets_*_*', 'keep *_slimmedJetsAK8_*_*', 'keep *_slimmedJetsPuppi_*_*', 'keep *_slimmedMETs_*_*', 'keep *_slimmedMETsNoHF_*_*', 'keep *_slimmedMETsPuppi_*_*', 'keep *_slimmedSecondaryVertices_*_*', 'keep *_slimmedJetsAK8PFCHSSoftDropPacked_SubJets_*', 'keep *_slimmedJetsAK8PFPuppiSoftDropPacked_SubJets_*', 'keep recoPhotonCores_reducedEgamma_*_*', 'keep recoGsfElectronCores_reducedEgamma_*_*', 'keep recoConversions_reducedEgamma_*_*', 'keep recoSuperClusters_reducedEgamma_*_*', 'keep recoCaloClusters_reducedEgamma_*_*', 'keep EcalRecHitsSorted_reducedEgamma_*_*', 'drop *_*_caloTowers_*', 'drop *_*_pfCandidates_*', 'drop *_*_genJets_*', 'keep *_offlineBeamSpot_*_*', 'keep *_offlineSlimmedPrimaryVertices_*_*', 'keep patPackedCandidates_packedPFCandidates_*_*', 'keep *_bunchSpacingProducer_*_*', 'keep double_fixedGridRhoAll__*', 'keep double_fixedGridRhoFastjetAll__*', 'keep double_fixedGridRhoFastjetAllCalo__*', 'keep double_fixedGridRhoFastjetCentral_*_*', 'keep double_fixedGridRhoFastjetCentralCalo__*', 'keep double_fixedGridRhoFastjetCentralChargedPileUp__*', 'keep double_fixedGridRhoFastjetCentralNeutral__*', 'keep *_selectedPatTrigger_*_*', 'keep patPackedTriggerPrescales_patTrigger__*', 'keep patPackedTriggerPrescales_patTrigger_l1max_*', 'keep patPackedTriggerPrescales_patTrigger_l1min_*', 'keep *_l1extraParticles_*_*', 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', 'keep *_gtStage2Digis__*', 'keep *_gmtStage2Digis_Muon_*', 'keep *_caloStage2Digis_Jet_*', 'keep *_caloStage2Digis_Tau_*', 'keep *_caloStage2Digis_EGamma_*', 'keep *_caloStage2Digis_EtSum_*', 'keep *_TriggerResults_*_HLT', 'keep *_TriggerResults_*_*', 'keep patPackedCandidates_lostTracks_*_*', 'keep HcalNoiseSummary_hcalnoise__*', 'keep recoCSCHaloData_CSCHaloData_*_*', 'keep recoBeamHaloSummary_BeamHaloSummary_*_*') ) process.MicroEventContentMC = cms.PSet( outputCommands = cms.untracked.vstring('drop *', 'keep *_slimmedPhotons_*_*', 'keep *_slimmedElectrons_*_*', 'keep *_slimmedMuons_*_*', 'keep *_slimmedTaus_*_*', 'keep *_slimmedTausBoosted_*_*', 'keep *_slimmedJets_*_*', 'keep *_slimmedJetsAK8_*_*', 'keep *_slimmedJetsPuppi_*_*', 'keep *_slimmedMETs_*_*', 'keep *_slimmedMETsNoHF_*_*', 'keep *_slimmedMETsPuppi_*_*', 'keep *_slimmedSecondaryVertices_*_*', 'keep *_slimmedJetsAK8PFCHSSoftDropPacked_SubJets_*', 'keep *_slimmedJetsAK8PFPuppiSoftDropPacked_SubJets_*', 'keep recoPhotonCores_reducedEgamma_*_*', 'keep recoGsfElectronCores_reducedEgamma_*_*', 'keep recoConversions_reducedEgamma_*_*', 'keep recoSuperClusters_reducedEgamma_*_*', 'keep recoCaloClusters_reducedEgamma_*_*', 'keep EcalRecHitsSorted_reducedEgamma_*_*', 'drop *_*_caloTowers_*', 'drop *_*_pfCandidates_*', 'drop *_*_genJets_*', 'keep *_offlineBeamSpot_*_*', 'keep *_offlineSlimmedPrimaryVertices_*_*', 'keep patPackedCandidates_packedPFCandidates_*_*', 'keep *_bunchSpacingProducer_*_*', 'keep double_fixedGridRhoAll__*', 'keep double_fixedGridRhoFastjetAll__*', 'keep double_fixedGridRhoFastjetAllCalo__*', 'keep double_fixedGridRhoFastjetCentral_*_*', 'keep double_fixedGridRhoFastjetCentralCalo__*', 'keep double_fixedGridRhoFastjetCentralChargedPileUp__*', 'keep double_fixedGridRhoFastjetCentralNeutral__*', 'keep *_selectedPatTrigger_*_*', 'keep patPackedTriggerPrescales_patTrigger__*', 'keep patPackedTriggerPrescales_patTrigger_l1max_*', 'keep patPackedTriggerPrescales_patTrigger_l1min_*', 'keep *_l1extraParticles_*_*', 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', 'keep *_gtStage2Digis__*', 'keep *_gmtStage2Digis_Muon_*', 'keep *_caloStage2Digis_Jet_*', 'keep *_caloStage2Digis_Tau_*', 'keep *_caloStage2Digis_EGamma_*', 'keep *_caloStage2Digis_EtSum_*', 'keep *_TriggerResults_*_HLT', 'keep *_TriggerResults_*_*', 'keep patPackedCandidates_lostTracks_*_*', 'keep HcalNoiseSummary_hcalnoise__*', 'keep recoCSCHaloData_CSCHaloData_*_*', 'keep recoBeamHaloSummary_BeamHaloSummary_*_*', 'keep *_slimmedGenJets*_*_*', 'keep patPackedGenParticles_packedGenParticles_*_*', 'keep recoGenParticles_prunedGenParticles_*_*', 'keep LHEEventProduct_*_*_*', 'keep PileupSummaryInfos_slimmedAddPileupInfo_*_*', 'keep GenFilterInfo_*_*_*', 'keep GenLumiInfoHeader_generator_*_*', 'keep GenLumiInfoProduct_*_*_*', 'keep GenEventInfoProduct_generator_*_*', 'keep LHERunInfoProduct_*_*_*', 'keep GenRunInfoProduct_*_*_*', 'keep L1GtTriggerMenuLite_l1GtTriggerMenuLite__*') ) process.Nominal5TeVpp2015VtxSmearingParameters = cms.PSet( Alpha = cms.double(0.0), BetaStar = cms.double(400.0), Emittance = cms.double(1e-07), Phi = cms.double(0.0), SigmaZ = cms.double(5.5), TimeOffset = cms.double(0.0), X0 = cms.double(0.1044), Y0 = cms.double(0.1676), Z0 = cms.double(0.6707) ) process.Nominal7TeVCollisionVtxSmearingParameters = cms.PSet( Alpha = cms.double(0.0), BetaStar = cms.double(200.0), Emittance = cms.double(2e-07), Phi = cms.double(0.0), SigmaZ = cms.double(4.2), TimeOffset = cms.double(0.0), X0 = cms.double(0.0322), Y0 = cms.double(0.0), Z0 = cms.double(0.0) ) process.NominalCollision1VtxSmearingParameters = cms.PSet( Alpha = cms.double(0.0), BetaStar = cms.double(55.0), Emittance = cms.double(1.006e-07), Phi = cms.double(0.0), SigmaZ = cms.double(5.3), TimeOffset = cms.double(0.0), X0 = cms.double(0.05), Y0 = cms.double(0.025), Z0 = cms.double(0.0) ) process.NominalCollision2015VtxSmearingParameters = cms.PSet( Alpha = cms.double(0.0), BetaStar = cms.double(65.0), Emittance = cms.double(5.411e-08), Phi = cms.double(0.0), SigmaZ = cms.double(5.3), TimeOffset = cms.double(0.0), X0 = cms.double(0.0322), Y0 = cms.double(0.0), Z0 = cms.double(0.0) ) process.NominalCollision2VtxSmearingParameters = cms.PSet( Alpha = cms.double(0.0), BetaStar = cms.double(55.0), Emittance = cms.double(1.006e-07), Phi = cms.double(0.000142), SigmaZ = cms.double(5.3), TimeOffset = cms.double(0.0), X0 = cms.double(0.05), Y0 = cms.double(0.025), Z0 = cms.double(0.0) ) process.NominalCollision3VtxSmearingParameters = cms.PSet( Alpha = cms.double(0.0), BetaStar = cms.double(55.0), Emittance = cms.double(1.006e-07), Phi = cms.double(0.0), SigmaZ = cms.double(5.3), TimeOffset = cms.double(0.0), X0 = cms.double(0.1), Y0 = cms.double(0.025), Z0 = cms.double(0.0) ) process.NominalCollision4VtxSmearingParameters = cms.PSet( Alpha = cms.double(0.0), BetaStar = cms.double(55.0), Emittance = cms.double(1.006e-07), Phi = cms.double(0.0), SigmaZ = cms.double(5.3), TimeOffset = cms.double(0.0), X0 = cms.double(0.2), Y0 = cms.double(0.025), Z0 = cms.double(0.0) ) process.NominalCollisionVtxSmearingParameters = cms.PSet( Alpha = cms.double(0.0), BetaStar = cms.double(55.0), Emittance = cms.double(1.006e-07), Phi = cms.double(0.000142), SigmaZ = cms.double(5.3), TimeOffset = cms.double(0.0), X0 = cms.double(0.05), Y0 = cms.double(0.0), Z0 = cms.double(0.0) ) process.NominalHICollision2015VtxSmearingParameters = cms.PSet( Alpha = cms.double(0.0), BetaStar = cms.double(60.0), Emittance = cms.double(1.7e-07), Phi = cms.double(0.0), SigmaZ = cms.double(7.06), TimeOffset = cms.double(0.0), X0 = cms.double(0.0322), Y0 = cms.double(0.0), Z0 = cms.double(0.0) ) process.PREMIXEventContent = cms.PSet( eventAutoFlushCompressedSize = cms.untracked.int32(5242880), outputCommands = cms.untracked.vstring('drop *', 'drop *', 'keep FEDRawDataCollection_rawDataCollector_*_*', 'keep FEDRawDataCollection_source_*_*', 'keep FEDRawDataCollection_rawDataCollector_*_*', 'keep FEDRawDataCollection_source_*_*', 'drop *_hlt*_*_*', 'keep *_hltGtStage2ObjectMap_*_*', 'keep FEDRawDataCollection_rawDataCollector_*_*', 'keep FEDRawDataCollection_source_*_*', 'keep edmTriggerResults_*_*_*', 'keep triggerTriggerEvent_*_*_*', 'keep LHERunInfoProduct_*_*_*', 'keep LHEEventProduct_*_*_*', 'keep GenRunInfoProduct_generator_*_*', 'keep GenLumiInfoHeader_generator_*_*', 'keep GenLumiInfoProduct_generator_*_*', 'keep GenEventInfoProduct_generator_*_*', 'keep edmHepMCProduct_generatorSmeared_*_*', 'keep GenFilterInfo_*_*_*', 'keep *_genParticles_*_*', 'keep edmHepMCProduct_source_*_*', 'keep SimTracks_g4SimHits_*_*', 'keep SimVertexs_g4SimHits_*_*', 'keep *_allTrackMCMatch_*_*', 'keep CrossingFramePlaybackInfoNew_*_*_*', 'keep PileupSummaryInfos_*_*_*', 'keep int_*_bunchSpacing_*', 'keep recoGenMETs_*_*_*', 'keep recoGenJets_*_*_*', 'keep *_genParticle_*_*', 'keep *_MEtoEDMConverter_*_*', 'keep *_randomEngineStateProducer_*_*', 'keep FEDRawDataCollection_source_*_*', 'keep FEDRawDataCollection_rawDataCollector_*_*', 'keep *_logErrorHarvester_*_*', 'keep RPCDetIdRPCDigiMuonDigiCollection_simMuonRPCDigis_*_*', 'keep *_mix_MergedTrackTruth_*', 'keep StripDigiSimLinkedmDetSetVector_simSiStripDigis_*_*', 'keep PixelDigiSimLinkedmDetSetVector_simSiPixelDigis_*_*', 'keep StripDigiSimLinkedmDetSetVector_simMuonCSCDigis_*_*', 'keep RPCDigiSimLinkedmDetSetVector_*_*_*', 'keep DTLayerIdDTDigiSimLinkMuonDigiCollection_*_*_*'), splitLevel = cms.untracked.int32(0) ) process.PREMIXRAWEventContent = cms.PSet( eventAutoFlushCompressedSize = cms.untracked.int32(5242880), outputCommands = cms.untracked.vstring('drop *', 'drop *', 'drop *', 'keep FEDRawDataCollection_rawDataCollector_*_*', 'keep FEDRawDataCollection_source_*_*', 'keep FEDRawDataCollection_rawDataCollector_*_*', 'keep FEDRawDataCollection_source_*_*', 'drop *_hlt*_*_*', 'keep *_hltGtStage2ObjectMap_*_*', 'keep FEDRawDataCollection_rawDataCollector_*_*', 'keep FEDRawDataCollection_source_*_*', 'keep edmTriggerResults_*_*_*', 'keep triggerTriggerEvent_*_*_*', 'keep *_g4SimHits_*_*', 'keep edmHepMCProduct_source_*_*', 'keep *_allTrackMCMatch_*_*', 'keep StripDigiSimLinkedmDetSetVector_simMuonCSCDigis_*_*', 'keep CSCDetIdCSCComparatorDigiMuonDigiCollection_simMuonCSCDigis_*_*', 'keep DTLayerIdDTDigiSimLinkMuonDigiCollection_simMuonDTDigis_*_*', 'keep RPCDigiSimLinkedmDetSetVector_simMuonRPCDigis_*_*', 'keep EBSrFlagsSorted_simEcalDigis_*_*', 'keep EESrFlagsSorted_simEcalDigis_*_*', 'keep CrossingFramePlaybackInfoNew_*_*_*', 'keep PileupSummaryInfos_*_*_*', 'keep int_*_bunchSpacing_*', 'keep LHERunInfoProduct_*_*_*', 'keep LHEEventProduct_*_*_*', 'keep GenRunInfoProduct_generator_*_*', 'keep GenLumiInfoHeader_generator_*_*', 'keep GenLumiInfoProduct_generator_*_*', 'keep GenEventInfoProduct_generator_*_*', 'keep edmHepMCProduct_generatorSmeared_*_*', 'keep GenFilterInfo_*_*_*', 'keep *_genParticles_*_*', 'keep recoGenJets_*_*_*', 'keep *_genParticle_*_*', 'keep recoGenMETs_*_*_*', 'keep FEDRawDataCollection_source_*_*', 'keep FEDRawDataCollection_rawDataCollector_*_*', 'keep *_MEtoEDMConverter_*_*', 'keep *_randomEngineStateProducer_*_*', 'keep *_logErrorHarvester_*_*', 'keep CrossingFramePlaybackInfoNew_*_*_*', 'drop CrossingFramePlaybackInfoNew_mix_*_*', 'keep *_*_MergedTrackTruth_*', 'keep *_*_StripDigiSimLink_*', 'keep *_*_PixelDigiSimLink_*', 'keep *_*_MuonCSCStripDigiSimLinks_*', 'keep *_*_MuonCSCWireDigiSimLinks_*', 'keep *_*_RPCDigiSimLink_*', 'keep DTLayerIdDTDigiSimLinkMuonDigiCollection_*_*_*'), splitLevel = cms.untracked.int32(0) ) process.RAWAODSIMEventContent = cms.PSet( compressionAlgorithm = cms.untracked.string('LZMA'), compressionLevel = cms.untracked.int32(4), eventAutoFlushCompressedSize = cms.untracked.int32(15728640), outputCommands = cms.untracked.vstring( ('drop *', 'drop *', 'drop *', 'keep ClusterSummary_clusterSummaryProducer_*_*', 'keep *_dt4DSegments_*_*', 'keep *_dt4DCosmicSegments_*_*', 'keep *_cscSegments_*_*', 'keep *_rpcRecHits_*_*', 'keep *_castorreco_*_*', 'keep *_reducedHcalRecHits_*_*', 'keep HcalUnpackerReport_castorDigis_*_*', 'keep HcalUnpackerReport_hcalDigiAlCaMB_*_*', 'keep HcalUnpackerReport_hcalDigis_*_*', 'keep *_selectDigi_*_*', 'keep EcalRecHitsSorted_reducedEcalRecHitsEB_*_*', 'keep EcalRecHitsSorted_reducedEcalRecHitsEE_*_*', 'keep EcalRecHitsSorted_reducedEcalRecHitsES_*_*', 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', 'keep recoCaloClusters_hybridSuperClusters_*_*', 'keep recoSuperClusters_hybridSuperClusters_uncleanOnlyHybridSuperClusters_*', 'keep recoCaloClusters_multi5x5SuperClusters_multi5x5EndcapBasicClusters_*', 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', 'keep recoPreshowerClusters_multi5x5SuperClustersWithPreshower_*_*', 'keep recoPreshowerClusterShapes_multi5x5PreshowerClusterShape_*_*', 'keep recoSuperClusters_particleFlowSuperClusterECAL_*_*', 'keep recoCaloClusters_particleFlowSuperClusterECAL_*_*', 'keep recoTracks_GsfGlobalElectronTest_*_*', 'keep recoGsfTracks_electronGsfTracks_*_*', 'keep recoTracks_generalTracks_*_*', 'keep recoTracks_conversionStepTracks_*_*', 'keep recoTracks_beamhaloTracks_*_*', 'keep recoTracks_ctfPixelLess_*_*', 'keep *_dedxHarmonic2_*_*', 'keep *_dedxHitInfo_*_*', 'keep *_trackExtrapolator_*_*', 'keep *_generalTracks_MVAValues_*', 'keep *_generalTracks_MVAVals_*', 'keep *_ak4CaloJets_*_*', 'keep *_ak4PFJetsCHS_*_*', 'keep *_ak8PFJetsCHS_*_*', 'keep *_ak8PFJetsCHSSoftDrop_*_*', 'keep *_cmsTopTagPFJetsCHS_*_*', 'keep *_ak4PFJets_*_*', 'keep *_JetPlusTrackZSPCorJetAntiKt4_*_*', 'keep *_ak4TrackJets_*_*', 'keep recoRecoChargedRefCandidates_trackRefsForJets_*_*', 'keep *_caloTowers_*_*', 'keep *_CastorTowerReco_*_*', 'keep *_ak4JetTracksAssociatorAtVertex_*_*', 'keep *_ak4JetTracksAssociatorAtVertexPF_*_*', 'keep *_ak4JetTracksAssociatorExplicit_*_*', 'keep *_ak4JetExtender_*_*', 'keep *_ak4JetID_*_*', 'keep *_ak5CastorJets_*_*', 'keep *_ak5CastorJetID_*_*', 'keep *_ak7CastorJets_*_*', 'keep *_ak7CastorJetID_*_*', 'keep *_fixedGridRhoAll_*_*', 'keep *_fixedGridRhoFastjetAll_*_*', 'keep *_fixedGridRhoFastjetAllTmp_*_*', 'keep *_fixedGridRhoFastjetCentral_*_*', 'keep *_fixedGridRhoFastjetAllCalo_*_*', 'keep *_fixedGridRhoFastjetCentralCalo_*_*', 'keep *_fixedGridRhoFastjetCentralChargedPileUp_*_*', 'keep *_fixedGridRhoFastjetCentralNeutral_*_*', 'drop doubles_*Jets_rhos_*', 'drop doubles_*Jets_sigmas_*', 'keep *_ak8PFJetsCHSSoftDropMass_*_*', 'keep recoCaloMETs_caloMet_*_*', 'keep recoCaloMETs_caloMetBE_*_*', 'keep recoCaloMETs_caloMetBEFO_*_*', 'keep recoCaloMETs_caloMetM_*_*', 'keep recoPFMETs_pfMet_*_*', 'keep recoPFMETs_pfChMet_*_*', 'keep recoPFMETs_pfMetEI_*_*', 'keep recoMuonMETCorrectionDataedmValueMap_muonMETValueMapProducer_*_*', 'drop recoHcalNoiseRBXs_*_*_*', 'keep HcalNoiseSummary_hcalnoise_*_*', 'keep recoGlobalHaloData_GlobalHaloData_*_*', 'keep recoCSCHaloData_CSCHaloData_*_*', 'keep recoBeamHaloSummary_BeamHaloSummary_*_*', 'keep *_muons_*_*', 'keep *_particleFlow_muons_*', 'drop *_muons_muons1stStep2muonsMap_*', 'drop recoIsoDepositedmValueMap_muons_*_*', 'drop doubleedmValueMap_muons_muPFIso*_*', 'keep recoTracks_standAloneMuons_*_*', 'keep recoTrackExtras_standAloneMuons_*_*', 'keep TrackingRecHitsOwned_standAloneMuons_*_*', 'keep recoTracks_globalMuons_*_*', 'keep recoTrackExtras_globalMuons_*_*', 'keep recoTracks_tevMuons_*_*', 'keep recoTrackExtras_tevMuons_*_*', 'keep recoTracks_generalTracks_*_*', 'keep recoTracks_displacedTracks_*_*', 'keep recoTracksToOnerecoTracksAssociation_tevMuons_*_*', 'keep recoTracks_displacedGlobalMuons_*_*', 'keep recoTrackExtras_displacedGlobalMuons_*_*', 'keep TrackingRecHitsOwned_displacedGlobalMuons_*_*', 'keep recoTracks_cosmicMuons_*_*', 'keep recoMuons_muonsFromCosmics_*_*', 'keep recoTracks_cosmicMuons1Leg_*_*', 'keep recoMuons_muonsFromCosmics1Leg_*_*', 'keep recoTracks_refittedStandAloneMuons_*_*', 'keep recoTrackExtras_refittedStandAloneMuons_*_*', 'keep TrackingRecHitsOwned_refittedStandAloneMuons_*_*', 'keep recoTracks_displacedStandAloneMuons__*', 'keep recoTrackExtras_displacedStandAloneMuons_*_*', 'keep TrackingRecHitsOwned_displacedStandAloneMuons_*_*', 'keep *_softPFElectronBJetTags_*_*', 'keep *_softPFMuonBJetTags_*_*', 'keep *_pfTrackCountingHighEffBJetTags_*_*', 'keep *_pfJetProbabilityBJetTags_*_*', 'keep *_pfJetBProbabilityBJetTags_*_*', 'keep *_pfSimpleSecondaryVertexHighEffBJetTags_*_*', 'keep *_pfSimpleInclusiveSecondaryVertexHighEffBJetTags_*_*', 'keep *_pfCombinedSecondaryVertexV2BJetTags_*_*', 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTags_*_*', 'keep *_pfCombinedMVAV2BJetTags_*_*', 'keep *_inclusiveCandidateSecondaryVertices_*_*', 'keep *_inclusiveCandidateSecondaryVerticesCvsL_*_*', 'keep *_pfCombinedCvsLJetTags_*_*', 'keep *_pfCombinedCvsBJetTags_*_*', 'keep recoRecoTauPiZeros_hpsPFTauProducer_pizeros_*', 'keep recoPFTaus_hpsPFTauProducer_*_*', 'keep *_hpsPFTauDiscriminationByDeadECALElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByDecayModeFinding_*_*', 'keep *_hpsPFTauDiscriminationByDecayModeFindingNewDMs_*_*', 'keep *_hpsPFTauDiscriminationByDecayModeFindingOldDMs_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolation_*_*', 'keep *_hpsPFTauDiscriminationByLooseChargedIsolation_*_*', 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3Hits_*_*', 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3HitsdR03_*_*', 'keep *_hpsPFTauDiscriminationByLooseMuonRejection3_*_*', 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3Hits_*_*', 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3HitsdR03_*_*', 'keep *_hpsPFTauDiscriminationByRawCombinedIsolationDBSumPtCorr3Hits_*_*', 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3Hits_*_*', 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3HitsdR03_*_*', 'keep *_hpsPFTauDiscriminationByTightMuonRejection3_*_*', 'keep *_hpsPFTauDiscriminationByPhotonPtSumOutsideSignalCone_*_*', 'keep *_hpsPFTauNeutralIsoPtSum_*_*', 'keep *_hpsPFTauPUcorrPtSum_*_*', 'keep *_hpsPFTauChargedIsoPtSum_*_*', 'keep *_hpsPFTauTransverseImpactParameters_*_*', 'keep *_hpsPFTauFootprintCorrection_*_*', 'keep *_hpsPFTauNeutralIsoPtSumWeight_*_*', 'keep *_hpsPFTauPhotonPtSumOutsideSignalCone_*_*', 'keep *_hpsPFTauDiscriminationByMVA6rawElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6VLooseElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6LooseElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6MediumElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6TightElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6VTightElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBoldDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBnewDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWoldDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWnewDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauChargedIsoPtSumdR03_*_*', 'keep *_hpsPFTauNeutralIsoPtSumdR03_*_*', 'keep *_hpsPFTauNeutralIsoPtSumWeightdR03_*_*', 'keep *_hpsPFTauFootprintCorrectiondR03_*_*', 'keep *_hpsPFTauPhotonPtSumOutsideSignalConedR03_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBdR03oldDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWdR03oldDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_offlinePrimaryVertices__*', 'keep *_offlinePrimaryVerticesWithBS_*_*', 'keep *_offlinePrimaryVerticesFromCosmicTracks_*_*', 'keep *_nuclearInteractionMaker_*_*', 'keep *_generalV0Candidates_*_*', 'keep *_inclusiveSecondaryVertices_*_*', 'keep recoGsfElectronCores_gsfElectronCores_*_*', 'keep recoGsfElectronCores_gedGsfElectronCores_*_*', 'keep recoGsfElectrons_gsfElectrons_*_*', 'keep recoGsfElectrons_gedGsfElectrons_*_*', 'keep recoGsfElectronCores_uncleanedOnlyGsfElectronCores_*_*', 'keep recoGsfElectrons_uncleanedOnlyGsfElectrons_*_*', 'keep floatedmValueMap_eidRobustLoose_*_*', 'keep floatedmValueMap_eidRobustTight_*_*', 'keep floatedmValueMap_eidRobustHighEnergy_*_*', 'keep floatedmValueMap_eidLoose_*_*', 'keep floatedmValueMap_eidTight_*_*', 'keep *_egmGedGsfElectronPFIsolation_*_*', 'keep *_photonEcalPFClusterIsolationProducer_*_*', 'keep *_electronEcalPFClusterIsolationProducer_*_*', 'keep *_photonHcalPFClusterIsolationProducer_*_*', 'keep *_electronHcalPFClusterIsolationProducer_*_*', 'drop *_egmGsfElectronIDs_*_*', 'drop *_egmPhotonIDs_*_*', 'keep recoPhotonCores_gedPhotonCore_*_*', 'keep recoPhotons_gedPhotons_*_*', 'keep *_particleBasedIsolation_*_*', 'drop *_gedPhotons_valMapPFEgammaCandToPhoton_*', 'keep recoPhotonCores_photonCore_*_*', 'keep recoPhotons_photons_*_*', 'keep recoConversions_conversions_*_*', 'keep recoConversions_mustacheConversions_*_*', 'drop *_conversions_uncleanedConversions_*', 'keep recoConversions_allConversions_*_*', 'keep recoConversions_allConversionsOldEG_*_*', 'keep recoTracks_ckfOutInTracksFromConversions_*_*', 'keep recoTracks_ckfInOutTracksFromConversions_*_*', 'keep recoConversions_uncleanedOnlyAllConversions_*_*', 'keep recoTracks_uncleanedOnlyCkfOutInTracksFromConversions_*_*', 'keep recoTracks_uncleanedOnlyCkfInOutTracksFromConversions_*_*', 'keep *_PhotonIDProd_*_*', 'keep *_PhotonIDProdGED_*_*', 'keep *_hfRecoEcalCandidate_*_*', 'keep recoRecoEcalCandidates_hfRecoEcalCandidate_*_*', 'keep *_hfEMClusters_*_*', 'keep *_gedGsfElectronCores_*_*', 'keep *_gedGsfElectrons_*_*', 'drop CaloTowersSorted_towerMakerPF_*_*', 'drop *_pfElectronTranslator_*_*', 'keep recoPFRecHits_particleFlowClusterECAL_Cleaned_*', 'keep recoPFRecHits_particleFlowClusterHCAL_Cleaned_*', 'keep recoPFRecHits_particleFlowClusterHO_Cleaned_*', 'keep recoPFRecHits_particleFlowClusterHF_Cleaned_*', 'keep recoPFRecHits_particleFlowClusterPS_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitECAL_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitHBHE_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitHF_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitHO_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitPS_Cleaned_*', 'keep recoCaloClusters_particleFlowEGamma_*_*', 'keep recoSuperClusters_particleFlowEGamma_*_*', 'keep recoCaloClusters_particleFlowSuperClusterECAL_*_*', 'keep recoSuperClusters_particleFlowSuperClusterECAL_*_*', 'keep recoConversions_particleFlowEGamma_*_*', 'keep recoPFCandidates_particleFlow_*_*', 'keep recoPFCandidates_particleFlowTmp_*_*', 'drop recoPFCandidates_particleFlowTmp__*', 'keep *_particleFlow_electrons_*', 'keep *_particleFlow_photons_*', 'keep *_particleFlow_muons_*', 'keep recoCaloClusters_pfElectronTranslator_*_*', 'keep recoPreshowerClusters_pfElectronTranslator_*_*', 'keep recoSuperClusters_pfElectronTranslator_*_*', 'keep recoCaloClusters_pfPhotonTranslator_*_*', 'keep recoPreshowerClusters_pfPhotonTranslator_*_*', 'keep recoSuperClusters_pfPhotonTranslator_*_*', 'keep recoPhotons_pfPhotonTranslator_*_*', 'keep recoPhotonCores_pfPhotonTranslator_*_*', 'keep recoConversions_pfPhotonTranslator_*_*', 'keep *_particleFlowPtrs_*_*', 'keep *_particleFlowTmpPtrs_*_*', 'keep *_offlineBeamSpot_*_*', 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', 'keep *_l1GtRecord_*_*', 'keep *_l1GtTriggerMenuLite_*_*', 'keep *_conditionsInEdm_*_*', 'keep *_l1extraParticles_*_*', 'keep *_l1L1GtObjectMap_*_*', 'keep LumiSummary_lumiProducer_*_*', 'drop *_hlt*_*_*', 'keep *_hltGtStage2ObjectMap_*_*', 'keep edmTriggerResults_*_*_*', 'keep triggerTriggerEvent_*_*_*', 'keep L1AcceptBunchCrossings_scalersRawToDigi_*_*', 'keep L1TriggerScalerss_scalersRawToDigi_*_*', 'keep Level1TriggerScalerss_scalersRawToDigi_*_*', 'keep LumiScalerss_scalersRawToDigi_*_*', 'keep BeamSpotOnlines_scalersRawToDigi_*_*', 'keep DcsStatuss_scalersRawToDigi_*_*', 'keep *_tcdsDigis_*_*', 'keep *_logErrorHarvester_*_*', 'keep *_pfIsolatedElectronsEI_*_*', 'keep *_pfIsolatedMuonsEI_*_*', 'keep recoPFJets_pfJetsEI_*_*', 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTagsEI_*_*', 'keep recoPFTaus_pfTausEI_*_*', 'keep recoPFTauDiscriminator_pfTausDiscriminationByDecayModeFinding_*_*', 'keep recoPFTauDiscriminator_pfTausDiscriminationByIsolation_*_*', 'keep recoPFMETs_pfMetEI_*_*', 'keep LHERunInfoProduct_*_*_*', 'keep LHEEventProduct_*_*_*', 'keep GenRunInfoProduct_generator_*_*', 'keep GenLumiInfoHeader_generator_*_*', 'keep GenLumiInfoProduct_generator_*_*', 'keep GenEventInfoProduct_generator_*_*', 'keep GenFilterInfo_*_*_*', 'keep *_genParticles_*_*', 'keep *_allTrackMCMatch_*_*', 'keep *_ak4GenJets_*_*', 'keep *_ak8GenJets_*_*', 'keep *_ak4GenJetsNoNu_*_*', 'keep *_ak8GenJetsNoNu_*_*', 'keep *_genParticle_*_*', 'keep recoGenMETs_*_*_*', 'keep PileupSummaryInfos_*_*_*', 'keep int_*_bunchSpacing_*', 'keep FEDRawDataCollection_rawDataCollector_*_*', 'keep FEDRawDataCollection_source_*_*', 'drop *_hlt*_*_*', 'keep *_hltGtStage2ObjectMap_*_*', 'keep FEDRawDataCollection_rawDataCollector_*_*', 'keep FEDRawDataCollection_source_*_*', 'keep edmTriggerResults_*_*_*', 'keep triggerTriggerEvent_*_*_*' ) ) ) process.RAWDEBUGEventContent = cms.PSet( eventAutoFlushCompressedSize = cms.untracked.int32(5242880), outputCommands = cms.untracked.vstring('drop *', 'drop *', 'drop *', 'keep FEDRawDataCollection_rawDataCollector_*_*', 'keep FEDRawDataCollection_source_*_*', 'keep FEDRawDataCollection_rawDataCollector_*_*', 'keep FEDRawDataCollection_source_*_*', 'drop *_hlt*_*_*', 'keep *_hltGtStage2ObjectMap_*_*', 'keep FEDRawDataCollection_rawDataCollector_*_*', 'keep FEDRawDataCollection_source_*_*', 'keep edmTriggerResults_*_*_*', 'keep triggerTriggerEvent_*_*_*', 'keep *_g4SimHits_*_*', 'keep edmHepMCProduct_source_*_*', 'keep *_allTrackMCMatch_*_*', 'keep StripDigiSimLinkedmDetSetVector_simMuonCSCDigis_*_*', 'keep CSCDetIdCSCComparatorDigiMuonDigiCollection_simMuonCSCDigis_*_*', 'keep DTLayerIdDTDigiSimLinkMuonDigiCollection_simMuonDTDigis_*_*', 'keep RPCDigiSimLinkedmDetSetVector_simMuonRPCDigis_*_*', 'keep EBSrFlagsSorted_simEcalDigis_*_*', 'keep EESrFlagsSorted_simEcalDigis_*_*', 'keep CrossingFramePlaybackInfoNew_*_*_*', 'keep PileupSummaryInfos_*_*_*', 'keep int_*_bunchSpacing_*', 'keep LHERunInfoProduct_*_*_*', 'keep LHEEventProduct_*_*_*', 'keep GenRunInfoProduct_generator_*_*', 'keep GenLumiInfoHeader_generator_*_*', 'keep GenLumiInfoProduct_generator_*_*', 'keep GenEventInfoProduct_generator_*_*', 'keep edmHepMCProduct_generatorSmeared_*_*', 'keep GenFilterInfo_*_*_*', 'keep *_genParticles_*_*', 'keep recoGenJets_*_*_*', 'keep *_genParticle_*_*', 'keep recoGenMETs_*_*_*', 'keep FEDRawDataCollection_source_*_*', 'keep FEDRawDataCollection_rawDataCollector_*_*', 'keep *_MEtoEDMConverter_*_*', 'keep *_randomEngineStateProducer_*_*', 'keep *_logErrorHarvester_*_*', 'keep PixelDigiSimLinkedmDetSetVector_simSiPixelDigis_*_*', 'keep StripDigiSimLinkedmDetSetVector_simSiStripDigis_*_*', 'drop *_mix_simSiPixelDigis*_*', 'drop *_mix_simSiStripDigis*_*', 'keep *_allTrackMCMatch_*_*', 'drop *_trackingtruthprod_*_*', 'drop *_electrontruth_*_*', 'keep *_mix_MergedTrackTruth_*', 'keep CrossingFramePlaybackInfoNew_*_*_*', 'keep FEDRawDataCollection_rawDataCollector_*_*', 'keep FEDRawDataCollection_source_*_*', 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', 'keep *_l1GtRecord_*_*', 'keep *_l1GtTriggerMenuLite_*_*', 'keep *_conditionsInEdm_*_*', 'keep *_l1extraParticles_*_*'), splitLevel = cms.untracked.int32(0) ) process.RAWDEBUGHLTEventContent = cms.PSet( eventAutoFlushCompressedSize = cms.untracked.int32(5242880), outputCommands = cms.untracked.vstring( ('drop *', 'drop *', 'drop *', 'drop *', 'keep FEDRawDataCollection_rawDataCollector_*_*', 'keep FEDRawDataCollection_source_*_*', 'keep FEDRawDataCollection_rawDataCollector_*_*', 'keep FEDRawDataCollection_source_*_*', 'drop *_hlt*_*_*', 'keep *_hltGtStage2ObjectMap_*_*', 'keep FEDRawDataCollection_rawDataCollector_*_*', 'keep FEDRawDataCollection_source_*_*', 'keep edmTriggerResults_*_*_*', 'keep triggerTriggerEvent_*_*_*', 'keep *_g4SimHits_*_*', 'keep edmHepMCProduct_source_*_*', 'keep *_allTrackMCMatch_*_*', 'keep StripDigiSimLinkedmDetSetVector_simMuonCSCDigis_*_*', 'keep CSCDetIdCSCComparatorDigiMuonDigiCollection_simMuonCSCDigis_*_*', 'keep DTLayerIdDTDigiSimLinkMuonDigiCollection_simMuonDTDigis_*_*', 'keep RPCDigiSimLinkedmDetSetVector_simMuonRPCDigis_*_*', 'keep EBSrFlagsSorted_simEcalDigis_*_*', 'keep EESrFlagsSorted_simEcalDigis_*_*', 'keep CrossingFramePlaybackInfoNew_*_*_*', 'keep PileupSummaryInfos_*_*_*', 'keep int_*_bunchSpacing_*', 'keep LHERunInfoProduct_*_*_*', 'keep LHEEventProduct_*_*_*', 'keep GenRunInfoProduct_generator_*_*', 'keep GenLumiInfoHeader_generator_*_*', 'keep GenLumiInfoProduct_generator_*_*', 'keep GenEventInfoProduct_generator_*_*', 'keep edmHepMCProduct_generatorSmeared_*_*', 'keep GenFilterInfo_*_*_*', 'keep *_genParticles_*_*', 'keep recoGenJets_*_*_*', 'keep *_genParticle_*_*', 'keep recoGenMETs_*_*_*', 'keep FEDRawDataCollection_source_*_*', 'keep FEDRawDataCollection_rawDataCollector_*_*', 'keep *_MEtoEDMConverter_*_*', 'keep *_randomEngineStateProducer_*_*', 'keep *_logErrorHarvester_*_*', 'keep PixelDigiSimLinkedmDetSetVector_simSiPixelDigis_*_*', 'keep StripDigiSimLinkedmDetSetVector_simSiStripDigis_*_*', 'drop *_mix_simSiPixelDigis*_*', 'drop *_mix_simSiStripDigis*_*', 'keep *_allTrackMCMatch_*_*', 'drop *_trackingtruthprod_*_*', 'drop *_electrontruth_*_*', 'keep *_mix_MergedTrackTruth_*', 'keep CrossingFramePlaybackInfoNew_*_*_*', 'keep FEDRawDataCollection_rawDataCollector_*_*', 'keep FEDRawDataCollection_source_*_*', 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', 'keep *_l1GtRecord_*_*', 'keep *_l1GtTriggerMenuLite_*_*', 'keep *_conditionsInEdm_*_*', 'keep *_l1extraParticles_*_*', 'drop *_hlt*_*_*', 'keep *_hltAK4CaloJetsCorrectedIDPassed_*_*', 'keep *_hltAK4CaloJetsIDPassed_*_*', 'keep *_hltAK4CaloJets_*_*', 'keep *_hltAK4PFJetsCorrected_*_*', 'keep *_hltAK4PFJetsForTaus_*_*', 'keep *_hltAK4PFJets_*_*', 'keep *_hltAlCaEtaEBRechitsToDigisLowPU_*_*', 'keep *_hltAlCaEtaEBRechitsToDigis_*_*', 'keep *_hltAlCaEtaEERechitsToDigisLowPU_*_*', 'keep *_hltAlCaEtaEERechitsToDigis_*_*', 'keep *_hltAlCaEtaRecHitsFilterEBonly_*_*', 'keep *_hltAlCaEtaRecHitsFilterEEonlyRegionalLowPU_etaEcalRecHitsES_*', 'keep *_hltAlCaEtaRecHitsFilterEEonlyRegional_etaEcalRecHitsES_*', 'keep *_hltAlCaEtaRecHitsFilterEEonly_*_*', 'keep *_hltAlCaEtaRecHitsFilter_*_*', 'keep *_hltAlCaPhiSymStream_*_*', 'keep *_hltAlCaPi0EBRechitsToDigisLowPU_*_*', 'keep *_hltAlCaPi0EBRechitsToDigis_*_*', 'keep *_hltAlCaPi0EERechitsToDigisLowPU_*_*', 'keep *_hltAlCaPi0EERechitsToDigis_*_*', 'keep *_hltAlCaPi0RecHitsFilterEBonly_*_*', 'keep *_hltAlCaPi0RecHitsFilterEEonlyRegionalLowPU_pi0EcalRecHitsES_*', 'keep *_hltAlCaPi0RecHitsFilterEEonlyRegional_pi0EcalRecHitsES_*', 'keep *_hltAlCaPi0RecHitsFilterEEonly_*_*', 'keep *_hltAlCaPi0RecHitsFilter_*_*', 'keep *_hltBLifetimeL25AssociatorbbPhiL1FastJetFastPV_*_*', 'keep *_hltBLifetimeL25BJetTagsbbPhiL1FastJetFastPV_*_*', 'keep *_hltBLifetimeL25TagInfosbbPhiL1FastJetFastPV_*_*', 'keep *_hltBLifetimeL3AssociatorbbPhiL1FastJetFastPV_*_*', 'keep *_hltBLifetimeL3BJetTagsbbPhiL1FastJetFastPV_*_*', 'keep *_hltBLifetimeL3TagInfosbbPhiL1FastJetFastPV_*_*', 'keep *_hltBLifetimeRegionalCtfWithMaterialTracksbbPhiL1FastJetFastPV_*_*', 'keep *_hltBSoftMuonDiJet110Mu5L3FilterByDR_*_*', 'keep *_hltBSoftMuonDiJet110Mu5SelL3BJetTagsByDR_*_*', 'keep *_hltBSoftMuonDiJet20Mu5L3FilterByDR_*_*', 'keep *_hltBSoftMuonDiJet20Mu5SelL3BJetTagsByDR_*_*', 'keep *_hltBSoftMuonDiJet40Mu5L3FilterByDR_*_*', 'keep *_hltBSoftMuonDiJet40Mu5SelL3BJetTagsByDR_*_*', 'keep *_hltBSoftMuonDiJet70Mu5L3FilterByDR_*_*', 'keep *_hltBSoftMuonDiJet70Mu5SelL3BJetTagsByDR_*_*', 'keep *_hltBSoftMuonMu5L3_*_*', 'keep *_hltCSVJetTagSingleTopEle27_*_*', 'keep *_hltCSVJetTagSingleTopIsoMu24_*_*', 'keep *_hltCaloJetCorrectedRegional_*_*', 'keep *_hltCaloJetCorrected_*_*', 'keep *_hltCaloJetL1FastJetCorrected_*_*', 'keep *_hltCaloStage2Digis_*_*', 'keep *_hltCleanedCorrectedIslandBarrelSuperClustersHI_*_*', 'keep *_hltCleanedHiCorrectedIslandBarrelSuperClustersHI_*_*', 'keep *_hltCombinedSecondaryVertexBJetTagsCalo_*_*', 'keep *_hltCombinedSecondaryVertexBJetTagsPF_*_*', 'keep *_hltConvPFTausTightIsoTrackFindingIsolation_*_*', 'keep *_hltConvPFTausTightIsoTrackFinding_*_*', 'keep *_hltConvPFTausTightIsoTrackPt5Isolation_*_*', 'keep *_hltConvPFTausTightIsoTrackPt5_*_*', 'keep *_hltConvPFTausTightIso_*_*', 'keep *_hltConvPFTausTrackFindingLooseIsolation_*_*', 'keep *_hltConvPFTausTrackFinding_*_*', 'keep *_hltConvPFTaus_*_*', 'keep *_hltCorrectedIslandBarrelSuperClustersHI_*_*', 'keep *_hltCorrectedIslandEndcapSuperClustersHI_*_*', 'keep *_hltCsc2DRecHits_*_*', 'keep *_hltCscSegments_*_*', 'keep *_hltDoublePFTau25TrackPt5MediumIsolationProng4L1HLTMatched_*_*', 'keep *_hltDoublePFTau25TrackPt5MediumIsolationProng4_*_*', 'keep *_hltDoublePFTau25TrackPt5MediumIsolation_*_*', 'keep *_hltDoublePFTau25TrackPt5_*_*', 'keep *_hltDoublePFTau25_*_*', 'keep *_hltDoublePFTauTightIso45Track5_*_*', 'keep *_hltDoublePFTauTightIso45Track_*_*', 'keep *_hltDt4DSegments_*_*', 'keep *_hltEcalPhiSymFilter_*_*', 'keep *_hltEcalRecHitAll_*_*', 'keep *_hltEle20CaloIdVTCaloIsoTTrkIdTTrkIsoTTrackIsoFilterL1SingleEG18orL1SingleEG20_*_*', 'keep *_hltEle20CaloIdVTTrkIdTDphiFilter_*_*', 'keep *_hltEle27WP85PixelMatchElectronsL1Seeded_*_*', 'keep *_hltFEDSelectorLumiPixels_*_*', 'keep *_hltFastPVPixelTracksMerger_*_*', 'keep *_hltFastPVPixelTracksRecover_*_*', 'keep *_hltFastPVPixelTracks_*_*', 'keep *_hltFastPVPixelVertices3D_*_*', 'keep *_hltFastPVPixelVertices_*_*', 'keep *_hltFastPixelBLifetimeL3TagInfos_*_*', 'keep *_hltFastPrimaryVertex_*_*', 'keep *_hltFilterDoubleIsoPFTau45Trk5LeadTrack5IsolationL1HLTMatched_*_*', 'keep *_hltFilterL2EtCutDoublePFIsoTau45Trk5_*_*', 'keep *_hltFilterL2EtCutSingleIsoPFTau35Trk20MET70_*_*', 'keep *_hltFilterSingleIsoPFTau35Trk20LeadTrackPt20_*_*', 'keep *_hltFilterSingleIsoPFTau35Trk20MET60LeadTrack20IsolationL1HLTMatched_*_*', 'keep *_hltFilterSingleIsoPFTau35Trk20MET70LeadTrack20IsolationL1HLTMatched_*_*', 'keep *_hltGmtStage2Digis_*_*', 'keep *_hltGoodOnlinePVs_*_*', 'keep *_hltGtStage2Digis_*_*', 'keep *_hltGtStage2ObjectMap_*_*', 'keep *_hltHICaloJetCorrected_*_*', 'keep *_hltHICaloJetIDPassed_*_*', 'keep *_hltHIGoodLooseTracks_*_*', 'keep *_hltHIPixel3PrimTracks_*_*', 'keep *_hltHISelectedVertex_*_*', 'keep *_hltHISiPixelClusters_*_*', 'keep *_hltHITIPTCorrectorHB_*_*', 'keep *_hltHITIPTCorrectorHE_*_*', 'keep *_hltHiCorrectedIslandBarrelSuperClustersHI_*_*', 'keep *_hltHiCorrectedIslandEndcapSuperClustersHI_*_*', 'keep *_hltHiIslandSuperClustersHI_*_*', 'keep *_hltIsolPixelTrackProdHB_*_*', 'keep *_hltIsolPixelTrackProdHE_*_*', 'keep *_hltIter0PFlowTrackSelectionHighPurity_*_*', 'keep *_hltIter1Merged_*_*', 'keep *_hltIter1PFlowTrackSelectionHighPurity_*_*', 'keep *_hltIter2Merged_*_*', 'keep *_hltIter2PFlowTrackSelectionHighPurity_*_*', 'keep *_hltIter3Merged_*_*', 'keep *_hltIter4Merged_*_*', 'keep *_hltIterativeCone5PileupSubtractionCaloJets_*_*', 'keep *_hltL1HLTSingleIsoPFTau35Trk20Met60JetsMatch_*_*', 'keep *_hltL1IsoElectronTrackIsol_*_*', 'keep *_hltL1NonIsoElectronTrackIsol_*_*', 'keep *_hltL1SeededRecoEcalCandidate_*_*', 'keep *_hltL1sDoubleTauJet44Eta2p17orDoubleJet64Central_*_*', 'keep *_hltL1sDoubleTauJet44erorDoubleJetC64_*_*', 'keep *_hltL1sL1EG18er_*_*', 'keep *_hltL1sL1ETM36ORETM40_*_*', 'keep *_hltL1sL1Jet52ETM30_*_*', 'keep *_hltL1sL1SingleEG12_*_*', 'keep *_hltL1sL1SingleEG15_*_*', 'keep *_hltL1sL1SingleEG18orL1SingleEG20_*_*', 'keep *_hltL1sL1SingleMu10_*_*', 'keep *_hltL1sL1SingleMu14Eta2p1_*_*', 'keep *_hltL1sMu16Eta2p1_*_*', 'keep *_hltL2MuonCandidatesNoVtx_*_*', 'keep *_hltL2MuonCandidates_*_*', 'keep *_hltL2MuonSeeds_*_*', 'keep *_hltL2Muons_*_*', 'keep *_hltL2TauJets_*_*', 'keep *_hltL3MuonCandidates_*_*', 'keep *_hltL3MuonsIOHit_*_*', 'keep *_hltL3MuonsLinksCombination_*_*', 'keep *_hltL3MuonsOIHit_*_*', 'keep *_hltL3MuonsOIState_*_*', 'keep *_hltL3Muons_*_*', 'keep *_hltL3NoFiltersNoVtxMuonCandidates_*_*', 'keep *_hltL3NoFiltersNoVtxMuons_*_*', 'keep *_hltL3SecondaryVertexTagInfos_*_*', 'keep *_hltL3TkFromL2OICombination_*_*', 'keep *_hltL3TkTracksFromL2IOHit_*_*', 'keep *_hltL3TkTracksFromL2OIHit_*_*', 'keep *_hltL3TkTracksFromL2OIState_*_*', 'keep *_hltL3TkTracksFromL2_*_*', 'keep *_hltL3TrackCandidateFromL2IOHit_*_*', 'keep *_hltL3TrackCandidateFromL2OIHit_*_*', 'keep *_hltL3TrackCandidateFromL2OIState_*_*', 'keep *_hltL3TrajSeedIOHit_*_*', 'keep *_hltL3TrajSeedOIHit_*_*', 'keep *_hltL3TrajSeedOIState_*_*', 'keep *_hltL3TrajectorySeed_*_*', 'keep *_hltL3crIsoL1sMu16Eta2p1L1f0L2f16QL3f18QL3crIsoRhoFiltered0p15_*_*', 'keep *_hltLeadingCentralJets30SingleTopEle27_*_*', 'keep *_hltLeadingCentralJets30SingleTopIsoMu24_*_*', 'keep *_hltMet_*_*', 'keep *_hltMu8Ele17CaloIdTCaloIsoVLPixelMatchFilter_*_*', 'keep *_hltMuTrackJpsiCtfTrackCands_*_*', 'keep *_hltMuTrackJpsiPixelTrackCands_*_*', 'keep *_hltMuonCSCDigis_*_*', 'keep *_hltMuonCSCDigis_MuonCSCStripDigi_*', 'keep *_hltMuonCSCDigis_MuonCSCWireDigi_*', 'keep *_hltMuonDTDigis_*_*', 'keep *_hltMuonRPCDigis_*_*', 'keep *_hltOnlineBeamSpot_*_*', 'keep *_hltOnlinePrimaryVertices_*_*', 'keep *_hltOverlapFilterEle20LooseIsoPFTau20OldVersion_*_*', 'keep *_hltOverlapFilterIsoEle20MediumIsoPFTau20_*_*', 'keep *_hltOverlapFilterIsoMu15IsoPFTau20_*_*', 'keep *_hltOverlapFilterIsoMu15MediumIsoPFTau20_*_*', 'keep *_hltOverlapFilterIsoMu15TightIsoPFTau20_*_*', 'keep *_hltOverlapFilterIsoMu18LooseIsoPFTau20_*_*', 'keep *_hltOverlapFilterIsoMu18PFTau25TrackPt5Prong4_*_*', 'keep *_hltPFJetForBtag_*_*', 'keep *_hltPFTau15TrackLooseIso_*_*', 'keep *_hltPFTau15Track_*_*', 'keep *_hltPFTau15_*_*', 'keep *_hltPFTau20IsoMuVertex_*_*', 'keep *_hltPFTau20TrackLooseIso_*_*', 'keep *_hltPFTau20Track_*_*', 'keep *_hltPFTau20_*_*', 'keep *_hltPFTau25TrackPt5MediumIsolationProng4IsoMuVertex_*_*', 'keep *_hltPFTau25TrackPt5MediumIsolationProng4_*_*', 'keep *_hltPFTau25TrackPt5MediumIsolation_*_*', 'keep *_hltPFTau25TrackPt5_*_*', 'keep *_hltPFTau25_*_*', 'keep *_hltPFTau35TrackPt20LooseIsoProng2_*_*', 'keep *_hltPFTau35TrackPt20LooseIso_*_*', 'keep *_hltPFTau35TrackPt20_*_*', 'keep *_hltPFTau35Track_*_*', 'keep *_hltPFTau35_*_*', 'keep *_hltPFTauEleVertex20_*_*', 'keep *_hltPFTauJetTracksAssociator_*_*', 'keep *_hltPFTauMediumIso20TrackMediumIso_*_*', 'keep *_hltPFTauMediumIso20Track_*_*', 'keep *_hltPFTauMediumIso20_*_*', 'keep *_hltPFTauMediumIso35Track_*_*', 'keep *_hltPFTauMediumIso35_*_*', 'keep *_hltPFTauTagInfo_*_*', 'keep *_hltPFTauTightIso20TrackTightIso_*_*', 'keep *_hltPFTauTightIso20Track_*_*', 'keep *_hltPFTauTightIso20_*_*', 'keep *_hltPFlowTrackSelectionHighPurity_*_*', 'keep *_hltParticleFlowForTaus_*_*', 'keep *_hltParticleFlow_*_*', 'keep *_hltPixelMatch3HitElectronsActivity_*_*', 'keep *_hltPixelMatch3HitElectronsL1Seeded_*_*', 'keep *_hltPixelMatchCleanElectronsL1Seeded_*_*', 'keep *_hltPixelMatchElectronsActivity_*_*', 'keep *_hltPixelMatchElectronsL1Iso_*_*', 'keep *_hltPixelMatchElectronsL1NonIso_*_*', 'keep *_hltPixelMatchElectronsL1Seeded_*_*', 'keep *_hltPixelTracks_*_*', 'keep *_hltPixelVertices3DbbPhi_*_*', 'keep *_hltPixelVertices_*_*', 'keep *_hltRecoEcalSuperClusterActivityCandidateSC4_*_*', 'keep *_hltRecoEcalSuperClusterActivityCandidateSC5_*_*', 'keep *_hltRecoEcalSuperClusterActivityCandidate_*_*', 'keep *_hltRpcRecHits_*_*', 'keep *_hltSelector4CentralJetsL1FastJet_*_*', 'keep *_hltSelector8CentralJetsL1FastJet_*_*', 'keep *_hltSelectorJets20L1FastJet_*_*', 'keep *_hltSiPixelCluster_*_*', 'keep *_hltSiPixelClusters_*_*', 'keep *_hltSiStripClusters_*_*', 'keep *_hltSiStripRawToClustersFacility_*_*', 'keep *_hltSingleMu15L3Filtered15_*_*', 'keep *_hltSingleMuIsoL1s14L3IsoFiltered15eta2p1_*_*', 'keep *_hltSingleMuIsoL3IsoFiltered15_*_*', 'keep *_hltTowerMakerForAll_*_*', 'keep *_hltTowerMakerForMuons_*_*', 'keep *_hltTriggerSummaryAOD_*_*', 'keep *_hltTriggerSummaryRAW_*_*', 'keep *_hltTrimmedPixelVertices_*_*', 'keep *_hltVerticesL3_*_*', 'keep *_hltVerticesPFSelector_*_*', 'keep DcsStatuss_hltScalersRawToDigi_*_*', 'keep FEDRawDataCollection_rawDataCollector_*_*', 'keep FEDRawDataCollection_rawDataRepacker_*_*', 'keep FEDRawDataCollection_source_*_*', 'keep FEDRawDataCollection_virginRawDataRepacker_*_*', 'keep L2MuonTrajectorySeeds_hltL2MuonSeeds_*_*', 'keep L3MuonTrajectorySeeds_hltHIL3TrajSeedOIHit_*_*', 'keep L3MuonTrajectorySeeds_hltHIL3TrajectorySeed_*_*', 'keep L3MuonTrajectorySeeds_hltL3TrajSeedOIState_*_*', 'keep LumiScalerss_hltScalersRawToDigi_*_*', 'keep SiPixelClusteredmNewDetSetVector_hltSiPixelClusters_*_*', 'keep TrackCandidates_hltHIL3TrackCandidateFromL2OIHit_*_*', 'keep TrackCandidates_hltHIL3TrackCandidateFromL2OIState_*_*', 'keep TrackingRecHitsOwned_hltL3Muons_*_*', 'keep edmTriggerResults_*_*_*', 'keep recoCaloJets_*_*_*', 'keep recoCaloMETs_*_*_*', 'keep recoCaloMETs_hltMet_*_*', 'keep recoCompositeCandidates_*_*_*', 'keep recoElectrons_*_*_*', 'keep recoIsolatedPixelTrackCandidates_*_*_*', 'keep recoMETs_*_*_*', 'keep recoPFJets_*_*_*', 'keep recoPFTaus_*_*_*', 'keep recoRecoChargedCandidates_*_*_*', 'keep recoRecoChargedCandidates_hltHIL3MuonCandidates_*_*', 'keep recoRecoChargedCandidates_hltL2MuonCandidates_*_*', 'keep recoRecoEcalCandidatesToValuefloatAssociation_hltL1IsoHLTClusterShape_*_*', 'keep recoRecoEcalCandidatesToValuefloatAssociation_hltL1IsolatedPhotonEcalIsol_*_*', 'keep recoRecoEcalCandidatesToValuefloatAssociation_hltL1IsolatedPhotonHcalForHE_*_*', 'keep recoRecoEcalCandidatesToValuefloatAssociation_hltL1IsolatedPhotonHcalIsol_*_*', 'keep recoRecoEcalCandidatesToValuefloatAssociation_hltL1NonIsoHLTClusterShape_*_*', 'keep recoRecoEcalCandidatesToValuefloatAssociation_hltL1NonIsolatedPhotonEcalIsol_*_*', 'keep recoRecoEcalCandidatesToValuefloatAssociation_hltL1NonIsolatedPhotonHcalForHE_*_*', 'keep recoRecoEcalCandidatesToValuefloatAssociation_hltL1NonIsolatedPhotonHcalIsol_*_*', 'keep recoRecoEcalCandidates_*_*_*', 'keep recoRecoEcalCandidates_hltL1IsoRecoEcalCandidate_*_*', 'keep recoRecoEcalCandidates_hltL1NonIsoRecoEcalCandidate_*_*', 'keep recoTrackExtras_hltHIL3MuonsOIHit_*_*', 'keep recoTrackExtras_hltHIL3MuonsOIState_*_*', 'keep recoTracks_hltHIL3MuonsOIHit_*_*', 'keep recoTracks_hltHIL3MuonsOIState_*_*', 'keep recoTracks_hltHIL3Muons_*_*', 'keep recoTracks_hltHIL3TkTracksFromL2OIHit_*_*', 'keep recoTracks_hltHIL3TkTracksFromL2OIState_*_*', 'keep recoTracks_hltHIL3TkTracksFromL2_*_*', 'keep triggerTriggerEventWithRefs_*_*_*', 'keep triggerTriggerEvent_*_*_*', 'keep triggerTriggerFilterObjectWithRefs_*_*_*' ) ), splitLevel = cms.untracked.int32(0) ) process.RAWEventContent = cms.PSet( eventAutoFlushCompressedSize = cms.untracked.int32(5242880), outputCommands = cms.untracked.vstring('drop *', 'keep FEDRawDataCollection_rawDataCollector_*_*', 'keep FEDRawDataCollection_source_*_*', 'keep FEDRawDataCollection_rawDataCollector_*_*', 'keep FEDRawDataCollection_source_*_*', 'drop *_hlt*_*_*', 'keep *_hltGtStage2ObjectMap_*_*', 'keep FEDRawDataCollection_rawDataCollector_*_*', 'keep FEDRawDataCollection_source_*_*', 'keep edmTriggerResults_*_*_*', 'keep triggerTriggerEvent_*_*_*'), splitLevel = cms.untracked.int32(0) ) process.RAWRECODEBUGHLTEventContent = cms.PSet( eventAutoFlushCompressedSize = cms.untracked.int32(5242880), outputCommands = cms.untracked.vstring( ('drop *', 'drop *', 'drop *', 'drop *', 'keep DetIdedmEDCollection_siStripDigis_*_*', 'keep DetIdedmEDCollection_siPixelDigis_*_*', 'keep *_siPixelClusters_*_*', 'keep *_siStripClusters_*_*', 'keep ClusterSummary_clusterSummaryProducer_*_*', 'keep *_dt1DRecHits_*_*', 'keep *_dt4DSegments_*_*', 'keep *_dt1DCosmicRecHits_*_*', 'keep *_dt4DCosmicSegments_*_*', 'keep *_csc2DRecHits_*_*', 'keep *_cscSegments_*_*', 'keep *_rpcRecHits_*_*', 'keep *_hbhereco_*_*', 'keep *_hbheprereco_*_*', 'keep *_hfreco_*_*', 'keep *_horeco_*_*', 'keep HBHERecHitsSorted_hbherecoMB_*_*', 'keep HORecHitsSorted_horecoMB_*_*', 'keep HFRecHitsSorted_hfrecoMB_*_*', 'keep ZDCDataFramesSorted_hcalDigis_*_*', 'keep ZDCRecHitsSorted_*_*_*', 'keep *_reducedHcalRecHits_*_*', 'keep *_castorreco_*_*', 'keep HcalUnpackerReport_castorDigis_*_*', 'keep HcalUnpackerReport_hcalDigiAlCaMB_*_*', 'keep HcalUnpackerReport_hcalDigis_*_*', 'keep *_ecalPreshowerRecHit_*_*', 'keep *_ecalRecHit_*_*', 'keep *_ecalCompactTrigPrim_*_*', 'keep *_ecalTPSkim_*_*', 'keep *_selectDigi_*_*', 'keep EcalRecHitsSorted_reducedEcalRecHitsEE_*_*', 'keep EcalRecHitsSorted_reducedEcalRecHitsEB_*_*', 'keep EcalRecHitsSorted_reducedEcalRecHitsES_*_*', 'keep *_hybridSuperClusters_*_*', 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', 'keep *_multi5x5SuperClusters_*_*', 'keep recoSuperClusters_multi5x5SuperClusters_*_*', 'keep recoSuperClusters_multi5x5SuperClustersWithPreshower_*_*', 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', 'keep recoPreshowerClusters_multi5x5SuperClustersWithPreshower_*_*', 'keep recoPreshowerClusterShapes_multi5x5PreshowerClusterShape_*_*', 'keep *_particleFlowSuperClusterECAL_*_*', 'drop recoClusterShapes_*_*_*', 'drop recoBasicClustersToOnerecoClusterShapesAssociation_*_*_*', 'drop recoBasicClusters_multi5x5BasicClusters_multi5x5BarrelBasicClusters_*', 'drop recoSuperClusters_multi5x5SuperClusters_multi5x5BarrelSuperClusters_*', 'keep *_CkfElectronCandidates_*_*', 'keep *_GsfGlobalElectronTest_*_*', 'keep *_electronMergedSeeds_*_*', 'keep recoGsfTracks_electronGsfTracks_*_*', 'keep recoGsfTrackExtras_electronGsfTracks_*_*', 'keep recoTrackExtras_electronGsfTracks_*_*', 'keep TrackingRecHitsOwned_electronGsfTracks_*_*', 'keep recoTracks_generalTracks_*_*', 'keep recoTrackExtras_generalTracks_*_*', 'keep TrackingRecHitsOwned_generalTracks_*_*', 'keep *_generalTracks_MVAValues_*', 'keep *_generalTracks_MVAVals_*', 'keep TrackingRecHitsOwned_extraFromSeeds_*_*', 'keep uints_extraFromSeeds_*_*', 'keep recoTracks_beamhaloTracks_*_*', 'keep recoTrackExtras_beamhaloTracks_*_*', 'keep TrackingRecHitsOwned_beamhaloTracks_*_*', 'keep recoTracks_conversionStepTracks_*_*', 'keep recoTrackExtras_conversionStepTracks_*_*', 'keep TrackingRecHitsOwned_conversionStepTracks_*_*', 'keep *_ctfPixelLess_*_*', 'keep *_dedxTruncated40_*_*', 'keep *_dedxHitInfo_*_*', 'keep *_dedxHarmonic2_*_*', 'keep *_trackExtrapolator_*_*', 'keep *_ak4CaloJets_*_*', 'keep *_ak4PFJets_*_*', 'keep *_ak4PFJetsCHS_*_*', 'keep *_ak8PFJetsCHS_*_*', 'keep *_ak8PFJetsCHSSoftDrop_*_*', 'keep *_cmsTopTagPFJetsCHS_*_*', 'keep *_JetPlusTrackZSPCorJetAntiKt4_*_*', 'keep *_ak4TrackJets_*_*', 'keep recoRecoChargedRefCandidates_trackRefsForJets_*_*', 'keep *_caloTowers_*_*', 'keep *_towerMaker_*_*', 'keep *_CastorTowerReco_*_*', 'keep *_ak4JetTracksAssociatorAtVertex_*_*', 'keep *_ak4JetTracksAssociatorAtVertexPF_*_*', 'keep *_ak4JetTracksAssociatorAtCaloFace_*_*', 'keep *_ak4JetTracksAssociatorExplicit_*_*', 'keep *_ak4JetExtender_*_*', 'keep *_ak4JetID_*_*', 'keep *_ak5CastorJets_*_*', 'keep *_ak5CastorJetID_*_*', 'keep *_ak7CastorJets_*_*', 'keep *_ak7CastorJetID_*_*', 'keep *_fixedGridRhoAll_*_*', 'keep *_fixedGridRhoFastjetAll_*_*', 'keep *_fixedGridRhoFastjetAllTmp_*_*', 'keep *_fixedGridRhoFastjetAllCalo_*_*', 'keep *_fixedGridRhoFastjetCentral_*_*', 'keep *_fixedGridRhoFastjetCentralCalo_*_*', 'keep *_fixedGridRhoFastjetCentralChargedPileUp_*_*', 'keep *_fixedGridRhoFastjetCentralNeutral_*_*', 'keep *_ak8PFJetsCHSSoftDropMass_*_*', 'keep recoCaloMETs_caloMet_*_*', 'keep recoCaloMETs_caloMetBE_*_*', 'keep recoCaloMETs_caloMetBEFO_*_*', 'keep recoCaloMETs_caloMetM_*_*', 'keep recoPFMETs_pfMet_*_*', 'keep recoPFMETs_pfChMet_*_*', 'keep recoPFMETs_pfMetEI_*_*', 'keep recoMuonMETCorrectionDataedmValueMap_muonMETValueMapProducer_*_*', 'keep recoHcalNoiseRBXs_hcalnoise_*_*', 'keep HcalNoiseSummary_hcalnoise_*_*', 'keep recoCSCHaloData_CSCHaloData_*_*', 'keep recoEcalHaloData_EcalHaloData_*_*', 'keep recoGlobalHaloData_GlobalHaloData_*_*', 'keep recoHcalHaloData_HcalHaloData_*_*', 'keep recoBeamHaloSummary_BeamHaloSummary_*_*', 'keep *_MuonSeed_*_*', 'keep *_ancientMuonSeed_*_*', 'keep *_displacedMuonSeeds_*_*', 'keep TrackingRecHitsOwned_globalMuons_*_*', 'keep TrackingRecHitsOwned_tevMuons_*_*', 'keep recoCaloMuons_calomuons_*_*', 'keep *_CosmicMuonSeed_*_*', 'keep recoTrackExtras_cosmicMuons_*_*', 'keep TrackingRecHitsOwned_cosmicMuons_*_*', 'keep recoTrackExtras_cosmicMuons1Leg_*_*', 'keep TrackingRecHitsOwned_cosmicMuons1Leg_*_*', 'keep recoTracks_cosmicsVetoTracks_*_*', 'keep *_SETMuonSeed_*_*', 'keep recoTracks_standAloneSETMuons_*_*', 'keep recoTrackExtras_standAloneSETMuons_*_*', 'keep TrackingRecHitsOwned_standAloneSETMuons_*_*', 'keep recoTracks_globalSETMuons_*_*', 'keep recoTrackExtras_globalSETMuons_*_*', 'keep TrackingRecHitsOwned_globalSETMuons_*_*', 'keep recoMuons_muonsWithSET_*_*', 'keep *_muons_*_*', 'keep *_particleFlow_muons_*', 'drop *_muons_muons1stStep2muonsMap_*', 'drop recoIsoDepositedmValueMap_muons_*_*', 'drop doubleedmValueMap_muons_muPFIso*_*', 'keep recoTracks_standAloneMuons_*_*', 'keep recoTrackExtras_standAloneMuons_*_*', 'keep TrackingRecHitsOwned_standAloneMuons_*_*', 'keep recoTracks_globalMuons_*_*', 'keep recoTrackExtras_globalMuons_*_*', 'keep recoTracks_tevMuons_*_*', 'keep recoTrackExtras_tevMuons_*_*', 'keep recoTracks_generalTracks_*_*', 'keep recoTracks_displacedTracks_*_*', 'keep recoTracksToOnerecoTracksAssociation_tevMuons_*_*', 'keep recoTracks_displacedGlobalMuons_*_*', 'keep recoTrackExtras_displacedGlobalMuons_*_*', 'keep TrackingRecHitsOwned_displacedGlobalMuons_*_*', 'keep recoTracks_cosmicMuons_*_*', 'keep recoMuons_muonsFromCosmics_*_*', 'keep recoTracks_cosmicMuons1Leg_*_*', 'keep recoMuons_muonsFromCosmics1Leg_*_*', 'keep recoTracks_refittedStandAloneMuons_*_*', 'keep recoTrackExtras_refittedStandAloneMuons_*_*', 'keep TrackingRecHitsOwned_refittedStandAloneMuons_*_*', 'keep recoTracks_displacedStandAloneMuons__*', 'keep recoTrackExtras_displacedStandAloneMuons_*_*', 'keep TrackingRecHitsOwned_displacedStandAloneMuons_*_*', 'keep *_muIsoDepositTk_*_*', 'keep *_muIsoDepositCalByAssociatorTowers_*_*', 'keep *_muIsoDepositCalByAssociatorHits_*_*', 'keep *_muIsoDepositJets_*_*', 'keep *_muGlobalIsoDepositCtfTk_*_*', 'keep *_muGlobalIsoDepositCalByAssociatorTowers_*_*', 'keep *_muGlobalIsoDepositCalByAssociatorHits_*_*', 'keep *_muGlobalIsoDepositJets_*_*', 'keep *_softPFMuonsTagInfos_*_*', 'keep *_softPFElectronsTagInfos_*_*', 'keep *_softPFElectronBJetTags_*_*', 'keep *_softPFMuonBJetTags_*_*', 'keep *_pfImpactParameterTagInfos_*_*', 'keep *_pfTrackCountingHighEffBJetTags_*_*', 'keep *_pfJetProbabilityBJetTags_*_*', 'keep *_pfJetBProbabilityBJetTags_*_*', 'keep *_pfSecondaryVertexTagInfos_*_*', 'keep *_pfInclusiveSecondaryVertexFinderTagInfos_*_*', 'keep *_pfSimpleSecondaryVertexHighEffBJetTags_*_*', 'keep *_pfSimpleInclusiveSecondaryVertexHighEffBJetTags_*_*', 'keep *_pfCombinedSecondaryVertexV2BJetTags_*_*', 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTags_*_*', 'keep *_pfCombinedMVAV2BJetTags_*_*', 'keep *_inclusiveCandidateSecondaryVertices_*_*', 'keep *_inclusiveCandidateSecondaryVerticesCvsL_*_*', 'keep *_pfInclusiveSecondaryVertexFinderCvsLTagInfos_*_*', 'keep *_pfCombinedCvsLJetTags_*_*', 'keep *_pfCombinedCvsBJetTags_*_*', 'keep recoRecoTauPiZeros_hpsPFTauProducer_pizeros_*', 'keep recoPFTaus_hpsPFTauProducer_*_*', 'keep *_hpsPFTauDiscriminationByDeadECALElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByDecayModeFinding_*_*', 'keep *_hpsPFTauDiscriminationByDecayModeFindingNewDMs_*_*', 'keep *_hpsPFTauDiscriminationByDecayModeFindingOldDMs_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolation_*_*', 'keep *_hpsPFTauDiscriminationByLooseChargedIsolation_*_*', 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3Hits_*_*', 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3HitsdR03_*_*', 'keep *_hpsPFTauDiscriminationByLooseElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByLooseMuonRejection3_*_*', 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3Hits_*_*', 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3HitsdR03_*_*', 'keep *_hpsPFTauDiscriminationByRawCombinedIsolationDBSumPtCorr3Hits_*_*', 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3Hits_*_*', 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3HitsdR03_*_*', 'keep *_hpsPFTauDiscriminationByTightMuonRejection3_*_*', 'keep *_hpsPFTauDiscriminationByPhotonPtSumOutsideSignalCone_*_*', 'keep *_hpsPFTauNeutralIsoPtSum_*_*', 'keep *_hpsPFTauPUcorrPtSum_*_*', 'keep *_hpsPFTauChargedIsoPtSum_*_*', 'keep *_hpsPFTauTransverseImpactParameters_*_*', 'keep *_hpsPFTauFootprintCorrection_*_*', 'keep *_hpsPFTauNeutralIsoPtSumWeight_*_*', 'keep *_hpsPFTauPhotonPtSumOutsideSignalCone_*_*', 'keep *_hpsPFTauDiscriminationByMVA6rawElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6VLooseElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6LooseElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6MediumElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6TightElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6VTightElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBoldDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBnewDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWoldDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWnewDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauChargedIsoPtSumdR03_*_*', 'keep *_hpsPFTauNeutralIsoPtSumdR03_*_*', 'keep *_hpsPFTauNeutralIsoPtSumWeightdR03_*_*', 'keep *_hpsPFTauFootprintCorrectiondR03_*_*', 'keep *_hpsPFTauPhotonPtSumOutsideSignalConedR03_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBdR03oldDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWdR03oldDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_offlinePrimaryVertices__*', 'keep *_offlinePrimaryVerticesWithBS_*_*', 'keep *_offlinePrimaryVerticesFromCosmicTracks_*_*', 'keep *_nuclearInteractionMaker_*_*', 'keep *_generalV0Candidates_*_*', 'keep *_inclusiveSecondaryVertices_*_*', 'keep recoGsfElectronCores_gsfElectronCores_*_*', 'keep recoGsfElectronCores_gedGsfElectronCores_*_*', 'keep recoGsfElectrons_gsfElectrons_*_*', 'keep recoGsfElectrons_gedGsfElectrons_*_*', 'keep recoGsfElectronCores_uncleanedOnlyGsfElectronCores_*_*', 'keep recoGsfElectrons_uncleanedOnlyGsfElectrons_*_*', 'keep floatedmValueMap_eidRobustLoose_*_*', 'keep floatedmValueMap_eidRobustTight_*_*', 'keep floatedmValueMap_eidRobustHighEnergy_*_*', 'keep floatedmValueMap_eidLoose_*_*', 'keep floatedmValueMap_eidTight_*_*', 'keep *_egmGedGsfElectronPFIsolation_*_*', 'keep *_photonEcalPFClusterIsolationProducer_*_*', 'keep *_electronEcalPFClusterIsolationProducer_*_*', 'keep *_photonHcalPFClusterIsolationProducer_*_*', 'keep *_electronHcalPFClusterIsolationProducer_*_*', 'drop *_egmGsfElectronIDs_*_*', 'drop *_egmPhotonIDs_*_*', 'keep *_gedPhotonCore_*_*', 'keep *_gedPhotons_*_*', 'keep *_particleBasedIsolation_*_*', 'keep recoPhotons_mustachePhotons_*_*', 'keep recoPhotonCores_mustachePhotonCore_*_*', 'keep recoPhotons_photons_*_*', 'keep recoPhotonCores_photonCore_*_*', 'keep recoConversions_conversions_*_*', 'keep recoConversions_mustacheConversions_*_*', 'drop *_conversions_uncleanedConversions_*', 'drop *_gedPhotonsTmp_valMapPFEgammaCandToPhoton_*', 'keep recoConversions_allConversions_*_*', 'keep recoConversions_allConversionsOldEG_*_*', 'keep recoTracks_ckfOutInTracksFromConversions_*_*', 'keep recoTracks_ckfInOutTracksFromConversions_*_*', 'keep recoTrackExtras_ckfOutInTracksFromConversions_*_*', 'keep recoTrackExtras_ckfInOutTracksFromConversions_*_*', 'keep TrackingRecHitsOwned_ckfOutInTracksFromConversions_*_*', 'keep TrackingRecHitsOwned_ckfInOutTracksFromConversions_*_*', 'keep recoConversions_uncleanedOnlyAllConversions_*_*', 'keep recoTracks_uncleanedOnlyCkfOutInTracksFromConversions_*_*', 'keep recoTracks_uncleanedOnlyCkfInOutTracksFromConversions_*_*', 'keep recoTrackExtras_uncleanedOnlyCkfOutInTracksFromConversions_*_*', 'keep recoTrackExtras_uncleanedOnlyCkfInOutTracksFromConversions_*_*', 'keep TrackingRecHitsOwned_uncleanedOnlyCkfOutInTracksFromConversions_*_*', 'keep TrackingRecHitsOwned_uncleanedOnlyCkfInOutTracksFromConversions_*_*', 'keep *_PhotonIDProd_*_*', 'keep *_PhotonIDProdGED_*_*', 'keep recoRecoEcalCandidates_hfRecoEcalCandidate_*_*', 'keep *_hfEMClusters_*_*', 'keep *_gedGsfElectronCores_*_*', 'keep *_gedGsfElectrons_*_*', 'keep *_pixelTracks_*_*', 'keep *_pixelVertices_*_*', 'drop CaloTowersSorted_towerMakerPF_*_*', 'keep recoPFRecHits_particleFlowClusterECAL_Cleaned_*', 'keep recoPFRecHits_particleFlowClusterHCAL_Cleaned_*', 'keep recoPFRecHits_particleFlowClusterHO_Cleaned_*', 'keep recoPFRecHits_particleFlowClusterHF_Cleaned_*', 'keep recoPFRecHits_particleFlowClusterPS_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitECAL_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitHBHE_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitHF_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitHO_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitPS_Cleaned_*', 'keep recoPFClusters_particleFlowClusterECAL_*_*', 'keep recoPFClusters_particleFlowClusterHCAL_*_*', 'keep recoPFClusters_particleFlowClusterHO_*_*', 'keep recoPFClusters_particleFlowClusterHF_*_*', 'keep recoPFClusters_particleFlowClusterPS_*_*', 'keep recoPFBlocks_particleFlowBlock_*_*', 'keep recoPFCandidates_particleFlowEGamma_*_*', 'keep recoCaloClusters_particleFlowEGamma_*_*', 'keep recoSuperClusters_particleFlowEGamma_*_*', 'keep recoConversions_particleFlowEGamma_*_*', 'keep recoPFCandidates_particleFlow_*_*', 'keep recoPFCandidates_particleFlowTmp_electrons_*', 'keep recoPFCandidates_particleFlowTmp_*_*', 'drop recoPFCandidates_particleFlowTmp__*', 'keep recoPFDisplacedVertexs_particleFlowDisplacedVertex_*_*', 'keep *_pfElectronTranslator_*_*', 'keep *_pfPhotonTranslator_*_*', 'keep *_particleFlow_electrons_*', 'keep *_particleFlow_photons_*', 'keep *_particleFlow_muons_*', 'keep *_trackerDrivenElectronSeeds_preid_*', 'keep *_particleFlowPtrs_*_*', 'keep *_particleFlowTmpPtrs_*_*', 'keep *_offlineBeamSpot_*_*', 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', 'keep *_l1GtRecord_*_*', 'keep *_l1GtTriggerMenuLite_*_*', 'keep *_conditionsInEdm_*_*', 'keep *_l1extraParticles_*_*', 'keep *_l1L1GtObjectMap_*_*', 'keep L1MuGMTReadoutCollection_gtDigis_*_*', 'keep L1GctEmCand*_gctDigis_*_*', 'keep L1GctJetCand*_gctDigis_*_*', 'keep L1GctEtHad*_gctDigis_*_*', 'keep L1GctEtMiss*_gctDigis_*_*', 'keep L1GctEtTotal*_gctDigis_*_*', 'keep L1GctHtMiss*_gctDigis_*_*', 'keep L1GctJetCounts*_gctDigis_*_*', 'keep L1GctHFRingEtSums*_gctDigis_*_*', 'keep L1GctHFBitCounts*_gctDigis_*_*', 'keep LumiDetails_lumiProducer_*_*', 'keep LumiSummary_lumiProducer_*_*', 'drop *_hlt*_*_*', 'keep *_hltGtStage2ObjectMap_*_*', 'keep edmTriggerResults_*_*_*', 'keep triggerTriggerEvent_*_*_*', 'keep L1AcceptBunchCrossings_scalersRawToDigi_*_*', 'keep L1TriggerScalerss_scalersRawToDigi_*_*', 'keep Level1TriggerScalerss_scalersRawToDigi_*_*', 'keep LumiScalerss_scalersRawToDigi_*_*', 'keep BeamSpotOnlines_scalersRawToDigi_*_*', 'keep DcsStatuss_scalersRawToDigi_*_*', 'keep DcsStatuss_hltScalersRawToDigi_*_*', 'keep *_tcdsDigis_*_*', 'keep *_logErrorHarvester_*_*', 'keep *_pfIsolatedElectronsEI_*_*', 'keep *_pfIsolatedMuonsEI_*_*', 'keep recoPFJets_pfJetsEI_*_*', 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTagsEI_*_*', 'keep recoPFTaus_pfTausEI_*_*', 'keep recoPFTauDiscriminator_pfTausDiscriminationByDecayModeFinding_*_*', 'keep recoPFTauDiscriminator_pfTausDiscriminationByIsolation_*_*', 'keep recoPFMETs_pfMetEI_*_*', 'keep FEDRawDataCollection_rawDataCollector_*_*', 'keep FEDRawDataCollection_source_*_*', 'keep LHERunInfoProduct_*_*_*', 'keep LHEEventProduct_*_*_*', 'keep GenRunInfoProduct_generator_*_*', 'keep GenLumiInfoHeader_generator_*_*', 'keep GenLumiInfoProduct_generator_*_*', 'keep GenEventInfoProduct_generator_*_*', 'keep edmHepMCProduct_generatorSmeared_*_*', 'keep GenFilterInfo_*_*_*', 'keep *_genParticles_*_*', 'keep recoGenMETs_*_*_*', 'keep *_ak4GenJets_*_*', 'keep *_ak8GenJets_*_*', 'keep *_ak4GenJetsNoNu_*_*', 'keep *_ak8GenJetsNoNu_*_*', 'keep *_genParticle_*_*', 'keep edmHepMCProduct_source_*_*', 'keep SimTracks_g4SimHits_*_*', 'keep SimVertexs_g4SimHits_*_*', 'keep *_allTrackMCMatch_*_*', 'keep StripDigiSimLinkedmDetSetVector_simMuonCSCDigis_*_*', 'keep DTLayerIdDTDigiSimLinkMuonDigiCollection_simMuonDTDigis_*_*', 'keep RPCDigiSimLinkedmDetSetVector_simMuonRPCDigis_*_*', 'keep PileupSummaryInfos_*_*_*', 'keep int_*_bunchSpacing_*', 'drop *_hlt*_*_*', 'keep *_hltAK4CaloJetsCorrectedIDPassed_*_*', 'keep *_hltAK4CaloJetsIDPassed_*_*', 'keep *_hltAK4CaloJets_*_*', 'keep *_hltAK4PFJetsCorrected_*_*', 'keep *_hltAK4PFJetsForTaus_*_*', 'keep *_hltAK4PFJets_*_*', 'keep *_hltAlCaEtaEBRechitsToDigisLowPU_*_*', 'keep *_hltAlCaEtaEBRechitsToDigis_*_*', 'keep *_hltAlCaEtaEERechitsToDigisLowPU_*_*', 'keep *_hltAlCaEtaEERechitsToDigis_*_*', 'keep *_hltAlCaEtaRecHitsFilterEBonly_*_*', 'keep *_hltAlCaEtaRecHitsFilterEEonlyRegionalLowPU_etaEcalRecHitsES_*', 'keep *_hltAlCaEtaRecHitsFilterEEonlyRegional_etaEcalRecHitsES_*', 'keep *_hltAlCaEtaRecHitsFilterEEonly_*_*', 'keep *_hltAlCaEtaRecHitsFilter_*_*', 'keep *_hltAlCaPhiSymStream_*_*', 'keep *_hltAlCaPi0EBRechitsToDigisLowPU_*_*', 'keep *_hltAlCaPi0EBRechitsToDigis_*_*', 'keep *_hltAlCaPi0EERechitsToDigisLowPU_*_*', 'keep *_hltAlCaPi0EERechitsToDigis_*_*', 'keep *_hltAlCaPi0RecHitsFilterEBonly_*_*', 'keep *_hltAlCaPi0RecHitsFilterEEonlyRegionalLowPU_pi0EcalRecHitsES_*', 'keep *_hltAlCaPi0RecHitsFilterEEonlyRegional_pi0EcalRecHitsES_*', 'keep *_hltAlCaPi0RecHitsFilterEEonly_*_*', 'keep *_hltAlCaPi0RecHitsFilter_*_*', 'keep *_hltBLifetimeL25AssociatorbbPhiL1FastJetFastPV_*_*', 'keep *_hltBLifetimeL25BJetTagsbbPhiL1FastJetFastPV_*_*', 'keep *_hltBLifetimeL25TagInfosbbPhiL1FastJetFastPV_*_*', 'keep *_hltBLifetimeL3AssociatorbbPhiL1FastJetFastPV_*_*', 'keep *_hltBLifetimeL3BJetTagsbbPhiL1FastJetFastPV_*_*', 'keep *_hltBLifetimeL3TagInfosbbPhiL1FastJetFastPV_*_*', 'keep *_hltBLifetimeRegionalCtfWithMaterialTracksbbPhiL1FastJetFastPV_*_*', 'keep *_hltBSoftMuonDiJet110Mu5L3FilterByDR_*_*', 'keep *_hltBSoftMuonDiJet110Mu5SelL3BJetTagsByDR_*_*', 'keep *_hltBSoftMuonDiJet20Mu5L3FilterByDR_*_*', 'keep *_hltBSoftMuonDiJet20Mu5SelL3BJetTagsByDR_*_*', 'keep *_hltBSoftMuonDiJet40Mu5L3FilterByDR_*_*', 'keep *_hltBSoftMuonDiJet40Mu5SelL3BJetTagsByDR_*_*', 'keep *_hltBSoftMuonDiJet70Mu5L3FilterByDR_*_*', 'keep *_hltBSoftMuonDiJet70Mu5SelL3BJetTagsByDR_*_*', 'keep *_hltBSoftMuonMu5L3_*_*', 'keep *_hltCSVJetTagSingleTopEle27_*_*', 'keep *_hltCSVJetTagSingleTopIsoMu24_*_*', 'keep *_hltCaloJetCorrectedRegional_*_*', 'keep *_hltCaloJetCorrected_*_*', 'keep *_hltCaloJetL1FastJetCorrected_*_*', 'keep *_hltCaloStage2Digis_*_*', 'keep *_hltCleanedCorrectedIslandBarrelSuperClustersHI_*_*', 'keep *_hltCleanedHiCorrectedIslandBarrelSuperClustersHI_*_*', 'keep *_hltCombinedSecondaryVertexBJetTagsCalo_*_*', 'keep *_hltCombinedSecondaryVertexBJetTagsPF_*_*', 'keep *_hltConvPFTausTightIsoTrackFindingIsolation_*_*', 'keep *_hltConvPFTausTightIsoTrackFinding_*_*', 'keep *_hltConvPFTausTightIsoTrackPt5Isolation_*_*', 'keep *_hltConvPFTausTightIsoTrackPt5_*_*', 'keep *_hltConvPFTausTightIso_*_*', 'keep *_hltConvPFTausTrackFindingLooseIsolation_*_*', 'keep *_hltConvPFTausTrackFinding_*_*', 'keep *_hltConvPFTaus_*_*', 'keep *_hltCorrectedIslandBarrelSuperClustersHI_*_*', 'keep *_hltCorrectedIslandEndcapSuperClustersHI_*_*', 'keep *_hltCsc2DRecHits_*_*', 'keep *_hltCscSegments_*_*', 'keep *_hltDoublePFTau25TrackPt5MediumIsolationProng4L1HLTMatched_*_*', 'keep *_hltDoublePFTau25TrackPt5MediumIsolationProng4_*_*', 'keep *_hltDoublePFTau25TrackPt5MediumIsolation_*_*', 'keep *_hltDoublePFTau25TrackPt5_*_*', 'keep *_hltDoublePFTau25_*_*', 'keep *_hltDoublePFTauTightIso45Track5_*_*', 'keep *_hltDoublePFTauTightIso45Track_*_*', 'keep *_hltDt4DSegments_*_*', 'keep *_hltEcalPhiSymFilter_*_*', 'keep *_hltEcalRecHitAll_*_*', 'keep *_hltEle20CaloIdVTCaloIsoTTrkIdTTrkIsoTTrackIsoFilterL1SingleEG18orL1SingleEG20_*_*', 'keep *_hltEle20CaloIdVTTrkIdTDphiFilter_*_*', 'keep *_hltEle27WP85PixelMatchElectronsL1Seeded_*_*', 'keep *_hltFEDSelectorLumiPixels_*_*', 'keep *_hltFastPVPixelTracksMerger_*_*', 'keep *_hltFastPVPixelTracksRecover_*_*', 'keep *_hltFastPVPixelTracks_*_*', 'keep *_hltFastPVPixelVertices3D_*_*', 'keep *_hltFastPVPixelVertices_*_*', 'keep *_hltFastPixelBLifetimeL3TagInfos_*_*', 'keep *_hltFastPrimaryVertex_*_*', 'keep *_hltFilterDoubleIsoPFTau45Trk5LeadTrack5IsolationL1HLTMatched_*_*', 'keep *_hltFilterL2EtCutDoublePFIsoTau45Trk5_*_*', 'keep *_hltFilterL2EtCutSingleIsoPFTau35Trk20MET70_*_*', 'keep *_hltFilterSingleIsoPFTau35Trk20LeadTrackPt20_*_*', 'keep *_hltFilterSingleIsoPFTau35Trk20MET60LeadTrack20IsolationL1HLTMatched_*_*', 'keep *_hltFilterSingleIsoPFTau35Trk20MET70LeadTrack20IsolationL1HLTMatched_*_*', 'keep *_hltGmtStage2Digis_*_*', 'keep *_hltGoodOnlinePVs_*_*', 'keep *_hltGtStage2Digis_*_*', 'keep *_hltGtStage2ObjectMap_*_*', 'keep *_hltHICaloJetCorrected_*_*', 'keep *_hltHICaloJetIDPassed_*_*', 'keep *_hltHIGoodLooseTracks_*_*', 'keep *_hltHIPixel3PrimTracks_*_*', 'keep *_hltHISelectedVertex_*_*', 'keep *_hltHISiPixelClusters_*_*', 'keep *_hltHITIPTCorrectorHB_*_*', 'keep *_hltHITIPTCorrectorHE_*_*', 'keep *_hltHiCorrectedIslandBarrelSuperClustersHI_*_*', 'keep *_hltHiCorrectedIslandEndcapSuperClustersHI_*_*', 'keep *_hltHiIslandSuperClustersHI_*_*', 'keep *_hltIsolPixelTrackProdHB_*_*', 'keep *_hltIsolPixelTrackProdHE_*_*', 'keep *_hltIter0PFlowTrackSelectionHighPurity_*_*', 'keep *_hltIter1Merged_*_*', 'keep *_hltIter1PFlowTrackSelectionHighPurity_*_*', 'keep *_hltIter2Merged_*_*', 'keep *_hltIter2PFlowTrackSelectionHighPurity_*_*', 'keep *_hltIter3Merged_*_*', 'keep *_hltIter4Merged_*_*', 'keep *_hltIterativeCone5PileupSubtractionCaloJets_*_*', 'keep *_hltL1HLTSingleIsoPFTau35Trk20Met60JetsMatch_*_*', 'keep *_hltL1IsoElectronTrackIsol_*_*', 'keep *_hltL1NonIsoElectronTrackIsol_*_*', 'keep *_hltL1SeededRecoEcalCandidate_*_*', 'keep *_hltL1sDoubleTauJet44Eta2p17orDoubleJet64Central_*_*', 'keep *_hltL1sDoubleTauJet44erorDoubleJetC64_*_*', 'keep *_hltL1sL1EG18er_*_*', 'keep *_hltL1sL1ETM36ORETM40_*_*', 'keep *_hltL1sL1Jet52ETM30_*_*', 'keep *_hltL1sL1SingleEG12_*_*', 'keep *_hltL1sL1SingleEG15_*_*', 'keep *_hltL1sL1SingleEG18orL1SingleEG20_*_*', 'keep *_hltL1sL1SingleMu10_*_*', 'keep *_hltL1sL1SingleMu14Eta2p1_*_*', 'keep *_hltL1sMu16Eta2p1_*_*', 'keep *_hltL2MuonCandidatesNoVtx_*_*', 'keep *_hltL2MuonCandidates_*_*', 'keep *_hltL2MuonSeeds_*_*', 'keep *_hltL2Muons_*_*', 'keep *_hltL2TauJets_*_*', 'keep *_hltL3MuonCandidates_*_*', 'keep *_hltL3MuonsIOHit_*_*', 'keep *_hltL3MuonsLinksCombination_*_*', 'keep *_hltL3MuonsOIHit_*_*', 'keep *_hltL3MuonsOIState_*_*', 'keep *_hltL3Muons_*_*', 'keep *_hltL3NoFiltersNoVtxMuonCandidates_*_*', 'keep *_hltL3NoFiltersNoVtxMuons_*_*', 'keep *_hltL3SecondaryVertexTagInfos_*_*', 'keep *_hltL3TkFromL2OICombination_*_*', 'keep *_hltL3TkTracksFromL2IOHit_*_*', 'keep *_hltL3TkTracksFromL2OIHit_*_*', 'keep *_hltL3TkTracksFromL2OIState_*_*', 'keep *_hltL3TkTracksFromL2_*_*', 'keep *_hltL3TrackCandidateFromL2IOHit_*_*', 'keep *_hltL3TrackCandidateFromL2OIHit_*_*', 'keep *_hltL3TrackCandidateFromL2OIState_*_*', 'keep *_hltL3TrajSeedIOHit_*_*', 'keep *_hltL3TrajSeedOIHit_*_*', 'keep *_hltL3TrajSeedOIState_*_*', 'keep *_hltL3TrajectorySeed_*_*', 'keep *_hltL3crIsoL1sMu16Eta2p1L1f0L2f16QL3f18QL3crIsoRhoFiltered0p15_*_*', 'keep *_hltLeadingCentralJets30SingleTopEle27_*_*', 'keep *_hltLeadingCentralJets30SingleTopIsoMu24_*_*', 'keep *_hltMet_*_*', 'keep *_hltMu8Ele17CaloIdTCaloIsoVLPixelMatchFilter_*_*', 'keep *_hltMuTrackJpsiCtfTrackCands_*_*', 'keep *_hltMuTrackJpsiPixelTrackCands_*_*', 'keep *_hltMuonCSCDigis_*_*', 'keep *_hltMuonCSCDigis_MuonCSCStripDigi_*', 'keep *_hltMuonCSCDigis_MuonCSCWireDigi_*', 'keep *_hltMuonDTDigis_*_*', 'keep *_hltMuonRPCDigis_*_*', 'keep *_hltOnlineBeamSpot_*_*', 'keep *_hltOnlinePrimaryVertices_*_*', 'keep *_hltOverlapFilterEle20LooseIsoPFTau20OldVersion_*_*', 'keep *_hltOverlapFilterIsoEle20MediumIsoPFTau20_*_*', 'keep *_hltOverlapFilterIsoMu15IsoPFTau20_*_*', 'keep *_hltOverlapFilterIsoMu15MediumIsoPFTau20_*_*', 'keep *_hltOverlapFilterIsoMu15TightIsoPFTau20_*_*', 'keep *_hltOverlapFilterIsoMu18LooseIsoPFTau20_*_*', 'keep *_hltOverlapFilterIsoMu18PFTau25TrackPt5Prong4_*_*', 'keep *_hltPFJetForBtag_*_*', 'keep *_hltPFTau15TrackLooseIso_*_*', 'keep *_hltPFTau15Track_*_*', 'keep *_hltPFTau15_*_*', 'keep *_hltPFTau20IsoMuVertex_*_*', 'keep *_hltPFTau20TrackLooseIso_*_*', 'keep *_hltPFTau20Track_*_*', 'keep *_hltPFTau20_*_*', 'keep *_hltPFTau25TrackPt5MediumIsolationProng4IsoMuVertex_*_*', 'keep *_hltPFTau25TrackPt5MediumIsolationProng4_*_*', 'keep *_hltPFTau25TrackPt5MediumIsolation_*_*', 'keep *_hltPFTau25TrackPt5_*_*', 'keep *_hltPFTau25_*_*', 'keep *_hltPFTau35TrackPt20LooseIsoProng2_*_*', 'keep *_hltPFTau35TrackPt20LooseIso_*_*', 'keep *_hltPFTau35TrackPt20_*_*', 'keep *_hltPFTau35Track_*_*', 'keep *_hltPFTau35_*_*', 'keep *_hltPFTauEleVertex20_*_*', 'keep *_hltPFTauJetTracksAssociator_*_*', 'keep *_hltPFTauMediumIso20TrackMediumIso_*_*', 'keep *_hltPFTauMediumIso20Track_*_*', 'keep *_hltPFTauMediumIso20_*_*', 'keep *_hltPFTauMediumIso35Track_*_*', 'keep *_hltPFTauMediumIso35_*_*', 'keep *_hltPFTauTagInfo_*_*', 'keep *_hltPFTauTightIso20TrackTightIso_*_*', 'keep *_hltPFTauTightIso20Track_*_*', 'keep *_hltPFTauTightIso20_*_*', 'keep *_hltPFlowTrackSelectionHighPurity_*_*', 'keep *_hltParticleFlowForTaus_*_*', 'keep *_hltParticleFlow_*_*', 'keep *_hltPixelMatch3HitElectronsActivity_*_*', 'keep *_hltPixelMatch3HitElectronsL1Seeded_*_*', 'keep *_hltPixelMatchCleanElectronsL1Seeded_*_*', 'keep *_hltPixelMatchElectronsActivity_*_*', 'keep *_hltPixelMatchElectronsL1Iso_*_*', 'keep *_hltPixelMatchElectronsL1NonIso_*_*', 'keep *_hltPixelMatchElectronsL1Seeded_*_*', 'keep *_hltPixelTracks_*_*', 'keep *_hltPixelVertices3DbbPhi_*_*', 'keep *_hltPixelVertices_*_*', 'keep *_hltRecoEcalSuperClusterActivityCandidateSC4_*_*', 'keep *_hltRecoEcalSuperClusterActivityCandidateSC5_*_*', 'keep *_hltRecoEcalSuperClusterActivityCandidate_*_*', 'keep *_hltRpcRecHits_*_*', 'keep *_hltSelector4CentralJetsL1FastJet_*_*', 'keep *_hltSelector8CentralJetsL1FastJet_*_*', 'keep *_hltSelectorJets20L1FastJet_*_*', 'keep *_hltSiPixelCluster_*_*', 'keep *_hltSiPixelClusters_*_*', 'keep *_hltSiStripClusters_*_*', 'keep *_hltSiStripRawToClustersFacility_*_*', 'keep *_hltSingleMu15L3Filtered15_*_*', 'keep *_hltSingleMuIsoL1s14L3IsoFiltered15eta2p1_*_*', 'keep *_hltSingleMuIsoL3IsoFiltered15_*_*', 'keep *_hltTowerMakerForAll_*_*', 'keep *_hltTowerMakerForMuons_*_*', 'keep *_hltTriggerSummaryAOD_*_*', 'keep *_hltTriggerSummaryRAW_*_*', 'keep *_hltTrimmedPixelVertices_*_*', 'keep *_hltVerticesL3_*_*', 'keep *_hltVerticesPFSelector_*_*', 'keep DcsStatuss_hltScalersRawToDigi_*_*', 'keep FEDRawDataCollection_rawDataCollector_*_*', 'keep FEDRawDataCollection_rawDataRepacker_*_*', 'keep FEDRawDataCollection_source_*_*', 'keep FEDRawDataCollection_virginRawDataRepacker_*_*', 'keep L2MuonTrajectorySeeds_hltL2MuonSeeds_*_*', 'keep L3MuonTrajectorySeeds_hltHIL3TrajSeedOIHit_*_*', 'keep L3MuonTrajectorySeeds_hltHIL3TrajectorySeed_*_*', 'keep L3MuonTrajectorySeeds_hltL3TrajSeedOIState_*_*', 'keep LumiScalerss_hltScalersRawToDigi_*_*', 'keep SiPixelClusteredmNewDetSetVector_hltSiPixelClusters_*_*', 'keep TrackCandidates_hltHIL3TrackCandidateFromL2OIHit_*_*', 'keep TrackCandidates_hltHIL3TrackCandidateFromL2OIState_*_*', 'keep TrackingRecHitsOwned_hltL3Muons_*_*', 'keep edmTriggerResults_*_*_*', 'keep recoCaloJets_*_*_*', 'keep recoCaloMETs_*_*_*', 'keep recoCaloMETs_hltMet_*_*', 'keep recoCompositeCandidates_*_*_*', 'keep recoElectrons_*_*_*', 'keep recoIsolatedPixelTrackCandidates_*_*_*', 'keep recoMETs_*_*_*', 'keep recoPFJets_*_*_*', 'keep recoPFTaus_*_*_*', 'keep recoRecoChargedCandidates_*_*_*', 'keep recoRecoChargedCandidates_hltHIL3MuonCandidates_*_*', 'keep recoRecoChargedCandidates_hltL2MuonCandidates_*_*', 'keep recoRecoEcalCandidatesToValuefloatAssociation_hltL1IsoHLTClusterShape_*_*', 'keep recoRecoEcalCandidatesToValuefloatAssociation_hltL1IsolatedPhotonEcalIsol_*_*', 'keep recoRecoEcalCandidatesToValuefloatAssociation_hltL1IsolatedPhotonHcalForHE_*_*', 'keep recoRecoEcalCandidatesToValuefloatAssociation_hltL1IsolatedPhotonHcalIsol_*_*', 'keep recoRecoEcalCandidatesToValuefloatAssociation_hltL1NonIsoHLTClusterShape_*_*', 'keep recoRecoEcalCandidatesToValuefloatAssociation_hltL1NonIsolatedPhotonEcalIsol_*_*', 'keep recoRecoEcalCandidatesToValuefloatAssociation_hltL1NonIsolatedPhotonHcalForHE_*_*', 'keep recoRecoEcalCandidatesToValuefloatAssociation_hltL1NonIsolatedPhotonHcalIsol_*_*', 'keep recoRecoEcalCandidates_*_*_*', 'keep recoRecoEcalCandidates_hltL1IsoRecoEcalCandidate_*_*', 'keep recoRecoEcalCandidates_hltL1NonIsoRecoEcalCandidate_*_*', 'keep recoTrackExtras_hltHIL3MuonsOIHit_*_*', 'keep recoTrackExtras_hltHIL3MuonsOIState_*_*', 'keep recoTracks_hltHIL3MuonsOIHit_*_*', 'keep recoTracks_hltHIL3MuonsOIState_*_*', 'keep recoTracks_hltHIL3Muons_*_*', 'keep recoTracks_hltHIL3TkTracksFromL2OIHit_*_*', 'keep recoTracks_hltHIL3TkTracksFromL2OIState_*_*', 'keep recoTracks_hltHIL3TkTracksFromL2_*_*', 'keep triggerTriggerEventWithRefs_*_*_*', 'keep triggerTriggerEvent_*_*_*', 'keep triggerTriggerFilterObjectWithRefs_*_*_*', 'drop *_trackingtruthprod_*_*', 'drop *_electrontruth_*_*', 'keep *_mix_MergedTrackTruth_*', 'keep CrossingFramePlaybackInfoNew_*_*_*', 'keep PixelDigiSimLinkedmDetSetVector_simSiPixelDigis_*_*', 'keep StripDigiSimLinkedmDetSetVector_simSiStripDigis_*_*', 'drop *_mix_simSiPixelDigis*_*', 'drop *_mix_simSiStripDigis*_*', 'keep *_allTrackMCMatch_*_*' ) ), splitLevel = cms.untracked.int32(0) ) process.RAWRECOEventContent = cms.PSet( eventAutoFlushCompressedSize = cms.untracked.int32(5242880), outputCommands = cms.untracked.vstring( ('drop *', 'drop *', 'keep DetIdedmEDCollection_siStripDigis_*_*', 'keep DetIdedmEDCollection_siPixelDigis_*_*', 'keep *_siPixelClusters_*_*', 'keep *_siStripClusters_*_*', 'keep ClusterSummary_clusterSummaryProducer_*_*', 'keep *_dt1DRecHits_*_*', 'keep *_dt4DSegments_*_*', 'keep *_dt1DCosmicRecHits_*_*', 'keep *_dt4DCosmicSegments_*_*', 'keep *_csc2DRecHits_*_*', 'keep *_cscSegments_*_*', 'keep *_rpcRecHits_*_*', 'keep *_hbhereco_*_*', 'keep *_hbheprereco_*_*', 'keep *_hfreco_*_*', 'keep *_horeco_*_*', 'keep HBHERecHitsSorted_hbherecoMB_*_*', 'keep HORecHitsSorted_horecoMB_*_*', 'keep HFRecHitsSorted_hfrecoMB_*_*', 'keep ZDCDataFramesSorted_hcalDigis_*_*', 'keep ZDCRecHitsSorted_*_*_*', 'keep *_reducedHcalRecHits_*_*', 'keep *_castorreco_*_*', 'keep HcalUnpackerReport_castorDigis_*_*', 'keep HcalUnpackerReport_hcalDigiAlCaMB_*_*', 'keep HcalUnpackerReport_hcalDigis_*_*', 'keep *_ecalPreshowerRecHit_*_*', 'keep *_ecalRecHit_*_*', 'keep *_ecalCompactTrigPrim_*_*', 'keep *_ecalTPSkim_*_*', 'keep *_selectDigi_*_*', 'keep EcalRecHitsSorted_reducedEcalRecHitsEE_*_*', 'keep EcalRecHitsSorted_reducedEcalRecHitsEB_*_*', 'keep EcalRecHitsSorted_reducedEcalRecHitsES_*_*', 'keep *_hybridSuperClusters_*_*', 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', 'keep *_multi5x5SuperClusters_*_*', 'keep recoSuperClusters_multi5x5SuperClusters_*_*', 'keep recoSuperClusters_multi5x5SuperClustersWithPreshower_*_*', 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', 'keep recoPreshowerClusters_multi5x5SuperClustersWithPreshower_*_*', 'keep recoPreshowerClusterShapes_multi5x5PreshowerClusterShape_*_*', 'keep *_particleFlowSuperClusterECAL_*_*', 'drop recoClusterShapes_*_*_*', 'drop recoBasicClustersToOnerecoClusterShapesAssociation_*_*_*', 'drop recoBasicClusters_multi5x5BasicClusters_multi5x5BarrelBasicClusters_*', 'drop recoSuperClusters_multi5x5SuperClusters_multi5x5BarrelSuperClusters_*', 'keep *_CkfElectronCandidates_*_*', 'keep *_GsfGlobalElectronTest_*_*', 'keep *_electronMergedSeeds_*_*', 'keep recoGsfTracks_electronGsfTracks_*_*', 'keep recoGsfTrackExtras_electronGsfTracks_*_*', 'keep recoTrackExtras_electronGsfTracks_*_*', 'keep TrackingRecHitsOwned_electronGsfTracks_*_*', 'keep recoTracks_generalTracks_*_*', 'keep recoTrackExtras_generalTracks_*_*', 'keep TrackingRecHitsOwned_generalTracks_*_*', 'keep *_generalTracks_MVAValues_*', 'keep *_generalTracks_MVAVals_*', 'keep TrackingRecHitsOwned_extraFromSeeds_*_*', 'keep uints_extraFromSeeds_*_*', 'keep recoTracks_beamhaloTracks_*_*', 'keep recoTrackExtras_beamhaloTracks_*_*', 'keep TrackingRecHitsOwned_beamhaloTracks_*_*', 'keep recoTracks_conversionStepTracks_*_*', 'keep recoTrackExtras_conversionStepTracks_*_*', 'keep TrackingRecHitsOwned_conversionStepTracks_*_*', 'keep *_ctfPixelLess_*_*', 'keep *_dedxTruncated40_*_*', 'keep *_dedxHitInfo_*_*', 'keep *_dedxHarmonic2_*_*', 'keep *_trackExtrapolator_*_*', 'keep *_ak4CaloJets_*_*', 'keep *_ak4PFJets_*_*', 'keep *_ak4PFJetsCHS_*_*', 'keep *_ak8PFJetsCHS_*_*', 'keep *_ak8PFJetsCHSSoftDrop_*_*', 'keep *_cmsTopTagPFJetsCHS_*_*', 'keep *_JetPlusTrackZSPCorJetAntiKt4_*_*', 'keep *_ak4TrackJets_*_*', 'keep recoRecoChargedRefCandidates_trackRefsForJets_*_*', 'keep *_caloTowers_*_*', 'keep *_towerMaker_*_*', 'keep *_CastorTowerReco_*_*', 'keep *_ak4JetTracksAssociatorAtVertex_*_*', 'keep *_ak4JetTracksAssociatorAtVertexPF_*_*', 'keep *_ak4JetTracksAssociatorAtCaloFace_*_*', 'keep *_ak4JetTracksAssociatorExplicit_*_*', 'keep *_ak4JetExtender_*_*', 'keep *_ak4JetID_*_*', 'keep *_ak5CastorJets_*_*', 'keep *_ak5CastorJetID_*_*', 'keep *_ak7CastorJets_*_*', 'keep *_ak7CastorJetID_*_*', 'keep *_fixedGridRhoAll_*_*', 'keep *_fixedGridRhoFastjetAll_*_*', 'keep *_fixedGridRhoFastjetAllTmp_*_*', 'keep *_fixedGridRhoFastjetAllCalo_*_*', 'keep *_fixedGridRhoFastjetCentral_*_*', 'keep *_fixedGridRhoFastjetCentralCalo_*_*', 'keep *_fixedGridRhoFastjetCentralChargedPileUp_*_*', 'keep *_fixedGridRhoFastjetCentralNeutral_*_*', 'keep *_ak8PFJetsCHSSoftDropMass_*_*', 'keep recoCaloMETs_caloMet_*_*', 'keep recoCaloMETs_caloMetBE_*_*', 'keep recoCaloMETs_caloMetBEFO_*_*', 'keep recoCaloMETs_caloMetM_*_*', 'keep recoPFMETs_pfMet_*_*', 'keep recoPFMETs_pfChMet_*_*', 'keep recoPFMETs_pfMetEI_*_*', 'keep recoMuonMETCorrectionDataedmValueMap_muonMETValueMapProducer_*_*', 'keep recoHcalNoiseRBXs_hcalnoise_*_*', 'keep HcalNoiseSummary_hcalnoise_*_*', 'keep recoCSCHaloData_CSCHaloData_*_*', 'keep recoEcalHaloData_EcalHaloData_*_*', 'keep recoGlobalHaloData_GlobalHaloData_*_*', 'keep recoHcalHaloData_HcalHaloData_*_*', 'keep recoBeamHaloSummary_BeamHaloSummary_*_*', 'keep *_MuonSeed_*_*', 'keep *_ancientMuonSeed_*_*', 'keep *_displacedMuonSeeds_*_*', 'keep TrackingRecHitsOwned_globalMuons_*_*', 'keep TrackingRecHitsOwned_tevMuons_*_*', 'keep recoCaloMuons_calomuons_*_*', 'keep *_CosmicMuonSeed_*_*', 'keep recoTrackExtras_cosmicMuons_*_*', 'keep TrackingRecHitsOwned_cosmicMuons_*_*', 'keep recoTrackExtras_cosmicMuons1Leg_*_*', 'keep TrackingRecHitsOwned_cosmicMuons1Leg_*_*', 'keep recoTracks_cosmicsVetoTracks_*_*', 'keep *_SETMuonSeed_*_*', 'keep recoTracks_standAloneSETMuons_*_*', 'keep recoTrackExtras_standAloneSETMuons_*_*', 'keep TrackingRecHitsOwned_standAloneSETMuons_*_*', 'keep recoTracks_globalSETMuons_*_*', 'keep recoTrackExtras_globalSETMuons_*_*', 'keep TrackingRecHitsOwned_globalSETMuons_*_*', 'keep recoMuons_muonsWithSET_*_*', 'keep *_muons_*_*', 'keep *_particleFlow_muons_*', 'drop *_muons_muons1stStep2muonsMap_*', 'drop recoIsoDepositedmValueMap_muons_*_*', 'drop doubleedmValueMap_muons_muPFIso*_*', 'keep recoTracks_standAloneMuons_*_*', 'keep recoTrackExtras_standAloneMuons_*_*', 'keep TrackingRecHitsOwned_standAloneMuons_*_*', 'keep recoTracks_globalMuons_*_*', 'keep recoTrackExtras_globalMuons_*_*', 'keep recoTracks_tevMuons_*_*', 'keep recoTrackExtras_tevMuons_*_*', 'keep recoTracks_generalTracks_*_*', 'keep recoTracks_displacedTracks_*_*', 'keep recoTracksToOnerecoTracksAssociation_tevMuons_*_*', 'keep recoTracks_displacedGlobalMuons_*_*', 'keep recoTrackExtras_displacedGlobalMuons_*_*', 'keep TrackingRecHitsOwned_displacedGlobalMuons_*_*', 'keep recoTracks_cosmicMuons_*_*', 'keep recoMuons_muonsFromCosmics_*_*', 'keep recoTracks_cosmicMuons1Leg_*_*', 'keep recoMuons_muonsFromCosmics1Leg_*_*', 'keep recoTracks_refittedStandAloneMuons_*_*', 'keep recoTrackExtras_refittedStandAloneMuons_*_*', 'keep TrackingRecHitsOwned_refittedStandAloneMuons_*_*', 'keep recoTracks_displacedStandAloneMuons__*', 'keep recoTrackExtras_displacedStandAloneMuons_*_*', 'keep TrackingRecHitsOwned_displacedStandAloneMuons_*_*', 'keep *_muIsoDepositTk_*_*', 'keep *_muIsoDepositCalByAssociatorTowers_*_*', 'keep *_muIsoDepositCalByAssociatorHits_*_*', 'keep *_muIsoDepositJets_*_*', 'keep *_muGlobalIsoDepositCtfTk_*_*', 'keep *_muGlobalIsoDepositCalByAssociatorTowers_*_*', 'keep *_muGlobalIsoDepositCalByAssociatorHits_*_*', 'keep *_muGlobalIsoDepositJets_*_*', 'keep *_softPFMuonsTagInfos_*_*', 'keep *_softPFElectronsTagInfos_*_*', 'keep *_softPFElectronBJetTags_*_*', 'keep *_softPFMuonBJetTags_*_*', 'keep *_pfImpactParameterTagInfos_*_*', 'keep *_pfTrackCountingHighEffBJetTags_*_*', 'keep *_pfJetProbabilityBJetTags_*_*', 'keep *_pfJetBProbabilityBJetTags_*_*', 'keep *_pfSecondaryVertexTagInfos_*_*', 'keep *_pfInclusiveSecondaryVertexFinderTagInfos_*_*', 'keep *_pfSimpleSecondaryVertexHighEffBJetTags_*_*', 'keep *_pfSimpleInclusiveSecondaryVertexHighEffBJetTags_*_*', 'keep *_pfCombinedSecondaryVertexV2BJetTags_*_*', 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTags_*_*', 'keep *_pfCombinedMVAV2BJetTags_*_*', 'keep *_inclusiveCandidateSecondaryVertices_*_*', 'keep *_inclusiveCandidateSecondaryVerticesCvsL_*_*', 'keep *_pfInclusiveSecondaryVertexFinderCvsLTagInfos_*_*', 'keep *_pfCombinedCvsLJetTags_*_*', 'keep *_pfCombinedCvsBJetTags_*_*', 'keep recoRecoTauPiZeros_hpsPFTauProducer_pizeros_*', 'keep recoPFTaus_hpsPFTauProducer_*_*', 'keep *_hpsPFTauDiscriminationByDeadECALElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByDecayModeFinding_*_*', 'keep *_hpsPFTauDiscriminationByDecayModeFindingNewDMs_*_*', 'keep *_hpsPFTauDiscriminationByDecayModeFindingOldDMs_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolation_*_*', 'keep *_hpsPFTauDiscriminationByLooseChargedIsolation_*_*', 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3Hits_*_*', 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3HitsdR03_*_*', 'keep *_hpsPFTauDiscriminationByLooseElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByLooseMuonRejection3_*_*', 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3Hits_*_*', 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3HitsdR03_*_*', 'keep *_hpsPFTauDiscriminationByRawCombinedIsolationDBSumPtCorr3Hits_*_*', 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3Hits_*_*', 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3HitsdR03_*_*', 'keep *_hpsPFTauDiscriminationByTightMuonRejection3_*_*', 'keep *_hpsPFTauDiscriminationByPhotonPtSumOutsideSignalCone_*_*', 'keep *_hpsPFTauNeutralIsoPtSum_*_*', 'keep *_hpsPFTauPUcorrPtSum_*_*', 'keep *_hpsPFTauChargedIsoPtSum_*_*', 'keep *_hpsPFTauTransverseImpactParameters_*_*', 'keep *_hpsPFTauFootprintCorrection_*_*', 'keep *_hpsPFTauNeutralIsoPtSumWeight_*_*', 'keep *_hpsPFTauPhotonPtSumOutsideSignalCone_*_*', 'keep *_hpsPFTauDiscriminationByMVA6rawElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6VLooseElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6LooseElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6MediumElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6TightElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6VTightElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBoldDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBnewDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWoldDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWnewDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauChargedIsoPtSumdR03_*_*', 'keep *_hpsPFTauNeutralIsoPtSumdR03_*_*', 'keep *_hpsPFTauNeutralIsoPtSumWeightdR03_*_*', 'keep *_hpsPFTauFootprintCorrectiondR03_*_*', 'keep *_hpsPFTauPhotonPtSumOutsideSignalConedR03_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBdR03oldDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWdR03oldDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_offlinePrimaryVertices__*', 'keep *_offlinePrimaryVerticesWithBS_*_*', 'keep *_offlinePrimaryVerticesFromCosmicTracks_*_*', 'keep *_nuclearInteractionMaker_*_*', 'keep *_generalV0Candidates_*_*', 'keep *_inclusiveSecondaryVertices_*_*', 'keep recoGsfElectronCores_gsfElectronCores_*_*', 'keep recoGsfElectronCores_gedGsfElectronCores_*_*', 'keep recoGsfElectrons_gsfElectrons_*_*', 'keep recoGsfElectrons_gedGsfElectrons_*_*', 'keep recoGsfElectronCores_uncleanedOnlyGsfElectronCores_*_*', 'keep recoGsfElectrons_uncleanedOnlyGsfElectrons_*_*', 'keep floatedmValueMap_eidRobustLoose_*_*', 'keep floatedmValueMap_eidRobustTight_*_*', 'keep floatedmValueMap_eidRobustHighEnergy_*_*', 'keep floatedmValueMap_eidLoose_*_*', 'keep floatedmValueMap_eidTight_*_*', 'keep *_egmGedGsfElectronPFIsolation_*_*', 'keep *_photonEcalPFClusterIsolationProducer_*_*', 'keep *_electronEcalPFClusterIsolationProducer_*_*', 'keep *_photonHcalPFClusterIsolationProducer_*_*', 'keep *_electronHcalPFClusterIsolationProducer_*_*', 'drop *_egmGsfElectronIDs_*_*', 'drop *_egmPhotonIDs_*_*', 'keep *_gedPhotonCore_*_*', 'keep *_gedPhotons_*_*', 'keep *_particleBasedIsolation_*_*', 'keep recoPhotons_mustachePhotons_*_*', 'keep recoPhotonCores_mustachePhotonCore_*_*', 'keep recoPhotons_photons_*_*', 'keep recoPhotonCores_photonCore_*_*', 'keep recoConversions_conversions_*_*', 'keep recoConversions_mustacheConversions_*_*', 'drop *_conversions_uncleanedConversions_*', 'drop *_gedPhotonsTmp_valMapPFEgammaCandToPhoton_*', 'keep recoConversions_allConversions_*_*', 'keep recoConversions_allConversionsOldEG_*_*', 'keep recoTracks_ckfOutInTracksFromConversions_*_*', 'keep recoTracks_ckfInOutTracksFromConversions_*_*', 'keep recoTrackExtras_ckfOutInTracksFromConversions_*_*', 'keep recoTrackExtras_ckfInOutTracksFromConversions_*_*', 'keep TrackingRecHitsOwned_ckfOutInTracksFromConversions_*_*', 'keep TrackingRecHitsOwned_ckfInOutTracksFromConversions_*_*', 'keep recoConversions_uncleanedOnlyAllConversions_*_*', 'keep recoTracks_uncleanedOnlyCkfOutInTracksFromConversions_*_*', 'keep recoTracks_uncleanedOnlyCkfInOutTracksFromConversions_*_*', 'keep recoTrackExtras_uncleanedOnlyCkfOutInTracksFromConversions_*_*', 'keep recoTrackExtras_uncleanedOnlyCkfInOutTracksFromConversions_*_*', 'keep TrackingRecHitsOwned_uncleanedOnlyCkfOutInTracksFromConversions_*_*', 'keep TrackingRecHitsOwned_uncleanedOnlyCkfInOutTracksFromConversions_*_*', 'keep *_PhotonIDProd_*_*', 'keep *_PhotonIDProdGED_*_*', 'keep recoRecoEcalCandidates_hfRecoEcalCandidate_*_*', 'keep *_hfEMClusters_*_*', 'keep *_gedGsfElectronCores_*_*', 'keep *_gedGsfElectrons_*_*', 'keep *_pixelTracks_*_*', 'keep *_pixelVertices_*_*', 'drop CaloTowersSorted_towerMakerPF_*_*', 'keep recoPFRecHits_particleFlowClusterECAL_Cleaned_*', 'keep recoPFRecHits_particleFlowClusterHCAL_Cleaned_*', 'keep recoPFRecHits_particleFlowClusterHO_Cleaned_*', 'keep recoPFRecHits_particleFlowClusterHF_Cleaned_*', 'keep recoPFRecHits_particleFlowClusterPS_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitECAL_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitHBHE_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitHF_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitHO_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitPS_Cleaned_*', 'keep recoPFClusters_particleFlowClusterECAL_*_*', 'keep recoPFClusters_particleFlowClusterHCAL_*_*', 'keep recoPFClusters_particleFlowClusterHO_*_*', 'keep recoPFClusters_particleFlowClusterHF_*_*', 'keep recoPFClusters_particleFlowClusterPS_*_*', 'keep recoPFBlocks_particleFlowBlock_*_*', 'keep recoPFCandidates_particleFlowEGamma_*_*', 'keep recoCaloClusters_particleFlowEGamma_*_*', 'keep recoSuperClusters_particleFlowEGamma_*_*', 'keep recoConversions_particleFlowEGamma_*_*', 'keep recoPFCandidates_particleFlow_*_*', 'keep recoPFCandidates_particleFlowTmp_electrons_*', 'keep recoPFCandidates_particleFlowTmp_*_*', 'drop recoPFCandidates_particleFlowTmp__*', 'keep recoPFDisplacedVertexs_particleFlowDisplacedVertex_*_*', 'keep *_pfElectronTranslator_*_*', 'keep *_pfPhotonTranslator_*_*', 'keep *_particleFlow_electrons_*', 'keep *_particleFlow_photons_*', 'keep *_particleFlow_muons_*', 'keep *_trackerDrivenElectronSeeds_preid_*', 'keep *_particleFlowPtrs_*_*', 'keep *_particleFlowTmpPtrs_*_*', 'keep *_offlineBeamSpot_*_*', 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', 'keep *_l1GtRecord_*_*', 'keep *_l1GtTriggerMenuLite_*_*', 'keep *_conditionsInEdm_*_*', 'keep *_l1extraParticles_*_*', 'keep *_l1L1GtObjectMap_*_*', 'keep L1MuGMTReadoutCollection_gtDigis_*_*', 'keep L1GctEmCand*_gctDigis_*_*', 'keep L1GctJetCand*_gctDigis_*_*', 'keep L1GctEtHad*_gctDigis_*_*', 'keep L1GctEtMiss*_gctDigis_*_*', 'keep L1GctEtTotal*_gctDigis_*_*', 'keep L1GctHtMiss*_gctDigis_*_*', 'keep L1GctJetCounts*_gctDigis_*_*', 'keep L1GctHFRingEtSums*_gctDigis_*_*', 'keep L1GctHFBitCounts*_gctDigis_*_*', 'keep LumiDetails_lumiProducer_*_*', 'keep LumiSummary_lumiProducer_*_*', 'drop *_hlt*_*_*', 'keep *_hltGtStage2ObjectMap_*_*', 'keep edmTriggerResults_*_*_*', 'keep triggerTriggerEvent_*_*_*', 'keep L1AcceptBunchCrossings_scalersRawToDigi_*_*', 'keep L1TriggerScalerss_scalersRawToDigi_*_*', 'keep Level1TriggerScalerss_scalersRawToDigi_*_*', 'keep LumiScalerss_scalersRawToDigi_*_*', 'keep BeamSpotOnlines_scalersRawToDigi_*_*', 'keep DcsStatuss_scalersRawToDigi_*_*', 'keep DcsStatuss_hltScalersRawToDigi_*_*', 'keep *_tcdsDigis_*_*', 'keep *_logErrorHarvester_*_*', 'keep *_pfIsolatedElectronsEI_*_*', 'keep *_pfIsolatedMuonsEI_*_*', 'keep recoPFJets_pfJetsEI_*_*', 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTagsEI_*_*', 'keep recoPFTaus_pfTausEI_*_*', 'keep recoPFTauDiscriminator_pfTausDiscriminationByDecayModeFinding_*_*', 'keep recoPFTauDiscriminator_pfTausDiscriminationByIsolation_*_*', 'keep recoPFMETs_pfMetEI_*_*', 'keep FEDRawDataCollection_rawDataCollector_*_*', 'keep FEDRawDataCollection_source_*_*' ) ), splitLevel = cms.untracked.int32(0) ) process.RAWRECOSIMHLTEventContent = cms.PSet( eventAutoFlushCompressedSize = cms.untracked.int32(5242880), outputCommands = cms.untracked.vstring( ('drop *', 'drop *', 'drop *', 'keep DetIdedmEDCollection_siStripDigis_*_*', 'keep DetIdedmEDCollection_siPixelDigis_*_*', 'keep *_siPixelClusters_*_*', 'keep *_siStripClusters_*_*', 'keep ClusterSummary_clusterSummaryProducer_*_*', 'keep *_dt1DRecHits_*_*', 'keep *_dt4DSegments_*_*', 'keep *_dt1DCosmicRecHits_*_*', 'keep *_dt4DCosmicSegments_*_*', 'keep *_csc2DRecHits_*_*', 'keep *_cscSegments_*_*', 'keep *_rpcRecHits_*_*', 'keep *_hbhereco_*_*', 'keep *_hbheprereco_*_*', 'keep *_hfreco_*_*', 'keep *_horeco_*_*', 'keep HBHERecHitsSorted_hbherecoMB_*_*', 'keep HORecHitsSorted_horecoMB_*_*', 'keep HFRecHitsSorted_hfrecoMB_*_*', 'keep ZDCDataFramesSorted_hcalDigis_*_*', 'keep ZDCRecHitsSorted_*_*_*', 'keep *_reducedHcalRecHits_*_*', 'keep *_castorreco_*_*', 'keep HcalUnpackerReport_castorDigis_*_*', 'keep HcalUnpackerReport_hcalDigiAlCaMB_*_*', 'keep HcalUnpackerReport_hcalDigis_*_*', 'keep *_ecalPreshowerRecHit_*_*', 'keep *_ecalRecHit_*_*', 'keep *_ecalCompactTrigPrim_*_*', 'keep *_ecalTPSkim_*_*', 'keep *_selectDigi_*_*', 'keep EcalRecHitsSorted_reducedEcalRecHitsEE_*_*', 'keep EcalRecHitsSorted_reducedEcalRecHitsEB_*_*', 'keep EcalRecHitsSorted_reducedEcalRecHitsES_*_*', 'keep *_hybridSuperClusters_*_*', 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', 'keep *_multi5x5SuperClusters_*_*', 'keep recoSuperClusters_multi5x5SuperClusters_*_*', 'keep recoSuperClusters_multi5x5SuperClustersWithPreshower_*_*', 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', 'keep recoPreshowerClusters_multi5x5SuperClustersWithPreshower_*_*', 'keep recoPreshowerClusterShapes_multi5x5PreshowerClusterShape_*_*', 'keep *_particleFlowSuperClusterECAL_*_*', 'drop recoClusterShapes_*_*_*', 'drop recoBasicClustersToOnerecoClusterShapesAssociation_*_*_*', 'drop recoBasicClusters_multi5x5BasicClusters_multi5x5BarrelBasicClusters_*', 'drop recoSuperClusters_multi5x5SuperClusters_multi5x5BarrelSuperClusters_*', 'keep *_CkfElectronCandidates_*_*', 'keep *_GsfGlobalElectronTest_*_*', 'keep *_electronMergedSeeds_*_*', 'keep recoGsfTracks_electronGsfTracks_*_*', 'keep recoGsfTrackExtras_electronGsfTracks_*_*', 'keep recoTrackExtras_electronGsfTracks_*_*', 'keep TrackingRecHitsOwned_electronGsfTracks_*_*', 'keep recoTracks_generalTracks_*_*', 'keep recoTrackExtras_generalTracks_*_*', 'keep TrackingRecHitsOwned_generalTracks_*_*', 'keep *_generalTracks_MVAValues_*', 'keep *_generalTracks_MVAVals_*', 'keep TrackingRecHitsOwned_extraFromSeeds_*_*', 'keep uints_extraFromSeeds_*_*', 'keep recoTracks_beamhaloTracks_*_*', 'keep recoTrackExtras_beamhaloTracks_*_*', 'keep TrackingRecHitsOwned_beamhaloTracks_*_*', 'keep recoTracks_conversionStepTracks_*_*', 'keep recoTrackExtras_conversionStepTracks_*_*', 'keep TrackingRecHitsOwned_conversionStepTracks_*_*', 'keep *_ctfPixelLess_*_*', 'keep *_dedxTruncated40_*_*', 'keep *_dedxHitInfo_*_*', 'keep *_dedxHarmonic2_*_*', 'keep *_trackExtrapolator_*_*', 'keep *_ak4CaloJets_*_*', 'keep *_ak4PFJets_*_*', 'keep *_ak4PFJetsCHS_*_*', 'keep *_ak8PFJetsCHS_*_*', 'keep *_ak8PFJetsCHSSoftDrop_*_*', 'keep *_cmsTopTagPFJetsCHS_*_*', 'keep *_JetPlusTrackZSPCorJetAntiKt4_*_*', 'keep *_ak4TrackJets_*_*', 'keep recoRecoChargedRefCandidates_trackRefsForJets_*_*', 'keep *_caloTowers_*_*', 'keep *_towerMaker_*_*', 'keep *_CastorTowerReco_*_*', 'keep *_ak4JetTracksAssociatorAtVertex_*_*', 'keep *_ak4JetTracksAssociatorAtVertexPF_*_*', 'keep *_ak4JetTracksAssociatorAtCaloFace_*_*', 'keep *_ak4JetTracksAssociatorExplicit_*_*', 'keep *_ak4JetExtender_*_*', 'keep *_ak4JetID_*_*', 'keep *_ak5CastorJets_*_*', 'keep *_ak5CastorJetID_*_*', 'keep *_ak7CastorJets_*_*', 'keep *_ak7CastorJetID_*_*', 'keep *_fixedGridRhoAll_*_*', 'keep *_fixedGridRhoFastjetAll_*_*', 'keep *_fixedGridRhoFastjetAllTmp_*_*', 'keep *_fixedGridRhoFastjetAllCalo_*_*', 'keep *_fixedGridRhoFastjetCentral_*_*', 'keep *_fixedGridRhoFastjetCentralCalo_*_*', 'keep *_fixedGridRhoFastjetCentralChargedPileUp_*_*', 'keep *_fixedGridRhoFastjetCentralNeutral_*_*', 'keep *_ak8PFJetsCHSSoftDropMass_*_*', 'keep recoCaloMETs_caloMet_*_*', 'keep recoCaloMETs_caloMetBE_*_*', 'keep recoCaloMETs_caloMetBEFO_*_*', 'keep recoCaloMETs_caloMetM_*_*', 'keep recoPFMETs_pfMet_*_*', 'keep recoPFMETs_pfChMet_*_*', 'keep recoPFMETs_pfMetEI_*_*', 'keep recoMuonMETCorrectionDataedmValueMap_muonMETValueMapProducer_*_*', 'keep recoHcalNoiseRBXs_hcalnoise_*_*', 'keep HcalNoiseSummary_hcalnoise_*_*', 'keep recoCSCHaloData_CSCHaloData_*_*', 'keep recoEcalHaloData_EcalHaloData_*_*', 'keep recoGlobalHaloData_GlobalHaloData_*_*', 'keep recoHcalHaloData_HcalHaloData_*_*', 'keep recoBeamHaloSummary_BeamHaloSummary_*_*', 'keep *_MuonSeed_*_*', 'keep *_ancientMuonSeed_*_*', 'keep *_displacedMuonSeeds_*_*', 'keep TrackingRecHitsOwned_globalMuons_*_*', 'keep TrackingRecHitsOwned_tevMuons_*_*', 'keep recoCaloMuons_calomuons_*_*', 'keep *_CosmicMuonSeed_*_*', 'keep recoTrackExtras_cosmicMuons_*_*', 'keep TrackingRecHitsOwned_cosmicMuons_*_*', 'keep recoTrackExtras_cosmicMuons1Leg_*_*', 'keep TrackingRecHitsOwned_cosmicMuons1Leg_*_*', 'keep recoTracks_cosmicsVetoTracks_*_*', 'keep *_SETMuonSeed_*_*', 'keep recoTracks_standAloneSETMuons_*_*', 'keep recoTrackExtras_standAloneSETMuons_*_*', 'keep TrackingRecHitsOwned_standAloneSETMuons_*_*', 'keep recoTracks_globalSETMuons_*_*', 'keep recoTrackExtras_globalSETMuons_*_*', 'keep TrackingRecHitsOwned_globalSETMuons_*_*', 'keep recoMuons_muonsWithSET_*_*', 'keep *_muons_*_*', 'keep *_particleFlow_muons_*', 'drop *_muons_muons1stStep2muonsMap_*', 'drop recoIsoDepositedmValueMap_muons_*_*', 'drop doubleedmValueMap_muons_muPFIso*_*', 'keep recoTracks_standAloneMuons_*_*', 'keep recoTrackExtras_standAloneMuons_*_*', 'keep TrackingRecHitsOwned_standAloneMuons_*_*', 'keep recoTracks_globalMuons_*_*', 'keep recoTrackExtras_globalMuons_*_*', 'keep recoTracks_tevMuons_*_*', 'keep recoTrackExtras_tevMuons_*_*', 'keep recoTracks_generalTracks_*_*', 'keep recoTracks_displacedTracks_*_*', 'keep recoTracksToOnerecoTracksAssociation_tevMuons_*_*', 'keep recoTracks_displacedGlobalMuons_*_*', 'keep recoTrackExtras_displacedGlobalMuons_*_*', 'keep TrackingRecHitsOwned_displacedGlobalMuons_*_*', 'keep recoTracks_cosmicMuons_*_*', 'keep recoMuons_muonsFromCosmics_*_*', 'keep recoTracks_cosmicMuons1Leg_*_*', 'keep recoMuons_muonsFromCosmics1Leg_*_*', 'keep recoTracks_refittedStandAloneMuons_*_*', 'keep recoTrackExtras_refittedStandAloneMuons_*_*', 'keep TrackingRecHitsOwned_refittedStandAloneMuons_*_*', 'keep recoTracks_displacedStandAloneMuons__*', 'keep recoTrackExtras_displacedStandAloneMuons_*_*', 'keep TrackingRecHitsOwned_displacedStandAloneMuons_*_*', 'keep *_muIsoDepositTk_*_*', 'keep *_muIsoDepositCalByAssociatorTowers_*_*', 'keep *_muIsoDepositCalByAssociatorHits_*_*', 'keep *_muIsoDepositJets_*_*', 'keep *_muGlobalIsoDepositCtfTk_*_*', 'keep *_muGlobalIsoDepositCalByAssociatorTowers_*_*', 'keep *_muGlobalIsoDepositCalByAssociatorHits_*_*', 'keep *_muGlobalIsoDepositJets_*_*', 'keep *_softPFMuonsTagInfos_*_*', 'keep *_softPFElectronsTagInfos_*_*', 'keep *_softPFElectronBJetTags_*_*', 'keep *_softPFMuonBJetTags_*_*', 'keep *_pfImpactParameterTagInfos_*_*', 'keep *_pfTrackCountingHighEffBJetTags_*_*', 'keep *_pfJetProbabilityBJetTags_*_*', 'keep *_pfJetBProbabilityBJetTags_*_*', 'keep *_pfSecondaryVertexTagInfos_*_*', 'keep *_pfInclusiveSecondaryVertexFinderTagInfos_*_*', 'keep *_pfSimpleSecondaryVertexHighEffBJetTags_*_*', 'keep *_pfSimpleInclusiveSecondaryVertexHighEffBJetTags_*_*', 'keep *_pfCombinedSecondaryVertexV2BJetTags_*_*', 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTags_*_*', 'keep *_pfCombinedMVAV2BJetTags_*_*', 'keep *_inclusiveCandidateSecondaryVertices_*_*', 'keep *_inclusiveCandidateSecondaryVerticesCvsL_*_*', 'keep *_pfInclusiveSecondaryVertexFinderCvsLTagInfos_*_*', 'keep *_pfCombinedCvsLJetTags_*_*', 'keep *_pfCombinedCvsBJetTags_*_*', 'keep recoRecoTauPiZeros_hpsPFTauProducer_pizeros_*', 'keep recoPFTaus_hpsPFTauProducer_*_*', 'keep *_hpsPFTauDiscriminationByDeadECALElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByDecayModeFinding_*_*', 'keep *_hpsPFTauDiscriminationByDecayModeFindingNewDMs_*_*', 'keep *_hpsPFTauDiscriminationByDecayModeFindingOldDMs_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolation_*_*', 'keep *_hpsPFTauDiscriminationByLooseChargedIsolation_*_*', 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3Hits_*_*', 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3HitsdR03_*_*', 'keep *_hpsPFTauDiscriminationByLooseElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByLooseMuonRejection3_*_*', 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3Hits_*_*', 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3HitsdR03_*_*', 'keep *_hpsPFTauDiscriminationByRawCombinedIsolationDBSumPtCorr3Hits_*_*', 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3Hits_*_*', 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3HitsdR03_*_*', 'keep *_hpsPFTauDiscriminationByTightMuonRejection3_*_*', 'keep *_hpsPFTauDiscriminationByPhotonPtSumOutsideSignalCone_*_*', 'keep *_hpsPFTauNeutralIsoPtSum_*_*', 'keep *_hpsPFTauPUcorrPtSum_*_*', 'keep *_hpsPFTauChargedIsoPtSum_*_*', 'keep *_hpsPFTauTransverseImpactParameters_*_*', 'keep *_hpsPFTauFootprintCorrection_*_*', 'keep *_hpsPFTauNeutralIsoPtSumWeight_*_*', 'keep *_hpsPFTauPhotonPtSumOutsideSignalCone_*_*', 'keep *_hpsPFTauDiscriminationByMVA6rawElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6VLooseElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6LooseElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6MediumElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6TightElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6VTightElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBoldDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBnewDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWoldDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWnewDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauChargedIsoPtSumdR03_*_*', 'keep *_hpsPFTauNeutralIsoPtSumdR03_*_*', 'keep *_hpsPFTauNeutralIsoPtSumWeightdR03_*_*', 'keep *_hpsPFTauFootprintCorrectiondR03_*_*', 'keep *_hpsPFTauPhotonPtSumOutsideSignalConedR03_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBdR03oldDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWdR03oldDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_offlinePrimaryVertices__*', 'keep *_offlinePrimaryVerticesWithBS_*_*', 'keep *_offlinePrimaryVerticesFromCosmicTracks_*_*', 'keep *_nuclearInteractionMaker_*_*', 'keep *_generalV0Candidates_*_*', 'keep *_inclusiveSecondaryVertices_*_*', 'keep recoGsfElectronCores_gsfElectronCores_*_*', 'keep recoGsfElectronCores_gedGsfElectronCores_*_*', 'keep recoGsfElectrons_gsfElectrons_*_*', 'keep recoGsfElectrons_gedGsfElectrons_*_*', 'keep recoGsfElectronCores_uncleanedOnlyGsfElectronCores_*_*', 'keep recoGsfElectrons_uncleanedOnlyGsfElectrons_*_*', 'keep floatedmValueMap_eidRobustLoose_*_*', 'keep floatedmValueMap_eidRobustTight_*_*', 'keep floatedmValueMap_eidRobustHighEnergy_*_*', 'keep floatedmValueMap_eidLoose_*_*', 'keep floatedmValueMap_eidTight_*_*', 'keep *_egmGedGsfElectronPFIsolation_*_*', 'keep *_photonEcalPFClusterIsolationProducer_*_*', 'keep *_electronEcalPFClusterIsolationProducer_*_*', 'keep *_photonHcalPFClusterIsolationProducer_*_*', 'keep *_electronHcalPFClusterIsolationProducer_*_*', 'drop *_egmGsfElectronIDs_*_*', 'drop *_egmPhotonIDs_*_*', 'keep *_gedPhotonCore_*_*', 'keep *_gedPhotons_*_*', 'keep *_particleBasedIsolation_*_*', 'keep recoPhotons_mustachePhotons_*_*', 'keep recoPhotonCores_mustachePhotonCore_*_*', 'keep recoPhotons_photons_*_*', 'keep recoPhotonCores_photonCore_*_*', 'keep recoConversions_conversions_*_*', 'keep recoConversions_mustacheConversions_*_*', 'drop *_conversions_uncleanedConversions_*', 'drop *_gedPhotonsTmp_valMapPFEgammaCandToPhoton_*', 'keep recoConversions_allConversions_*_*', 'keep recoConversions_allConversionsOldEG_*_*', 'keep recoTracks_ckfOutInTracksFromConversions_*_*', 'keep recoTracks_ckfInOutTracksFromConversions_*_*', 'keep recoTrackExtras_ckfOutInTracksFromConversions_*_*', 'keep recoTrackExtras_ckfInOutTracksFromConversions_*_*', 'keep TrackingRecHitsOwned_ckfOutInTracksFromConversions_*_*', 'keep TrackingRecHitsOwned_ckfInOutTracksFromConversions_*_*', 'keep recoConversions_uncleanedOnlyAllConversions_*_*', 'keep recoTracks_uncleanedOnlyCkfOutInTracksFromConversions_*_*', 'keep recoTracks_uncleanedOnlyCkfInOutTracksFromConversions_*_*', 'keep recoTrackExtras_uncleanedOnlyCkfOutInTracksFromConversions_*_*', 'keep recoTrackExtras_uncleanedOnlyCkfInOutTracksFromConversions_*_*', 'keep TrackingRecHitsOwned_uncleanedOnlyCkfOutInTracksFromConversions_*_*', 'keep TrackingRecHitsOwned_uncleanedOnlyCkfInOutTracksFromConversions_*_*', 'keep *_PhotonIDProd_*_*', 'keep *_PhotonIDProdGED_*_*', 'keep recoRecoEcalCandidates_hfRecoEcalCandidate_*_*', 'keep *_hfEMClusters_*_*', 'keep *_gedGsfElectronCores_*_*', 'keep *_gedGsfElectrons_*_*', 'keep *_pixelTracks_*_*', 'keep *_pixelVertices_*_*', 'drop CaloTowersSorted_towerMakerPF_*_*', 'keep recoPFRecHits_particleFlowClusterECAL_Cleaned_*', 'keep recoPFRecHits_particleFlowClusterHCAL_Cleaned_*', 'keep recoPFRecHits_particleFlowClusterHO_Cleaned_*', 'keep recoPFRecHits_particleFlowClusterHF_Cleaned_*', 'keep recoPFRecHits_particleFlowClusterPS_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitECAL_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitHBHE_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitHF_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitHO_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitPS_Cleaned_*', 'keep recoPFClusters_particleFlowClusterECAL_*_*', 'keep recoPFClusters_particleFlowClusterHCAL_*_*', 'keep recoPFClusters_particleFlowClusterHO_*_*', 'keep recoPFClusters_particleFlowClusterHF_*_*', 'keep recoPFClusters_particleFlowClusterPS_*_*', 'keep recoPFBlocks_particleFlowBlock_*_*', 'keep recoPFCandidates_particleFlowEGamma_*_*', 'keep recoCaloClusters_particleFlowEGamma_*_*', 'keep recoSuperClusters_particleFlowEGamma_*_*', 'keep recoConversions_particleFlowEGamma_*_*', 'keep recoPFCandidates_particleFlow_*_*', 'keep recoPFCandidates_particleFlowTmp_electrons_*', 'keep recoPFCandidates_particleFlowTmp_*_*', 'drop recoPFCandidates_particleFlowTmp__*', 'keep recoPFDisplacedVertexs_particleFlowDisplacedVertex_*_*', 'keep *_pfElectronTranslator_*_*', 'keep *_pfPhotonTranslator_*_*', 'keep *_particleFlow_electrons_*', 'keep *_particleFlow_photons_*', 'keep *_particleFlow_muons_*', 'keep *_trackerDrivenElectronSeeds_preid_*', 'keep *_particleFlowPtrs_*_*', 'keep *_particleFlowTmpPtrs_*_*', 'keep *_offlineBeamSpot_*_*', 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', 'keep *_l1GtRecord_*_*', 'keep *_l1GtTriggerMenuLite_*_*', 'keep *_conditionsInEdm_*_*', 'keep *_l1extraParticles_*_*', 'keep *_l1L1GtObjectMap_*_*', 'keep L1MuGMTReadoutCollection_gtDigis_*_*', 'keep L1GctEmCand*_gctDigis_*_*', 'keep L1GctJetCand*_gctDigis_*_*', 'keep L1GctEtHad*_gctDigis_*_*', 'keep L1GctEtMiss*_gctDigis_*_*', 'keep L1GctEtTotal*_gctDigis_*_*', 'keep L1GctHtMiss*_gctDigis_*_*', 'keep L1GctJetCounts*_gctDigis_*_*', 'keep L1GctHFRingEtSums*_gctDigis_*_*', 'keep L1GctHFBitCounts*_gctDigis_*_*', 'keep LumiDetails_lumiProducer_*_*', 'keep LumiSummary_lumiProducer_*_*', 'drop *_hlt*_*_*', 'keep *_hltGtStage2ObjectMap_*_*', 'keep edmTriggerResults_*_*_*', 'keep triggerTriggerEvent_*_*_*', 'keep L1AcceptBunchCrossings_scalersRawToDigi_*_*', 'keep L1TriggerScalerss_scalersRawToDigi_*_*', 'keep Level1TriggerScalerss_scalersRawToDigi_*_*', 'keep LumiScalerss_scalersRawToDigi_*_*', 'keep BeamSpotOnlines_scalersRawToDigi_*_*', 'keep DcsStatuss_scalersRawToDigi_*_*', 'keep DcsStatuss_hltScalersRawToDigi_*_*', 'keep *_tcdsDigis_*_*', 'keep *_logErrorHarvester_*_*', 'keep *_pfIsolatedElectronsEI_*_*', 'keep *_pfIsolatedMuonsEI_*_*', 'keep recoPFJets_pfJetsEI_*_*', 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTagsEI_*_*', 'keep recoPFTaus_pfTausEI_*_*', 'keep recoPFTauDiscriminator_pfTausDiscriminationByDecayModeFinding_*_*', 'keep recoPFTauDiscriminator_pfTausDiscriminationByIsolation_*_*', 'keep recoPFMETs_pfMetEI_*_*', 'keep FEDRawDataCollection_rawDataCollector_*_*', 'keep FEDRawDataCollection_source_*_*', 'keep LHERunInfoProduct_*_*_*', 'keep LHEEventProduct_*_*_*', 'keep GenRunInfoProduct_generator_*_*', 'keep GenLumiInfoHeader_generator_*_*', 'keep GenLumiInfoProduct_generator_*_*', 'keep GenEventInfoProduct_generator_*_*', 'keep edmHepMCProduct_generatorSmeared_*_*', 'keep GenFilterInfo_*_*_*', 'keep *_genParticles_*_*', 'keep recoGenMETs_*_*_*', 'keep *_ak4GenJets_*_*', 'keep *_ak8GenJets_*_*', 'keep *_ak4GenJetsNoNu_*_*', 'keep *_ak8GenJetsNoNu_*_*', 'keep *_genParticle_*_*', 'keep edmHepMCProduct_source_*_*', 'keep SimTracks_g4SimHits_*_*', 'keep SimVertexs_g4SimHits_*_*', 'keep *_allTrackMCMatch_*_*', 'keep StripDigiSimLinkedmDetSetVector_simMuonCSCDigis_*_*', 'keep DTLayerIdDTDigiSimLinkMuonDigiCollection_simMuonDTDigis_*_*', 'keep RPCDigiSimLinkedmDetSetVector_simMuonRPCDigis_*_*', 'keep PileupSummaryInfos_*_*_*', 'keep int_*_bunchSpacing_*', 'drop *_hlt*_*_*', 'keep *_hltAK4CaloJetsCorrectedIDPassed_*_*', 'keep *_hltAK4CaloJetsIDPassed_*_*', 'keep *_hltAK4CaloJets_*_*', 'keep *_hltAK4PFJetsCorrected_*_*', 'keep *_hltAK4PFJetsForTaus_*_*', 'keep *_hltAK4PFJets_*_*', 'keep *_hltAlCaEtaEBRechitsToDigisLowPU_*_*', 'keep *_hltAlCaEtaEBRechitsToDigis_*_*', 'keep *_hltAlCaEtaEERechitsToDigisLowPU_*_*', 'keep *_hltAlCaEtaEERechitsToDigis_*_*', 'keep *_hltAlCaEtaRecHitsFilterEBonly_*_*', 'keep *_hltAlCaEtaRecHitsFilterEEonlyRegionalLowPU_etaEcalRecHitsES_*', 'keep *_hltAlCaEtaRecHitsFilterEEonlyRegional_etaEcalRecHitsES_*', 'keep *_hltAlCaEtaRecHitsFilterEEonly_*_*', 'keep *_hltAlCaEtaRecHitsFilter_*_*', 'keep *_hltAlCaPhiSymStream_*_*', 'keep *_hltAlCaPi0EBRechitsToDigisLowPU_*_*', 'keep *_hltAlCaPi0EBRechitsToDigis_*_*', 'keep *_hltAlCaPi0EERechitsToDigisLowPU_*_*', 'keep *_hltAlCaPi0EERechitsToDigis_*_*', 'keep *_hltAlCaPi0RecHitsFilterEBonly_*_*', 'keep *_hltAlCaPi0RecHitsFilterEEonlyRegionalLowPU_pi0EcalRecHitsES_*', 'keep *_hltAlCaPi0RecHitsFilterEEonlyRegional_pi0EcalRecHitsES_*', 'keep *_hltAlCaPi0RecHitsFilterEEonly_*_*', 'keep *_hltAlCaPi0RecHitsFilter_*_*', 'keep *_hltBLifetimeL25AssociatorbbPhiL1FastJetFastPV_*_*', 'keep *_hltBLifetimeL25BJetTagsbbPhiL1FastJetFastPV_*_*', 'keep *_hltBLifetimeL25TagInfosbbPhiL1FastJetFastPV_*_*', 'keep *_hltBLifetimeL3AssociatorbbPhiL1FastJetFastPV_*_*', 'keep *_hltBLifetimeL3BJetTagsbbPhiL1FastJetFastPV_*_*', 'keep *_hltBLifetimeL3TagInfosbbPhiL1FastJetFastPV_*_*', 'keep *_hltBLifetimeRegionalCtfWithMaterialTracksbbPhiL1FastJetFastPV_*_*', 'keep *_hltBSoftMuonDiJet110Mu5L3FilterByDR_*_*', 'keep *_hltBSoftMuonDiJet110Mu5SelL3BJetTagsByDR_*_*', 'keep *_hltBSoftMuonDiJet20Mu5L3FilterByDR_*_*', 'keep *_hltBSoftMuonDiJet20Mu5SelL3BJetTagsByDR_*_*', 'keep *_hltBSoftMuonDiJet40Mu5L3FilterByDR_*_*', 'keep *_hltBSoftMuonDiJet40Mu5SelL3BJetTagsByDR_*_*', 'keep *_hltBSoftMuonDiJet70Mu5L3FilterByDR_*_*', 'keep *_hltBSoftMuonDiJet70Mu5SelL3BJetTagsByDR_*_*', 'keep *_hltBSoftMuonMu5L3_*_*', 'keep *_hltCSVJetTagSingleTopEle27_*_*', 'keep *_hltCSVJetTagSingleTopIsoMu24_*_*', 'keep *_hltCaloJetCorrectedRegional_*_*', 'keep *_hltCaloJetCorrected_*_*', 'keep *_hltCaloJetL1FastJetCorrected_*_*', 'keep *_hltCaloStage2Digis_*_*', 'keep *_hltCleanedCorrectedIslandBarrelSuperClustersHI_*_*', 'keep *_hltCleanedHiCorrectedIslandBarrelSuperClustersHI_*_*', 'keep *_hltCombinedSecondaryVertexBJetTagsCalo_*_*', 'keep *_hltCombinedSecondaryVertexBJetTagsPF_*_*', 'keep *_hltConvPFTausTightIsoTrackFindingIsolation_*_*', 'keep *_hltConvPFTausTightIsoTrackFinding_*_*', 'keep *_hltConvPFTausTightIsoTrackPt5Isolation_*_*', 'keep *_hltConvPFTausTightIsoTrackPt5_*_*', 'keep *_hltConvPFTausTightIso_*_*', 'keep *_hltConvPFTausTrackFindingLooseIsolation_*_*', 'keep *_hltConvPFTausTrackFinding_*_*', 'keep *_hltConvPFTaus_*_*', 'keep *_hltCorrectedIslandBarrelSuperClustersHI_*_*', 'keep *_hltCorrectedIslandEndcapSuperClustersHI_*_*', 'keep *_hltCsc2DRecHits_*_*', 'keep *_hltCscSegments_*_*', 'keep *_hltDoublePFTau25TrackPt5MediumIsolationProng4L1HLTMatched_*_*', 'keep *_hltDoublePFTau25TrackPt5MediumIsolationProng4_*_*', 'keep *_hltDoublePFTau25TrackPt5MediumIsolation_*_*', 'keep *_hltDoublePFTau25TrackPt5_*_*', 'keep *_hltDoublePFTau25_*_*', 'keep *_hltDoublePFTauTightIso45Track5_*_*', 'keep *_hltDoublePFTauTightIso45Track_*_*', 'keep *_hltDt4DSegments_*_*', 'keep *_hltEcalPhiSymFilter_*_*', 'keep *_hltEcalRecHitAll_*_*', 'keep *_hltEle20CaloIdVTCaloIsoTTrkIdTTrkIsoTTrackIsoFilterL1SingleEG18orL1SingleEG20_*_*', 'keep *_hltEle20CaloIdVTTrkIdTDphiFilter_*_*', 'keep *_hltEle27WP85PixelMatchElectronsL1Seeded_*_*', 'keep *_hltFEDSelectorLumiPixels_*_*', 'keep *_hltFastPVPixelTracksMerger_*_*', 'keep *_hltFastPVPixelTracksRecover_*_*', 'keep *_hltFastPVPixelTracks_*_*', 'keep *_hltFastPVPixelVertices3D_*_*', 'keep *_hltFastPVPixelVertices_*_*', 'keep *_hltFastPixelBLifetimeL3TagInfos_*_*', 'keep *_hltFastPrimaryVertex_*_*', 'keep *_hltFilterDoubleIsoPFTau45Trk5LeadTrack5IsolationL1HLTMatched_*_*', 'keep *_hltFilterL2EtCutDoublePFIsoTau45Trk5_*_*', 'keep *_hltFilterL2EtCutSingleIsoPFTau35Trk20MET70_*_*', 'keep *_hltFilterSingleIsoPFTau35Trk20LeadTrackPt20_*_*', 'keep *_hltFilterSingleIsoPFTau35Trk20MET60LeadTrack20IsolationL1HLTMatched_*_*', 'keep *_hltFilterSingleIsoPFTau35Trk20MET70LeadTrack20IsolationL1HLTMatched_*_*', 'keep *_hltGmtStage2Digis_*_*', 'keep *_hltGoodOnlinePVs_*_*', 'keep *_hltGtStage2Digis_*_*', 'keep *_hltGtStage2ObjectMap_*_*', 'keep *_hltHICaloJetCorrected_*_*', 'keep *_hltHICaloJetIDPassed_*_*', 'keep *_hltHIGoodLooseTracks_*_*', 'keep *_hltHIPixel3PrimTracks_*_*', 'keep *_hltHISelectedVertex_*_*', 'keep *_hltHISiPixelClusters_*_*', 'keep *_hltHITIPTCorrectorHB_*_*', 'keep *_hltHITIPTCorrectorHE_*_*', 'keep *_hltHiCorrectedIslandBarrelSuperClustersHI_*_*', 'keep *_hltHiCorrectedIslandEndcapSuperClustersHI_*_*', 'keep *_hltHiIslandSuperClustersHI_*_*', 'keep *_hltIsolPixelTrackProdHB_*_*', 'keep *_hltIsolPixelTrackProdHE_*_*', 'keep *_hltIter0PFlowTrackSelectionHighPurity_*_*', 'keep *_hltIter1Merged_*_*', 'keep *_hltIter1PFlowTrackSelectionHighPurity_*_*', 'keep *_hltIter2Merged_*_*', 'keep *_hltIter2PFlowTrackSelectionHighPurity_*_*', 'keep *_hltIter3Merged_*_*', 'keep *_hltIter4Merged_*_*', 'keep *_hltIterativeCone5PileupSubtractionCaloJets_*_*', 'keep *_hltL1HLTSingleIsoPFTau35Trk20Met60JetsMatch_*_*', 'keep *_hltL1IsoElectronTrackIsol_*_*', 'keep *_hltL1NonIsoElectronTrackIsol_*_*', 'keep *_hltL1SeededRecoEcalCandidate_*_*', 'keep *_hltL1sDoubleTauJet44Eta2p17orDoubleJet64Central_*_*', 'keep *_hltL1sDoubleTauJet44erorDoubleJetC64_*_*', 'keep *_hltL1sL1EG18er_*_*', 'keep *_hltL1sL1ETM36ORETM40_*_*', 'keep *_hltL1sL1Jet52ETM30_*_*', 'keep *_hltL1sL1SingleEG12_*_*', 'keep *_hltL1sL1SingleEG15_*_*', 'keep *_hltL1sL1SingleEG18orL1SingleEG20_*_*', 'keep *_hltL1sL1SingleMu10_*_*', 'keep *_hltL1sL1SingleMu14Eta2p1_*_*', 'keep *_hltL1sMu16Eta2p1_*_*', 'keep *_hltL2MuonCandidatesNoVtx_*_*', 'keep *_hltL2MuonCandidates_*_*', 'keep *_hltL2MuonSeeds_*_*', 'keep *_hltL2Muons_*_*', 'keep *_hltL2TauJets_*_*', 'keep *_hltL3MuonCandidates_*_*', 'keep *_hltL3MuonsIOHit_*_*', 'keep *_hltL3MuonsLinksCombination_*_*', 'keep *_hltL3MuonsOIHit_*_*', 'keep *_hltL3MuonsOIState_*_*', 'keep *_hltL3Muons_*_*', 'keep *_hltL3NoFiltersNoVtxMuonCandidates_*_*', 'keep *_hltL3NoFiltersNoVtxMuons_*_*', 'keep *_hltL3SecondaryVertexTagInfos_*_*', 'keep *_hltL3TkFromL2OICombination_*_*', 'keep *_hltL3TkTracksFromL2IOHit_*_*', 'keep *_hltL3TkTracksFromL2OIHit_*_*', 'keep *_hltL3TkTracksFromL2OIState_*_*', 'keep *_hltL3TkTracksFromL2_*_*', 'keep *_hltL3TrackCandidateFromL2IOHit_*_*', 'keep *_hltL3TrackCandidateFromL2OIHit_*_*', 'keep *_hltL3TrackCandidateFromL2OIState_*_*', 'keep *_hltL3TrajSeedIOHit_*_*', 'keep *_hltL3TrajSeedOIHit_*_*', 'keep *_hltL3TrajSeedOIState_*_*', 'keep *_hltL3TrajectorySeed_*_*', 'keep *_hltL3crIsoL1sMu16Eta2p1L1f0L2f16QL3f18QL3crIsoRhoFiltered0p15_*_*', 'keep *_hltLeadingCentralJets30SingleTopEle27_*_*', 'keep *_hltLeadingCentralJets30SingleTopIsoMu24_*_*', 'keep *_hltMet_*_*', 'keep *_hltMu8Ele17CaloIdTCaloIsoVLPixelMatchFilter_*_*', 'keep *_hltMuTrackJpsiCtfTrackCands_*_*', 'keep *_hltMuTrackJpsiPixelTrackCands_*_*', 'keep *_hltMuonCSCDigis_*_*', 'keep *_hltMuonCSCDigis_MuonCSCStripDigi_*', 'keep *_hltMuonCSCDigis_MuonCSCWireDigi_*', 'keep *_hltMuonDTDigis_*_*', 'keep *_hltMuonRPCDigis_*_*', 'keep *_hltOnlineBeamSpot_*_*', 'keep *_hltOnlinePrimaryVertices_*_*', 'keep *_hltOverlapFilterEle20LooseIsoPFTau20OldVersion_*_*', 'keep *_hltOverlapFilterIsoEle20MediumIsoPFTau20_*_*', 'keep *_hltOverlapFilterIsoMu15IsoPFTau20_*_*', 'keep *_hltOverlapFilterIsoMu15MediumIsoPFTau20_*_*', 'keep *_hltOverlapFilterIsoMu15TightIsoPFTau20_*_*', 'keep *_hltOverlapFilterIsoMu18LooseIsoPFTau20_*_*', 'keep *_hltOverlapFilterIsoMu18PFTau25TrackPt5Prong4_*_*', 'keep *_hltPFJetForBtag_*_*', 'keep *_hltPFTau15TrackLooseIso_*_*', 'keep *_hltPFTau15Track_*_*', 'keep *_hltPFTau15_*_*', 'keep *_hltPFTau20IsoMuVertex_*_*', 'keep *_hltPFTau20TrackLooseIso_*_*', 'keep *_hltPFTau20Track_*_*', 'keep *_hltPFTau20_*_*', 'keep *_hltPFTau25TrackPt5MediumIsolationProng4IsoMuVertex_*_*', 'keep *_hltPFTau25TrackPt5MediumIsolationProng4_*_*', 'keep *_hltPFTau25TrackPt5MediumIsolation_*_*', 'keep *_hltPFTau25TrackPt5_*_*', 'keep *_hltPFTau25_*_*', 'keep *_hltPFTau35TrackPt20LooseIsoProng2_*_*', 'keep *_hltPFTau35TrackPt20LooseIso_*_*', 'keep *_hltPFTau35TrackPt20_*_*', 'keep *_hltPFTau35Track_*_*', 'keep *_hltPFTau35_*_*', 'keep *_hltPFTauEleVertex20_*_*', 'keep *_hltPFTauJetTracksAssociator_*_*', 'keep *_hltPFTauMediumIso20TrackMediumIso_*_*', 'keep *_hltPFTauMediumIso20Track_*_*', 'keep *_hltPFTauMediumIso20_*_*', 'keep *_hltPFTauMediumIso35Track_*_*', 'keep *_hltPFTauMediumIso35_*_*', 'keep *_hltPFTauTagInfo_*_*', 'keep *_hltPFTauTightIso20TrackTightIso_*_*', 'keep *_hltPFTauTightIso20Track_*_*', 'keep *_hltPFTauTightIso20_*_*', 'keep *_hltPFlowTrackSelectionHighPurity_*_*', 'keep *_hltParticleFlowForTaus_*_*', 'keep *_hltParticleFlow_*_*', 'keep *_hltPixelMatch3HitElectronsActivity_*_*', 'keep *_hltPixelMatch3HitElectronsL1Seeded_*_*', 'keep *_hltPixelMatchCleanElectronsL1Seeded_*_*', 'keep *_hltPixelMatchElectronsActivity_*_*', 'keep *_hltPixelMatchElectronsL1Iso_*_*', 'keep *_hltPixelMatchElectronsL1NonIso_*_*', 'keep *_hltPixelMatchElectronsL1Seeded_*_*', 'keep *_hltPixelTracks_*_*', 'keep *_hltPixelVertices3DbbPhi_*_*', 'keep *_hltPixelVertices_*_*', 'keep *_hltRecoEcalSuperClusterActivityCandidateSC4_*_*', 'keep *_hltRecoEcalSuperClusterActivityCandidateSC5_*_*', 'keep *_hltRecoEcalSuperClusterActivityCandidate_*_*', 'keep *_hltRpcRecHits_*_*', 'keep *_hltSelector4CentralJetsL1FastJet_*_*', 'keep *_hltSelector8CentralJetsL1FastJet_*_*', 'keep *_hltSelectorJets20L1FastJet_*_*', 'keep *_hltSiPixelCluster_*_*', 'keep *_hltSiPixelClusters_*_*', 'keep *_hltSiStripClusters_*_*', 'keep *_hltSiStripRawToClustersFacility_*_*', 'keep *_hltSingleMu15L3Filtered15_*_*', 'keep *_hltSingleMuIsoL1s14L3IsoFiltered15eta2p1_*_*', 'keep *_hltSingleMuIsoL3IsoFiltered15_*_*', 'keep *_hltTowerMakerForAll_*_*', 'keep *_hltTowerMakerForMuons_*_*', 'keep *_hltTriggerSummaryAOD_*_*', 'keep *_hltTriggerSummaryRAW_*_*', 'keep *_hltTrimmedPixelVertices_*_*', 'keep *_hltVerticesL3_*_*', 'keep *_hltVerticesPFSelector_*_*', 'keep DcsStatuss_hltScalersRawToDigi_*_*', 'keep FEDRawDataCollection_rawDataCollector_*_*', 'keep FEDRawDataCollection_rawDataRepacker_*_*', 'keep FEDRawDataCollection_source_*_*', 'keep FEDRawDataCollection_virginRawDataRepacker_*_*', 'keep L2MuonTrajectorySeeds_hltL2MuonSeeds_*_*', 'keep L3MuonTrajectorySeeds_hltHIL3TrajSeedOIHit_*_*', 'keep L3MuonTrajectorySeeds_hltHIL3TrajectorySeed_*_*', 'keep L3MuonTrajectorySeeds_hltL3TrajSeedOIState_*_*', 'keep LumiScalerss_hltScalersRawToDigi_*_*', 'keep SiPixelClusteredmNewDetSetVector_hltSiPixelClusters_*_*', 'keep TrackCandidates_hltHIL3TrackCandidateFromL2OIHit_*_*', 'keep TrackCandidates_hltHIL3TrackCandidateFromL2OIState_*_*', 'keep TrackingRecHitsOwned_hltL3Muons_*_*', 'keep edmTriggerResults_*_*_*', 'keep recoCaloJets_*_*_*', 'keep recoCaloMETs_*_*_*', 'keep recoCaloMETs_hltMet_*_*', 'keep recoCompositeCandidates_*_*_*', 'keep recoElectrons_*_*_*', 'keep recoIsolatedPixelTrackCandidates_*_*_*', 'keep recoMETs_*_*_*', 'keep recoPFJets_*_*_*', 'keep recoPFTaus_*_*_*', 'keep recoRecoChargedCandidates_*_*_*', 'keep recoRecoChargedCandidates_hltHIL3MuonCandidates_*_*', 'keep recoRecoChargedCandidates_hltL2MuonCandidates_*_*', 'keep recoRecoEcalCandidatesToValuefloatAssociation_hltL1IsoHLTClusterShape_*_*', 'keep recoRecoEcalCandidatesToValuefloatAssociation_hltL1IsolatedPhotonEcalIsol_*_*', 'keep recoRecoEcalCandidatesToValuefloatAssociation_hltL1IsolatedPhotonHcalForHE_*_*', 'keep recoRecoEcalCandidatesToValuefloatAssociation_hltL1IsolatedPhotonHcalIsol_*_*', 'keep recoRecoEcalCandidatesToValuefloatAssociation_hltL1NonIsoHLTClusterShape_*_*', 'keep recoRecoEcalCandidatesToValuefloatAssociation_hltL1NonIsolatedPhotonEcalIsol_*_*', 'keep recoRecoEcalCandidatesToValuefloatAssociation_hltL1NonIsolatedPhotonHcalForHE_*_*', 'keep recoRecoEcalCandidatesToValuefloatAssociation_hltL1NonIsolatedPhotonHcalIsol_*_*', 'keep recoRecoEcalCandidates_*_*_*', 'keep recoRecoEcalCandidates_hltL1IsoRecoEcalCandidate_*_*', 'keep recoRecoEcalCandidates_hltL1NonIsoRecoEcalCandidate_*_*', 'keep recoTrackExtras_hltHIL3MuonsOIHit_*_*', 'keep recoTrackExtras_hltHIL3MuonsOIState_*_*', 'keep recoTracks_hltHIL3MuonsOIHit_*_*', 'keep recoTracks_hltHIL3MuonsOIState_*_*', 'keep recoTracks_hltHIL3Muons_*_*', 'keep recoTracks_hltHIL3TkTracksFromL2OIHit_*_*', 'keep recoTracks_hltHIL3TkTracksFromL2OIState_*_*', 'keep recoTracks_hltHIL3TkTracksFromL2_*_*', 'keep triggerTriggerEventWithRefs_*_*_*', 'keep triggerTriggerEvent_*_*_*', 'keep triggerTriggerFilterObjectWithRefs_*_*_*' ) ), splitLevel = cms.untracked.int32(0) ) process.RAWSIMEventContent = cms.PSet( eventAutoFlushCompressedSize = cms.untracked.int32(5242880), outputCommands = cms.untracked.vstring('drop *', 'drop *', 'keep FEDRawDataCollection_rawDataCollector_*_*', 'keep FEDRawDataCollection_source_*_*', 'keep FEDRawDataCollection_rawDataCollector_*_*', 'keep FEDRawDataCollection_source_*_*', 'drop *_hlt*_*_*', 'keep *_hltGtStage2ObjectMap_*_*', 'keep FEDRawDataCollection_rawDataCollector_*_*', 'keep FEDRawDataCollection_source_*_*', 'keep edmTriggerResults_*_*_*', 'keep triggerTriggerEvent_*_*_*', 'keep *_g4SimHits_*_*', 'keep edmHepMCProduct_source_*_*', 'keep *_allTrackMCMatch_*_*', 'keep StripDigiSimLinkedmDetSetVector_simMuonCSCDigis_*_*', 'keep CSCDetIdCSCComparatorDigiMuonDigiCollection_simMuonCSCDigis_*_*', 'keep DTLayerIdDTDigiSimLinkMuonDigiCollection_simMuonDTDigis_*_*', 'keep RPCDigiSimLinkedmDetSetVector_simMuonRPCDigis_*_*', 'keep EBSrFlagsSorted_simEcalDigis_*_*', 'keep EESrFlagsSorted_simEcalDigis_*_*', 'keep CrossingFramePlaybackInfoNew_*_*_*', 'keep PileupSummaryInfos_*_*_*', 'keep int_*_bunchSpacing_*', 'keep LHERunInfoProduct_*_*_*', 'keep LHEEventProduct_*_*_*', 'keep GenRunInfoProduct_generator_*_*', 'keep GenLumiInfoHeader_generator_*_*', 'keep GenLumiInfoProduct_generator_*_*', 'keep GenEventInfoProduct_generator_*_*', 'keep edmHepMCProduct_generatorSmeared_*_*', 'keep GenFilterInfo_*_*_*', 'keep *_genParticles_*_*', 'keep recoGenJets_*_*_*', 'keep *_genParticle_*_*', 'keep recoGenMETs_*_*_*', 'keep FEDRawDataCollection_source_*_*', 'keep FEDRawDataCollection_rawDataCollector_*_*', 'keep *_MEtoEDMConverter_*_*', 'keep *_randomEngineStateProducer_*_*', 'keep *_logErrorHarvester_*_*'), splitLevel = cms.untracked.int32(0) ) process.RAWSIMHLTEventContent = cms.PSet( eventAutoFlushCompressedSize = cms.untracked.int32(5242880), outputCommands = cms.untracked.vstring( ('drop *', 'drop *', 'drop *', 'keep FEDRawDataCollection_rawDataCollector_*_*', 'keep FEDRawDataCollection_source_*_*', 'keep FEDRawDataCollection_rawDataCollector_*_*', 'keep FEDRawDataCollection_source_*_*', 'drop *_hlt*_*_*', 'keep *_hltGtStage2ObjectMap_*_*', 'keep FEDRawDataCollection_rawDataCollector_*_*', 'keep FEDRawDataCollection_source_*_*', 'keep edmTriggerResults_*_*_*', 'keep triggerTriggerEvent_*_*_*', 'keep *_g4SimHits_*_*', 'keep edmHepMCProduct_source_*_*', 'keep *_allTrackMCMatch_*_*', 'keep StripDigiSimLinkedmDetSetVector_simMuonCSCDigis_*_*', 'keep CSCDetIdCSCComparatorDigiMuonDigiCollection_simMuonCSCDigis_*_*', 'keep DTLayerIdDTDigiSimLinkMuonDigiCollection_simMuonDTDigis_*_*', 'keep RPCDigiSimLinkedmDetSetVector_simMuonRPCDigis_*_*', 'keep EBSrFlagsSorted_simEcalDigis_*_*', 'keep EESrFlagsSorted_simEcalDigis_*_*', 'keep CrossingFramePlaybackInfoNew_*_*_*', 'keep PileupSummaryInfos_*_*_*', 'keep int_*_bunchSpacing_*', 'keep LHERunInfoProduct_*_*_*', 'keep LHEEventProduct_*_*_*', 'keep GenRunInfoProduct_generator_*_*', 'keep GenLumiInfoHeader_generator_*_*', 'keep GenLumiInfoProduct_generator_*_*', 'keep GenEventInfoProduct_generator_*_*', 'keep edmHepMCProduct_generatorSmeared_*_*', 'keep GenFilterInfo_*_*_*', 'keep *_genParticles_*_*', 'keep recoGenJets_*_*_*', 'keep *_genParticle_*_*', 'keep recoGenMETs_*_*_*', 'keep FEDRawDataCollection_source_*_*', 'keep FEDRawDataCollection_rawDataCollector_*_*', 'keep *_MEtoEDMConverter_*_*', 'keep *_randomEngineStateProducer_*_*', 'keep *_logErrorHarvester_*_*', 'drop *_hlt*_*_*', 'keep *_hltAK4CaloJetsCorrectedIDPassed_*_*', 'keep *_hltAK4CaloJetsIDPassed_*_*', 'keep *_hltAK4CaloJets_*_*', 'keep *_hltAK4PFJetsCorrected_*_*', 'keep *_hltAK4PFJetsForTaus_*_*', 'keep *_hltAK4PFJets_*_*', 'keep *_hltAlCaEtaEBRechitsToDigisLowPU_*_*', 'keep *_hltAlCaEtaEBRechitsToDigis_*_*', 'keep *_hltAlCaEtaEERechitsToDigisLowPU_*_*', 'keep *_hltAlCaEtaEERechitsToDigis_*_*', 'keep *_hltAlCaEtaRecHitsFilterEBonly_*_*', 'keep *_hltAlCaEtaRecHitsFilterEEonlyRegionalLowPU_etaEcalRecHitsES_*', 'keep *_hltAlCaEtaRecHitsFilterEEonlyRegional_etaEcalRecHitsES_*', 'keep *_hltAlCaEtaRecHitsFilterEEonly_*_*', 'keep *_hltAlCaEtaRecHitsFilter_*_*', 'keep *_hltAlCaPhiSymStream_*_*', 'keep *_hltAlCaPi0EBRechitsToDigisLowPU_*_*', 'keep *_hltAlCaPi0EBRechitsToDigis_*_*', 'keep *_hltAlCaPi0EERechitsToDigisLowPU_*_*', 'keep *_hltAlCaPi0EERechitsToDigis_*_*', 'keep *_hltAlCaPi0RecHitsFilterEBonly_*_*', 'keep *_hltAlCaPi0RecHitsFilterEEonlyRegionalLowPU_pi0EcalRecHitsES_*', 'keep *_hltAlCaPi0RecHitsFilterEEonlyRegional_pi0EcalRecHitsES_*', 'keep *_hltAlCaPi0RecHitsFilterEEonly_*_*', 'keep *_hltAlCaPi0RecHitsFilter_*_*', 'keep *_hltBLifetimeL25AssociatorbbPhiL1FastJetFastPV_*_*', 'keep *_hltBLifetimeL25BJetTagsbbPhiL1FastJetFastPV_*_*', 'keep *_hltBLifetimeL25TagInfosbbPhiL1FastJetFastPV_*_*', 'keep *_hltBLifetimeL3AssociatorbbPhiL1FastJetFastPV_*_*', 'keep *_hltBLifetimeL3BJetTagsbbPhiL1FastJetFastPV_*_*', 'keep *_hltBLifetimeL3TagInfosbbPhiL1FastJetFastPV_*_*', 'keep *_hltBLifetimeRegionalCtfWithMaterialTracksbbPhiL1FastJetFastPV_*_*', 'keep *_hltBSoftMuonDiJet110Mu5L3FilterByDR_*_*', 'keep *_hltBSoftMuonDiJet110Mu5SelL3BJetTagsByDR_*_*', 'keep *_hltBSoftMuonDiJet20Mu5L3FilterByDR_*_*', 'keep *_hltBSoftMuonDiJet20Mu5SelL3BJetTagsByDR_*_*', 'keep *_hltBSoftMuonDiJet40Mu5L3FilterByDR_*_*', 'keep *_hltBSoftMuonDiJet40Mu5SelL3BJetTagsByDR_*_*', 'keep *_hltBSoftMuonDiJet70Mu5L3FilterByDR_*_*', 'keep *_hltBSoftMuonDiJet70Mu5SelL3BJetTagsByDR_*_*', 'keep *_hltBSoftMuonMu5L3_*_*', 'keep *_hltCSVJetTagSingleTopEle27_*_*', 'keep *_hltCSVJetTagSingleTopIsoMu24_*_*', 'keep *_hltCaloJetCorrectedRegional_*_*', 'keep *_hltCaloJetCorrected_*_*', 'keep *_hltCaloJetL1FastJetCorrected_*_*', 'keep *_hltCaloStage2Digis_*_*', 'keep *_hltCleanedCorrectedIslandBarrelSuperClustersHI_*_*', 'keep *_hltCleanedHiCorrectedIslandBarrelSuperClustersHI_*_*', 'keep *_hltCombinedSecondaryVertexBJetTagsCalo_*_*', 'keep *_hltCombinedSecondaryVertexBJetTagsPF_*_*', 'keep *_hltConvPFTausTightIsoTrackFindingIsolation_*_*', 'keep *_hltConvPFTausTightIsoTrackFinding_*_*', 'keep *_hltConvPFTausTightIsoTrackPt5Isolation_*_*', 'keep *_hltConvPFTausTightIsoTrackPt5_*_*', 'keep *_hltConvPFTausTightIso_*_*', 'keep *_hltConvPFTausTrackFindingLooseIsolation_*_*', 'keep *_hltConvPFTausTrackFinding_*_*', 'keep *_hltConvPFTaus_*_*', 'keep *_hltCorrectedIslandBarrelSuperClustersHI_*_*', 'keep *_hltCorrectedIslandEndcapSuperClustersHI_*_*', 'keep *_hltCsc2DRecHits_*_*', 'keep *_hltCscSegments_*_*', 'keep *_hltDoublePFTau25TrackPt5MediumIsolationProng4L1HLTMatched_*_*', 'keep *_hltDoublePFTau25TrackPt5MediumIsolationProng4_*_*', 'keep *_hltDoublePFTau25TrackPt5MediumIsolation_*_*', 'keep *_hltDoublePFTau25TrackPt5_*_*', 'keep *_hltDoublePFTau25_*_*', 'keep *_hltDoublePFTauTightIso45Track5_*_*', 'keep *_hltDoublePFTauTightIso45Track_*_*', 'keep *_hltDt4DSegments_*_*', 'keep *_hltEcalPhiSymFilter_*_*', 'keep *_hltEcalRecHitAll_*_*', 'keep *_hltEle20CaloIdVTCaloIsoTTrkIdTTrkIsoTTrackIsoFilterL1SingleEG18orL1SingleEG20_*_*', 'keep *_hltEle20CaloIdVTTrkIdTDphiFilter_*_*', 'keep *_hltEle27WP85PixelMatchElectronsL1Seeded_*_*', 'keep *_hltFEDSelectorLumiPixels_*_*', 'keep *_hltFastPVPixelTracksMerger_*_*', 'keep *_hltFastPVPixelTracksRecover_*_*', 'keep *_hltFastPVPixelTracks_*_*', 'keep *_hltFastPVPixelVertices3D_*_*', 'keep *_hltFastPVPixelVertices_*_*', 'keep *_hltFastPixelBLifetimeL3TagInfos_*_*', 'keep *_hltFastPrimaryVertex_*_*', 'keep *_hltFilterDoubleIsoPFTau45Trk5LeadTrack5IsolationL1HLTMatched_*_*', 'keep *_hltFilterL2EtCutDoublePFIsoTau45Trk5_*_*', 'keep *_hltFilterL2EtCutSingleIsoPFTau35Trk20MET70_*_*', 'keep *_hltFilterSingleIsoPFTau35Trk20LeadTrackPt20_*_*', 'keep *_hltFilterSingleIsoPFTau35Trk20MET60LeadTrack20IsolationL1HLTMatched_*_*', 'keep *_hltFilterSingleIsoPFTau35Trk20MET70LeadTrack20IsolationL1HLTMatched_*_*', 'keep *_hltGmtStage2Digis_*_*', 'keep *_hltGoodOnlinePVs_*_*', 'keep *_hltGtStage2Digis_*_*', 'keep *_hltGtStage2ObjectMap_*_*', 'keep *_hltHICaloJetCorrected_*_*', 'keep *_hltHICaloJetIDPassed_*_*', 'keep *_hltHIGoodLooseTracks_*_*', 'keep *_hltHIPixel3PrimTracks_*_*', 'keep *_hltHISelectedVertex_*_*', 'keep *_hltHISiPixelClusters_*_*', 'keep *_hltHITIPTCorrectorHB_*_*', 'keep *_hltHITIPTCorrectorHE_*_*', 'keep *_hltHiCorrectedIslandBarrelSuperClustersHI_*_*', 'keep *_hltHiCorrectedIslandEndcapSuperClustersHI_*_*', 'keep *_hltHiIslandSuperClustersHI_*_*', 'keep *_hltIsolPixelTrackProdHB_*_*', 'keep *_hltIsolPixelTrackProdHE_*_*', 'keep *_hltIter0PFlowTrackSelectionHighPurity_*_*', 'keep *_hltIter1Merged_*_*', 'keep *_hltIter1PFlowTrackSelectionHighPurity_*_*', 'keep *_hltIter2Merged_*_*', 'keep *_hltIter2PFlowTrackSelectionHighPurity_*_*', 'keep *_hltIter3Merged_*_*', 'keep *_hltIter4Merged_*_*', 'keep *_hltIterativeCone5PileupSubtractionCaloJets_*_*', 'keep *_hltL1HLTSingleIsoPFTau35Trk20Met60JetsMatch_*_*', 'keep *_hltL1IsoElectronTrackIsol_*_*', 'keep *_hltL1NonIsoElectronTrackIsol_*_*', 'keep *_hltL1SeededRecoEcalCandidate_*_*', 'keep *_hltL1sDoubleTauJet44Eta2p17orDoubleJet64Central_*_*', 'keep *_hltL1sDoubleTauJet44erorDoubleJetC64_*_*', 'keep *_hltL1sL1EG18er_*_*', 'keep *_hltL1sL1ETM36ORETM40_*_*', 'keep *_hltL1sL1Jet52ETM30_*_*', 'keep *_hltL1sL1SingleEG12_*_*', 'keep *_hltL1sL1SingleEG15_*_*', 'keep *_hltL1sL1SingleEG18orL1SingleEG20_*_*', 'keep *_hltL1sL1SingleMu10_*_*', 'keep *_hltL1sL1SingleMu14Eta2p1_*_*', 'keep *_hltL1sMu16Eta2p1_*_*', 'keep *_hltL2MuonCandidatesNoVtx_*_*', 'keep *_hltL2MuonCandidates_*_*', 'keep *_hltL2MuonSeeds_*_*', 'keep *_hltL2Muons_*_*', 'keep *_hltL2TauJets_*_*', 'keep *_hltL3MuonCandidates_*_*', 'keep *_hltL3MuonsIOHit_*_*', 'keep *_hltL3MuonsLinksCombination_*_*', 'keep *_hltL3MuonsOIHit_*_*', 'keep *_hltL3MuonsOIState_*_*', 'keep *_hltL3Muons_*_*', 'keep *_hltL3NoFiltersNoVtxMuonCandidates_*_*', 'keep *_hltL3NoFiltersNoVtxMuons_*_*', 'keep *_hltL3SecondaryVertexTagInfos_*_*', 'keep *_hltL3TkFromL2OICombination_*_*', 'keep *_hltL3TkTracksFromL2IOHit_*_*', 'keep *_hltL3TkTracksFromL2OIHit_*_*', 'keep *_hltL3TkTracksFromL2OIState_*_*', 'keep *_hltL3TkTracksFromL2_*_*', 'keep *_hltL3TrackCandidateFromL2IOHit_*_*', 'keep *_hltL3TrackCandidateFromL2OIHit_*_*', 'keep *_hltL3TrackCandidateFromL2OIState_*_*', 'keep *_hltL3TrajSeedIOHit_*_*', 'keep *_hltL3TrajSeedOIHit_*_*', 'keep *_hltL3TrajSeedOIState_*_*', 'keep *_hltL3TrajectorySeed_*_*', 'keep *_hltL3crIsoL1sMu16Eta2p1L1f0L2f16QL3f18QL3crIsoRhoFiltered0p15_*_*', 'keep *_hltLeadingCentralJets30SingleTopEle27_*_*', 'keep *_hltLeadingCentralJets30SingleTopIsoMu24_*_*', 'keep *_hltMet_*_*', 'keep *_hltMu8Ele17CaloIdTCaloIsoVLPixelMatchFilter_*_*', 'keep *_hltMuTrackJpsiCtfTrackCands_*_*', 'keep *_hltMuTrackJpsiPixelTrackCands_*_*', 'keep *_hltMuonCSCDigis_*_*', 'keep *_hltMuonCSCDigis_MuonCSCStripDigi_*', 'keep *_hltMuonCSCDigis_MuonCSCWireDigi_*', 'keep *_hltMuonDTDigis_*_*', 'keep *_hltMuonRPCDigis_*_*', 'keep *_hltOnlineBeamSpot_*_*', 'keep *_hltOnlinePrimaryVertices_*_*', 'keep *_hltOverlapFilterEle20LooseIsoPFTau20OldVersion_*_*', 'keep *_hltOverlapFilterIsoEle20MediumIsoPFTau20_*_*', 'keep *_hltOverlapFilterIsoMu15IsoPFTau20_*_*', 'keep *_hltOverlapFilterIsoMu15MediumIsoPFTau20_*_*', 'keep *_hltOverlapFilterIsoMu15TightIsoPFTau20_*_*', 'keep *_hltOverlapFilterIsoMu18LooseIsoPFTau20_*_*', 'keep *_hltOverlapFilterIsoMu18PFTau25TrackPt5Prong4_*_*', 'keep *_hltPFJetForBtag_*_*', 'keep *_hltPFTau15TrackLooseIso_*_*', 'keep *_hltPFTau15Track_*_*', 'keep *_hltPFTau15_*_*', 'keep *_hltPFTau20IsoMuVertex_*_*', 'keep *_hltPFTau20TrackLooseIso_*_*', 'keep *_hltPFTau20Track_*_*', 'keep *_hltPFTau20_*_*', 'keep *_hltPFTau25TrackPt5MediumIsolationProng4IsoMuVertex_*_*', 'keep *_hltPFTau25TrackPt5MediumIsolationProng4_*_*', 'keep *_hltPFTau25TrackPt5MediumIsolation_*_*', 'keep *_hltPFTau25TrackPt5_*_*', 'keep *_hltPFTau25_*_*', 'keep *_hltPFTau35TrackPt20LooseIsoProng2_*_*', 'keep *_hltPFTau35TrackPt20LooseIso_*_*', 'keep *_hltPFTau35TrackPt20_*_*', 'keep *_hltPFTau35Track_*_*', 'keep *_hltPFTau35_*_*', 'keep *_hltPFTauEleVertex20_*_*', 'keep *_hltPFTauJetTracksAssociator_*_*', 'keep *_hltPFTauMediumIso20TrackMediumIso_*_*', 'keep *_hltPFTauMediumIso20Track_*_*', 'keep *_hltPFTauMediumIso20_*_*', 'keep *_hltPFTauMediumIso35Track_*_*', 'keep *_hltPFTauMediumIso35_*_*', 'keep *_hltPFTauTagInfo_*_*', 'keep *_hltPFTauTightIso20TrackTightIso_*_*', 'keep *_hltPFTauTightIso20Track_*_*', 'keep *_hltPFTauTightIso20_*_*', 'keep *_hltPFlowTrackSelectionHighPurity_*_*', 'keep *_hltParticleFlowForTaus_*_*', 'keep *_hltParticleFlow_*_*', 'keep *_hltPixelMatch3HitElectronsActivity_*_*', 'keep *_hltPixelMatch3HitElectronsL1Seeded_*_*', 'keep *_hltPixelMatchCleanElectronsL1Seeded_*_*', 'keep *_hltPixelMatchElectronsActivity_*_*', 'keep *_hltPixelMatchElectronsL1Iso_*_*', 'keep *_hltPixelMatchElectronsL1NonIso_*_*', 'keep *_hltPixelMatchElectronsL1Seeded_*_*', 'keep *_hltPixelTracks_*_*', 'keep *_hltPixelVertices3DbbPhi_*_*', 'keep *_hltPixelVertices_*_*', 'keep *_hltRecoEcalSuperClusterActivityCandidateSC4_*_*', 'keep *_hltRecoEcalSuperClusterActivityCandidateSC5_*_*', 'keep *_hltRecoEcalSuperClusterActivityCandidate_*_*', 'keep *_hltRpcRecHits_*_*', 'keep *_hltSelector4CentralJetsL1FastJet_*_*', 'keep *_hltSelector8CentralJetsL1FastJet_*_*', 'keep *_hltSelectorJets20L1FastJet_*_*', 'keep *_hltSiPixelCluster_*_*', 'keep *_hltSiPixelClusters_*_*', 'keep *_hltSiStripClusters_*_*', 'keep *_hltSiStripRawToClustersFacility_*_*', 'keep *_hltSingleMu15L3Filtered15_*_*', 'keep *_hltSingleMuIsoL1s14L3IsoFiltered15eta2p1_*_*', 'keep *_hltSingleMuIsoL3IsoFiltered15_*_*', 'keep *_hltTowerMakerForAll_*_*', 'keep *_hltTowerMakerForMuons_*_*', 'keep *_hltTriggerSummaryAOD_*_*', 'keep *_hltTriggerSummaryRAW_*_*', 'keep *_hltTrimmedPixelVertices_*_*', 'keep *_hltVerticesL3_*_*', 'keep *_hltVerticesPFSelector_*_*', 'keep DcsStatuss_hltScalersRawToDigi_*_*', 'keep FEDRawDataCollection_rawDataCollector_*_*', 'keep FEDRawDataCollection_rawDataRepacker_*_*', 'keep FEDRawDataCollection_source_*_*', 'keep FEDRawDataCollection_virginRawDataRepacker_*_*', 'keep L2MuonTrajectorySeeds_hltL2MuonSeeds_*_*', 'keep L3MuonTrajectorySeeds_hltHIL3TrajSeedOIHit_*_*', 'keep L3MuonTrajectorySeeds_hltHIL3TrajectorySeed_*_*', 'keep L3MuonTrajectorySeeds_hltL3TrajSeedOIState_*_*', 'keep LumiScalerss_hltScalersRawToDigi_*_*', 'keep SiPixelClusteredmNewDetSetVector_hltSiPixelClusters_*_*', 'keep TrackCandidates_hltHIL3TrackCandidateFromL2OIHit_*_*', 'keep TrackCandidates_hltHIL3TrackCandidateFromL2OIState_*_*', 'keep TrackingRecHitsOwned_hltL3Muons_*_*', 'keep edmTriggerResults_*_*_*', 'keep recoCaloJets_*_*_*', 'keep recoCaloMETs_*_*_*', 'keep recoCaloMETs_hltMet_*_*', 'keep recoCompositeCandidates_*_*_*', 'keep recoElectrons_*_*_*', 'keep recoIsolatedPixelTrackCandidates_*_*_*', 'keep recoMETs_*_*_*', 'keep recoPFJets_*_*_*', 'keep recoPFTaus_*_*_*', 'keep recoRecoChargedCandidates_*_*_*', 'keep recoRecoChargedCandidates_hltHIL3MuonCandidates_*_*', 'keep recoRecoChargedCandidates_hltL2MuonCandidates_*_*', 'keep recoRecoEcalCandidatesToValuefloatAssociation_hltL1IsoHLTClusterShape_*_*', 'keep recoRecoEcalCandidatesToValuefloatAssociation_hltL1IsolatedPhotonEcalIsol_*_*', 'keep recoRecoEcalCandidatesToValuefloatAssociation_hltL1IsolatedPhotonHcalForHE_*_*', 'keep recoRecoEcalCandidatesToValuefloatAssociation_hltL1IsolatedPhotonHcalIsol_*_*', 'keep recoRecoEcalCandidatesToValuefloatAssociation_hltL1NonIsoHLTClusterShape_*_*', 'keep recoRecoEcalCandidatesToValuefloatAssociation_hltL1NonIsolatedPhotonEcalIsol_*_*', 'keep recoRecoEcalCandidatesToValuefloatAssociation_hltL1NonIsolatedPhotonHcalForHE_*_*', 'keep recoRecoEcalCandidatesToValuefloatAssociation_hltL1NonIsolatedPhotonHcalIsol_*_*', 'keep recoRecoEcalCandidates_*_*_*', 'keep recoRecoEcalCandidates_hltL1IsoRecoEcalCandidate_*_*', 'keep recoRecoEcalCandidates_hltL1NonIsoRecoEcalCandidate_*_*', 'keep recoTrackExtras_hltHIL3MuonsOIHit_*_*', 'keep recoTrackExtras_hltHIL3MuonsOIState_*_*', 'keep recoTracks_hltHIL3MuonsOIHit_*_*', 'keep recoTracks_hltHIL3MuonsOIState_*_*', 'keep recoTracks_hltHIL3Muons_*_*', 'keep recoTracks_hltHIL3TkTracksFromL2OIHit_*_*', 'keep recoTracks_hltHIL3TkTracksFromL2OIState_*_*', 'keep recoTracks_hltHIL3TkTracksFromL2_*_*', 'keep triggerTriggerEventWithRefs_*_*_*', 'keep triggerTriggerEvent_*_*_*', 'keep triggerTriggerFilterObjectWithRefs_*_*_*' ) ), splitLevel = cms.untracked.int32(0) ) process.RECODEBUGEventContent = cms.PSet( eventAutoFlushCompressedSize = cms.untracked.int32(5242880), outputCommands = cms.untracked.vstring( ('drop *', 'drop *', 'drop *', 'keep DetIdedmEDCollection_siStripDigis_*_*', 'keep DetIdedmEDCollection_siPixelDigis_*_*', 'keep *_siPixelClusters_*_*', 'keep *_siStripClusters_*_*', 'keep ClusterSummary_clusterSummaryProducer_*_*', 'keep *_dt1DRecHits_*_*', 'keep *_dt4DSegments_*_*', 'keep *_dt1DCosmicRecHits_*_*', 'keep *_dt4DCosmicSegments_*_*', 'keep *_csc2DRecHits_*_*', 'keep *_cscSegments_*_*', 'keep *_rpcRecHits_*_*', 'keep *_hbhereco_*_*', 'keep *_hbheprereco_*_*', 'keep *_hfreco_*_*', 'keep *_horeco_*_*', 'keep HBHERecHitsSorted_hbherecoMB_*_*', 'keep HORecHitsSorted_horecoMB_*_*', 'keep HFRecHitsSorted_hfrecoMB_*_*', 'keep ZDCDataFramesSorted_hcalDigis_*_*', 'keep ZDCRecHitsSorted_*_*_*', 'keep *_reducedHcalRecHits_*_*', 'keep *_castorreco_*_*', 'keep HcalUnpackerReport_castorDigis_*_*', 'keep HcalUnpackerReport_hcalDigiAlCaMB_*_*', 'keep HcalUnpackerReport_hcalDigis_*_*', 'keep *_ecalPreshowerRecHit_*_*', 'keep *_ecalRecHit_*_*', 'keep *_ecalCompactTrigPrim_*_*', 'keep *_ecalTPSkim_*_*', 'keep *_selectDigi_*_*', 'keep EcalRecHitsSorted_reducedEcalRecHitsEE_*_*', 'keep EcalRecHitsSorted_reducedEcalRecHitsEB_*_*', 'keep EcalRecHitsSorted_reducedEcalRecHitsES_*_*', 'keep *_hybridSuperClusters_*_*', 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', 'keep *_multi5x5SuperClusters_*_*', 'keep recoSuperClusters_multi5x5SuperClusters_*_*', 'keep recoSuperClusters_multi5x5SuperClustersWithPreshower_*_*', 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', 'keep recoPreshowerClusters_multi5x5SuperClustersWithPreshower_*_*', 'keep recoPreshowerClusterShapes_multi5x5PreshowerClusterShape_*_*', 'keep *_particleFlowSuperClusterECAL_*_*', 'drop recoClusterShapes_*_*_*', 'drop recoBasicClustersToOnerecoClusterShapesAssociation_*_*_*', 'drop recoBasicClusters_multi5x5BasicClusters_multi5x5BarrelBasicClusters_*', 'drop recoSuperClusters_multi5x5SuperClusters_multi5x5BarrelSuperClusters_*', 'keep *_CkfElectronCandidates_*_*', 'keep *_GsfGlobalElectronTest_*_*', 'keep *_electronMergedSeeds_*_*', 'keep recoGsfTracks_electronGsfTracks_*_*', 'keep recoGsfTrackExtras_electronGsfTracks_*_*', 'keep recoTrackExtras_electronGsfTracks_*_*', 'keep TrackingRecHitsOwned_electronGsfTracks_*_*', 'keep recoTracks_generalTracks_*_*', 'keep recoTrackExtras_generalTracks_*_*', 'keep TrackingRecHitsOwned_generalTracks_*_*', 'keep *_generalTracks_MVAValues_*', 'keep *_generalTracks_MVAVals_*', 'keep TrackingRecHitsOwned_extraFromSeeds_*_*', 'keep uints_extraFromSeeds_*_*', 'keep recoTracks_beamhaloTracks_*_*', 'keep recoTrackExtras_beamhaloTracks_*_*', 'keep TrackingRecHitsOwned_beamhaloTracks_*_*', 'keep recoTracks_conversionStepTracks_*_*', 'keep recoTrackExtras_conversionStepTracks_*_*', 'keep TrackingRecHitsOwned_conversionStepTracks_*_*', 'keep *_ctfPixelLess_*_*', 'keep *_dedxTruncated40_*_*', 'keep *_dedxHitInfo_*_*', 'keep *_dedxHarmonic2_*_*', 'keep *_trackExtrapolator_*_*', 'keep *_ak4CaloJets_*_*', 'keep *_ak4PFJets_*_*', 'keep *_ak4PFJetsCHS_*_*', 'keep *_ak8PFJetsCHS_*_*', 'keep *_ak8PFJetsCHSSoftDrop_*_*', 'keep *_cmsTopTagPFJetsCHS_*_*', 'keep *_JetPlusTrackZSPCorJetAntiKt4_*_*', 'keep *_ak4TrackJets_*_*', 'keep recoRecoChargedRefCandidates_trackRefsForJets_*_*', 'keep *_caloTowers_*_*', 'keep *_towerMaker_*_*', 'keep *_CastorTowerReco_*_*', 'keep *_ak4JetTracksAssociatorAtVertex_*_*', 'keep *_ak4JetTracksAssociatorAtVertexPF_*_*', 'keep *_ak4JetTracksAssociatorAtCaloFace_*_*', 'keep *_ak4JetTracksAssociatorExplicit_*_*', 'keep *_ak4JetExtender_*_*', 'keep *_ak4JetID_*_*', 'keep *_ak5CastorJets_*_*', 'keep *_ak5CastorJetID_*_*', 'keep *_ak7CastorJets_*_*', 'keep *_ak7CastorJetID_*_*', 'keep *_fixedGridRhoAll_*_*', 'keep *_fixedGridRhoFastjetAll_*_*', 'keep *_fixedGridRhoFastjetAllTmp_*_*', 'keep *_fixedGridRhoFastjetAllCalo_*_*', 'keep *_fixedGridRhoFastjetCentral_*_*', 'keep *_fixedGridRhoFastjetCentralCalo_*_*', 'keep *_fixedGridRhoFastjetCentralChargedPileUp_*_*', 'keep *_fixedGridRhoFastjetCentralNeutral_*_*', 'keep *_ak8PFJetsCHSSoftDropMass_*_*', 'keep recoCaloMETs_caloMet_*_*', 'keep recoCaloMETs_caloMetBE_*_*', 'keep recoCaloMETs_caloMetBEFO_*_*', 'keep recoCaloMETs_caloMetM_*_*', 'keep recoPFMETs_pfMet_*_*', 'keep recoPFMETs_pfChMet_*_*', 'keep recoPFMETs_pfMetEI_*_*', 'keep recoMuonMETCorrectionDataedmValueMap_muonMETValueMapProducer_*_*', 'keep recoHcalNoiseRBXs_hcalnoise_*_*', 'keep HcalNoiseSummary_hcalnoise_*_*', 'keep recoCSCHaloData_CSCHaloData_*_*', 'keep recoEcalHaloData_EcalHaloData_*_*', 'keep recoGlobalHaloData_GlobalHaloData_*_*', 'keep recoHcalHaloData_HcalHaloData_*_*', 'keep recoBeamHaloSummary_BeamHaloSummary_*_*', 'keep *_MuonSeed_*_*', 'keep *_ancientMuonSeed_*_*', 'keep *_displacedMuonSeeds_*_*', 'keep TrackingRecHitsOwned_globalMuons_*_*', 'keep TrackingRecHitsOwned_tevMuons_*_*', 'keep recoCaloMuons_calomuons_*_*', 'keep *_CosmicMuonSeed_*_*', 'keep recoTrackExtras_cosmicMuons_*_*', 'keep TrackingRecHitsOwned_cosmicMuons_*_*', 'keep recoTrackExtras_cosmicMuons1Leg_*_*', 'keep TrackingRecHitsOwned_cosmicMuons1Leg_*_*', 'keep recoTracks_cosmicsVetoTracks_*_*', 'keep *_SETMuonSeed_*_*', 'keep recoTracks_standAloneSETMuons_*_*', 'keep recoTrackExtras_standAloneSETMuons_*_*', 'keep TrackingRecHitsOwned_standAloneSETMuons_*_*', 'keep recoTracks_globalSETMuons_*_*', 'keep recoTrackExtras_globalSETMuons_*_*', 'keep TrackingRecHitsOwned_globalSETMuons_*_*', 'keep recoMuons_muonsWithSET_*_*', 'keep *_muons_*_*', 'keep *_particleFlow_muons_*', 'drop *_muons_muons1stStep2muonsMap_*', 'drop recoIsoDepositedmValueMap_muons_*_*', 'drop doubleedmValueMap_muons_muPFIso*_*', 'keep recoTracks_standAloneMuons_*_*', 'keep recoTrackExtras_standAloneMuons_*_*', 'keep TrackingRecHitsOwned_standAloneMuons_*_*', 'keep recoTracks_globalMuons_*_*', 'keep recoTrackExtras_globalMuons_*_*', 'keep recoTracks_tevMuons_*_*', 'keep recoTrackExtras_tevMuons_*_*', 'keep recoTracks_generalTracks_*_*', 'keep recoTracks_displacedTracks_*_*', 'keep recoTracksToOnerecoTracksAssociation_tevMuons_*_*', 'keep recoTracks_displacedGlobalMuons_*_*', 'keep recoTrackExtras_displacedGlobalMuons_*_*', 'keep TrackingRecHitsOwned_displacedGlobalMuons_*_*', 'keep recoTracks_cosmicMuons_*_*', 'keep recoMuons_muonsFromCosmics_*_*', 'keep recoTracks_cosmicMuons1Leg_*_*', 'keep recoMuons_muonsFromCosmics1Leg_*_*', 'keep recoTracks_refittedStandAloneMuons_*_*', 'keep recoTrackExtras_refittedStandAloneMuons_*_*', 'keep TrackingRecHitsOwned_refittedStandAloneMuons_*_*', 'keep recoTracks_displacedStandAloneMuons__*', 'keep recoTrackExtras_displacedStandAloneMuons_*_*', 'keep TrackingRecHitsOwned_displacedStandAloneMuons_*_*', 'keep *_muIsoDepositTk_*_*', 'keep *_muIsoDepositCalByAssociatorTowers_*_*', 'keep *_muIsoDepositCalByAssociatorHits_*_*', 'keep *_muIsoDepositJets_*_*', 'keep *_muGlobalIsoDepositCtfTk_*_*', 'keep *_muGlobalIsoDepositCalByAssociatorTowers_*_*', 'keep *_muGlobalIsoDepositCalByAssociatorHits_*_*', 'keep *_muGlobalIsoDepositJets_*_*', 'keep *_softPFMuonsTagInfos_*_*', 'keep *_softPFElectronsTagInfos_*_*', 'keep *_softPFElectronBJetTags_*_*', 'keep *_softPFMuonBJetTags_*_*', 'keep *_pfImpactParameterTagInfos_*_*', 'keep *_pfTrackCountingHighEffBJetTags_*_*', 'keep *_pfJetProbabilityBJetTags_*_*', 'keep *_pfJetBProbabilityBJetTags_*_*', 'keep *_pfSecondaryVertexTagInfos_*_*', 'keep *_pfInclusiveSecondaryVertexFinderTagInfos_*_*', 'keep *_pfSimpleSecondaryVertexHighEffBJetTags_*_*', 'keep *_pfSimpleInclusiveSecondaryVertexHighEffBJetTags_*_*', 'keep *_pfCombinedSecondaryVertexV2BJetTags_*_*', 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTags_*_*', 'keep *_pfCombinedMVAV2BJetTags_*_*', 'keep *_inclusiveCandidateSecondaryVertices_*_*', 'keep *_inclusiveCandidateSecondaryVerticesCvsL_*_*', 'keep *_pfInclusiveSecondaryVertexFinderCvsLTagInfos_*_*', 'keep *_pfCombinedCvsLJetTags_*_*', 'keep *_pfCombinedCvsBJetTags_*_*', 'keep recoRecoTauPiZeros_hpsPFTauProducer_pizeros_*', 'keep recoPFTaus_hpsPFTauProducer_*_*', 'keep *_hpsPFTauDiscriminationByDeadECALElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByDecayModeFinding_*_*', 'keep *_hpsPFTauDiscriminationByDecayModeFindingNewDMs_*_*', 'keep *_hpsPFTauDiscriminationByDecayModeFindingOldDMs_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolation_*_*', 'keep *_hpsPFTauDiscriminationByLooseChargedIsolation_*_*', 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3Hits_*_*', 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3HitsdR03_*_*', 'keep *_hpsPFTauDiscriminationByLooseElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByLooseMuonRejection3_*_*', 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3Hits_*_*', 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3HitsdR03_*_*', 'keep *_hpsPFTauDiscriminationByRawCombinedIsolationDBSumPtCorr3Hits_*_*', 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3Hits_*_*', 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3HitsdR03_*_*', 'keep *_hpsPFTauDiscriminationByTightMuonRejection3_*_*', 'keep *_hpsPFTauDiscriminationByPhotonPtSumOutsideSignalCone_*_*', 'keep *_hpsPFTauNeutralIsoPtSum_*_*', 'keep *_hpsPFTauPUcorrPtSum_*_*', 'keep *_hpsPFTauChargedIsoPtSum_*_*', 'keep *_hpsPFTauTransverseImpactParameters_*_*', 'keep *_hpsPFTauFootprintCorrection_*_*', 'keep *_hpsPFTauNeutralIsoPtSumWeight_*_*', 'keep *_hpsPFTauPhotonPtSumOutsideSignalCone_*_*', 'keep *_hpsPFTauDiscriminationByMVA6rawElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6VLooseElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6LooseElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6MediumElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6TightElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6VTightElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBoldDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBnewDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWoldDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWnewDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauChargedIsoPtSumdR03_*_*', 'keep *_hpsPFTauNeutralIsoPtSumdR03_*_*', 'keep *_hpsPFTauNeutralIsoPtSumWeightdR03_*_*', 'keep *_hpsPFTauFootprintCorrectiondR03_*_*', 'keep *_hpsPFTauPhotonPtSumOutsideSignalConedR03_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBdR03oldDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWdR03oldDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_offlinePrimaryVertices__*', 'keep *_offlinePrimaryVerticesWithBS_*_*', 'keep *_offlinePrimaryVerticesFromCosmicTracks_*_*', 'keep *_nuclearInteractionMaker_*_*', 'keep *_generalV0Candidates_*_*', 'keep *_inclusiveSecondaryVertices_*_*', 'keep recoGsfElectronCores_gsfElectronCores_*_*', 'keep recoGsfElectronCores_gedGsfElectronCores_*_*', 'keep recoGsfElectrons_gsfElectrons_*_*', 'keep recoGsfElectrons_gedGsfElectrons_*_*', 'keep recoGsfElectronCores_uncleanedOnlyGsfElectronCores_*_*', 'keep recoGsfElectrons_uncleanedOnlyGsfElectrons_*_*', 'keep floatedmValueMap_eidRobustLoose_*_*', 'keep floatedmValueMap_eidRobustTight_*_*', 'keep floatedmValueMap_eidRobustHighEnergy_*_*', 'keep floatedmValueMap_eidLoose_*_*', 'keep floatedmValueMap_eidTight_*_*', 'keep *_egmGedGsfElectronPFIsolation_*_*', 'keep *_photonEcalPFClusterIsolationProducer_*_*', 'keep *_electronEcalPFClusterIsolationProducer_*_*', 'keep *_photonHcalPFClusterIsolationProducer_*_*', 'keep *_electronHcalPFClusterIsolationProducer_*_*', 'drop *_egmGsfElectronIDs_*_*', 'drop *_egmPhotonIDs_*_*', 'keep *_gedPhotonCore_*_*', 'keep *_gedPhotons_*_*', 'keep *_particleBasedIsolation_*_*', 'keep recoPhotons_mustachePhotons_*_*', 'keep recoPhotonCores_mustachePhotonCore_*_*', 'keep recoPhotons_photons_*_*', 'keep recoPhotonCores_photonCore_*_*', 'keep recoConversions_conversions_*_*', 'keep recoConversions_mustacheConversions_*_*', 'drop *_conversions_uncleanedConversions_*', 'drop *_gedPhotonsTmp_valMapPFEgammaCandToPhoton_*', 'keep recoConversions_allConversions_*_*', 'keep recoConversions_allConversionsOldEG_*_*', 'keep recoTracks_ckfOutInTracksFromConversions_*_*', 'keep recoTracks_ckfInOutTracksFromConversions_*_*', 'keep recoTrackExtras_ckfOutInTracksFromConversions_*_*', 'keep recoTrackExtras_ckfInOutTracksFromConversions_*_*', 'keep TrackingRecHitsOwned_ckfOutInTracksFromConversions_*_*', 'keep TrackingRecHitsOwned_ckfInOutTracksFromConversions_*_*', 'keep recoConversions_uncleanedOnlyAllConversions_*_*', 'keep recoTracks_uncleanedOnlyCkfOutInTracksFromConversions_*_*', 'keep recoTracks_uncleanedOnlyCkfInOutTracksFromConversions_*_*', 'keep recoTrackExtras_uncleanedOnlyCkfOutInTracksFromConversions_*_*', 'keep recoTrackExtras_uncleanedOnlyCkfInOutTracksFromConversions_*_*', 'keep TrackingRecHitsOwned_uncleanedOnlyCkfOutInTracksFromConversions_*_*', 'keep TrackingRecHitsOwned_uncleanedOnlyCkfInOutTracksFromConversions_*_*', 'keep *_PhotonIDProd_*_*', 'keep *_PhotonIDProdGED_*_*', 'keep recoRecoEcalCandidates_hfRecoEcalCandidate_*_*', 'keep *_hfEMClusters_*_*', 'keep *_gedGsfElectronCores_*_*', 'keep *_gedGsfElectrons_*_*', 'keep *_pixelTracks_*_*', 'keep *_pixelVertices_*_*', 'drop CaloTowersSorted_towerMakerPF_*_*', 'keep recoPFRecHits_particleFlowClusterECAL_Cleaned_*', 'keep recoPFRecHits_particleFlowClusterHCAL_Cleaned_*', 'keep recoPFRecHits_particleFlowClusterHO_Cleaned_*', 'keep recoPFRecHits_particleFlowClusterHF_Cleaned_*', 'keep recoPFRecHits_particleFlowClusterPS_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitECAL_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitHBHE_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitHF_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitHO_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitPS_Cleaned_*', 'keep recoPFClusters_particleFlowClusterECAL_*_*', 'keep recoPFClusters_particleFlowClusterHCAL_*_*', 'keep recoPFClusters_particleFlowClusterHO_*_*', 'keep recoPFClusters_particleFlowClusterHF_*_*', 'keep recoPFClusters_particleFlowClusterPS_*_*', 'keep recoPFBlocks_particleFlowBlock_*_*', 'keep recoPFCandidates_particleFlowEGamma_*_*', 'keep recoCaloClusters_particleFlowEGamma_*_*', 'keep recoSuperClusters_particleFlowEGamma_*_*', 'keep recoConversions_particleFlowEGamma_*_*', 'keep recoPFCandidates_particleFlow_*_*', 'keep recoPFCandidates_particleFlowTmp_electrons_*', 'keep recoPFCandidates_particleFlowTmp_*_*', 'drop recoPFCandidates_particleFlowTmp__*', 'keep recoPFDisplacedVertexs_particleFlowDisplacedVertex_*_*', 'keep *_pfElectronTranslator_*_*', 'keep *_pfPhotonTranslator_*_*', 'keep *_particleFlow_electrons_*', 'keep *_particleFlow_photons_*', 'keep *_particleFlow_muons_*', 'keep *_trackerDrivenElectronSeeds_preid_*', 'keep *_particleFlowPtrs_*_*', 'keep *_particleFlowTmpPtrs_*_*', 'keep *_offlineBeamSpot_*_*', 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', 'keep *_l1GtRecord_*_*', 'keep *_l1GtTriggerMenuLite_*_*', 'keep *_conditionsInEdm_*_*', 'keep *_l1extraParticles_*_*', 'keep *_l1L1GtObjectMap_*_*', 'keep L1MuGMTReadoutCollection_gtDigis_*_*', 'keep L1GctEmCand*_gctDigis_*_*', 'keep L1GctJetCand*_gctDigis_*_*', 'keep L1GctEtHad*_gctDigis_*_*', 'keep L1GctEtMiss*_gctDigis_*_*', 'keep L1GctEtTotal*_gctDigis_*_*', 'keep L1GctHtMiss*_gctDigis_*_*', 'keep L1GctJetCounts*_gctDigis_*_*', 'keep L1GctHFRingEtSums*_gctDigis_*_*', 'keep L1GctHFBitCounts*_gctDigis_*_*', 'keep LumiDetails_lumiProducer_*_*', 'keep LumiSummary_lumiProducer_*_*', 'drop *_hlt*_*_*', 'keep *_hltGtStage2ObjectMap_*_*', 'keep edmTriggerResults_*_*_*', 'keep triggerTriggerEvent_*_*_*', 'keep L1AcceptBunchCrossings_scalersRawToDigi_*_*', 'keep L1TriggerScalerss_scalersRawToDigi_*_*', 'keep Level1TriggerScalerss_scalersRawToDigi_*_*', 'keep LumiScalerss_scalersRawToDigi_*_*', 'keep BeamSpotOnlines_scalersRawToDigi_*_*', 'keep DcsStatuss_scalersRawToDigi_*_*', 'keep DcsStatuss_hltScalersRawToDigi_*_*', 'keep *_tcdsDigis_*_*', 'keep *_logErrorHarvester_*_*', 'keep *_pfIsolatedElectronsEI_*_*', 'keep *_pfIsolatedMuonsEI_*_*', 'keep recoPFJets_pfJetsEI_*_*', 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTagsEI_*_*', 'keep recoPFTaus_pfTausEI_*_*', 'keep recoPFTauDiscriminator_pfTausDiscriminationByDecayModeFinding_*_*', 'keep recoPFTauDiscriminator_pfTausDiscriminationByIsolation_*_*', 'keep recoPFMETs_pfMetEI_*_*', 'keep LHERunInfoProduct_*_*_*', 'keep LHEEventProduct_*_*_*', 'keep GenRunInfoProduct_generator_*_*', 'keep GenLumiInfoHeader_generator_*_*', 'keep GenLumiInfoProduct_generator_*_*', 'keep GenEventInfoProduct_generator_*_*', 'keep edmHepMCProduct_generatorSmeared_*_*', 'keep GenFilterInfo_*_*_*', 'keep *_genParticles_*_*', 'keep recoGenMETs_*_*_*', 'keep *_ak4GenJets_*_*', 'keep *_ak8GenJets_*_*', 'keep *_ak4GenJetsNoNu_*_*', 'keep *_ak8GenJetsNoNu_*_*', 'keep *_genParticle_*_*', 'keep edmHepMCProduct_source_*_*', 'keep SimTracks_g4SimHits_*_*', 'keep SimVertexs_g4SimHits_*_*', 'keep *_allTrackMCMatch_*_*', 'keep StripDigiSimLinkedmDetSetVector_simMuonCSCDigis_*_*', 'keep DTLayerIdDTDigiSimLinkMuonDigiCollection_simMuonDTDigis_*_*', 'keep RPCDigiSimLinkedmDetSetVector_simMuonRPCDigis_*_*', 'keep PileupSummaryInfos_*_*_*', 'keep int_*_bunchSpacing_*', 'drop *_trackingtruthprod_*_*', 'drop *_electrontruth_*_*', 'keep *_mix_MergedTrackTruth_*', 'keep CrossingFramePlaybackInfoNew_*_*_*', 'keep PixelDigiSimLinkedmDetSetVector_simSiPixelDigis_*_*', 'keep StripDigiSimLinkedmDetSetVector_simSiStripDigis_*_*', 'drop *_mix_simSiPixelDigis*_*', 'drop *_mix_simSiStripDigis*_*', 'keep *_allTrackMCMatch_*_*' ) ), splitLevel = cms.untracked.int32(0) ) process.RECOEventContent = cms.PSet( eventAutoFlushCompressedSize = cms.untracked.int32(5242880), outputCommands = cms.untracked.vstring( ('drop *', 'keep DetIdedmEDCollection_siStripDigis_*_*', 'keep DetIdedmEDCollection_siPixelDigis_*_*', 'keep *_siPixelClusters_*_*', 'keep *_siStripClusters_*_*', 'keep ClusterSummary_clusterSummaryProducer_*_*', 'keep *_dt1DRecHits_*_*', 'keep *_dt4DSegments_*_*', 'keep *_dt1DCosmicRecHits_*_*', 'keep *_dt4DCosmicSegments_*_*', 'keep *_csc2DRecHits_*_*', 'keep *_cscSegments_*_*', 'keep *_rpcRecHits_*_*', 'keep *_hbhereco_*_*', 'keep *_hbheprereco_*_*', 'keep *_hfreco_*_*', 'keep *_horeco_*_*', 'keep HBHERecHitsSorted_hbherecoMB_*_*', 'keep HORecHitsSorted_horecoMB_*_*', 'keep HFRecHitsSorted_hfrecoMB_*_*', 'keep ZDCDataFramesSorted_hcalDigis_*_*', 'keep ZDCRecHitsSorted_*_*_*', 'keep *_reducedHcalRecHits_*_*', 'keep *_castorreco_*_*', 'keep HcalUnpackerReport_castorDigis_*_*', 'keep HcalUnpackerReport_hcalDigiAlCaMB_*_*', 'keep HcalUnpackerReport_hcalDigis_*_*', 'keep *_ecalPreshowerRecHit_*_*', 'keep *_ecalRecHit_*_*', 'keep *_ecalCompactTrigPrim_*_*', 'keep *_ecalTPSkim_*_*', 'keep *_selectDigi_*_*', 'keep EcalRecHitsSorted_reducedEcalRecHitsEE_*_*', 'keep EcalRecHitsSorted_reducedEcalRecHitsEB_*_*', 'keep EcalRecHitsSorted_reducedEcalRecHitsES_*_*', 'keep *_hybridSuperClusters_*_*', 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', 'keep *_multi5x5SuperClusters_*_*', 'keep recoSuperClusters_multi5x5SuperClusters_*_*', 'keep recoSuperClusters_multi5x5SuperClustersWithPreshower_*_*', 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', 'keep recoPreshowerClusters_multi5x5SuperClustersWithPreshower_*_*', 'keep recoPreshowerClusterShapes_multi5x5PreshowerClusterShape_*_*', 'keep *_particleFlowSuperClusterECAL_*_*', 'drop recoClusterShapes_*_*_*', 'drop recoBasicClustersToOnerecoClusterShapesAssociation_*_*_*', 'drop recoBasicClusters_multi5x5BasicClusters_multi5x5BarrelBasicClusters_*', 'drop recoSuperClusters_multi5x5SuperClusters_multi5x5BarrelSuperClusters_*', 'keep *_CkfElectronCandidates_*_*', 'keep *_GsfGlobalElectronTest_*_*', 'keep *_electronMergedSeeds_*_*', 'keep recoGsfTracks_electronGsfTracks_*_*', 'keep recoGsfTrackExtras_electronGsfTracks_*_*', 'keep recoTrackExtras_electronGsfTracks_*_*', 'keep TrackingRecHitsOwned_electronGsfTracks_*_*', 'keep recoTracks_generalTracks_*_*', 'keep recoTrackExtras_generalTracks_*_*', 'keep TrackingRecHitsOwned_generalTracks_*_*', 'keep *_generalTracks_MVAValues_*', 'keep *_generalTracks_MVAVals_*', 'keep TrackingRecHitsOwned_extraFromSeeds_*_*', 'keep uints_extraFromSeeds_*_*', 'keep recoTracks_beamhaloTracks_*_*', 'keep recoTrackExtras_beamhaloTracks_*_*', 'keep TrackingRecHitsOwned_beamhaloTracks_*_*', 'keep recoTracks_conversionStepTracks_*_*', 'keep recoTrackExtras_conversionStepTracks_*_*', 'keep TrackingRecHitsOwned_conversionStepTracks_*_*', 'keep *_ctfPixelLess_*_*', 'keep *_dedxTruncated40_*_*', 'keep *_dedxHitInfo_*_*', 'keep *_dedxHarmonic2_*_*', 'keep *_trackExtrapolator_*_*', 'keep *_ak4CaloJets_*_*', 'keep *_ak4PFJets_*_*', 'keep *_ak4PFJetsCHS_*_*', 'keep *_ak8PFJetsCHS_*_*', 'keep *_ak8PFJetsCHSSoftDrop_*_*', 'keep *_cmsTopTagPFJetsCHS_*_*', 'keep *_JetPlusTrackZSPCorJetAntiKt4_*_*', 'keep *_ak4TrackJets_*_*', 'keep recoRecoChargedRefCandidates_trackRefsForJets_*_*', 'keep *_caloTowers_*_*', 'keep *_towerMaker_*_*', 'keep *_CastorTowerReco_*_*', 'keep *_ak4JetTracksAssociatorAtVertex_*_*', 'keep *_ak4JetTracksAssociatorAtVertexPF_*_*', 'keep *_ak4JetTracksAssociatorAtCaloFace_*_*', 'keep *_ak4JetTracksAssociatorExplicit_*_*', 'keep *_ak4JetExtender_*_*', 'keep *_ak4JetID_*_*', 'keep *_ak5CastorJets_*_*', 'keep *_ak5CastorJetID_*_*', 'keep *_ak7CastorJets_*_*', 'keep *_ak7CastorJetID_*_*', 'keep *_fixedGridRhoAll_*_*', 'keep *_fixedGridRhoFastjetAll_*_*', 'keep *_fixedGridRhoFastjetAllTmp_*_*', 'keep *_fixedGridRhoFastjetAllCalo_*_*', 'keep *_fixedGridRhoFastjetCentral_*_*', 'keep *_fixedGridRhoFastjetCentralCalo_*_*', 'keep *_fixedGridRhoFastjetCentralChargedPileUp_*_*', 'keep *_fixedGridRhoFastjetCentralNeutral_*_*', 'keep *_ak8PFJetsCHSSoftDropMass_*_*', 'keep recoCaloMETs_caloMet_*_*', 'keep recoCaloMETs_caloMetBE_*_*', 'keep recoCaloMETs_caloMetBEFO_*_*', 'keep recoCaloMETs_caloMetM_*_*', 'keep recoPFMETs_pfMet_*_*', 'keep recoPFMETs_pfChMet_*_*', 'keep recoPFMETs_pfMetEI_*_*', 'keep recoMuonMETCorrectionDataedmValueMap_muonMETValueMapProducer_*_*', 'keep recoHcalNoiseRBXs_hcalnoise_*_*', 'keep HcalNoiseSummary_hcalnoise_*_*', 'keep recoCSCHaloData_CSCHaloData_*_*', 'keep recoEcalHaloData_EcalHaloData_*_*', 'keep recoGlobalHaloData_GlobalHaloData_*_*', 'keep recoHcalHaloData_HcalHaloData_*_*', 'keep recoBeamHaloSummary_BeamHaloSummary_*_*', 'keep *_MuonSeed_*_*', 'keep *_ancientMuonSeed_*_*', 'keep *_displacedMuonSeeds_*_*', 'keep TrackingRecHitsOwned_globalMuons_*_*', 'keep TrackingRecHitsOwned_tevMuons_*_*', 'keep recoCaloMuons_calomuons_*_*', 'keep *_CosmicMuonSeed_*_*', 'keep recoTrackExtras_cosmicMuons_*_*', 'keep TrackingRecHitsOwned_cosmicMuons_*_*', 'keep recoTrackExtras_cosmicMuons1Leg_*_*', 'keep TrackingRecHitsOwned_cosmicMuons1Leg_*_*', 'keep recoTracks_cosmicsVetoTracks_*_*', 'keep *_SETMuonSeed_*_*', 'keep recoTracks_standAloneSETMuons_*_*', 'keep recoTrackExtras_standAloneSETMuons_*_*', 'keep TrackingRecHitsOwned_standAloneSETMuons_*_*', 'keep recoTracks_globalSETMuons_*_*', 'keep recoTrackExtras_globalSETMuons_*_*', 'keep TrackingRecHitsOwned_globalSETMuons_*_*', 'keep recoMuons_muonsWithSET_*_*', 'keep *_muons_*_*', 'keep *_particleFlow_muons_*', 'drop *_muons_muons1stStep2muonsMap_*', 'drop recoIsoDepositedmValueMap_muons_*_*', 'drop doubleedmValueMap_muons_muPFIso*_*', 'keep recoTracks_standAloneMuons_*_*', 'keep recoTrackExtras_standAloneMuons_*_*', 'keep TrackingRecHitsOwned_standAloneMuons_*_*', 'keep recoTracks_globalMuons_*_*', 'keep recoTrackExtras_globalMuons_*_*', 'keep recoTracks_tevMuons_*_*', 'keep recoTrackExtras_tevMuons_*_*', 'keep recoTracks_generalTracks_*_*', 'keep recoTracks_displacedTracks_*_*', 'keep recoTracksToOnerecoTracksAssociation_tevMuons_*_*', 'keep recoTracks_displacedGlobalMuons_*_*', 'keep recoTrackExtras_displacedGlobalMuons_*_*', 'keep TrackingRecHitsOwned_displacedGlobalMuons_*_*', 'keep recoTracks_cosmicMuons_*_*', 'keep recoMuons_muonsFromCosmics_*_*', 'keep recoTracks_cosmicMuons1Leg_*_*', 'keep recoMuons_muonsFromCosmics1Leg_*_*', 'keep recoTracks_refittedStandAloneMuons_*_*', 'keep recoTrackExtras_refittedStandAloneMuons_*_*', 'keep TrackingRecHitsOwned_refittedStandAloneMuons_*_*', 'keep recoTracks_displacedStandAloneMuons__*', 'keep recoTrackExtras_displacedStandAloneMuons_*_*', 'keep TrackingRecHitsOwned_displacedStandAloneMuons_*_*', 'keep *_muIsoDepositTk_*_*', 'keep *_muIsoDepositCalByAssociatorTowers_*_*', 'keep *_muIsoDepositCalByAssociatorHits_*_*', 'keep *_muIsoDepositJets_*_*', 'keep *_muGlobalIsoDepositCtfTk_*_*', 'keep *_muGlobalIsoDepositCalByAssociatorTowers_*_*', 'keep *_muGlobalIsoDepositCalByAssociatorHits_*_*', 'keep *_muGlobalIsoDepositJets_*_*', 'keep *_softPFMuonsTagInfos_*_*', 'keep *_softPFElectronsTagInfos_*_*', 'keep *_softPFElectronBJetTags_*_*', 'keep *_softPFMuonBJetTags_*_*', 'keep *_pfImpactParameterTagInfos_*_*', 'keep *_pfTrackCountingHighEffBJetTags_*_*', 'keep *_pfJetProbabilityBJetTags_*_*', 'keep *_pfJetBProbabilityBJetTags_*_*', 'keep *_pfSecondaryVertexTagInfos_*_*', 'keep *_pfInclusiveSecondaryVertexFinderTagInfos_*_*', 'keep *_pfSimpleSecondaryVertexHighEffBJetTags_*_*', 'keep *_pfSimpleInclusiveSecondaryVertexHighEffBJetTags_*_*', 'keep *_pfCombinedSecondaryVertexV2BJetTags_*_*', 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTags_*_*', 'keep *_pfCombinedMVAV2BJetTags_*_*', 'keep *_inclusiveCandidateSecondaryVertices_*_*', 'keep *_inclusiveCandidateSecondaryVerticesCvsL_*_*', 'keep *_pfInclusiveSecondaryVertexFinderCvsLTagInfos_*_*', 'keep *_pfCombinedCvsLJetTags_*_*', 'keep *_pfCombinedCvsBJetTags_*_*', 'keep recoRecoTauPiZeros_hpsPFTauProducer_pizeros_*', 'keep recoPFTaus_hpsPFTauProducer_*_*', 'keep *_hpsPFTauDiscriminationByDeadECALElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByDecayModeFinding_*_*', 'keep *_hpsPFTauDiscriminationByDecayModeFindingNewDMs_*_*', 'keep *_hpsPFTauDiscriminationByDecayModeFindingOldDMs_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolation_*_*', 'keep *_hpsPFTauDiscriminationByLooseChargedIsolation_*_*', 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3Hits_*_*', 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3HitsdR03_*_*', 'keep *_hpsPFTauDiscriminationByLooseElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByLooseMuonRejection3_*_*', 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3Hits_*_*', 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3HitsdR03_*_*', 'keep *_hpsPFTauDiscriminationByRawCombinedIsolationDBSumPtCorr3Hits_*_*', 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3Hits_*_*', 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3HitsdR03_*_*', 'keep *_hpsPFTauDiscriminationByTightMuonRejection3_*_*', 'keep *_hpsPFTauDiscriminationByPhotonPtSumOutsideSignalCone_*_*', 'keep *_hpsPFTauNeutralIsoPtSum_*_*', 'keep *_hpsPFTauPUcorrPtSum_*_*', 'keep *_hpsPFTauChargedIsoPtSum_*_*', 'keep *_hpsPFTauTransverseImpactParameters_*_*', 'keep *_hpsPFTauFootprintCorrection_*_*', 'keep *_hpsPFTauNeutralIsoPtSumWeight_*_*', 'keep *_hpsPFTauPhotonPtSumOutsideSignalCone_*_*', 'keep *_hpsPFTauDiscriminationByMVA6rawElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6VLooseElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6LooseElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6MediumElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6TightElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6VTightElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBoldDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBnewDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWoldDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWnewDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauChargedIsoPtSumdR03_*_*', 'keep *_hpsPFTauNeutralIsoPtSumdR03_*_*', 'keep *_hpsPFTauNeutralIsoPtSumWeightdR03_*_*', 'keep *_hpsPFTauFootprintCorrectiondR03_*_*', 'keep *_hpsPFTauPhotonPtSumOutsideSignalConedR03_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBdR03oldDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWdR03oldDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_offlinePrimaryVertices__*', 'keep *_offlinePrimaryVerticesWithBS_*_*', 'keep *_offlinePrimaryVerticesFromCosmicTracks_*_*', 'keep *_nuclearInteractionMaker_*_*', 'keep *_generalV0Candidates_*_*', 'keep *_inclusiveSecondaryVertices_*_*', 'keep recoGsfElectronCores_gsfElectronCores_*_*', 'keep recoGsfElectronCores_gedGsfElectronCores_*_*', 'keep recoGsfElectrons_gsfElectrons_*_*', 'keep recoGsfElectrons_gedGsfElectrons_*_*', 'keep recoGsfElectronCores_uncleanedOnlyGsfElectronCores_*_*', 'keep recoGsfElectrons_uncleanedOnlyGsfElectrons_*_*', 'keep floatedmValueMap_eidRobustLoose_*_*', 'keep floatedmValueMap_eidRobustTight_*_*', 'keep floatedmValueMap_eidRobustHighEnergy_*_*', 'keep floatedmValueMap_eidLoose_*_*', 'keep floatedmValueMap_eidTight_*_*', 'keep *_egmGedGsfElectronPFIsolation_*_*', 'keep *_photonEcalPFClusterIsolationProducer_*_*', 'keep *_electronEcalPFClusterIsolationProducer_*_*', 'keep *_photonHcalPFClusterIsolationProducer_*_*', 'keep *_electronHcalPFClusterIsolationProducer_*_*', 'drop *_egmGsfElectronIDs_*_*', 'drop *_egmPhotonIDs_*_*', 'keep *_gedPhotonCore_*_*', 'keep *_gedPhotons_*_*', 'keep *_particleBasedIsolation_*_*', 'keep recoPhotons_mustachePhotons_*_*', 'keep recoPhotonCores_mustachePhotonCore_*_*', 'keep recoPhotons_photons_*_*', 'keep recoPhotonCores_photonCore_*_*', 'keep recoConversions_conversions_*_*', 'keep recoConversions_mustacheConversions_*_*', 'drop *_conversions_uncleanedConversions_*', 'drop *_gedPhotonsTmp_valMapPFEgammaCandToPhoton_*', 'keep recoConversions_allConversions_*_*', 'keep recoConversions_allConversionsOldEG_*_*', 'keep recoTracks_ckfOutInTracksFromConversions_*_*', 'keep recoTracks_ckfInOutTracksFromConversions_*_*', 'keep recoTrackExtras_ckfOutInTracksFromConversions_*_*', 'keep recoTrackExtras_ckfInOutTracksFromConversions_*_*', 'keep TrackingRecHitsOwned_ckfOutInTracksFromConversions_*_*', 'keep TrackingRecHitsOwned_ckfInOutTracksFromConversions_*_*', 'keep recoConversions_uncleanedOnlyAllConversions_*_*', 'keep recoTracks_uncleanedOnlyCkfOutInTracksFromConversions_*_*', 'keep recoTracks_uncleanedOnlyCkfInOutTracksFromConversions_*_*', 'keep recoTrackExtras_uncleanedOnlyCkfOutInTracksFromConversions_*_*', 'keep recoTrackExtras_uncleanedOnlyCkfInOutTracksFromConversions_*_*', 'keep TrackingRecHitsOwned_uncleanedOnlyCkfOutInTracksFromConversions_*_*', 'keep TrackingRecHitsOwned_uncleanedOnlyCkfInOutTracksFromConversions_*_*', 'keep *_PhotonIDProd_*_*', 'keep *_PhotonIDProdGED_*_*', 'keep recoRecoEcalCandidates_hfRecoEcalCandidate_*_*', 'keep *_hfEMClusters_*_*', 'keep *_gedGsfElectronCores_*_*', 'keep *_gedGsfElectrons_*_*', 'keep *_pixelTracks_*_*', 'keep *_pixelVertices_*_*', 'drop CaloTowersSorted_towerMakerPF_*_*', 'keep recoPFRecHits_particleFlowClusterECAL_Cleaned_*', 'keep recoPFRecHits_particleFlowClusterHCAL_Cleaned_*', 'keep recoPFRecHits_particleFlowClusterHO_Cleaned_*', 'keep recoPFRecHits_particleFlowClusterHF_Cleaned_*', 'keep recoPFRecHits_particleFlowClusterPS_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitECAL_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitHBHE_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitHF_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitHO_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitPS_Cleaned_*', 'keep recoPFClusters_particleFlowClusterECAL_*_*', 'keep recoPFClusters_particleFlowClusterHCAL_*_*', 'keep recoPFClusters_particleFlowClusterHO_*_*', 'keep recoPFClusters_particleFlowClusterHF_*_*', 'keep recoPFClusters_particleFlowClusterPS_*_*', 'keep recoPFBlocks_particleFlowBlock_*_*', 'keep recoPFCandidates_particleFlowEGamma_*_*', 'keep recoCaloClusters_particleFlowEGamma_*_*', 'keep recoSuperClusters_particleFlowEGamma_*_*', 'keep recoConversions_particleFlowEGamma_*_*', 'keep recoPFCandidates_particleFlow_*_*', 'keep recoPFCandidates_particleFlowTmp_electrons_*', 'keep recoPFCandidates_particleFlowTmp_*_*', 'drop recoPFCandidates_particleFlowTmp__*', 'keep recoPFDisplacedVertexs_particleFlowDisplacedVertex_*_*', 'keep *_pfElectronTranslator_*_*', 'keep *_pfPhotonTranslator_*_*', 'keep *_particleFlow_electrons_*', 'keep *_particleFlow_photons_*', 'keep *_particleFlow_muons_*', 'keep *_trackerDrivenElectronSeeds_preid_*', 'keep *_particleFlowPtrs_*_*', 'keep *_particleFlowTmpPtrs_*_*', 'keep *_offlineBeamSpot_*_*', 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', 'keep *_l1GtRecord_*_*', 'keep *_l1GtTriggerMenuLite_*_*', 'keep *_conditionsInEdm_*_*', 'keep *_l1extraParticles_*_*', 'keep *_l1L1GtObjectMap_*_*', 'keep L1MuGMTReadoutCollection_gtDigis_*_*', 'keep L1GctEmCand*_gctDigis_*_*', 'keep L1GctJetCand*_gctDigis_*_*', 'keep L1GctEtHad*_gctDigis_*_*', 'keep L1GctEtMiss*_gctDigis_*_*', 'keep L1GctEtTotal*_gctDigis_*_*', 'keep L1GctHtMiss*_gctDigis_*_*', 'keep L1GctJetCounts*_gctDigis_*_*', 'keep L1GctHFRingEtSums*_gctDigis_*_*', 'keep L1GctHFBitCounts*_gctDigis_*_*', 'keep LumiDetails_lumiProducer_*_*', 'keep LumiSummary_lumiProducer_*_*', 'drop *_hlt*_*_*', 'keep *_hltGtStage2ObjectMap_*_*', 'keep edmTriggerResults_*_*_*', 'keep triggerTriggerEvent_*_*_*', 'keep L1AcceptBunchCrossings_scalersRawToDigi_*_*', 'keep L1TriggerScalerss_scalersRawToDigi_*_*', 'keep Level1TriggerScalerss_scalersRawToDigi_*_*', 'keep LumiScalerss_scalersRawToDigi_*_*', 'keep BeamSpotOnlines_scalersRawToDigi_*_*', 'keep DcsStatuss_scalersRawToDigi_*_*', 'keep DcsStatuss_hltScalersRawToDigi_*_*', 'keep *_tcdsDigis_*_*', 'keep *_logErrorHarvester_*_*', 'keep *_pfIsolatedElectronsEI_*_*', 'keep *_pfIsolatedMuonsEI_*_*', 'keep recoPFJets_pfJetsEI_*_*', 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTagsEI_*_*', 'keep recoPFTaus_pfTausEI_*_*', 'keep recoPFTauDiscriminator_pfTausDiscriminationByDecayModeFinding_*_*', 'keep recoPFTauDiscriminator_pfTausDiscriminationByIsolation_*_*', 'keep recoPFMETs_pfMetEI_*_*' ) ), splitLevel = cms.untracked.int32(0) ) process.RECOSIMEventContent = cms.PSet( eventAutoFlushCompressedSize = cms.untracked.int32(5242880), outputCommands = cms.untracked.vstring( ('drop *', 'drop *', 'keep DetIdedmEDCollection_siStripDigis_*_*', 'keep DetIdedmEDCollection_siPixelDigis_*_*', 'keep *_siPixelClusters_*_*', 'keep *_siStripClusters_*_*', 'keep ClusterSummary_clusterSummaryProducer_*_*', 'keep *_dt1DRecHits_*_*', 'keep *_dt4DSegments_*_*', 'keep *_dt1DCosmicRecHits_*_*', 'keep *_dt4DCosmicSegments_*_*', 'keep *_csc2DRecHits_*_*', 'keep *_cscSegments_*_*', 'keep *_rpcRecHits_*_*', 'keep *_hbhereco_*_*', 'keep *_hbheprereco_*_*', 'keep *_hfreco_*_*', 'keep *_horeco_*_*', 'keep HBHERecHitsSorted_hbherecoMB_*_*', 'keep HORecHitsSorted_horecoMB_*_*', 'keep HFRecHitsSorted_hfrecoMB_*_*', 'keep ZDCDataFramesSorted_hcalDigis_*_*', 'keep ZDCRecHitsSorted_*_*_*', 'keep *_reducedHcalRecHits_*_*', 'keep *_castorreco_*_*', 'keep HcalUnpackerReport_castorDigis_*_*', 'keep HcalUnpackerReport_hcalDigiAlCaMB_*_*', 'keep HcalUnpackerReport_hcalDigis_*_*', 'keep *_ecalPreshowerRecHit_*_*', 'keep *_ecalRecHit_*_*', 'keep *_ecalCompactTrigPrim_*_*', 'keep *_ecalTPSkim_*_*', 'keep *_selectDigi_*_*', 'keep EcalRecHitsSorted_reducedEcalRecHitsEE_*_*', 'keep EcalRecHitsSorted_reducedEcalRecHitsEB_*_*', 'keep EcalRecHitsSorted_reducedEcalRecHitsES_*_*', 'keep *_hybridSuperClusters_*_*', 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', 'keep *_multi5x5SuperClusters_*_*', 'keep recoSuperClusters_multi5x5SuperClusters_*_*', 'keep recoSuperClusters_multi5x5SuperClustersWithPreshower_*_*', 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', 'keep recoPreshowerClusters_multi5x5SuperClustersWithPreshower_*_*', 'keep recoPreshowerClusterShapes_multi5x5PreshowerClusterShape_*_*', 'keep *_particleFlowSuperClusterECAL_*_*', 'drop recoClusterShapes_*_*_*', 'drop recoBasicClustersToOnerecoClusterShapesAssociation_*_*_*', 'drop recoBasicClusters_multi5x5BasicClusters_multi5x5BarrelBasicClusters_*', 'drop recoSuperClusters_multi5x5SuperClusters_multi5x5BarrelSuperClusters_*', 'keep *_CkfElectronCandidates_*_*', 'keep *_GsfGlobalElectronTest_*_*', 'keep *_electronMergedSeeds_*_*', 'keep recoGsfTracks_electronGsfTracks_*_*', 'keep recoGsfTrackExtras_electronGsfTracks_*_*', 'keep recoTrackExtras_electronGsfTracks_*_*', 'keep TrackingRecHitsOwned_electronGsfTracks_*_*', 'keep recoTracks_generalTracks_*_*', 'keep recoTrackExtras_generalTracks_*_*', 'keep TrackingRecHitsOwned_generalTracks_*_*', 'keep *_generalTracks_MVAValues_*', 'keep *_generalTracks_MVAVals_*', 'keep TrackingRecHitsOwned_extraFromSeeds_*_*', 'keep uints_extraFromSeeds_*_*', 'keep recoTracks_beamhaloTracks_*_*', 'keep recoTrackExtras_beamhaloTracks_*_*', 'keep TrackingRecHitsOwned_beamhaloTracks_*_*', 'keep recoTracks_conversionStepTracks_*_*', 'keep recoTrackExtras_conversionStepTracks_*_*', 'keep TrackingRecHitsOwned_conversionStepTracks_*_*', 'keep *_ctfPixelLess_*_*', 'keep *_dedxTruncated40_*_*', 'keep *_dedxHitInfo_*_*', 'keep *_dedxHarmonic2_*_*', 'keep *_trackExtrapolator_*_*', 'keep *_ak4CaloJets_*_*', 'keep *_ak4PFJets_*_*', 'keep *_ak4PFJetsCHS_*_*', 'keep *_ak8PFJetsCHS_*_*', 'keep *_ak8PFJetsCHSSoftDrop_*_*', 'keep *_cmsTopTagPFJetsCHS_*_*', 'keep *_JetPlusTrackZSPCorJetAntiKt4_*_*', 'keep *_ak4TrackJets_*_*', 'keep recoRecoChargedRefCandidates_trackRefsForJets_*_*', 'keep *_caloTowers_*_*', 'keep *_towerMaker_*_*', 'keep *_CastorTowerReco_*_*', 'keep *_ak4JetTracksAssociatorAtVertex_*_*', 'keep *_ak4JetTracksAssociatorAtVertexPF_*_*', 'keep *_ak4JetTracksAssociatorAtCaloFace_*_*', 'keep *_ak4JetTracksAssociatorExplicit_*_*', 'keep *_ak4JetExtender_*_*', 'keep *_ak4JetID_*_*', 'keep *_ak5CastorJets_*_*', 'keep *_ak5CastorJetID_*_*', 'keep *_ak7CastorJets_*_*', 'keep *_ak7CastorJetID_*_*', 'keep *_fixedGridRhoAll_*_*', 'keep *_fixedGridRhoFastjetAll_*_*', 'keep *_fixedGridRhoFastjetAllTmp_*_*', 'keep *_fixedGridRhoFastjetAllCalo_*_*', 'keep *_fixedGridRhoFastjetCentral_*_*', 'keep *_fixedGridRhoFastjetCentralCalo_*_*', 'keep *_fixedGridRhoFastjetCentralChargedPileUp_*_*', 'keep *_fixedGridRhoFastjetCentralNeutral_*_*', 'keep *_ak8PFJetsCHSSoftDropMass_*_*', 'keep recoCaloMETs_caloMet_*_*', 'keep recoCaloMETs_caloMetBE_*_*', 'keep recoCaloMETs_caloMetBEFO_*_*', 'keep recoCaloMETs_caloMetM_*_*', 'keep recoPFMETs_pfMet_*_*', 'keep recoPFMETs_pfChMet_*_*', 'keep recoPFMETs_pfMetEI_*_*', 'keep recoMuonMETCorrectionDataedmValueMap_muonMETValueMapProducer_*_*', 'keep recoHcalNoiseRBXs_hcalnoise_*_*', 'keep HcalNoiseSummary_hcalnoise_*_*', 'keep recoCSCHaloData_CSCHaloData_*_*', 'keep recoEcalHaloData_EcalHaloData_*_*', 'keep recoGlobalHaloData_GlobalHaloData_*_*', 'keep recoHcalHaloData_HcalHaloData_*_*', 'keep recoBeamHaloSummary_BeamHaloSummary_*_*', 'keep *_MuonSeed_*_*', 'keep *_ancientMuonSeed_*_*', 'keep *_displacedMuonSeeds_*_*', 'keep TrackingRecHitsOwned_globalMuons_*_*', 'keep TrackingRecHitsOwned_tevMuons_*_*', 'keep recoCaloMuons_calomuons_*_*', 'keep *_CosmicMuonSeed_*_*', 'keep recoTrackExtras_cosmicMuons_*_*', 'keep TrackingRecHitsOwned_cosmicMuons_*_*', 'keep recoTrackExtras_cosmicMuons1Leg_*_*', 'keep TrackingRecHitsOwned_cosmicMuons1Leg_*_*', 'keep recoTracks_cosmicsVetoTracks_*_*', 'keep *_SETMuonSeed_*_*', 'keep recoTracks_standAloneSETMuons_*_*', 'keep recoTrackExtras_standAloneSETMuons_*_*', 'keep TrackingRecHitsOwned_standAloneSETMuons_*_*', 'keep recoTracks_globalSETMuons_*_*', 'keep recoTrackExtras_globalSETMuons_*_*', 'keep TrackingRecHitsOwned_globalSETMuons_*_*', 'keep recoMuons_muonsWithSET_*_*', 'keep *_muons_*_*', 'keep *_particleFlow_muons_*', 'drop *_muons_muons1stStep2muonsMap_*', 'drop recoIsoDepositedmValueMap_muons_*_*', 'drop doubleedmValueMap_muons_muPFIso*_*', 'keep recoTracks_standAloneMuons_*_*', 'keep recoTrackExtras_standAloneMuons_*_*', 'keep TrackingRecHitsOwned_standAloneMuons_*_*', 'keep recoTracks_globalMuons_*_*', 'keep recoTrackExtras_globalMuons_*_*', 'keep recoTracks_tevMuons_*_*', 'keep recoTrackExtras_tevMuons_*_*', 'keep recoTracks_generalTracks_*_*', 'keep recoTracks_displacedTracks_*_*', 'keep recoTracksToOnerecoTracksAssociation_tevMuons_*_*', 'keep recoTracks_displacedGlobalMuons_*_*', 'keep recoTrackExtras_displacedGlobalMuons_*_*', 'keep TrackingRecHitsOwned_displacedGlobalMuons_*_*', 'keep recoTracks_cosmicMuons_*_*', 'keep recoMuons_muonsFromCosmics_*_*', 'keep recoTracks_cosmicMuons1Leg_*_*', 'keep recoMuons_muonsFromCosmics1Leg_*_*', 'keep recoTracks_refittedStandAloneMuons_*_*', 'keep recoTrackExtras_refittedStandAloneMuons_*_*', 'keep TrackingRecHitsOwned_refittedStandAloneMuons_*_*', 'keep recoTracks_displacedStandAloneMuons__*', 'keep recoTrackExtras_displacedStandAloneMuons_*_*', 'keep TrackingRecHitsOwned_displacedStandAloneMuons_*_*', 'keep *_muIsoDepositTk_*_*', 'keep *_muIsoDepositCalByAssociatorTowers_*_*', 'keep *_muIsoDepositCalByAssociatorHits_*_*', 'keep *_muIsoDepositJets_*_*', 'keep *_muGlobalIsoDepositCtfTk_*_*', 'keep *_muGlobalIsoDepositCalByAssociatorTowers_*_*', 'keep *_muGlobalIsoDepositCalByAssociatorHits_*_*', 'keep *_muGlobalIsoDepositJets_*_*', 'keep *_softPFMuonsTagInfos_*_*', 'keep *_softPFElectronsTagInfos_*_*', 'keep *_softPFElectronBJetTags_*_*', 'keep *_softPFMuonBJetTags_*_*', 'keep *_pfImpactParameterTagInfos_*_*', 'keep *_pfTrackCountingHighEffBJetTags_*_*', 'keep *_pfJetProbabilityBJetTags_*_*', 'keep *_pfJetBProbabilityBJetTags_*_*', 'keep *_pfSecondaryVertexTagInfos_*_*', 'keep *_pfInclusiveSecondaryVertexFinderTagInfos_*_*', 'keep *_pfSimpleSecondaryVertexHighEffBJetTags_*_*', 'keep *_pfSimpleInclusiveSecondaryVertexHighEffBJetTags_*_*', 'keep *_pfCombinedSecondaryVertexV2BJetTags_*_*', 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTags_*_*', 'keep *_pfCombinedMVAV2BJetTags_*_*', 'keep *_inclusiveCandidateSecondaryVertices_*_*', 'keep *_inclusiveCandidateSecondaryVerticesCvsL_*_*', 'keep *_pfInclusiveSecondaryVertexFinderCvsLTagInfos_*_*', 'keep *_pfCombinedCvsLJetTags_*_*', 'keep *_pfCombinedCvsBJetTags_*_*', 'keep recoRecoTauPiZeros_hpsPFTauProducer_pizeros_*', 'keep recoPFTaus_hpsPFTauProducer_*_*', 'keep *_hpsPFTauDiscriminationByDeadECALElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByDecayModeFinding_*_*', 'keep *_hpsPFTauDiscriminationByDecayModeFindingNewDMs_*_*', 'keep *_hpsPFTauDiscriminationByDecayModeFindingOldDMs_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolation_*_*', 'keep *_hpsPFTauDiscriminationByLooseChargedIsolation_*_*', 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3Hits_*_*', 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3HitsdR03_*_*', 'keep *_hpsPFTauDiscriminationByLooseElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByLooseMuonRejection3_*_*', 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3Hits_*_*', 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3HitsdR03_*_*', 'keep *_hpsPFTauDiscriminationByRawCombinedIsolationDBSumPtCorr3Hits_*_*', 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3Hits_*_*', 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3HitsdR03_*_*', 'keep *_hpsPFTauDiscriminationByTightMuonRejection3_*_*', 'keep *_hpsPFTauDiscriminationByPhotonPtSumOutsideSignalCone_*_*', 'keep *_hpsPFTauNeutralIsoPtSum_*_*', 'keep *_hpsPFTauPUcorrPtSum_*_*', 'keep *_hpsPFTauChargedIsoPtSum_*_*', 'keep *_hpsPFTauTransverseImpactParameters_*_*', 'keep *_hpsPFTauFootprintCorrection_*_*', 'keep *_hpsPFTauNeutralIsoPtSumWeight_*_*', 'keep *_hpsPFTauPhotonPtSumOutsideSignalCone_*_*', 'keep *_hpsPFTauDiscriminationByMVA6rawElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6VLooseElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6LooseElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6MediumElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6TightElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6VTightElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBoldDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBnewDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWoldDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWnewDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauChargedIsoPtSumdR03_*_*', 'keep *_hpsPFTauNeutralIsoPtSumdR03_*_*', 'keep *_hpsPFTauNeutralIsoPtSumWeightdR03_*_*', 'keep *_hpsPFTauFootprintCorrectiondR03_*_*', 'keep *_hpsPFTauPhotonPtSumOutsideSignalConedR03_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBdR03oldDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWdR03oldDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_offlinePrimaryVertices__*', 'keep *_offlinePrimaryVerticesWithBS_*_*', 'keep *_offlinePrimaryVerticesFromCosmicTracks_*_*', 'keep *_nuclearInteractionMaker_*_*', 'keep *_generalV0Candidates_*_*', 'keep *_inclusiveSecondaryVertices_*_*', 'keep recoGsfElectronCores_gsfElectronCores_*_*', 'keep recoGsfElectronCores_gedGsfElectronCores_*_*', 'keep recoGsfElectrons_gsfElectrons_*_*', 'keep recoGsfElectrons_gedGsfElectrons_*_*', 'keep recoGsfElectronCores_uncleanedOnlyGsfElectronCores_*_*', 'keep recoGsfElectrons_uncleanedOnlyGsfElectrons_*_*', 'keep floatedmValueMap_eidRobustLoose_*_*', 'keep floatedmValueMap_eidRobustTight_*_*', 'keep floatedmValueMap_eidRobustHighEnergy_*_*', 'keep floatedmValueMap_eidLoose_*_*', 'keep floatedmValueMap_eidTight_*_*', 'keep *_egmGedGsfElectronPFIsolation_*_*', 'keep *_photonEcalPFClusterIsolationProducer_*_*', 'keep *_electronEcalPFClusterIsolationProducer_*_*', 'keep *_photonHcalPFClusterIsolationProducer_*_*', 'keep *_electronHcalPFClusterIsolationProducer_*_*', 'drop *_egmGsfElectronIDs_*_*', 'drop *_egmPhotonIDs_*_*', 'keep *_gedPhotonCore_*_*', 'keep *_gedPhotons_*_*', 'keep *_particleBasedIsolation_*_*', 'keep recoPhotons_mustachePhotons_*_*', 'keep recoPhotonCores_mustachePhotonCore_*_*', 'keep recoPhotons_photons_*_*', 'keep recoPhotonCores_photonCore_*_*', 'keep recoConversions_conversions_*_*', 'keep recoConversions_mustacheConversions_*_*', 'drop *_conversions_uncleanedConversions_*', 'drop *_gedPhotonsTmp_valMapPFEgammaCandToPhoton_*', 'keep recoConversions_allConversions_*_*', 'keep recoConversions_allConversionsOldEG_*_*', 'keep recoTracks_ckfOutInTracksFromConversions_*_*', 'keep recoTracks_ckfInOutTracksFromConversions_*_*', 'keep recoTrackExtras_ckfOutInTracksFromConversions_*_*', 'keep recoTrackExtras_ckfInOutTracksFromConversions_*_*', 'keep TrackingRecHitsOwned_ckfOutInTracksFromConversions_*_*', 'keep TrackingRecHitsOwned_ckfInOutTracksFromConversions_*_*', 'keep recoConversions_uncleanedOnlyAllConversions_*_*', 'keep recoTracks_uncleanedOnlyCkfOutInTracksFromConversions_*_*', 'keep recoTracks_uncleanedOnlyCkfInOutTracksFromConversions_*_*', 'keep recoTrackExtras_uncleanedOnlyCkfOutInTracksFromConversions_*_*', 'keep recoTrackExtras_uncleanedOnlyCkfInOutTracksFromConversions_*_*', 'keep TrackingRecHitsOwned_uncleanedOnlyCkfOutInTracksFromConversions_*_*', 'keep TrackingRecHitsOwned_uncleanedOnlyCkfInOutTracksFromConversions_*_*', 'keep *_PhotonIDProd_*_*', 'keep *_PhotonIDProdGED_*_*', 'keep recoRecoEcalCandidates_hfRecoEcalCandidate_*_*', 'keep *_hfEMClusters_*_*', 'keep *_gedGsfElectronCores_*_*', 'keep *_gedGsfElectrons_*_*', 'keep *_pixelTracks_*_*', 'keep *_pixelVertices_*_*', 'drop CaloTowersSorted_towerMakerPF_*_*', 'keep recoPFRecHits_particleFlowClusterECAL_Cleaned_*', 'keep recoPFRecHits_particleFlowClusterHCAL_Cleaned_*', 'keep recoPFRecHits_particleFlowClusterHO_Cleaned_*', 'keep recoPFRecHits_particleFlowClusterHF_Cleaned_*', 'keep recoPFRecHits_particleFlowClusterPS_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitECAL_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitHBHE_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitHF_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitHO_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitPS_Cleaned_*', 'keep recoPFClusters_particleFlowClusterECAL_*_*', 'keep recoPFClusters_particleFlowClusterHCAL_*_*', 'keep recoPFClusters_particleFlowClusterHO_*_*', 'keep recoPFClusters_particleFlowClusterHF_*_*', 'keep recoPFClusters_particleFlowClusterPS_*_*', 'keep recoPFBlocks_particleFlowBlock_*_*', 'keep recoPFCandidates_particleFlowEGamma_*_*', 'keep recoCaloClusters_particleFlowEGamma_*_*', 'keep recoSuperClusters_particleFlowEGamma_*_*', 'keep recoConversions_particleFlowEGamma_*_*', 'keep recoPFCandidates_particleFlow_*_*', 'keep recoPFCandidates_particleFlowTmp_electrons_*', 'keep recoPFCandidates_particleFlowTmp_*_*', 'drop recoPFCandidates_particleFlowTmp__*', 'keep recoPFDisplacedVertexs_particleFlowDisplacedVertex_*_*', 'keep *_pfElectronTranslator_*_*', 'keep *_pfPhotonTranslator_*_*', 'keep *_particleFlow_electrons_*', 'keep *_particleFlow_photons_*', 'keep *_particleFlow_muons_*', 'keep *_trackerDrivenElectronSeeds_preid_*', 'keep *_particleFlowPtrs_*_*', 'keep *_particleFlowTmpPtrs_*_*', 'keep *_offlineBeamSpot_*_*', 'keep L1GlobalTriggerReadoutRecord_gtDigis_*_*', 'keep *_l1GtRecord_*_*', 'keep *_l1GtTriggerMenuLite_*_*', 'keep *_conditionsInEdm_*_*', 'keep *_l1extraParticles_*_*', 'keep *_l1L1GtObjectMap_*_*', 'keep L1MuGMTReadoutCollection_gtDigis_*_*', 'keep L1GctEmCand*_gctDigis_*_*', 'keep L1GctJetCand*_gctDigis_*_*', 'keep L1GctEtHad*_gctDigis_*_*', 'keep L1GctEtMiss*_gctDigis_*_*', 'keep L1GctEtTotal*_gctDigis_*_*', 'keep L1GctHtMiss*_gctDigis_*_*', 'keep L1GctJetCounts*_gctDigis_*_*', 'keep L1GctHFRingEtSums*_gctDigis_*_*', 'keep L1GctHFBitCounts*_gctDigis_*_*', 'keep LumiDetails_lumiProducer_*_*', 'keep LumiSummary_lumiProducer_*_*', 'drop *_hlt*_*_*', 'keep *_hltGtStage2ObjectMap_*_*', 'keep edmTriggerResults_*_*_*', 'keep triggerTriggerEvent_*_*_*', 'keep L1AcceptBunchCrossings_scalersRawToDigi_*_*', 'keep L1TriggerScalerss_scalersRawToDigi_*_*', 'keep Level1TriggerScalerss_scalersRawToDigi_*_*', 'keep LumiScalerss_scalersRawToDigi_*_*', 'keep BeamSpotOnlines_scalersRawToDigi_*_*', 'keep DcsStatuss_scalersRawToDigi_*_*', 'keep DcsStatuss_hltScalersRawToDigi_*_*', 'keep *_tcdsDigis_*_*', 'keep *_logErrorHarvester_*_*', 'keep *_pfIsolatedElectronsEI_*_*', 'keep *_pfIsolatedMuonsEI_*_*', 'keep recoPFJets_pfJetsEI_*_*', 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTagsEI_*_*', 'keep recoPFTaus_pfTausEI_*_*', 'keep recoPFTauDiscriminator_pfTausDiscriminationByDecayModeFinding_*_*', 'keep recoPFTauDiscriminator_pfTausDiscriminationByIsolation_*_*', 'keep recoPFMETs_pfMetEI_*_*', 'keep LHERunInfoProduct_*_*_*', 'keep LHEEventProduct_*_*_*', 'keep GenRunInfoProduct_generator_*_*', 'keep GenLumiInfoHeader_generator_*_*', 'keep GenLumiInfoProduct_generator_*_*', 'keep GenEventInfoProduct_generator_*_*', 'keep edmHepMCProduct_generatorSmeared_*_*', 'keep GenFilterInfo_*_*_*', 'keep *_genParticles_*_*', 'keep recoGenMETs_*_*_*', 'keep *_ak4GenJets_*_*', 'keep *_ak8GenJets_*_*', 'keep *_ak4GenJetsNoNu_*_*', 'keep *_ak8GenJetsNoNu_*_*', 'keep *_genParticle_*_*', 'keep edmHepMCProduct_source_*_*', 'keep SimTracks_g4SimHits_*_*', 'keep SimVertexs_g4SimHits_*_*', 'keep *_allTrackMCMatch_*_*', 'keep StripDigiSimLinkedmDetSetVector_simMuonCSCDigis_*_*', 'keep DTLayerIdDTDigiSimLinkMuonDigiCollection_simMuonDTDigis_*_*', 'keep RPCDigiSimLinkedmDetSetVector_simMuonRPCDigis_*_*', 'keep PileupSummaryInfos_*_*_*', 'keep int_*_bunchSpacing_*' ) ), splitLevel = cms.untracked.int32(0) ) process.REDIGIEventContent = cms.PSet( inputCommands = cms.untracked.vstring('drop *', 'keep *_g4SimHits_*_*', 'keep edmHepMCProduct_source_*_*', 'keep *_randomEngineStateProducer_*_*', 'keep LHERunInfoProduct_*_*_*', 'keep LHEEventProduct_*_*_*', 'keep GenRunInfoProduct_generator_*_*', 'keep GenLumiInfoHeader_generator_*_*', 'keep GenLumiInfoProduct_generator_*_*', 'keep GenEventInfoProduct_generator_*_*', 'keep edmHepMCProduct_generatorSmeared_*_*', 'keep GenFilterInfo_*_*_*', 'keep *_genParticles_*_*', 'drop *_randomEngineStateProducer_*_*') ) process.REGENEventContent = cms.PSet( inputCommands = cms.untracked.vstring('keep *', 'drop *_genParticles_*_*', 'drop *_genParticlesForJets_*_*', 'drop *_kt4GenJets_*_*', 'drop *_kt6GenJets_*_*', 'drop *_iterativeCone5GenJets_*_*', 'drop *_ak4GenJets_*_*', 'drop *_ak7GenJets_*_*', 'drop *_ak8GenJets_*_*', 'drop *_ak4GenJetsNoNu_*_*', 'drop *_ak8GenJetsNoNu_*_*', 'drop *_genCandidatesForMET_*_*', 'drop *_genParticlesForMETAllVisible_*_*', 'drop *_genMetCalo_*_*', 'drop *_genMetCaloAndNonPrompt_*_*', 'drop *_genMetTrue_*_*', 'drop *_genMetIC5GenJs_*_*') ) process.REPACKRAWEventContent = cms.PSet( eventAutoFlushCompressedSize = cms.untracked.int32(5242880), outputCommands = cms.untracked.vstring('drop *', 'drop FEDRawDataCollection_*_*_*', 'keep FEDRawDataCollection_rawDataRepacker_*_*', 'keep FEDRawDataCollection_virginRawDataRepacker_*_*', 'keep FEDRawDataCollection_rawDataCollector_*_*', 'keep FEDRawDataCollection_source_*_*', 'drop *_hlt*_*_*', 'keep *_hltGtStage2ObjectMap_*_*', 'keep FEDRawDataCollection_rawDataCollector_*_*', 'keep FEDRawDataCollection_source_*_*', 'keep edmTriggerResults_*_*_*', 'keep triggerTriggerEvent_*_*_*', 'drop FEDRawDataCollection_source_*_*', 'drop FEDRawDataCollection_rawDataCollector_*_*'), splitLevel = cms.untracked.int32(0) ) process.REPACKRAWSIMEventContent = cms.PSet( eventAutoFlushCompressedSize = cms.untracked.int32(5242880), outputCommands = cms.untracked.vstring('drop *', 'drop FEDRawDataCollection_*_*_*', 'keep FEDRawDataCollection_rawDataRepacker_*_*', 'keep FEDRawDataCollection_virginRawDataRepacker_*_*', 'keep FEDRawDataCollection_rawDataCollector_*_*', 'keep FEDRawDataCollection_source_*_*', 'drop *_hlt*_*_*', 'keep *_hltGtStage2ObjectMap_*_*', 'keep FEDRawDataCollection_rawDataCollector_*_*', 'keep FEDRawDataCollection_source_*_*', 'keep edmTriggerResults_*_*_*', 'keep triggerTriggerEvent_*_*_*', 'keep *_g4SimHits_*_*', 'keep edmHepMCProduct_source_*_*', 'keep *_allTrackMCMatch_*_*', 'keep StripDigiSimLinkedmDetSetVector_simMuonCSCDigis_*_*', 'keep CSCDetIdCSCComparatorDigiMuonDigiCollection_simMuonCSCDigis_*_*', 'keep DTLayerIdDTDigiSimLinkMuonDigiCollection_simMuonDTDigis_*_*', 'keep RPCDigiSimLinkedmDetSetVector_simMuonRPCDigis_*_*', 'keep EBSrFlagsSorted_simEcalDigis_*_*', 'keep EESrFlagsSorted_simEcalDigis_*_*', 'keep CrossingFramePlaybackInfoNew_*_*_*', 'keep PileupSummaryInfos_*_*_*', 'keep int_*_bunchSpacing_*', 'keep LHERunInfoProduct_*_*_*', 'keep LHEEventProduct_*_*_*', 'keep GenRunInfoProduct_generator_*_*', 'keep GenLumiInfoHeader_generator_*_*', 'keep GenLumiInfoProduct_generator_*_*', 'keep GenEventInfoProduct_generator_*_*', 'keep edmHepMCProduct_generatorSmeared_*_*', 'keep GenFilterInfo_*_*_*', 'keep *_genParticles_*_*', 'keep recoGenJets_*_*_*', 'keep *_genParticle_*_*', 'keep recoGenMETs_*_*_*', 'keep FEDRawDataCollection_source_*_*', 'keep FEDRawDataCollection_rawDataCollector_*_*', 'keep *_MEtoEDMConverter_*_*', 'keep *_randomEngineStateProducer_*_*', 'keep *_logErrorHarvester_*_*', 'drop FEDRawDataCollection_source_*_*', 'drop FEDRawDataCollection_rawDataCollector_*_*'), splitLevel = cms.untracked.int32(0) ) process.RESIMEventContent = cms.PSet( inputCommands = cms.untracked.vstring('drop *', 'keep *_randomEngineStateProducer_*_*', 'keep LHERunInfoProduct_*_*_*', 'keep LHEEventProduct_*_*_*', 'keep GenRunInfoProduct_generator_*_*', 'keep GenLumiInfoHeader_generator_*_*', 'keep GenLumiInfoProduct_generator_*_*', 'keep GenEventInfoProduct_generator_*_*', 'keep edmHepMCProduct_generatorSmeared_*_*', 'keep GenFilterInfo_*_*_*', 'keep *_genParticles_*_*') ) process.Realistic2p76TeV2011CollisionVtxSmearingParameters = cms.PSet( Alpha = cms.double(0.0), BetaStar = cms.double(1100.0), Emittance = cms.double(1.7e-07), Phi = cms.double(0.0), SigmaZ = cms.double(5.22), TimeOffset = cms.double(0.0), X0 = cms.double(0.244), Y0 = cms.double(0.3929), Z0 = cms.double(0.4145) ) process.Realistic2p76TeV2013CollisionVtxSmearingParameters = cms.PSet( Alpha = cms.double(0.0), BetaStar = cms.double(1100.0), Emittance = cms.double(1.7e-07), Phi = cms.double(0.0), SigmaZ = cms.double(8.0), TimeOffset = cms.double(0.0), X0 = cms.double(0.244), Y0 = cms.double(0.3929), Z0 = cms.double(0.4145) ) process.Realistic50ns13TeVCollisionVtxSmearingParameters = cms.PSet( Alpha = cms.double(0.0), BetaStar = cms.double(65.0), Emittance = cms.double(5.411e-08), Phi = cms.double(0.0), SigmaZ = cms.double(5.3), TimeOffset = cms.double(0.0), X0 = cms.double(0.10482), Y0 = cms.double(0.16867), Z0 = cms.double(-1.0985) ) process.Realistic50ns13TeVCollisionZeroTeslaVtxSmearingParameters = cms.PSet( Alpha = cms.double(0.0), BetaStar = cms.double(65.0), Emittance = cms.double(5.411e-08), Phi = cms.double(0.0), SigmaZ = cms.double(5.3), TimeOffset = cms.double(0.0), X0 = cms.double(0.08533), Y0 = cms.double(0.16973), Z0 = cms.double(-1.223) ) process.Realistic7TeV2011CollisionVtxSmearingParameters = cms.PSet( Alpha = cms.double(0.0), BetaStar = cms.double(150.0), Emittance = cms.double(6.7e-08), Phi = cms.double(0.0), SigmaZ = cms.double(5.22), TimeOffset = cms.double(0.0), X0 = cms.double(0.244), Y0 = cms.double(0.3929), Z0 = cms.double(0.4145) ) process.Realistic7TeVCollision2010BVtxSmearingParameters = cms.PSet( Alpha = cms.double(0.0), BetaStar = cms.double(350.0), Emittance = cms.double(8.04e-08), Phi = cms.double(0.0), SigmaZ = cms.double(5.4), TimeOffset = cms.double(0.0), X0 = cms.double(0.244), Y0 = cms.double(0.3929), Z0 = cms.double(0.4145) ) process.Realistic7TeVCollisionComm10VtxSmearingParameters = cms.PSet( Alpha = cms.double(0.0), BetaStar = cms.double(200.0), Emittance = cms.double(8.04e-08), Phi = cms.double(0.0), SigmaZ = cms.double(3.5), TimeOffset = cms.double(0.0), X0 = cms.double(0.244), Y0 = cms.double(0.3929), Z0 = cms.double(0.4145) ) process.Realistic7TeVCollisionVtxSmearingParameters = cms.PSet( Alpha = cms.double(0.0), BetaStar = cms.double(350.0), Emittance = cms.double(1.072e-07), Phi = cms.double(0.0), SigmaZ = cms.double(6.26), TimeOffset = cms.double(0.0), X0 = cms.double(0.244), Y0 = cms.double(0.3929), Z0 = cms.double(0.4145) ) process.Realistic8TeV2012CollisionVtxSmearingParameters = cms.PSet( Alpha = cms.double(0.0), BetaStar = cms.double(70.0), Emittance = cms.double(5.86e-08), Phi = cms.double(0.0), SigmaZ = cms.double(4.8), TimeOffset = cms.double(0.0), X0 = cms.double(0.244), Y0 = cms.double(0.3929), Z0 = cms.double(0.4145) ) process.Realistic8TeVCollisionVtxSmearingParameters = cms.PSet( Alpha = cms.double(0.0), BetaStar = cms.double(70.0), Emittance = cms.double(5.86e-08), Phi = cms.double(0.0), SigmaZ = cms.double(6.16), TimeOffset = cms.double(0.0), X0 = cms.double(0.244), Y0 = cms.double(0.3929), Z0 = cms.double(0.4145) ) process.Realistic900GeVCollisionVtxSmearingParameters = cms.PSet( Alpha = cms.double(0.0), BetaStar = cms.double(1000.0), Emittance = cms.double(8.34e-07), Phi = cms.double(0.0), SigmaZ = cms.double(6.17), TimeOffset = cms.double(0.0), X0 = cms.double(0.2452), Y0 = cms.double(0.3993), Z0 = cms.double(0.8222) ) process.RealisticHI2011CollisionVtxSmearingParameters = cms.PSet( Alpha = cms.double(0.0), BetaStar = cms.double(100.0), Emittance = cms.double(2.04e-07), Phi = cms.double(0.0), SigmaZ = cms.double(7.06), TimeOffset = cms.double(0.0), X0 = cms.double(0.2245), Y0 = cms.double(0.4182), Z0 = cms.double(0.0847) ) process.RealisticHIpPb2013CollisionVtxSmearingParameters = cms.PSet( Alpha = cms.double(0.0), BetaStar = cms.double(80.0), Emittance = cms.double(6.25e-07), Phi = cms.double(0.0), SigmaZ = cms.double(8.0), TimeOffset = cms.double(0.0), X0 = cms.double(0.244), Y0 = cms.double(0.3929), Z0 = cms.double(0.4145) ) process.RecoBTagAOD = cms.PSet( outputCommands = cms.untracked.vstring('keep *_softPFElectronBJetTags_*_*', 'keep *_softPFMuonBJetTags_*_*', 'keep *_pfTrackCountingHighEffBJetTags_*_*', 'keep *_pfJetProbabilityBJetTags_*_*', 'keep *_pfJetBProbabilityBJetTags_*_*', 'keep *_pfSimpleSecondaryVertexHighEffBJetTags_*_*', 'keep *_pfSimpleInclusiveSecondaryVertexHighEffBJetTags_*_*', 'keep *_pfCombinedSecondaryVertexV2BJetTags_*_*', 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTags_*_*', 'keep *_pfCombinedMVAV2BJetTags_*_*', 'keep *_inclusiveCandidateSecondaryVertices_*_*', 'keep *_inclusiveCandidateSecondaryVerticesCvsL_*_*', 'keep *_pfCombinedCvsLJetTags_*_*', 'keep *_pfCombinedCvsBJetTags_*_*') ) process.RecoBTagFEVT = cms.PSet( outputCommands = cms.untracked.vstring('keep *_softPFMuonsTagInfos_*_*', 'keep *_softPFElectronsTagInfos_*_*', 'keep *_softPFElectronBJetTags_*_*', 'keep *_softPFMuonBJetTags_*_*', 'keep *_pfImpactParameterTagInfos_*_*', 'keep *_pfTrackCountingHighEffBJetTags_*_*', 'keep *_pfJetProbabilityBJetTags_*_*', 'keep *_pfJetBProbabilityBJetTags_*_*', 'keep *_pfSecondaryVertexTagInfos_*_*', 'keep *_pfInclusiveSecondaryVertexFinderTagInfos_*_*', 'keep *_pfSimpleSecondaryVertexHighEffBJetTags_*_*', 'keep *_pfSimpleInclusiveSecondaryVertexHighEffBJetTags_*_*', 'keep *_pfCombinedSecondaryVertexV2BJetTags_*_*', 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTags_*_*', 'keep *_pfCombinedMVAV2BJetTags_*_*', 'keep *_inclusiveCandidateSecondaryVertices_*_*', 'keep *_inclusiveCandidateSecondaryVerticesCvsL_*_*', 'keep *_pfInclusiveSecondaryVertexFinderCvsLTagInfos_*_*', 'keep *_pfCombinedCvsLJetTags_*_*', 'keep *_pfCombinedCvsBJetTags_*_*') ) process.RecoBTagRECO = cms.PSet( outputCommands = cms.untracked.vstring('keep *_softPFMuonsTagInfos_*_*', 'keep *_softPFElectronsTagInfos_*_*', 'keep *_softPFElectronBJetTags_*_*', 'keep *_softPFMuonBJetTags_*_*', 'keep *_pfImpactParameterTagInfos_*_*', 'keep *_pfTrackCountingHighEffBJetTags_*_*', 'keep *_pfJetProbabilityBJetTags_*_*', 'keep *_pfJetBProbabilityBJetTags_*_*', 'keep *_pfSecondaryVertexTagInfos_*_*', 'keep *_pfInclusiveSecondaryVertexFinderTagInfos_*_*', 'keep *_pfSimpleSecondaryVertexHighEffBJetTags_*_*', 'keep *_pfSimpleInclusiveSecondaryVertexHighEffBJetTags_*_*', 'keep *_pfCombinedSecondaryVertexV2BJetTags_*_*', 'keep *_pfCombinedInclusiveSecondaryVertexV2BJetTags_*_*', 'keep *_pfCombinedMVAV2BJetTags_*_*', 'keep *_inclusiveCandidateSecondaryVertices_*_*', 'keep *_inclusiveCandidateSecondaryVerticesCvsL_*_*', 'keep *_pfInclusiveSecondaryVertexFinderCvsLTagInfos_*_*', 'keep *_pfCombinedCvsLJetTags_*_*', 'keep *_pfCombinedCvsBJetTags_*_*') ) process.RecoBTauAOD = cms.PSet( outputCommands = cms.untracked.vstring() ) process.RecoBTauFEVT = cms.PSet( outputCommands = cms.untracked.vstring() ) process.RecoBTauRECO = cms.PSet( outputCommands = cms.untracked.vstring() ) process.RecoEcalAOD = cms.PSet( outputCommands = cms.untracked.vstring('keep *_selectDigi_*_*', 'keep EcalRecHitsSorted_reducedEcalRecHitsEB_*_*', 'keep EcalRecHitsSorted_reducedEcalRecHitsEE_*_*', 'keep EcalRecHitsSorted_reducedEcalRecHitsES_*_*', 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', 'keep recoCaloClusters_hybridSuperClusters_*_*', 'keep recoSuperClusters_hybridSuperClusters_uncleanOnlyHybridSuperClusters_*', 'keep recoCaloClusters_multi5x5SuperClusters_multi5x5EndcapBasicClusters_*', 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', 'keep recoPreshowerClusters_multi5x5SuperClustersWithPreshower_*_*', 'keep recoPreshowerClusterShapes_multi5x5PreshowerClusterShape_*_*', 'keep recoSuperClusters_particleFlowSuperClusterECAL_*_*', 'keep recoCaloClusters_particleFlowSuperClusterECAL_*_*') ) process.RecoEcalFEVT = cms.PSet( outputCommands = cms.untracked.vstring('keep *_selectDigi_*_*', 'keep *_reducedEcalRecHitsEB_*_*', 'keep *_reducedEcalRecHitsEE_*_*', 'keep *_reducedEcalRecHitsES_*_*', 'keep *_interestingEcalDetId*_*_*', 'keep *_ecalWeightUncalibRecHit_*_*', 'keep *_ecalPreshowerRecHit_*_*', 'keep *_hybridSuperClusters_*_*', 'keep *_correctedHybridSuperClusters_*_*', 'keep *_multi5x5*_*_*', 'keep *_correctedMulti5x5*_*_*', 'keep recoPreshowerClusters_multi5x5SuperClustersWithPreshower_*_*', 'keep recoPreshowerClusterShapes_multi5x5PreshowerClusterShape_*_*', 'keep *_particleFlowSuperClusterECAL_*_*', 'drop recoBasicClusters_multi5x5BasicClusters_multi5x5BarrelBasicClusters_*', 'drop recoSuperClusters_multi5x5SuperClusters_multi5x5BarrelSuperClusters_*') ) process.RecoEcalRECO = cms.PSet( outputCommands = cms.untracked.vstring('keep *_selectDigi_*_*', 'keep EcalRecHitsSorted_reducedEcalRecHitsEE_*_*', 'keep EcalRecHitsSorted_reducedEcalRecHitsEB_*_*', 'keep EcalRecHitsSorted_reducedEcalRecHitsES_*_*', 'keep *_hybridSuperClusters_*_*', 'keep recoSuperClusters_correctedHybridSuperClusters_*_*', 'keep *_multi5x5SuperClusters_*_*', 'keep recoSuperClusters_multi5x5SuperClusters_*_*', 'keep recoSuperClusters_multi5x5SuperClustersWithPreshower_*_*', 'keep recoSuperClusters_correctedMulti5x5SuperClustersWithPreshower_*_*', 'keep recoPreshowerClusters_multi5x5SuperClustersWithPreshower_*_*', 'keep recoPreshowerClusterShapes_multi5x5PreshowerClusterShape_*_*', 'keep *_particleFlowSuperClusterECAL_*_*', 'drop recoClusterShapes_*_*_*', 'drop recoBasicClustersToOnerecoClusterShapesAssociation_*_*_*', 'drop recoBasicClusters_multi5x5BasicClusters_multi5x5BarrelBasicClusters_*', 'drop recoSuperClusters_multi5x5SuperClusters_multi5x5BarrelSuperClusters_*') ) process.RecoEgammaAOD = cms.PSet( outputCommands = cms.untracked.vstring('keep recoGsfElectronCores_gsfElectronCores_*_*', 'keep recoGsfElectronCores_gedGsfElectronCores_*_*', 'keep recoGsfElectrons_gsfElectrons_*_*', 'keep recoGsfElectrons_gedGsfElectrons_*_*', 'keep recoGsfElectronCores_uncleanedOnlyGsfElectronCores_*_*', 'keep recoGsfElectrons_uncleanedOnlyGsfElectrons_*_*', 'keep floatedmValueMap_eidRobustLoose_*_*', 'keep floatedmValueMap_eidRobustTight_*_*', 'keep floatedmValueMap_eidRobustHighEnergy_*_*', 'keep floatedmValueMap_eidLoose_*_*', 'keep floatedmValueMap_eidTight_*_*', 'keep *_egmGedGsfElectronPFIsolation_*_*', 'keep *_photonEcalPFClusterIsolationProducer_*_*', 'keep *_electronEcalPFClusterIsolationProducer_*_*', 'keep *_photonHcalPFClusterIsolationProducer_*_*', 'keep *_electronHcalPFClusterIsolationProducer_*_*', 'drop *_egmGsfElectronIDs_*_*', 'drop *_egmPhotonIDs_*_*', 'keep recoPhotonCores_gedPhotonCore_*_*', 'keep recoPhotons_gedPhotons_*_*', 'keep *_particleBasedIsolation_*_*', 'drop *_gedPhotons_valMapPFEgammaCandToPhoton_*', 'keep recoPhotonCores_photonCore_*_*', 'keep recoPhotons_photons_*_*', 'keep recoConversions_conversions_*_*', 'keep recoConversions_mustacheConversions_*_*', 'drop *_conversions_uncleanedConversions_*', 'keep recoConversions_allConversions_*_*', 'keep recoConversions_allConversionsOldEG_*_*', 'keep recoTracks_ckfOutInTracksFromConversions_*_*', 'keep recoTracks_ckfInOutTracksFromConversions_*_*', 'keep recoConversions_uncleanedOnlyAllConversions_*_*', 'keep recoTracks_uncleanedOnlyCkfOutInTracksFromConversions_*_*', 'keep recoTracks_uncleanedOnlyCkfInOutTracksFromConversions_*_*', 'keep *_PhotonIDProd_*_*', 'keep *_PhotonIDProdGED_*_*', 'keep *_hfRecoEcalCandidate_*_*', 'keep recoRecoEcalCandidates_hfRecoEcalCandidate_*_*', 'keep *_hfEMClusters_*_*', 'keep *_gedGsfElectronCores_*_*', 'keep *_gedGsfElectrons_*_*') ) process.RecoEgammaFEVT = cms.PSet( outputCommands = cms.untracked.vstring('keep *_gsfElectronCores_*_*', 'keep *_gsfElectrons_*_*', 'keep *_uncleanedOnlyGsfElectronCores_*_*', 'keep *_uncleanedOnlyGsfElectrons_*_*', 'keep *_eidRobustLoose_*_*', 'keep *_eidRobustTight_*_*', 'keep *_eidRobustHighEnergy_*_*', 'keep *_eidLoose_*_*', 'keep *_eidTight_*_*', 'keep *_egmGedGsfElectronPF*Isolation_*_*', 'keep *_egmGsfElectronIDs_*_*', 'keep *_egmPhotonIDs_*_*', 'keep *_photonEcalPFClusterIsolationProducer_*_*', 'keep *_electronEcalPFClusterIsolationProducer_*_*', 'keep *_photonHcalPFClusterIsolationProducer_*_*', 'keep *_electronHcalPFClusterIsolationProducer_*_*', 'keep *_conversions_*_*', 'keep *_mustacheConversions_*_*', 'drop *_conversions_uncleanedConversions_*', 'keep *_gedPhotonCore_*_*', 'keep *_gedPhotonsTmp_*_*', 'keep *_gedPhotons_*_*', 'keep *_particleBasedIsolation_*_*', 'keep *_photonCore_*_*', 'keep *_photons_*_*', 'keep *_mustachePhotonCore_*_*', 'keep *_mustachePhotons_*_*', 'keep *_allConversions_*_*', 'keep *_allConversionsOldEG_*_*', 'keep *_ckfOutInTracksFrom*Conversions_*_*', 'keep *_ckfInOutTracksFrom*Conversions_*_*', 'keep *_uncleanedOnlyAllConversions_*_*', 'keep *_uncleanedOnlyCkfOutInTracksFromConversions_*_*', 'keep *_uncleanedOnlyCkfInOutTracksFromConversions_*_*', 'keep *_PhotonIDProd_*_*', 'keep *_PhotonIDProdGED_*_*', 'keep *_hfRecoEcalCandidate_*_*', 'keep *_hfEMClusters_*_*', 'keep *_gedGsfElectronCores_*_*', 'keep *_gedGsfElectrons_*_*') ) process.RecoEgammaRECO = cms.PSet( outputCommands = cms.untracked.vstring('keep recoGsfElectronCores_gsfElectronCores_*_*', 'keep recoGsfElectronCores_gedGsfElectronCores_*_*', 'keep recoGsfElectrons_gsfElectrons_*_*', 'keep recoGsfElectrons_gedGsfElectrons_*_*', 'keep recoGsfElectronCores_uncleanedOnlyGsfElectronCores_*_*', 'keep recoGsfElectrons_uncleanedOnlyGsfElectrons_*_*', 'keep floatedmValueMap_eidRobustLoose_*_*', 'keep floatedmValueMap_eidRobustTight_*_*', 'keep floatedmValueMap_eidRobustHighEnergy_*_*', 'keep floatedmValueMap_eidLoose_*_*', 'keep floatedmValueMap_eidTight_*_*', 'keep *_egmGedGsfElectronPFIsolation_*_*', 'keep *_photonEcalPFClusterIsolationProducer_*_*', 'keep *_electronEcalPFClusterIsolationProducer_*_*', 'keep *_photonHcalPFClusterIsolationProducer_*_*', 'keep *_electronHcalPFClusterIsolationProducer_*_*', 'drop *_egmGsfElectronIDs_*_*', 'drop *_egmPhotonIDs_*_*', 'keep *_gedPhotonCore_*_*', 'keep *_gedPhotons_*_*', 'keep *_particleBasedIsolation_*_*', 'keep recoPhotons_mustachePhotons_*_*', 'keep recoPhotonCores_mustachePhotonCore_*_*', 'keep recoPhotons_photons_*_*', 'keep recoPhotonCores_photonCore_*_*', 'keep recoConversions_conversions_*_*', 'keep recoConversions_mustacheConversions_*_*', 'drop *_conversions_uncleanedConversions_*', 'drop *_gedPhotonsTmp_valMapPFEgammaCandToPhoton_*', 'keep recoConversions_allConversions_*_*', 'keep recoConversions_allConversionsOldEG_*_*', 'keep recoTracks_ckfOutInTracksFromConversions_*_*', 'keep recoTracks_ckfInOutTracksFromConversions_*_*', 'keep recoTrackExtras_ckfOutInTracksFromConversions_*_*', 'keep recoTrackExtras_ckfInOutTracksFromConversions_*_*', 'keep TrackingRecHitsOwned_ckfOutInTracksFromConversions_*_*', 'keep TrackingRecHitsOwned_ckfInOutTracksFromConversions_*_*', 'keep recoConversions_uncleanedOnlyAllConversions_*_*', 'keep recoTracks_uncleanedOnlyCkfOutInTracksFromConversions_*_*', 'keep recoTracks_uncleanedOnlyCkfInOutTracksFromConversions_*_*', 'keep recoTrackExtras_uncleanedOnlyCkfOutInTracksFromConversions_*_*', 'keep recoTrackExtras_uncleanedOnlyCkfInOutTracksFromConversions_*_*', 'keep TrackingRecHitsOwned_uncleanedOnlyCkfOutInTracksFromConversions_*_*', 'keep TrackingRecHitsOwned_uncleanedOnlyCkfInOutTracksFromConversions_*_*', 'keep *_PhotonIDProd_*_*', 'keep *_PhotonIDProdGED_*_*', 'keep recoRecoEcalCandidates_hfRecoEcalCandidate_*_*', 'keep *_hfEMClusters_*_*', 'keep *_gedGsfElectronCores_*_*', 'keep *_gedGsfElectrons_*_*') ) process.RecoGenJetsAOD = cms.PSet( outputCommands = cms.untracked.vstring('keep *_ak4GenJets_*_*', 'keep *_ak8GenJets_*_*', 'keep *_ak4GenJetsNoNu_*_*', 'keep *_ak8GenJetsNoNu_*_*', 'keep *_genParticle_*_*') ) process.RecoGenJetsFEVT = cms.PSet( outputCommands = cms.untracked.vstring('keep recoGenJets_*_*_*', 'keep *_genParticle_*_*') ) process.RecoGenJetsRECO = cms.PSet( outputCommands = cms.untracked.vstring('keep *_ak4GenJets_*_*', 'keep *_ak8GenJets_*_*', 'keep *_ak4GenJetsNoNu_*_*', 'keep *_ak8GenJetsNoNu_*_*', 'keep *_genParticle_*_*') ) process.RecoGenMETAOD = cms.PSet( outputCommands = cms.untracked.vstring('keep recoGenMETs_*_*_*') ) process.RecoGenMETFEVT = cms.PSet( outputCommands = cms.untracked.vstring('keep recoGenMETs_*_*_*') ) process.RecoGenMETRECO = cms.PSet( outputCommands = cms.untracked.vstring('keep recoGenMETs_*_*_*') ) process.RecoHcalNoiseAOD = cms.PSet( outputCommands = cms.untracked.vstring('drop recoHcalNoiseRBXs_hcalnoise_*_*', 'keep HcalNoiseSummary_hcalnoise_*_*') ) process.RecoHcalNoiseFEVT = cms.PSet( outputCommands = cms.untracked.vstring('keep recoHcalNoiseRBXs_hcalnoise_*_*', 'keep HcalNoiseSummary_hcalnoise_*_*') ) process.RecoHcalNoiseRECO = cms.PSet( outputCommands = cms.untracked.vstring('keep recoHcalNoiseRBXs_hcalnoise_*_*', 'keep HcalNoiseSummary_hcalnoise_*_*') ) process.RecoJetsAOD = cms.PSet( outputCommands = cms.untracked.vstring('keep *_ak4CaloJets_*_*', 'keep *_ak4PFJetsCHS_*_*', 'keep *_ak8PFJetsCHS_*_*', 'keep *_ak8PFJetsCHSSoftDrop_*_*', 'keep *_cmsTopTagPFJetsCHS_*_*', 'keep *_ak4PFJets_*_*', 'keep *_JetPlusTrackZSPCorJetAntiKt4_*_*', 'keep *_ak4TrackJets_*_*', 'keep recoRecoChargedRefCandidates_trackRefsForJets_*_*', 'keep *_caloTowers_*_*', 'keep *_CastorTowerReco_*_*', 'keep *_ak4JetTracksAssociatorAtVertex_*_*', 'keep *_ak4JetTracksAssociatorAtVertexPF_*_*', 'keep *_ak4JetTracksAssociatorExplicit_*_*', 'keep *_ak4JetExtender_*_*', 'keep *_ak4JetID_*_*', 'keep *_ak5CastorJets_*_*', 'keep *_ak5CastorJetID_*_*', 'keep *_ak7CastorJets_*_*', 'keep *_ak7CastorJetID_*_*', 'keep *_fixedGridRhoAll_*_*', 'keep *_fixedGridRhoFastjetAll_*_*', 'keep *_fixedGridRhoFastjetAllTmp_*_*', 'keep *_fixedGridRhoFastjetCentral_*_*', 'keep *_fixedGridRhoFastjetAllCalo_*_*', 'keep *_fixedGridRhoFastjetCentralCalo_*_*', 'keep *_fixedGridRhoFastjetCentralChargedPileUp_*_*', 'keep *_fixedGridRhoFastjetCentralNeutral_*_*', 'drop doubles_*Jets_rhos_*', 'drop doubles_*Jets_sigmas_*', 'keep *_ak8PFJetsCHSSoftDropMass_*_*') ) process.RecoJetsFEVT = cms.PSet( outputCommands = cms.untracked.vstring('keep recoCaloJets_*_*_*', 'keep recoPFJets_*_*_*', 'keep recoTrackJets_*_*_*', 'keep recoJPTJets_*_*_*', 'keep recoBasicJets_*_*_*', 'keep *_caloTowers_*_*', 'keep *_towerMaker_*_*', 'keep *_CastorTowerReco_*_*', 'keep recoRecoChargedRefCandidates_trackRefsForJets_*_*', 'keep *_kt4JetTracksAssociatorAtVertex_*_*', 'keep *_kt4JetTracksAssociatorAtCaloFace_*_*', 'keep *_kt4JetExtender_*_*', 'keep *_ak4JetTracksAssociatorAtVertex*_*_*', 'keep *_ak4JetTracksAssociatorAtCaloFace*_*_*', 'keep *_ak4JetExtender_*_*', 'keep *_ak4JetTracksAssociatorExplicit_*_*', 'keep *_ak7JetTracksAssociatorAtVertex*_*_*', 'keep *_ak7JetTracksAssociatorAtCaloFace*_*_*', 'keep *_ak7JetExtender_*_*', 'keep *_*JetID_*_*', 'keep *_kt4CaloJets_*_*', 'keep *_kt6CaloJets_*_*', 'keep *_ak4CaloJets_*_*', 'keep *_ak5CaloJets_*_*', 'keep *_ak7CaloJets_*_*', 'keep *_kt4PFJets_*_*', 'keep *_kt6PFJets_*_*', 'keep *_ak4PFJets_*_*', 'keep *_ak5PFJets_*_*', 'keep *_ak7PFJets_*_*', 'keep *_JetPlusTrackZSPCorJetAntiKt4_*_*', 'keep *_ak4TrackJets_*_*', 'keep *_kt4TrackJets_*_*', 'keep *_ak5CastorJets_*_*', 'keep *_ak5CastorJetID_*_*', 'keep *_ak7CastorJets_*_*', 'keep *_ak7CastorJetID_*_*', 'keep *_fixedGridRho*_*_*', 'keep *_ca*Mass_*_*', 'keep *_ak*Mass_*_*') ) process.RecoJetsRECO = cms.PSet( outputCommands = cms.untracked.vstring('keep *_ak4CaloJets_*_*', 'keep *_ak4PFJets_*_*', 'keep *_ak4PFJetsCHS_*_*', 'keep *_ak8PFJetsCHS_*_*', 'keep *_ak8PFJetsCHSSoftDrop_*_*', 'keep *_cmsTopTagPFJetsCHS_*_*', 'keep *_JetPlusTrackZSPCorJetAntiKt4_*_*', 'keep *_ak4TrackJets_*_*', 'keep recoRecoChargedRefCandidates_trackRefsForJets_*_*', 'keep *_caloTowers_*_*', 'keep *_towerMaker_*_*', 'keep *_CastorTowerReco_*_*', 'keep *_ak4JetTracksAssociatorAtVertex_*_*', 'keep *_ak4JetTracksAssociatorAtVertexPF_*_*', 'keep *_ak4JetTracksAssociatorAtCaloFace_*_*', 'keep *_ak4JetTracksAssociatorExplicit_*_*', 'keep *_ak4JetExtender_*_*', 'keep *_ak4JetID_*_*', 'keep *_ak5CastorJets_*_*', 'keep *_ak5CastorJetID_*_*', 'keep *_ak7CastorJets_*_*', 'keep *_ak7CastorJetID_*_*', 'keep *_fixedGridRhoAll_*_*', 'keep *_fixedGridRhoFastjetAll_*_*', 'keep *_fixedGridRhoFastjetAllTmp_*_*', 'keep *_fixedGridRhoFastjetAllCalo_*_*', 'keep *_fixedGridRhoFastjetCentral_*_*', 'keep *_fixedGridRhoFastjetCentralCalo_*_*', 'keep *_fixedGridRhoFastjetCentralChargedPileUp_*_*', 'keep *_fixedGridRhoFastjetCentralNeutral_*_*', 'keep *_ak8PFJetsCHSSoftDropMass_*_*') ) process.RecoLocalCaloAOD = cms.PSet( outputCommands = cms.untracked.vstring('keep *_castorreco_*_*', 'keep *_reducedHcalRecHits_*_*', 'keep HcalUnpackerReport_castorDigis_*_*', 'keep HcalUnpackerReport_hcalDigiAlCaMB_*_*', 'keep HcalUnpackerReport_hcalDigis_*_*') ) process.RecoLocalCaloFEVT = cms.PSet( outputCommands = cms.untracked.vstring('keep *_hbhereco_*_*', 'keep *_hbheprereco_*_*', 'keep *_hfreco_*_*', 'keep *_horeco_*_*', 'keep HBHERecHitsSorted_hbherecoMB_*_*', 'keep HBHERecHitsSorted_hbheprerecoMB_*_*', 'keep HORecHitsSorted_horecoMB_*_*', 'keep HFRecHitsSorted_hfrecoMB_*_*', 'keep ZDCDataFramesSorted_*Digis_*_*', 'keep ZDCRecHitsSorted_*_*_*', 'keep *_reducedHcalRecHits_*_*', 'keep *_castorreco_*_*', 'keep HcalUnpackerReport_*_*_*', 'keep *_ecalMultiFitUncalibRecHit_*_*', 'keep *_ecalPreshowerRecHit_*_*', 'keep *_ecalRecHit_*_*') ) process.RecoLocalCaloRECO = cms.PSet( outputCommands = cms.untracked.vstring('keep *_hbhereco_*_*', 'keep *_hbheprereco_*_*', 'keep *_hfreco_*_*', 'keep *_horeco_*_*', 'keep HBHERecHitsSorted_hbherecoMB_*_*', 'keep HORecHitsSorted_horecoMB_*_*', 'keep HFRecHitsSorted_hfrecoMB_*_*', 'keep ZDCDataFramesSorted_hcalDigis_*_*', 'keep ZDCRecHitsSorted_*_*_*', 'keep *_reducedHcalRecHits_*_*', 'keep *_castorreco_*_*', 'keep HcalUnpackerReport_castorDigis_*_*', 'keep HcalUnpackerReport_hcalDigiAlCaMB_*_*', 'keep HcalUnpackerReport_hcalDigis_*_*', 'keep *_ecalPreshowerRecHit_*_*', 'keep *_ecalRecHit_*_*', 'keep *_ecalCompactTrigPrim_*_*', 'keep *_ecalTPSkim_*_*') ) process.RecoLocalMuonAOD = cms.PSet( outputCommands = cms.untracked.vstring('keep *_dt4DSegments_*_*', 'keep *_dt4DCosmicSegments_*_*', 'keep *_cscSegments_*_*', 'keep *_rpcRecHits_*_*') ) process.RecoLocalMuonFEVT = cms.PSet( outputCommands = cms.untracked.vstring('keep *_dt1DRecHits_*_*', 'keep *_dt4DSegments_*_*', 'keep *_csc2DRecHits_*_*', 'keep *_cscSegments_*_*', 'keep *_rpcRecHits_*_*') ) process.RecoLocalMuonRECO = cms.PSet( outputCommands = cms.untracked.vstring('keep *_dt1DRecHits_*_*', 'keep *_dt4DSegments_*_*', 'keep *_dt1DCosmicRecHits_*_*', 'keep *_dt4DCosmicSegments_*_*', 'keep *_csc2DRecHits_*_*', 'keep *_cscSegments_*_*', 'keep *_rpcRecHits_*_*') ) process.RecoLocalTrackerAOD = cms.PSet( outputCommands = cms.untracked.vstring('keep ClusterSummary_clusterSummaryProducer_*_*') ) process.RecoLocalTrackerFEVT = cms.PSet( outputCommands = cms.untracked.vstring('keep DetIdedmEDCollection_siStripDigis_*_*', 'keep DetIdedmEDCollection_siPixelDigis_*_*', 'keep *_siPixelClusters_*_*', 'keep *_siStripClusters_*_*', 'keep *_clusterSummaryProducer_*_*') ) process.RecoLocalTrackerRECO = cms.PSet( outputCommands = cms.untracked.vstring('keep DetIdedmEDCollection_siStripDigis_*_*', 'keep DetIdedmEDCollection_siPixelDigis_*_*', 'keep *_siPixelClusters_*_*', 'keep *_siStripClusters_*_*', 'keep ClusterSummary_clusterSummaryProducer_*_*') ) process.RecoMETAOD = cms.PSet( outputCommands = cms.untracked.vstring('keep recoCaloMETs_caloMet_*_*', 'keep recoCaloMETs_caloMetBE_*_*', 'keep recoCaloMETs_caloMetBEFO_*_*', 'keep recoCaloMETs_caloMetM_*_*', 'keep recoPFMETs_pfMet_*_*', 'keep recoPFMETs_pfChMet_*_*', 'keep recoPFMETs_pfMetEI_*_*', 'keep recoMuonMETCorrectionDataedmValueMap_muonMETValueMapProducer_*_*', 'drop recoHcalNoiseRBXs_*_*_*', 'keep HcalNoiseSummary_hcalnoise_*_*', 'keep recoGlobalHaloData_GlobalHaloData_*_*', 'keep recoCSCHaloData_CSCHaloData_*_*', 'keep recoBeamHaloSummary_BeamHaloSummary_*_*') ) process.RecoMETFEVT = cms.PSet( outputCommands = cms.untracked.vstring('keep recoCaloMETs_caloMet_*_*', 'keep recoCaloMETs_caloMetBE_*_*', 'keep recoCaloMETs_caloMetBEFO_*_*', 'keep recoCaloMETs_caloMetM_*_*', 'keep recoPFMETs_pfMet_*_*', 'keep recoPFMETs_pfChMet_*_*', 'keep recoMuonMETCorrectionDataedmValueMap_muonMETValueMapProducer_*_*', 'keep recoHcalNoiseRBXs_hcalnoise_*_*', 'keep HcalNoiseSummary_hcalnoise_*_*', 'keep *HaloData_*_*_*', 'keep *BeamHaloSummary_BeamHaloSummary_*_*') ) process.RecoMETRECO = cms.PSet( outputCommands = cms.untracked.vstring('keep recoCaloMETs_caloMet_*_*', 'keep recoCaloMETs_caloMetBE_*_*', 'keep recoCaloMETs_caloMetBEFO_*_*', 'keep recoCaloMETs_caloMetM_*_*', 'keep recoPFMETs_pfMet_*_*', 'keep recoPFMETs_pfChMet_*_*', 'keep recoPFMETs_pfMetEI_*_*', 'keep recoMuonMETCorrectionDataedmValueMap_muonMETValueMapProducer_*_*', 'keep recoHcalNoiseRBXs_hcalnoise_*_*', 'keep HcalNoiseSummary_hcalnoise_*_*', 'keep recoCSCHaloData_CSCHaloData_*_*', 'keep recoEcalHaloData_EcalHaloData_*_*', 'keep recoGlobalHaloData_GlobalHaloData_*_*', 'keep recoHcalHaloData_HcalHaloData_*_*', 'keep recoBeamHaloSummary_BeamHaloSummary_*_*') ) process.RecoMuonAOD = cms.PSet( outputCommands = cms.untracked.vstring('keep *_muons_*_*', 'keep *_particleFlow_muons_*', 'drop *_muons_muons1stStep2muonsMap_*', 'drop recoIsoDepositedmValueMap_muons_*_*', 'drop doubleedmValueMap_muons_muPFIso*_*', 'keep recoTracks_standAloneMuons_*_*', 'keep recoTrackExtras_standAloneMuons_*_*', 'keep TrackingRecHitsOwned_standAloneMuons_*_*', 'keep recoTracks_globalMuons_*_*', 'keep recoTrackExtras_globalMuons_*_*', 'keep recoTracks_tevMuons_*_*', 'keep recoTrackExtras_tevMuons_*_*', 'keep recoTracks_generalTracks_*_*', 'keep recoTracks_displacedTracks_*_*', 'keep recoTracksToOnerecoTracksAssociation_tevMuons_*_*', 'keep recoTracks_displacedGlobalMuons_*_*', 'keep recoTrackExtras_displacedGlobalMuons_*_*', 'keep TrackingRecHitsOwned_displacedGlobalMuons_*_*', 'keep recoTracks_cosmicMuons_*_*', 'keep recoMuons_muonsFromCosmics_*_*', 'keep recoTracks_cosmicMuons1Leg_*_*', 'keep recoMuons_muonsFromCosmics1Leg_*_*', 'keep recoTracks_refittedStandAloneMuons_*_*', 'keep recoTrackExtras_refittedStandAloneMuons_*_*', 'keep TrackingRecHitsOwned_refittedStandAloneMuons_*_*', 'keep recoTracks_displacedStandAloneMuons__*', 'keep recoTrackExtras_displacedStandAloneMuons_*_*', 'keep TrackingRecHitsOwned_displacedStandAloneMuons_*_*') ) process.RecoMuonFEVT = cms.PSet( outputCommands = cms.untracked.vstring('keep *_MuonSeed_*_*', 'keep *_ancientMuonSeed_*_*', 'keep *_displacedMuonSeeds_*_*', 'keep TrackingRecHitsOwned_globalMuons_*_*', 'keep TrackingRecHitsOwned_tevMuons_*_*', 'keep recoCaloMuons_calomuons_*_*', 'keep *_CosmicMuonSeed_*_*', 'keep recoTrackExtras_cosmicMuons_*_*', 'keep TrackingRecHitsOwned_cosmicMuons_*_*', 'keep recoTrackExtras_cosmicMuons1Leg_*_*', 'keep TrackingRecHitsOwned_cosmicMuons1Leg_*_*', 'keep recoTracks_cosmicsVetoTracks_*_*', 'keep *_SETMuonSeed_*_*', 'keep recoTracks_standAloneSETMuons_*_*', 'keep recoTrackExtras_standAloneSETMuons_*_*', 'keep TrackingRecHitsOwned_standAloneSETMuons_*_*', 'keep recoTracks_globalSETMuons_*_*', 'keep recoTrackExtras_globalSETMuons_*_*', 'keep TrackingRecHitsOwned_globalSETMuons_*_*', 'keep recoMuons_muonsWithSET_*_*', 'keep *_muons_*_*', 'keep *_particleFlow_muons_*', 'drop *_muons_muons1stStep2muonsMap_*', 'drop recoIsoDepositedmValueMap_muons_*_*', 'drop doubleedmValueMap_muons_muPFIso*_*', 'keep recoTracks_standAloneMuons_*_*', 'keep recoTrackExtras_standAloneMuons_*_*', 'keep TrackingRecHitsOwned_standAloneMuons_*_*', 'keep recoTracks_globalMuons_*_*', 'keep recoTrackExtras_globalMuons_*_*', 'keep recoTracks_tevMuons_*_*', 'keep recoTrackExtras_tevMuons_*_*', 'keep recoTracks_generalTracks_*_*', 'keep recoTracks_displacedTracks_*_*', 'keep recoTracksToOnerecoTracksAssociation_tevMuons_*_*', 'keep recoTracks_displacedGlobalMuons_*_*', 'keep recoTrackExtras_displacedGlobalMuons_*_*', 'keep TrackingRecHitsOwned_displacedGlobalMuons_*_*', 'keep recoTracks_cosmicMuons_*_*', 'keep recoMuons_muonsFromCosmics_*_*', 'keep recoTracks_cosmicMuons1Leg_*_*', 'keep recoMuons_muonsFromCosmics1Leg_*_*', 'keep recoTracks_refittedStandAloneMuons_*_*', 'keep recoTrackExtras_refittedStandAloneMuons_*_*', 'keep TrackingRecHitsOwned_refittedStandAloneMuons_*_*', 'keep recoTracks_displacedStandAloneMuons__*', 'keep recoTrackExtras_displacedStandAloneMuons_*_*', 'keep TrackingRecHitsOwned_displacedStandAloneMuons_*_*', 'keep *_muIsoDepositTk_*_*', 'keep *_muIsoDepositCalByAssociatorTowers_*_*', 'keep *_muIsoDepositCalByAssociatorHits_*_*', 'keep *_muIsoDepositJets_*_*', 'keep *_muGlobalIsoDepositCtfTk_*_*', 'keep *_muGlobalIsoDepositCalByAssociatorTowers_*_*', 'keep *_muGlobalIsoDepositCalByAssociatorHits_*_*', 'keep *_muGlobalIsoDepositJets_*_*') ) process.RecoMuonIsolationAOD = cms.PSet( outputCommands = cms.untracked.vstring() ) process.RecoMuonIsolationFEVT = cms.PSet( outputCommands = cms.untracked.vstring('keep *_muIsoDepositTk_*_*', 'keep *_muIsoDepositCalByAssociatorTowers_*_*', 'keep *_muIsoDepositCalByAssociatorHits_*_*', 'keep *_muIsoDepositJets_*_*', 'keep *_muGlobalIsoDepositCtfTk_*_*', 'keep *_muGlobalIsoDepositCalByAssociatorTowers_*_*', 'keep *_muGlobalIsoDepositCalByAssociatorHits_*_*', 'keep *_muGlobalIsoDepositJets_*_*') ) process.RecoMuonIsolationParamGlobal = cms.PSet( outputCommands = cms.untracked.vstring('keep *_muParamGlobalIsoDepositGsTk_*_*', 'keep *_muParamGlobalIsoDepositCalEcal_*_*', 'keep *_muParamGlobalIsoDepositCalHcal_*_*', 'keep *_muParamGlobalIsoDepositCtfTk_*_*', 'keep *_muParamGlobalIsoDepositCalByAssociatorTowers_*_*', 'keep *_muParamGlobalIsoDepositCalByAssociatorHits_*_*', 'keep *_muParamGlobalIsoDepositJets_*_*') ) process.RecoMuonIsolationRECO = cms.PSet( outputCommands = cms.untracked.vstring('keep *_muIsoDepositTk_*_*', 'keep *_muIsoDepositCalByAssociatorTowers_*_*', 'keep *_muIsoDepositCalByAssociatorHits_*_*', 'keep *_muIsoDepositJets_*_*', 'keep *_muGlobalIsoDepositCtfTk_*_*', 'keep *_muGlobalIsoDepositCalByAssociatorTowers_*_*', 'keep *_muGlobalIsoDepositCalByAssociatorHits_*_*', 'keep *_muGlobalIsoDepositJets_*_*') ) process.RecoMuonRECO = cms.PSet( outputCommands = cms.untracked.vstring('keep *_MuonSeed_*_*', 'keep *_ancientMuonSeed_*_*', 'keep *_displacedMuonSeeds_*_*', 'keep TrackingRecHitsOwned_globalMuons_*_*', 'keep TrackingRecHitsOwned_tevMuons_*_*', 'keep recoCaloMuons_calomuons_*_*', 'keep *_CosmicMuonSeed_*_*', 'keep recoTrackExtras_cosmicMuons_*_*', 'keep TrackingRecHitsOwned_cosmicMuons_*_*', 'keep recoTrackExtras_cosmicMuons1Leg_*_*', 'keep TrackingRecHitsOwned_cosmicMuons1Leg_*_*', 'keep recoTracks_cosmicsVetoTracks_*_*', 'keep *_SETMuonSeed_*_*', 'keep recoTracks_standAloneSETMuons_*_*', 'keep recoTrackExtras_standAloneSETMuons_*_*', 'keep TrackingRecHitsOwned_standAloneSETMuons_*_*', 'keep recoTracks_globalSETMuons_*_*', 'keep recoTrackExtras_globalSETMuons_*_*', 'keep TrackingRecHitsOwned_globalSETMuons_*_*', 'keep recoMuons_muonsWithSET_*_*', 'keep *_muons_*_*', 'keep *_particleFlow_muons_*', 'drop *_muons_muons1stStep2muonsMap_*', 'drop recoIsoDepositedmValueMap_muons_*_*', 'drop doubleedmValueMap_muons_muPFIso*_*', 'keep recoTracks_standAloneMuons_*_*', 'keep recoTrackExtras_standAloneMuons_*_*', 'keep TrackingRecHitsOwned_standAloneMuons_*_*', 'keep recoTracks_globalMuons_*_*', 'keep recoTrackExtras_globalMuons_*_*', 'keep recoTracks_tevMuons_*_*', 'keep recoTrackExtras_tevMuons_*_*', 'keep recoTracks_generalTracks_*_*', 'keep recoTracks_displacedTracks_*_*', 'keep recoTracksToOnerecoTracksAssociation_tevMuons_*_*', 'keep recoTracks_displacedGlobalMuons_*_*', 'keep recoTrackExtras_displacedGlobalMuons_*_*', 'keep TrackingRecHitsOwned_displacedGlobalMuons_*_*', 'keep recoTracks_cosmicMuons_*_*', 'keep recoMuons_muonsFromCosmics_*_*', 'keep recoTracks_cosmicMuons1Leg_*_*', 'keep recoMuons_muonsFromCosmics1Leg_*_*', 'keep recoTracks_refittedStandAloneMuons_*_*', 'keep recoTrackExtras_refittedStandAloneMuons_*_*', 'keep TrackingRecHitsOwned_refittedStandAloneMuons_*_*', 'keep recoTracks_displacedStandAloneMuons__*', 'keep recoTrackExtras_displacedStandAloneMuons_*_*', 'keep TrackingRecHitsOwned_displacedStandAloneMuons_*_*', 'keep *_muIsoDepositTk_*_*', 'keep *_muIsoDepositCalByAssociatorTowers_*_*', 'keep *_muIsoDepositCalByAssociatorHits_*_*', 'keep *_muIsoDepositJets_*_*', 'keep *_muGlobalIsoDepositCtfTk_*_*', 'keep *_muGlobalIsoDepositCalByAssociatorTowers_*_*', 'keep *_muGlobalIsoDepositCalByAssociatorHits_*_*', 'keep *_muGlobalIsoDepositJets_*_*') ) process.RecoParticleFlowAOD = cms.PSet( outputCommands = cms.untracked.vstring('drop CaloTowersSorted_towerMakerPF_*_*', 'drop *_pfElectronTranslator_*_*', 'keep recoPFRecHits_particleFlowClusterECAL_Cleaned_*', 'keep recoPFRecHits_particleFlowClusterHCAL_Cleaned_*', 'keep recoPFRecHits_particleFlowClusterHO_Cleaned_*', 'keep recoPFRecHits_particleFlowClusterHF_Cleaned_*', 'keep recoPFRecHits_particleFlowClusterPS_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitECAL_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitHBHE_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitHF_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitHO_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitPS_Cleaned_*', 'keep recoCaloClusters_particleFlowEGamma_*_*', 'keep recoSuperClusters_particleFlowEGamma_*_*', 'keep recoCaloClusters_particleFlowSuperClusterECAL_*_*', 'keep recoSuperClusters_particleFlowSuperClusterECAL_*_*', 'keep recoConversions_particleFlowEGamma_*_*', 'keep recoPFCandidates_particleFlow_*_*', 'keep recoPFCandidates_particleFlowTmp_*_*', 'drop recoPFCandidates_particleFlowTmp__*', 'keep *_particleFlow_electrons_*', 'keep *_particleFlow_photons_*', 'keep *_particleFlow_muons_*', 'keep recoCaloClusters_pfElectronTranslator_*_*', 'keep recoPreshowerClusters_pfElectronTranslator_*_*', 'keep recoSuperClusters_pfElectronTranslator_*_*', 'keep recoCaloClusters_pfPhotonTranslator_*_*', 'keep recoPreshowerClusters_pfPhotonTranslator_*_*', 'keep recoSuperClusters_pfPhotonTranslator_*_*', 'keep recoPhotons_pfPhotonTranslator_*_*', 'keep recoPhotonCores_pfPhotonTranslator_*_*', 'keep recoConversions_pfPhotonTranslator_*_*', 'keep *_particleFlowPtrs_*_*', 'keep *_particleFlowTmpPtrs_*_*') ) process.RecoParticleFlowFEVT = cms.PSet( outputCommands = cms.untracked.vstring('drop CaloTowersSorted_towerMakerPF_*_*', 'keep recoPFRecHits_particleFlowClusterECAL_Cleaned_*', 'keep recoPFRecHits_particleFlowClusterHCAL_Cleaned_*', 'keep recoPFRecHits_particleFlowClusterHO_Cleaned_*', 'keep recoPFRecHits_particleFlowClusterHF_Cleaned_*', 'keep recoPFRecHits_particleFlowClusterPS_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitECAL_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitHO_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitHBHE_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitHF_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitPS_Cleaned_*', 'keep recoPFClusters_particleFlowClusterECAL_*_*', 'keep recoPFClusters_particleFlowClusterHCAL_*_*', 'keep recoPFClusters_particleFlowClusterHO_*_*', 'keep recoPFClusters_particleFlowClusterHF_*_*', 'keep recoPFClusters_particleFlowClusterPS_*_*', 'keep recoPFBlocks_particleFlowBlock_*_*', 'keep recoPFCandidates_particleFlowEGamma_*_*', 'keep recoCaloClusters_particleFlowEGamma_*_*', 'keep recoSuperClusters_particleFlowEGamma_*_*', 'keep recoConversions_particleFlowEGamma_*_*', 'keep recoPFCandidates_particleFlow_*_*', 'keep recoPFCandidates_particleFlowTmp_*_*', 'drop recoPFCandidates_particleFlowTmp__*', 'keep recoPFDisplacedVertexs_particleFlowDisplacedVertex_*_*', 'keep *_pfElectronTranslator_*_*', 'keep *_pfPhotonTranslator_*_*', 'keep *_particleFlow_electrons_*', 'keep *_particleFlow_photons_*', 'keep *_trackerDrivenElectronSeeds_preid_*', 'keep *_particleFlowPtrs_*_*', 'keep *_particleFlowTmpPtrs_*_*') ) process.RecoParticleFlowRECO = cms.PSet( outputCommands = cms.untracked.vstring('drop CaloTowersSorted_towerMakerPF_*_*', 'keep recoPFRecHits_particleFlowClusterECAL_Cleaned_*', 'keep recoPFRecHits_particleFlowClusterHCAL_Cleaned_*', 'keep recoPFRecHits_particleFlowClusterHO_Cleaned_*', 'keep recoPFRecHits_particleFlowClusterHF_Cleaned_*', 'keep recoPFRecHits_particleFlowClusterPS_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitECAL_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitHBHE_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitHF_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitHO_Cleaned_*', 'keep recoPFRecHits_particleFlowRecHitPS_Cleaned_*', 'keep recoPFClusters_particleFlowClusterECAL_*_*', 'keep recoPFClusters_particleFlowClusterHCAL_*_*', 'keep recoPFClusters_particleFlowClusterHO_*_*', 'keep recoPFClusters_particleFlowClusterHF_*_*', 'keep recoPFClusters_particleFlowClusterPS_*_*', 'keep recoPFBlocks_particleFlowBlock_*_*', 'keep recoPFCandidates_particleFlowEGamma_*_*', 'keep recoCaloClusters_particleFlowEGamma_*_*', 'keep recoSuperClusters_particleFlowEGamma_*_*', 'keep recoConversions_particleFlowEGamma_*_*', 'keep recoPFCandidates_particleFlow_*_*', 'keep recoPFCandidates_particleFlowTmp_electrons_*', 'keep recoPFCandidates_particleFlowTmp_*_*', 'drop recoPFCandidates_particleFlowTmp__*', 'keep recoPFDisplacedVertexs_particleFlowDisplacedVertex_*_*', 'keep *_pfElectronTranslator_*_*', 'keep *_pfPhotonTranslator_*_*', 'keep *_particleFlow_electrons_*', 'keep *_particleFlow_photons_*', 'keep *_particleFlow_muons_*', 'keep *_trackerDrivenElectronSeeds_preid_*', 'keep *_particleFlowPtrs_*_*', 'keep *_particleFlowTmpPtrs_*_*') ) process.RecoPixelVertexingFEVT = cms.PSet( outputCommands = cms.untracked.vstring('keep *_pixelTracks_*_*', 'keep *_pixelVertices_*_*') ) process.RecoPixelVertexingRECO = cms.PSet( outputCommands = cms.untracked.vstring('keep *_pixelTracks_*_*', 'keep *_pixelVertices_*_*') ) process.RecoTauTagAOD = cms.PSet( outputCommands = cms.untracked.vstring('keep recoRecoTauPiZeros_hpsPFTauProducer_pizeros_*', 'keep recoPFTaus_hpsPFTauProducer_*_*', 'keep *_hpsPFTauDiscriminationByDeadECALElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByDecayModeFinding_*_*', 'keep *_hpsPFTauDiscriminationByDecayModeFindingNewDMs_*_*', 'keep *_hpsPFTauDiscriminationByDecayModeFindingOldDMs_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolation_*_*', 'keep *_hpsPFTauDiscriminationByLooseChargedIsolation_*_*', 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3Hits_*_*', 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3HitsdR03_*_*', 'keep *_hpsPFTauDiscriminationByLooseMuonRejection3_*_*', 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3Hits_*_*', 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3HitsdR03_*_*', 'keep *_hpsPFTauDiscriminationByRawCombinedIsolationDBSumPtCorr3Hits_*_*', 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3Hits_*_*', 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3HitsdR03_*_*', 'keep *_hpsPFTauDiscriminationByTightMuonRejection3_*_*', 'keep *_hpsPFTauDiscriminationByPhotonPtSumOutsideSignalCone_*_*', 'keep *_hpsPFTauNeutralIsoPtSum_*_*', 'keep *_hpsPFTauPUcorrPtSum_*_*', 'keep *_hpsPFTauChargedIsoPtSum_*_*', 'keep *_hpsPFTauTransverseImpactParameters_*_*', 'keep *_hpsPFTauFootprintCorrection_*_*', 'keep *_hpsPFTauNeutralIsoPtSumWeight_*_*', 'keep *_hpsPFTauPhotonPtSumOutsideSignalCone_*_*', 'keep *_hpsPFTauDiscriminationByMVA6rawElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6VLooseElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6LooseElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6MediumElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6TightElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6VTightElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBoldDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBnewDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWoldDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWnewDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauChargedIsoPtSumdR03_*_*', 'keep *_hpsPFTauNeutralIsoPtSumdR03_*_*', 'keep *_hpsPFTauNeutralIsoPtSumWeightdR03_*_*', 'keep *_hpsPFTauFootprintCorrectiondR03_*_*', 'keep *_hpsPFTauPhotonPtSumOutsideSignalConedR03_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBdR03oldDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWdR03oldDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*') ) process.RecoTauTagFEVT = cms.PSet( outputCommands = cms.untracked.vstring('keep *_ak4PFJetsRecoTauPiZeros_*_*', 'keep *_hpsPFTauProducer_*_*', 'keep *_hpsPFTauDiscrimination*_*_*', 'keep *_hpsPFTau*PtSum_*_*', 'keep *_hpsPFTauTransverseImpactParameters_*_*') ) process.RecoTauTagRECO = cms.PSet( outputCommands = cms.untracked.vstring('keep recoRecoTauPiZeros_hpsPFTauProducer_pizeros_*', 'keep recoPFTaus_hpsPFTauProducer_*_*', 'keep *_hpsPFTauDiscriminationByDeadECALElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByDecayModeFinding_*_*', 'keep *_hpsPFTauDiscriminationByDecayModeFindingNewDMs_*_*', 'keep *_hpsPFTauDiscriminationByDecayModeFindingOldDMs_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolation_*_*', 'keep *_hpsPFTauDiscriminationByLooseChargedIsolation_*_*', 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3Hits_*_*', 'keep *_hpsPFTauDiscriminationByLooseCombinedIsolationDBSumPtCorr3HitsdR03_*_*', 'keep *_hpsPFTauDiscriminationByLooseElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByLooseMuonRejection3_*_*', 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3Hits_*_*', 'keep *_hpsPFTauDiscriminationByMediumCombinedIsolationDBSumPtCorr3HitsdR03_*_*', 'keep *_hpsPFTauDiscriminationByRawCombinedIsolationDBSumPtCorr3Hits_*_*', 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3Hits_*_*', 'keep *_hpsPFTauDiscriminationByTightCombinedIsolationDBSumPtCorr3HitsdR03_*_*', 'keep *_hpsPFTauDiscriminationByTightMuonRejection3_*_*', 'keep *_hpsPFTauDiscriminationByPhotonPtSumOutsideSignalCone_*_*', 'keep *_hpsPFTauNeutralIsoPtSum_*_*', 'keep *_hpsPFTauPUcorrPtSum_*_*', 'keep *_hpsPFTauChargedIsoPtSum_*_*', 'keep *_hpsPFTauTransverseImpactParameters_*_*', 'keep *_hpsPFTauFootprintCorrection_*_*', 'keep *_hpsPFTauNeutralIsoPtSumWeight_*_*', 'keep *_hpsPFTauPhotonPtSumOutsideSignalCone_*_*', 'keep *_hpsPFTauDiscriminationByMVA6rawElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6VLooseElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6LooseElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6MediumElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6TightElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByMVA6VTightElectronRejection_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBoldDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBnewDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWoldDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWoldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWnewDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWnewDMwLT_*_*', 'keep *_hpsPFTauChargedIsoPtSumdR03_*_*', 'keep *_hpsPFTauNeutralIsoPtSumdR03_*_*', 'keep *_hpsPFTauNeutralIsoPtSumWeightdR03_*_*', 'keep *_hpsPFTauFootprintCorrectiondR03_*_*', 'keep *_hpsPFTauPhotonPtSumOutsideSignalConedR03_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1DBdR03oldDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1DBdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByIsolationMVArun2v1PWdR03oldDMwLTraw_*_*', 'keep *_hpsPFTauDiscriminationByVLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByLooseIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByMediumIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*', 'keep *_hpsPFTauDiscriminationByVVTightIsolationMVArun2v1PWdR03oldDMwLT_*_*') ) process.RecoTrackerAOD = cms.PSet( outputCommands = cms.untracked.vstring('keep recoTracks_generalTracks_*_*', 'keep recoTracks_conversionStepTracks_*_*', 'keep recoTracks_beamhaloTracks_*_*', 'keep recoTracks_ctfPixelLess_*_*', 'keep *_dedxHarmonic2_*_*', 'keep *_dedxHitInfo_*_*', 'keep *_trackExtrapolator_*_*', 'keep *_generalTracks_MVAValues_*', 'keep *_generalTracks_MVAVals_*') ) process.RecoTrackerFEVT = cms.PSet( outputCommands = cms.untracked.vstring('keep recoTracks_generalTracks_*_*', 'keep recoTrackExtras_generalTracks_*_*', 'keep TrackingRecHitsOwned_generalTracks_*_*', 'keep *_generalTracks_MVAValues_*', 'keep TrackingRecHitsOwned_extraFromSeeds_*_*', 'keep uints_extraFromSeeds_*_*', 'keep recoTracks_beamhaloTracks_*_*', 'keep recoTrackExtras_beamhaloTracks_*_*', 'keep TrackingRecHitsOwned_beamhaloTracks_*_*', 'keep recoTracks_conversionStepTracks_*_*', 'keep recoTrackExtras_conversionStepTracks_*_*', 'keep TrackingRecHitsOwned_conversionStepTracks_*_*', 'keep *_ctfPixelLess_*_*', 'keep *_dedxTruncated40_*_*', 'keep *_dedxHitInfo_*_*', 'keep *_dedxHarmonic2_*_*', 'keep *_trackExtrapolator_*_*') ) process.RecoTrackerRECO = cms.PSet( outputCommands = cms.untracked.vstring('keep recoTracks_generalTracks_*_*', 'keep recoTrackExtras_generalTracks_*_*', 'keep TrackingRecHitsOwned_generalTracks_*_*', 'keep *_generalTracks_MVAValues_*', 'keep *_generalTracks_MVAVals_*', 'keep TrackingRecHitsOwned_extraFromSeeds_*_*', 'keep uints_extraFromSeeds_*_*', 'keep recoTracks_beamhaloTracks_*_*', 'keep recoTrackExtras_beamhaloTracks_*_*', 'keep TrackingRecHitsOwned_beamhaloTracks_*_*', 'keep recoTracks_conversionStepTracks_*_*', 'keep recoTrackExtras_conversionStepTracks_*_*', 'keep TrackingRecHitsOwned_conversionStepTracks_*_*', 'keep *_ctfPixelLess_*_*', 'keep *_dedxTruncated40_*_*', 'keep *_dedxHitInfo_*_*', 'keep *_dedxHarmonic2_*_*', 'keep *_trackExtrapolator_*_*') ) process.RecoVertexAOD = cms.PSet( outputCommands = cms.untracked.vstring('keep *_offlinePrimaryVertices__*', 'keep *_offlinePrimaryVerticesWithBS_*_*', 'keep *_offlinePrimaryVerticesFromCosmicTracks_*_*', 'keep *_nuclearInteractionMaker_*_*', 'keep *_generalV0Candidates_*_*', 'keep *_inclusiveSecondaryVertices_*_*') ) process.RecoVertexFEVT = cms.PSet( outputCommands = cms.untracked.vstring('keep *_offlinePrimaryVertices__*', 'keep *_offlinePrimaryVerticesWithBS_*_*', 'keep *_offlinePrimaryVerticesFromCosmicTracks_*_*', 'keep *_nuclearInteractionMaker_*_*', 'keep *_generalV0Candidates_*_*', 'keep *_inclusiveSecondaryVertices_*_*') ) process.RecoVertexRECO = cms.PSet( outputCommands = cms.untracked.vstring('keep *_offlinePrimaryVertices__*', 'keep *_offlinePrimaryVerticesWithBS_*_*', 'keep *_offlinePrimaryVerticesFromCosmicTracks_*_*', 'keep *_nuclearInteractionMaker_*_*', 'keep *_generalV0Candidates_*_*', 'keep *_inclusiveSecondaryVertices_*_*') ) process.Shifted15mmCollision2015VtxSmearingParameters = cms.PSet( Alpha = cms.double(0.0), BetaStar = cms.double(65.0), Emittance = cms.double(5.411e-08), Phi = cms.double(0.0), SigmaZ = cms.double(5.3), TimeOffset = cms.double(0.0), X0 = cms.double(1.5), Y0 = cms.double(0.0), Z0 = cms.double(0.0) ) process.Shifted5mmCollision2015VtxSmearingParameters = cms.PSet( Alpha = cms.double(0.0), BetaStar = cms.double(65.0), Emittance = cms.double(5.411e-08), Phi = cms.double(0.0), SigmaZ = cms.double(5.3), TimeOffset = cms.double(0.0), X0 = cms.double(0.5), Y0 = cms.double(0.0), Z0 = cms.double(0.0) ) process.ShiftedCollision2015VtxSmearingParameters = cms.PSet( Alpha = cms.double(0.0), BetaStar = cms.double(65.0), Emittance = cms.double(5.411e-08), Phi = cms.double(0.0), SigmaZ = cms.double(5.3), TimeOffset = cms.double(0.0), X0 = cms.double(1.0), Y0 = cms.double(0.0), Z0 = cms.double(0.0) ) process.SiPixelSimBlock = cms.PSet( AdcFullScale = cms.int32(255), AdcFullScaleStack = cms.int32(255), AddNoise = cms.bool(True), AddNoisyPixels = cms.bool(True), AddPixelInefficiency = cms.bool(True), AddThresholdSmearing = cms.bool(True), Alpha2Order = cms.bool(True), BPix_SignalResponse_p0 = cms.double(0.0035), BPix_SignalResponse_p1 = cms.double(1.23), BPix_SignalResponse_p2 = cms.double(97.4), BPix_SignalResponse_p3 = cms.double(126.5), ChargeVCALSmearing = cms.bool(True), DeadModules = cms.VPSet(cms.PSet( Dead_detID = cms.int32(302055940), Module = cms.string('tbmB') ), cms.PSet( Dead_detID = cms.int32(302059800), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(302121992), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(302123296), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(302125060), Module = cms.string('tbmA') ), cms.PSet( Dead_detID = cms.int32(302125076), Module = cms.string('tbmA') ), cms.PSet( Dead_detID = cms.int32(302126364), Module = cms.string('tbmB') ), cms.PSet( Dead_detID = cms.int32(302126596), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(302127136), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(302188552), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(302188824), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(302194200), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(302195232), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(302197252), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(302197784), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352453892), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352453896), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352453900), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352453904), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352454916), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352454920), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352454924), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352454928), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352455940), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352455944), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352455948), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352455952), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352454148), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352454152), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352454156), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352455172), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352455176), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352455180), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352456196), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352456200), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352456204), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(343999748), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(343999752), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(343999756), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(343999760), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344014340), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344014344), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344014348), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344019460), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344019464), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344019468), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344077572), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344077576), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344077580), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344077584), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344078596), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344078600), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344078604), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344078608), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344079620), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344079624), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344079628), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344079632), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344078852), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344078856), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344078860), Module = cms.string('whole') )), DeadModules_DB = cms.bool(True), DoPixelAging = cms.bool(False), ElectronPerAdc = cms.double(135.0), ElectronsPerVcal = cms.double(65.5), ElectronsPerVcal_Offset = cms.double(-414.0), FPix_SignalResponse_p0 = cms.double(0.0043), FPix_SignalResponse_p1 = cms.double(1.31), FPix_SignalResponse_p2 = cms.double(93.6), FPix_SignalResponse_p3 = cms.double(134.6), FirstStackLayer = cms.int32(5), GainSmearing = cms.double(0.0), LorentzAngle_DB = cms.bool(True), MissCalibrate = cms.bool(True), NoiseInElectrons = cms.double(175.0), NumPixelBarrel = cms.int32(3), NumPixelEndcap = cms.int32(2), OffsetSmearing = cms.double(0.0), PixGeometryType = cms.string('idealForDigi'), ReadoutNoiseInElec = cms.double(350.0), RoutList = cms.vstring('TrackerHitsPixelBarrelLowTof', 'TrackerHitsPixelBarrelHighTof', 'TrackerHitsPixelEndcapLowTof', 'TrackerHitsPixelEndcapHighTof'), TanLorentzAnglePerTesla_BPix = cms.double(0.106), TanLorentzAnglePerTesla_FPix = cms.double(0.106), ThresholdInElectrons_BPix = cms.double(3500.0), ThresholdInElectrons_BPix_L1 = cms.double(3500.0), ThresholdInElectrons_FPix = cms.double(3000.0), ThresholdSmearing_BPix = cms.double(245.0), ThresholdSmearing_BPix_L1 = cms.double(245.0), ThresholdSmearing_FPix = cms.double(210.0), TofLowerCut = cms.double(-12.5), TofUpperCut = cms.double(12.5), deltaProductionCut = cms.double(0.03), killModules = cms.bool(True), useDB = cms.bool(False) ) process.SiStripSimBlock = cms.PSet( APVSaturationFromHIP = cms.bool(True), APVSaturationProb = cms.double(0.001), APVpeakmode = cms.bool(False), AppliedVoltage = cms.double(300.0), BaselineShift = cms.bool(True), ChargeDistributionRMS = cms.double(6.5e-10), ChargeMobility = cms.double(310.0), CommonModeNoise = cms.bool(True), CosmicDelayShift = cms.untracked.double(0.0), CouplingConstantDecIB1 = cms.vdouble(0.7748, 0.0962, 0.0165), CouplingConstantDecIB2 = cms.vdouble(0.83, 0.0756, 0.0094), CouplingConstantDecOB1 = cms.vdouble(0.6871, 0.1222, 0.0342), CouplingConstantDecOB2 = cms.vdouble(0.725, 0.1102, 0.0273), CouplingConstantDecW1a = cms.vdouble(0.786, 0.093, 0.014), CouplingConstantDecW1b = cms.vdouble(0.822, 0.08, 0.009), CouplingConstantDecW2a = cms.vdouble(0.7962, 0.0914, 0.0104), CouplingConstantDecW2b = cms.vdouble(0.888, 0.05, 0.006), CouplingConstantDecW3a = cms.vdouble(0.8164, 0.09, 0.0018), CouplingConstantDecW3b = cms.vdouble(0.848, 0.06, 0.016), CouplingConstantDecW4 = cms.vdouble(0.876, 0.06, 0.002), CouplingConstantDecW5 = cms.vdouble(0.7565, 0.0913, 0.0304), CouplingConstantDecW6 = cms.vdouble(0.758, 0.093, 0.026), CouplingConstantDecW7 = cms.vdouble(0.7828, 0.0862, 0.0224), CouplingConstantPeakIB1 = cms.vdouble(0.9006, 0.0497), CouplingConstantPeakIB2 = cms.vdouble(0.9342, 0.0328), CouplingConstantPeakOB1 = cms.vdouble(0.8542, 0.0729), CouplingConstantPeakOB2 = cms.vdouble(0.8719, 0.064), CouplingConstantPeakW1a = cms.vdouble(0.996, 0.002), CouplingConstantPeakW1b = cms.vdouble(0.976, 0.012), CouplingConstantPeakW2a = cms.vdouble(1.0, 0.0), CouplingConstantPeakW2b = cms.vdouble(0.998, 0.001), CouplingConstantPeakW3a = cms.vdouble(0.996, 0.002), CouplingConstantPeakW3b = cms.vdouble(0.992, 0.004), CouplingConstantPeakW4 = cms.vdouble(0.992, 0.004), CouplingConstantPeakW5 = cms.vdouble(0.968, 0.016), CouplingConstantPeakW6 = cms.vdouble(0.972, 0.014), CouplingConstantPeakW7 = cms.vdouble(0.964, 0.018), DeltaProductionCut = cms.double(0.120425), DepletionVoltage = cms.double(170.0), DigiModeList = cms.PSet( PRDigi = cms.string('ProcessedRaw'), SCDigi = cms.string('ScopeMode'), VRDigi = cms.string('VirginRaw'), ZSDigi = cms.string('ZeroSuppressed') ), FedAlgorithm = cms.int32(4), FedAlgorithm_PM = cms.int32(4), Gain = cms.string(''), GeometryType = cms.string('idealForDigi'), GevPerElectron = cms.double(3.61e-09), Inefficiency = cms.double(0.0), LandauFluctuations = cms.bool(True), LorentzAngle = cms.string(''), Noise = cms.bool(True), NoiseSigmaThreshold = cms.double(2.0), PedestalsOffset = cms.double(128), PreMixingMode = cms.bool(False), ROUList = cms.vstring('TrackerHitsTIBLowTof', 'TrackerHitsTIBHighTof', 'TrackerHitsTIDLowTof', 'TrackerHitsTIDHighTof', 'TrackerHitsTOBLowTof', 'TrackerHitsTOBHighTof', 'TrackerHitsTECLowTof', 'TrackerHitsTECHighTof'), RealPedestals = cms.bool(True), SingleStripNoise = cms.bool(True), TOFCutForDeconvolution = cms.double(50.0), TOFCutForPeak = cms.double(100.0), Temperature = cms.double(273.0), TrackerConfigurationFromDB = cms.bool(False), ZeroSuppression = cms.bool(True), chargeDivisionsPerStrip = cms.int32(10), cmnRMStec = cms.double(2.44), cmnRMStib = cms.double(5.92), cmnRMStid = cms.double(3.08), cmnRMStob = cms.double(1.08), electronPerAdcDec = cms.double(247.0), electronPerAdcPeak = cms.double(262.0), noDiffusion = cms.bool(False) ) process.SimCalorimetryAOD = cms.PSet( outputCommands = cms.untracked.vstring() ) process.SimCalorimetryFEVTDEBUG = cms.PSet( outputCommands = cms.untracked.vstring('keep *_simEcalDigis_*_*', 'keep *_simEcalPreshowerDigis_*_*', 'keep *_simEcalTriggerPrimitiveDigis_*_*', 'keep *_simHcalDigis_*_*', 'keep ZDCDataFramesSorted_simHcalUnsuppressedDigis_*_*', 'drop ZDCDataFramesSorted_mix_simHcalUnsuppressedDigis*_*', 'keep *_simHcalTriggerPrimitiveDigis_*_*') ) process.SimCalorimetryRAW = cms.PSet( outputCommands = cms.untracked.vstring('keep EBSrFlagsSorted_simEcalDigis_*_*', 'keep EESrFlagsSorted_simEcalDigis_*_*') ) process.SimCalorimetryRECO = cms.PSet( outputCommands = cms.untracked.vstring() ) process.SimG4CoreAOD = cms.PSet( outputCommands = cms.untracked.vstring() ) process.SimG4CoreRAW = cms.PSet( outputCommands = cms.untracked.vstring('keep *_g4SimHits_*_*', 'keep edmHepMCProduct_source_*_*') ) process.SimG4CoreRECO = cms.PSet( outputCommands = cms.untracked.vstring('keep edmHepMCProduct_source_*_*', 'keep SimTracks_g4SimHits_*_*', 'keep SimVertexs_g4SimHits_*_*') ) process.SimGeneralAOD = cms.PSet( outputCommands = cms.untracked.vstring('keep PileupSummaryInfos_*_*_*', 'keep int_*_bunchSpacing_*') ) process.SimGeneralFEVTDEBUG = cms.PSet( outputCommands = cms.untracked.vstring('drop *_trackingtruthprod_*_*', 'drop *_electrontruth_*_*', 'keep *_mix_MergedTrackTruth_*', 'keep CrossingFramePlaybackInfoNew_*_*_*') ) process.SimGeneralRAW = cms.PSet( outputCommands = cms.untracked.vstring('keep CrossingFramePlaybackInfoNew_*_*_*', 'keep PileupSummaryInfos_*_*_*', 'keep int_*_bunchSpacing_*') ) process.SimGeneralRECO = cms.PSet( outputCommands = cms.untracked.vstring('keep PileupSummaryInfos_*_*_*', 'keep int_*_bunchSpacing_*') ) process.SimMuonAOD = cms.PSet( outputCommands = cms.untracked.vstring() ) process.SimMuonFEVTDEBUG = cms.PSet( outputCommands = cms.untracked.vstring('keep *_simMuonCSCDigis_*_*', 'keep *_simMuonDTDigis_*_*', 'keep *_simMuonRPCDigis_*_*') ) process.SimMuonRAW = cms.PSet( outputCommands = cms.untracked.vstring('keep StripDigiSimLinkedmDetSetVector_simMuonCSCDigis_*_*', 'keep CSCDetIdCSCComparatorDigiMuonDigiCollection_simMuonCSCDigis_*_*', 'keep DTLayerIdDTDigiSimLinkMuonDigiCollection_simMuonDTDigis_*_*', 'keep RPCDigiSimLinkedmDetSetVector_simMuonRPCDigis_*_*') ) process.SimMuonRECO = cms.PSet( outputCommands = cms.untracked.vstring('keep StripDigiSimLinkedmDetSetVector_simMuonCSCDigis_*_*', 'keep DTLayerIdDTDigiSimLinkMuonDigiCollection_simMuonDTDigis_*_*', 'keep RPCDigiSimLinkedmDetSetVector_simMuonRPCDigis_*_*') ) process.SimTrackerAOD = cms.PSet( outputCommands = cms.untracked.vstring('keep *_allTrackMCMatch_*_*') ) process.SimTrackerDEBUG = cms.PSet( outputCommands = cms.untracked.vstring('keep PixelDigiSimLinkedmDetSetVector_simSiPixelDigis_*_*', 'keep StripDigiSimLinkedmDetSetVector_simSiStripDigis_*_*', 'drop *_mix_simSiPixelDigis*_*', 'drop *_mix_simSiStripDigis*_*', 'keep *_allTrackMCMatch_*_*') ) process.SimTrackerFEVTDEBUG = cms.PSet( outputCommands = cms.untracked.vstring('keep *_simSiPixelDigis_*_*', 'keep *_simSiStripDigis_*_*', 'drop *_mix_simSiPixelDigis*_*', 'drop *_mix_simSiStripDigis*_*', 'keep *_allTrackMCMatch_*_*', 'keep *_trackingParticleRecoTrackAsssociation_*_*', 'keep *_assoc2secStepTk_*_*', 'keep *_assoc2thStepTk_*_*', 'keep *_assoc2GsfTracks_*_*', 'keep *_assocOutInConversionTracks_*_*', 'keep *_assocInOutConversionTracks_*_*') ) process.SimTrackerRAW = cms.PSet( outputCommands = cms.untracked.vstring('keep *_allTrackMCMatch_*_*') ) process.SimTrackerRECO = cms.PSet( outputCommands = cms.untracked.vstring('keep *_allTrackMCMatch_*_*') ) process.TcdsEventContent = cms.PSet( outputCommands = cms.untracked.vstring('keep *_tcdsDigis_*_*') ) process.TrackingToolsAOD = cms.PSet( outputCommands = cms.untracked.vstring('keep recoTracks_GsfGlobalElectronTest_*_*', 'keep recoGsfTracks_electronGsfTracks_*_*') ) process.TrackingToolsFEVT = cms.PSet( outputCommands = cms.untracked.vstring('keep *_CkfElectronCandidates_*_*', 'keep *_GsfGlobalElectronTest_*_*', 'keep *_electronMergedSeeds_*_*', 'keep *_electronGsfTracks_*_*') ) process.TrackingToolsRECO = cms.PSet( outputCommands = cms.untracked.vstring('keep *_CkfElectronCandidates_*_*', 'keep *_GsfGlobalElectronTest_*_*', 'keep *_electronMergedSeeds_*_*', 'keep recoGsfTracks_electronGsfTracks_*_*', 'keep recoGsfTrackExtras_electronGsfTracks_*_*', 'keep recoTrackExtras_electronGsfTracks_*_*', 'keep TrackingRecHitsOwned_electronGsfTracks_*_*') ) process.UpdatedHICollision2015VtxSmearingParameters = cms.PSet( Alpha = cms.double(0.0), BetaStar = cms.double(80.0), Emittance = cms.double(1.7e-07), Phi = cms.double(0.0), SigmaZ = cms.double(7.06), TimeOffset = cms.double(0.0), X0 = cms.double(0.08533), Y0 = cms.double(0.16973), Z0 = cms.double(-1.223) ) process.VtxSmearedCommon = cms.PSet( readDB = cms.bool(False), src = cms.InputTag("generator","unsmeared") ) process.ZeroTeslaRun247324CollisionVtxSmearingParameters = cms.PSet( Alpha = cms.double(0.0), BetaStar = cms.double(80.0), Emittance = cms.double(1.07e-05), Phi = cms.double(0.0), SigmaZ = cms.double(4.125), TimeOffset = cms.double(0.0), X0 = cms.double(0.08621), Y0 = cms.double(0.1657), Z0 = cms.double(-1.688) ) process.apd_sim_parameters = cms.PSet( apdAddToBarrel = cms.bool(False), apdDigiTag = cms.string('APD'), apdDoPEStats = cms.bool(True), apdNonlParms = cms.vdouble(1.48, -3.75, 1.81, 1.26, 2.0, 45, 1.0), apdSeparateDigi = cms.bool(True), apdShapeTau = cms.double(40.5), apdShapeTstart = cms.double(74.5), apdSimToPEHigh = cms.double(88200000.0), apdSimToPELow = cms.double(2450000.0), apdTimeOffWidth = cms.double(0.8), apdTimeOffset = cms.double(-13.5) ) process.castorDigitizer = cms.PSet( accumulatorType = cms.string('CastorDigiProducer'), castor = cms.PSet( binOfMaximum = cms.int32(5), doPhotoStatistics = cms.bool(True), photoelectronsToAnalog = cms.double(4.009), readoutFrameSize = cms.int32(6), samplingFactor = cms.double(0.062577), simHitToPhotoelectrons = cms.double(1000.0), syncPhase = cms.bool(True), timePhase = cms.double(-4.0) ), doNoise = cms.bool(True), doTimeSlew = cms.bool(True), hitsProducer = cms.InputTag("g4SimHits","CastorFI"), makeDigiSimLinks = cms.untracked.bool(False) ) process.configurationMetadata = cms.untracked.PSet( annotation = cms.untracked.string('UserCode/RivetAnalysis/python/Hadronizer_TuneCUETP8M1_8TeV_powhegEmissionVeto_2p_LHE_pythia8_cff.py nevts:-1'), name = cms.untracked.string('Applications'), version = cms.untracked.string('$Revision: 1.19 $') ) process.ecalDigitizer = cms.PSet( ConstantTerm = cms.double(0.003), EBCorrNoiseMatrixG01 = cms.vdouble(1.0, 0.73354, 0.64442, 0.58851, 0.55425, 0.53082, 0.51916, 0.51097, 0.50732, 0.50409), EBCorrNoiseMatrixG06 = cms.vdouble(1.0, 0.70946, 0.58021, 0.49846, 0.45006, 0.41366, 0.39699, 0.38478, 0.37847, 0.37055), EBCorrNoiseMatrixG12 = cms.vdouble(1.0, 0.71073, 0.55721, 0.46089, 0.40449, 0.35931, 0.33924, 0.32439, 0.31581, 0.30481), EBdigiCollection = cms.string(''), EBs25notContainment = cms.double(0.97), EECorrNoiseMatrixG01 = cms.vdouble(1.0, 0.72698, 0.62048, 0.55691, 0.51848, 0.49147, 0.47813, 0.47007, 0.46621, 0.46265), EECorrNoiseMatrixG06 = cms.vdouble(1.0, 0.71217, 0.47464, 0.34056, 0.26282, 0.20287, 0.17734, 0.16256, 0.15618, 0.14443), EECorrNoiseMatrixG12 = cms.vdouble(1.0, 0.71373, 0.44825, 0.30152, 0.21609, 0.14786, 0.11772, 0.10165, 0.09465, 0.08098), EEdigiCollection = cms.string(''), EEs25notContainment = cms.double(0.975), ESdigiCollection = cms.string(''), EcalPreMixStage1 = cms.bool(False), EcalPreMixStage2 = cms.bool(False), UseLCcorrection = cms.untracked.bool(True), accumulatorType = cms.string('EcalDigiProducer'), apdAddToBarrel = cms.bool(False), apdDigiTag = cms.string('APD'), apdDoPEStats = cms.bool(True), apdNonlParms = cms.vdouble(1.48, -3.75, 1.81, 1.26, 2.0, 45, 1.0), apdSeparateDigi = cms.bool(True), apdShapeTau = cms.double(40.5), apdShapeTstart = cms.double(74.5), apdSimToPEHigh = cms.double(88200000.0), apdSimToPELow = cms.double(2450000.0), apdTimeOffWidth = cms.double(0.8), apdTimeOffset = cms.double(-13.5), applyConstantTerm = cms.bool(True), binOfMaximum = cms.int32(6), cosmicsPhase = cms.bool(False), cosmicsShift = cms.double(0.0), doEB = cms.bool(True), doEE = cms.bool(True), doENoise = cms.bool(True), doES = cms.bool(True), doESNoise = cms.bool(True), doFast = cms.bool(True), doPhotostatistics = cms.bool(True), hitsProducer = cms.string('g4SimHits'), makeDigiSimLinks = cms.untracked.bool(False), photoelectronsToAnalogBarrel = cms.double(0.000444444), photoelectronsToAnalogEndcap = cms.double(0.000555555), readoutFrameSize = cms.int32(10), samplingFactor = cms.double(1.0), simHitToPhotoelectronsBarrel = cms.double(2250.0), simHitToPhotoelectronsEndcap = cms.double(1800.0), syncPhase = cms.bool(True), timePhase = cms.double(0.0) ) process.ecalLocalRecoAOD = cms.PSet( outputCommands = cms.untracked.vstring() ) process.ecalLocalRecoFEVT = cms.PSet( outputCommands = cms.untracked.vstring('keep *_ecalMultiFitUncalibRecHit_*_*', 'keep *_ecalPreshowerRecHit_*_*', 'keep *_ecalRecHit_*_*') ) process.ecalLocalRecoRECO = cms.PSet( outputCommands = cms.untracked.vstring('keep *_ecalPreshowerRecHit_*_*', 'keep *_ecalRecHit_*_*', 'keep *_ecalCompactTrigPrim_*_*', 'keep *_ecalTPSkim_*_*') ) process.ecal_cosmics_sim = cms.PSet( cosmicsPhase = cms.bool(False), cosmicsShift = cms.double(0.0) ) process.ecal_digi_parameters = cms.PSet( EBCorrNoiseMatrixG01 = cms.vdouble(1.0, 0.73354, 0.64442, 0.58851, 0.55425, 0.53082, 0.51916, 0.51097, 0.50732, 0.50409), EBCorrNoiseMatrixG06 = cms.vdouble(1.0, 0.70946, 0.58021, 0.49846, 0.45006, 0.41366, 0.39699, 0.38478, 0.37847, 0.37055), EBCorrNoiseMatrixG12 = cms.vdouble(1.0, 0.71073, 0.55721, 0.46089, 0.40449, 0.35931, 0.33924, 0.32439, 0.31581, 0.30481), EBdigiCollection = cms.string(''), EECorrNoiseMatrixG01 = cms.vdouble(1.0, 0.72698, 0.62048, 0.55691, 0.51848, 0.49147, 0.47813, 0.47007, 0.46621, 0.46265), EECorrNoiseMatrixG06 = cms.vdouble(1.0, 0.71217, 0.47464, 0.34056, 0.26282, 0.20287, 0.17734, 0.16256, 0.15618, 0.14443), EECorrNoiseMatrixG12 = cms.vdouble(1.0, 0.71373, 0.44825, 0.30152, 0.21609, 0.14786, 0.11772, 0.10165, 0.09465, 0.08098), EEdigiCollection = cms.string(''), ESdigiCollection = cms.string(''), EcalPreMixStage1 = cms.bool(False), EcalPreMixStage2 = cms.bool(False), UseLCcorrection = cms.untracked.bool(True) ) process.ecal_electronics_sim = cms.PSet( ConstantTerm = cms.double(0.003), applyConstantTerm = cms.bool(True), doENoise = cms.bool(True) ) process.ecal_notCont_sim = cms.PSet( EBs25notContainment = cms.double(0.97), EEs25notContainment = cms.double(0.975) ) process.ecal_sim_parameter_map = cms.PSet( binOfMaximum = cms.int32(6), doPhotostatistics = cms.bool(True), photoelectronsToAnalogBarrel = cms.double(0.000444444), photoelectronsToAnalogEndcap = cms.double(0.000555555), readoutFrameSize = cms.int32(10), samplingFactor = cms.double(1.0), simHitToPhotoelectronsBarrel = cms.double(2250.0), simHitToPhotoelectronsEndcap = cms.double(1800.0), syncPhase = cms.bool(True), timePhase = cms.double(0.0) ) process.es_electronics_sim = cms.PSet( doESNoise = cms.bool(True), doFast = cms.bool(True) ) process.hcalDigitizer = cms.PSet( ChangeResponse = cms.bool(False), CorrFactorFile = cms.FileInPath('SimCalorimetry/HcalSimProducers/data/calor_corr01.txt'), DelivLuminosity = cms.double(0), HBHEUpgradeQIE = cms.bool(True), HBTuningParameter = cms.double(0.875), HEDarkening = cms.bool(False), HETuningParameter = cms.double(0.9), HFDarkening = cms.bool(False), HFQIE10 = cms.bool(False), HFQIE8 = cms.bool(True), HFTuningParameter = cms.double(1.025), HFUpgradeQIE = cms.bool(False), HOTuningParameter = cms.double(1), HcalPreMixStage1 = cms.bool(False), HcalPreMixStage2 = cms.bool(False), HcalReLabel = cms.PSet( RelabelHits = cms.untracked.bool(False), RelabelRules = cms.untracked.PSet( CorrectPhi = cms.untracked.bool(False), Eta1 = cms.untracked.vint32(1, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3), Eta16 = cms.untracked.vint32(1, 1, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3), Eta17 = cms.untracked.vint32(1, 1, 2, 2, 3, 3, 3, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5) ) ), accumulatorType = cms.string('HcalDigiProducer'), doEmpty = cms.bool(True), doHFWindow = cms.bool(False), doHPDNoise = cms.bool(False), doIonFeedback = cms.bool(True), doNoise = cms.bool(True), doThermalNoise = cms.bool(True), doTimeSlew = cms.bool(True), hb = cms.PSet( binOfMaximum = cms.int32(5), doPhotoStatistics = cms.bool(True), firstRing = cms.int32(1), photoelectronsToAnalog = cms.vdouble(0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305), readoutFrameSize = cms.int32(10), samplingFactors = cms.vdouble(125.44, 125.54, 125.32, 125.13, 124.46, 125.01, 125.22, 125.48, 124.45, 125.9, 125.83, 127.01, 126.82, 129.73, 131.83, 143.52), siPMCells = cms.vint32(), simHitToPhotoelectrons = cms.double(2000.0), syncPhase = cms.bool(True), timePhase = cms.double(6.0), timeSmearing = cms.bool(True) ), he = cms.PSet( binOfMaximum = cms.int32(5), doPhotoStatistics = cms.bool(True), firstRing = cms.int32(16), photoelectronsToAnalog = cms.vdouble(0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305), readoutFrameSize = cms.int32(10), samplingFactors = cms.vdouble(210.55, 197.93, 186.12, 189.64, 189.63, 190.28, 189.61, 189.6, 190.12, 191.22, 190.9, 193.06, 188.42, 188.42), simHitToPhotoelectrons = cms.double(2000.0), syncPhase = cms.bool(True), timePhase = cms.double(6.0), timeSmearing = cms.bool(True) ), hf1 = cms.PSet( binOfMaximum = cms.int32(3), doPhotoStatistics = cms.bool(True), photoelectronsToAnalog = cms.double(2.79), readoutFrameSize = cms.int32(4), samplingFactor = cms.double(0.383), simHitToPhotoelectrons = cms.double(6.0), syncPhase = cms.bool(True), timePhase = cms.double(14.0) ), hf2 = cms.PSet( binOfMaximum = cms.int32(3), doPhotoStatistics = cms.bool(True), photoelectronsToAnalog = cms.double(1.843), readoutFrameSize = cms.int32(4), samplingFactor = cms.double(0.368), simHitToPhotoelectrons = cms.double(6.0), syncPhase = cms.bool(True), timePhase = cms.double(13.0) ), hitsProducer = cms.string('g4SimHits'), ho = cms.PSet( binOfMaximum = cms.int32(5), doPhotoStatistics = cms.bool(True), firstRing = cms.int32(1), photoelectronsToAnalog = cms.vdouble(0.24, 0.24, 0.24, 0.24, 0.17, 0.17, 0.17, 0.17, 0.17, 0.17, 0.17, 0.17, 0.17, 0.17, 0.17), readoutFrameSize = cms.int32(10), samplingFactors = cms.vdouble(231.0, 231.0, 231.0, 231.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0), siPMCode = cms.int32(2), simHitToPhotoelectrons = cms.double(4000.0), syncPhase = cms.bool(True), timePhase = cms.double(5.0), timeSmearing = cms.bool(False) ), hoHamamatsu = cms.PSet( binOfMaximum = cms.int32(5), doPhotoStatistics = cms.bool(True), firstRing = cms.int32(1), photoelectronsToAnalog = cms.vdouble(3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0), pixels = cms.int32(960), readoutFrameSize = cms.int32(10), samplingFactors = cms.vdouble(231.0, 231.0, 231.0, 231.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0), siPMCode = cms.int32(2), simHitToPhotoelectrons = cms.double(4000.0), syncPhase = cms.bool(True), timePhase = cms.double(5.0), timeSmearing = cms.bool(False) ), hoZecotek = cms.PSet( binOfMaximum = cms.int32(5), doPhotoStatistics = cms.bool(True), firstRing = cms.int32(1), photoelectronsToAnalog = cms.vdouble(3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0), pixels = cms.int32(36000), readoutFrameSize = cms.int32(10), samplingFactors = cms.vdouble(231.0, 231.0, 231.0, 231.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0), siPMCode = cms.int32(2), simHitToPhotoelectrons = cms.double(4000.0), syncPhase = cms.bool(True), timePhase = cms.double(5.0), timeSmearing = cms.bool(False) ), injectTestHits = cms.bool(False), makeDigiSimLinks = cms.untracked.bool(False), minFCToDelay = cms.double(5.0), useOldHB = cms.bool(True), useOldHE = cms.bool(True), useOldHF = cms.bool(True), useOldHO = cms.bool(True), zdc = cms.PSet( binOfMaximum = cms.int32(5), doPhotoStatistics = cms.bool(True), photoelectronsToAnalog = cms.double(1.843), readoutFrameSize = cms.int32(10), samplingFactor = cms.double(1.0), simHitToPhotoelectrons = cms.double(6.0), syncPhase = cms.bool(True), timePhase = cms.double(-4.0) ) ) process.hcalSimBlock = cms.PSet( ChangeResponse = cms.bool(False), CorrFactorFile = cms.FileInPath('SimCalorimetry/HcalSimProducers/data/calor_corr01.txt'), DelivLuminosity = cms.double(0), HBHEUpgradeQIE = cms.bool(True), HBTuningParameter = cms.double(0.875), HEDarkening = cms.bool(False), HETuningParameter = cms.double(0.9), HFDarkening = cms.bool(False), HFQIE10 = cms.bool(False), HFQIE8 = cms.bool(True), HFTuningParameter = cms.double(1.025), HFUpgradeQIE = cms.bool(False), HOTuningParameter = cms.double(1), HcalPreMixStage1 = cms.bool(False), HcalPreMixStage2 = cms.bool(False), HcalReLabel = cms.PSet( RelabelHits = cms.untracked.bool(False), RelabelRules = cms.untracked.PSet( CorrectPhi = cms.untracked.bool(False), Eta1 = cms.untracked.vint32(1, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3), Eta16 = cms.untracked.vint32(1, 1, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3), Eta17 = cms.untracked.vint32(1, 1, 2, 2, 3, 3, 3, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5) ) ), doEmpty = cms.bool(True), doHFWindow = cms.bool(False), doHPDNoise = cms.bool(False), doIonFeedback = cms.bool(True), doNoise = cms.bool(True), doThermalNoise = cms.bool(True), doTimeSlew = cms.bool(True), hb = cms.PSet( binOfMaximum = cms.int32(5), doPhotoStatistics = cms.bool(True), firstRing = cms.int32(1), photoelectronsToAnalog = cms.vdouble(0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305), readoutFrameSize = cms.int32(10), samplingFactors = cms.vdouble(125.44, 125.54, 125.32, 125.13, 124.46, 125.01, 125.22, 125.48, 124.45, 125.9, 125.83, 127.01, 126.82, 129.73, 131.83, 143.52), siPMCells = cms.vint32(), simHitToPhotoelectrons = cms.double(2000.0), syncPhase = cms.bool(True), timePhase = cms.double(6.0), timeSmearing = cms.bool(True) ), he = cms.PSet( binOfMaximum = cms.int32(5), doPhotoStatistics = cms.bool(True), firstRing = cms.int32(16), photoelectronsToAnalog = cms.vdouble(0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305), readoutFrameSize = cms.int32(10), samplingFactors = cms.vdouble(210.55, 197.93, 186.12, 189.64, 189.63, 190.28, 189.61, 189.6, 190.12, 191.22, 190.9, 193.06, 188.42, 188.42), simHitToPhotoelectrons = cms.double(2000.0), syncPhase = cms.bool(True), timePhase = cms.double(6.0), timeSmearing = cms.bool(True) ), hf1 = cms.PSet( binOfMaximum = cms.int32(3), doPhotoStatistics = cms.bool(True), photoelectronsToAnalog = cms.double(2.79), readoutFrameSize = cms.int32(4), samplingFactor = cms.double(0.383), simHitToPhotoelectrons = cms.double(6.0), syncPhase = cms.bool(True), timePhase = cms.double(14.0) ), hf2 = cms.PSet( binOfMaximum = cms.int32(3), doPhotoStatistics = cms.bool(True), photoelectronsToAnalog = cms.double(1.843), readoutFrameSize = cms.int32(4), samplingFactor = cms.double(0.368), simHitToPhotoelectrons = cms.double(6.0), syncPhase = cms.bool(True), timePhase = cms.double(13.0) ), hitsProducer = cms.string('g4SimHits'), ho = cms.PSet( binOfMaximum = cms.int32(5), doPhotoStatistics = cms.bool(True), firstRing = cms.int32(1), photoelectronsToAnalog = cms.vdouble(0.24, 0.24, 0.24, 0.24, 0.17, 0.17, 0.17, 0.17, 0.17, 0.17, 0.17, 0.17, 0.17, 0.17, 0.17), readoutFrameSize = cms.int32(10), samplingFactors = cms.vdouble(231.0, 231.0, 231.0, 231.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0), siPMCode = cms.int32(2), simHitToPhotoelectrons = cms.double(4000.0), syncPhase = cms.bool(True), timePhase = cms.double(5.0), timeSmearing = cms.bool(False) ), hoHamamatsu = cms.PSet( binOfMaximum = cms.int32(5), doPhotoStatistics = cms.bool(True), firstRing = cms.int32(1), photoelectronsToAnalog = cms.vdouble(3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0), pixels = cms.int32(960), readoutFrameSize = cms.int32(10), samplingFactors = cms.vdouble(231.0, 231.0, 231.0, 231.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0), siPMCode = cms.int32(2), simHitToPhotoelectrons = cms.double(4000.0), syncPhase = cms.bool(True), timePhase = cms.double(5.0), timeSmearing = cms.bool(False) ), hoZecotek = cms.PSet( binOfMaximum = cms.int32(5), doPhotoStatistics = cms.bool(True), firstRing = cms.int32(1), photoelectronsToAnalog = cms.vdouble(3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0), pixels = cms.int32(36000), readoutFrameSize = cms.int32(10), samplingFactors = cms.vdouble(231.0, 231.0, 231.0, 231.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0), siPMCode = cms.int32(2), simHitToPhotoelectrons = cms.double(4000.0), syncPhase = cms.bool(True), timePhase = cms.double(5.0), timeSmearing = cms.bool(False) ), injectTestHits = cms.bool(False), minFCToDelay = cms.double(5.0), useOldHB = cms.bool(True), useOldHE = cms.bool(True), useOldHF = cms.bool(True), useOldHO = cms.bool(True), zdc = cms.PSet( binOfMaximum = cms.int32(5), doPhotoStatistics = cms.bool(True), photoelectronsToAnalog = cms.double(1.843), readoutFrameSize = cms.int32(10), samplingFactor = cms.double(1.0), simHitToPhotoelectrons = cms.double(6.0), syncPhase = cms.bool(True), timePhase = cms.double(-4.0) ) ) process.maxEvents = cms.untracked.PSet( input = cms.untracked.int32(-1) ) process.options = cms.untracked.PSet( ) process.pileupVtxDigitizer = cms.PSet( accumulatorType = cms.string('PileupVertexAccumulator'), hitsProducer = cms.string('generator'), makeDigiSimLinks = cms.untracked.bool(False), vtxFallbackTag = cms.InputTag("generator"), vtxTag = cms.InputTag("generatorSmeared") ) process.pixelDigitizer = cms.PSet( AdcFullScale = cms.int32(255), AdcFullScaleStack = cms.int32(255), AddNoise = cms.bool(True), AddNoisyPixels = cms.bool(True), AddPixelInefficiency = cms.bool(True), AddThresholdSmearing = cms.bool(True), Alpha2Order = cms.bool(True), BPix_SignalResponse_p0 = cms.double(0.0035), BPix_SignalResponse_p1 = cms.double(1.23), BPix_SignalResponse_p2 = cms.double(97.4), BPix_SignalResponse_p3 = cms.double(126.5), ChargeVCALSmearing = cms.bool(True), DeadModules = cms.VPSet(cms.PSet( Dead_detID = cms.int32(302055940), Module = cms.string('tbmB') ), cms.PSet( Dead_detID = cms.int32(302059800), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(302121992), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(302123296), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(302125060), Module = cms.string('tbmA') ), cms.PSet( Dead_detID = cms.int32(302125076), Module = cms.string('tbmA') ), cms.PSet( Dead_detID = cms.int32(302126364), Module = cms.string('tbmB') ), cms.PSet( Dead_detID = cms.int32(302126596), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(302127136), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(302188552), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(302188824), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(302194200), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(302195232), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(302197252), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(302197784), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352453892), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352453896), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352453900), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352453904), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352454916), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352454920), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352454924), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352454928), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352455940), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352455944), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352455948), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352455952), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352454148), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352454152), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352454156), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352455172), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352455176), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352455180), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352456196), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352456200), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352456204), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(343999748), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(343999752), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(343999756), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(343999760), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344014340), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344014344), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344014348), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344019460), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344019464), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344019468), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344077572), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344077576), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344077580), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344077584), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344078596), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344078600), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344078604), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344078608), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344079620), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344079624), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344079628), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344079632), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344078852), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344078856), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344078860), Module = cms.string('whole') )), DeadModules_DB = cms.bool(True), DoPixelAging = cms.bool(False), ElectronPerAdc = cms.double(135.0), ElectronsPerVcal = cms.double(65.5), ElectronsPerVcal_Offset = cms.double(-414.0), FPix_SignalResponse_p0 = cms.double(0.0043), FPix_SignalResponse_p1 = cms.double(1.31), FPix_SignalResponse_p2 = cms.double(93.6), FPix_SignalResponse_p3 = cms.double(134.6), FirstStackLayer = cms.int32(5), GainSmearing = cms.double(0.0), LorentzAngle_DB = cms.bool(True), MissCalibrate = cms.bool(True), NoiseInElectrons = cms.double(175.0), NumPixelBarrel = cms.int32(3), NumPixelEndcap = cms.int32(2), OffsetSmearing = cms.double(0.0), PixGeometryType = cms.string('idealForDigi'), ReadoutNoiseInElec = cms.double(350.0), RoutList = cms.vstring('TrackerHitsPixelBarrelLowTof', 'TrackerHitsPixelBarrelHighTof', 'TrackerHitsPixelEndcapLowTof', 'TrackerHitsPixelEndcapHighTof'), TanLorentzAnglePerTesla_BPix = cms.double(0.106), TanLorentzAnglePerTesla_FPix = cms.double(0.106), ThresholdInElectrons_BPix = cms.double(3500.0), ThresholdInElectrons_BPix_L1 = cms.double(3500.0), ThresholdInElectrons_FPix = cms.double(3000.0), ThresholdSmearing_BPix = cms.double(245.0), ThresholdSmearing_BPix_L1 = cms.double(245.0), ThresholdSmearing_FPix = cms.double(210.0), TofLowerCut = cms.double(-12.5), TofUpperCut = cms.double(12.5), accumulatorType = cms.string('SiPixelDigitizer'), deltaProductionCut = cms.double(0.03), hitsProducer = cms.string('g4SimHits'), killModules = cms.bool(True), makeDigiSimLinks = cms.untracked.bool(True), useDB = cms.bool(False) ) process.recoTrackAccumulator = cms.PSet( accumulatorType = cms.string('RecoTrackAccumulator'), makeDigiSimLinks = cms.untracked.bool(False), outputLabel = cms.string('generalTracks'), pileUpTracks = cms.InputTag("generalTracksBeforeMixing"), signalTracks = cms.InputTag("generalTracksBeforeMixing") ) process.stripDigitizer = cms.PSet( APVSaturationFromHIP = cms.bool(True), APVSaturationProb = cms.double(0.001), APVpeakmode = cms.bool(False), AppliedVoltage = cms.double(300.0), BaselineShift = cms.bool(True), ChargeDistributionRMS = cms.double(6.5e-10), ChargeMobility = cms.double(310.0), CommonModeNoise = cms.bool(True), CosmicDelayShift = cms.untracked.double(0.0), CouplingConstantDecIB1 = cms.vdouble(0.7748, 0.0962, 0.0165), CouplingConstantDecIB2 = cms.vdouble(0.83, 0.0756, 0.0094), CouplingConstantDecOB1 = cms.vdouble(0.6871, 0.1222, 0.0342), CouplingConstantDecOB2 = cms.vdouble(0.725, 0.1102, 0.0273), CouplingConstantDecW1a = cms.vdouble(0.786, 0.093, 0.014), CouplingConstantDecW1b = cms.vdouble(0.822, 0.08, 0.009), CouplingConstantDecW2a = cms.vdouble(0.7962, 0.0914, 0.0104), CouplingConstantDecW2b = cms.vdouble(0.888, 0.05, 0.006), CouplingConstantDecW3a = cms.vdouble(0.8164, 0.09, 0.0018), CouplingConstantDecW3b = cms.vdouble(0.848, 0.06, 0.016), CouplingConstantDecW4 = cms.vdouble(0.876, 0.06, 0.002), CouplingConstantDecW5 = cms.vdouble(0.7565, 0.0913, 0.0304), CouplingConstantDecW6 = cms.vdouble(0.758, 0.093, 0.026), CouplingConstantDecW7 = cms.vdouble(0.7828, 0.0862, 0.0224), CouplingConstantPeakIB1 = cms.vdouble(0.9006, 0.0497), CouplingConstantPeakIB2 = cms.vdouble(0.9342, 0.0328), CouplingConstantPeakOB1 = cms.vdouble(0.8542, 0.0729), CouplingConstantPeakOB2 = cms.vdouble(0.8719, 0.064), CouplingConstantPeakW1a = cms.vdouble(0.996, 0.002), CouplingConstantPeakW1b = cms.vdouble(0.976, 0.012), CouplingConstantPeakW2a = cms.vdouble(1.0, 0.0), CouplingConstantPeakW2b = cms.vdouble(0.998, 0.001), CouplingConstantPeakW3a = cms.vdouble(0.996, 0.002), CouplingConstantPeakW3b = cms.vdouble(0.992, 0.004), CouplingConstantPeakW4 = cms.vdouble(0.992, 0.004), CouplingConstantPeakW5 = cms.vdouble(0.968, 0.016), CouplingConstantPeakW6 = cms.vdouble(0.972, 0.014), CouplingConstantPeakW7 = cms.vdouble(0.964, 0.018), DeltaProductionCut = cms.double(0.120425), DepletionVoltage = cms.double(170.0), DigiModeList = cms.PSet( PRDigi = cms.string('ProcessedRaw'), SCDigi = cms.string('ScopeMode'), VRDigi = cms.string('VirginRaw'), ZSDigi = cms.string('ZeroSuppressed') ), FedAlgorithm = cms.int32(4), FedAlgorithm_PM = cms.int32(4), Gain = cms.string(''), GeometryType = cms.string('idealForDigi'), GevPerElectron = cms.double(3.61e-09), Inefficiency = cms.double(0.0), LandauFluctuations = cms.bool(True), LorentzAngle = cms.string(''), Noise = cms.bool(True), NoiseSigmaThreshold = cms.double(2.0), PedestalsOffset = cms.double(128), PreMixingMode = cms.bool(False), ROUList = cms.vstring('TrackerHitsTIBLowTof', 'TrackerHitsTIBHighTof', 'TrackerHitsTIDLowTof', 'TrackerHitsTIDHighTof', 'TrackerHitsTOBLowTof', 'TrackerHitsTOBHighTof', 'TrackerHitsTECLowTof', 'TrackerHitsTECHighTof'), RealPedestals = cms.bool(True), SingleStripNoise = cms.bool(True), TOFCutForDeconvolution = cms.double(50.0), TOFCutForPeak = cms.double(100.0), Temperature = cms.double(273.0), TrackerConfigurationFromDB = cms.bool(False), ZeroSuppression = cms.bool(True), accumulatorType = cms.string('SiStripDigitizer'), chargeDivisionsPerStrip = cms.int32(10), cmnRMStec = cms.double(2.44), cmnRMStib = cms.double(5.92), cmnRMStid = cms.double(3.08), cmnRMStob = cms.double(1.08), electronPerAdcDec = cms.double(247.0), electronPerAdcPeak = cms.double(262.0), hitsProducer = cms.string('g4SimHits'), makeDigiSimLinks = cms.untracked.bool(True), noDiffusion = cms.bool(False) ) process.theDigitizers = cms.PSet( castor = cms.PSet( accumulatorType = cms.string('CastorDigiProducer'), castor = cms.PSet( binOfMaximum = cms.int32(5), doPhotoStatistics = cms.bool(True), photoelectronsToAnalog = cms.double(4.009), readoutFrameSize = cms.int32(6), samplingFactor = cms.double(0.062577), simHitToPhotoelectrons = cms.double(1000.0), syncPhase = cms.bool(True), timePhase = cms.double(-4.0) ), doNoise = cms.bool(True), doTimeSlew = cms.bool(True), hitsProducer = cms.InputTag("g4SimHits","CastorFI"), makeDigiSimLinks = cms.untracked.bool(False) ), ecal = cms.PSet( ConstantTerm = cms.double(0.003), EBCorrNoiseMatrixG01 = cms.vdouble(1.0, 0.73354, 0.64442, 0.58851, 0.55425, 0.53082, 0.51916, 0.51097, 0.50732, 0.50409), EBCorrNoiseMatrixG06 = cms.vdouble(1.0, 0.70946, 0.58021, 0.49846, 0.45006, 0.41366, 0.39699, 0.38478, 0.37847, 0.37055), EBCorrNoiseMatrixG12 = cms.vdouble(1.0, 0.71073, 0.55721, 0.46089, 0.40449, 0.35931, 0.33924, 0.32439, 0.31581, 0.30481), EBdigiCollection = cms.string(''), EBs25notContainment = cms.double(0.97), EECorrNoiseMatrixG01 = cms.vdouble(1.0, 0.72698, 0.62048, 0.55691, 0.51848, 0.49147, 0.47813, 0.47007, 0.46621, 0.46265), EECorrNoiseMatrixG06 = cms.vdouble(1.0, 0.71217, 0.47464, 0.34056, 0.26282, 0.20287, 0.17734, 0.16256, 0.15618, 0.14443), EECorrNoiseMatrixG12 = cms.vdouble(1.0, 0.71373, 0.44825, 0.30152, 0.21609, 0.14786, 0.11772, 0.10165, 0.09465, 0.08098), EEdigiCollection = cms.string(''), EEs25notContainment = cms.double(0.975), ESdigiCollection = cms.string(''), EcalPreMixStage1 = cms.bool(False), EcalPreMixStage2 = cms.bool(False), UseLCcorrection = cms.untracked.bool(True), accumulatorType = cms.string('EcalDigiProducer'), apdAddToBarrel = cms.bool(False), apdDigiTag = cms.string('APD'), apdDoPEStats = cms.bool(True), apdNonlParms = cms.vdouble(1.48, -3.75, 1.81, 1.26, 2.0, 45, 1.0), apdSeparateDigi = cms.bool(True), apdShapeTau = cms.double(40.5), apdShapeTstart = cms.double(74.5), apdSimToPEHigh = cms.double(88200000.0), apdSimToPELow = cms.double(2450000.0), apdTimeOffWidth = cms.double(0.8), apdTimeOffset = cms.double(-13.5), applyConstantTerm = cms.bool(True), binOfMaximum = cms.int32(6), cosmicsPhase = cms.bool(False), cosmicsShift = cms.double(0.0), doEB = cms.bool(True), doEE = cms.bool(True), doENoise = cms.bool(True), doES = cms.bool(True), doESNoise = cms.bool(True), doFast = cms.bool(True), doPhotostatistics = cms.bool(True), hitsProducer = cms.string('g4SimHits'), makeDigiSimLinks = cms.untracked.bool(False), photoelectronsToAnalogBarrel = cms.double(0.000444444), photoelectronsToAnalogEndcap = cms.double(0.000555555), readoutFrameSize = cms.int32(10), samplingFactor = cms.double(1.0), simHitToPhotoelectronsBarrel = cms.double(2250.0), simHitToPhotoelectronsEndcap = cms.double(1800.0), syncPhase = cms.bool(True), timePhase = cms.double(0.0) ), hcal = cms.PSet( ChangeResponse = cms.bool(False), CorrFactorFile = cms.FileInPath('SimCalorimetry/HcalSimProducers/data/calor_corr01.txt'), DelivLuminosity = cms.double(0), HBHEUpgradeQIE = cms.bool(True), HBTuningParameter = cms.double(0.875), HEDarkening = cms.bool(False), HETuningParameter = cms.double(0.9), HFDarkening = cms.bool(False), HFQIE10 = cms.bool(False), HFQIE8 = cms.bool(True), HFTuningParameter = cms.double(1.025), HFUpgradeQIE = cms.bool(False), HOTuningParameter = cms.double(1), HcalPreMixStage1 = cms.bool(False), HcalPreMixStage2 = cms.bool(False), HcalReLabel = cms.PSet( RelabelHits = cms.untracked.bool(False), RelabelRules = cms.untracked.PSet( CorrectPhi = cms.untracked.bool(False), Eta1 = cms.untracked.vint32(1, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3), Eta16 = cms.untracked.vint32(1, 1, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3), Eta17 = cms.untracked.vint32(1, 1, 2, 2, 3, 3, 3, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5) ) ), accumulatorType = cms.string('HcalDigiProducer'), doEmpty = cms.bool(True), doHFWindow = cms.bool(False), doHPDNoise = cms.bool(False), doIonFeedback = cms.bool(True), doNoise = cms.bool(True), doThermalNoise = cms.bool(True), doTimeSlew = cms.bool(True), hb = cms.PSet( binOfMaximum = cms.int32(5), doPhotoStatistics = cms.bool(True), firstRing = cms.int32(1), photoelectronsToAnalog = cms.vdouble(0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305), readoutFrameSize = cms.int32(10), samplingFactors = cms.vdouble(125.44, 125.54, 125.32, 125.13, 124.46, 125.01, 125.22, 125.48, 124.45, 125.9, 125.83, 127.01, 126.82, 129.73, 131.83, 143.52), siPMCells = cms.vint32(), simHitToPhotoelectrons = cms.double(2000.0), syncPhase = cms.bool(True), timePhase = cms.double(6.0), timeSmearing = cms.bool(True) ), he = cms.PSet( binOfMaximum = cms.int32(5), doPhotoStatistics = cms.bool(True), firstRing = cms.int32(16), photoelectronsToAnalog = cms.vdouble(0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305), readoutFrameSize = cms.int32(10), samplingFactors = cms.vdouble(210.55, 197.93, 186.12, 189.64, 189.63, 190.28, 189.61, 189.6, 190.12, 191.22, 190.9, 193.06, 188.42, 188.42), simHitToPhotoelectrons = cms.double(2000.0), syncPhase = cms.bool(True), timePhase = cms.double(6.0), timeSmearing = cms.bool(True) ), hf1 = cms.PSet( binOfMaximum = cms.int32(3), doPhotoStatistics = cms.bool(True), photoelectronsToAnalog = cms.double(2.79), readoutFrameSize = cms.int32(4), samplingFactor = cms.double(0.383), simHitToPhotoelectrons = cms.double(6.0), syncPhase = cms.bool(True), timePhase = cms.double(14.0) ), hf2 = cms.PSet( binOfMaximum = cms.int32(3), doPhotoStatistics = cms.bool(True), photoelectronsToAnalog = cms.double(1.843), readoutFrameSize = cms.int32(4), samplingFactor = cms.double(0.368), simHitToPhotoelectrons = cms.double(6.0), syncPhase = cms.bool(True), timePhase = cms.double(13.0) ), hitsProducer = cms.string('g4SimHits'), ho = cms.PSet( binOfMaximum = cms.int32(5), doPhotoStatistics = cms.bool(True), firstRing = cms.int32(1), photoelectronsToAnalog = cms.vdouble(0.24, 0.24, 0.24, 0.24, 0.17, 0.17, 0.17, 0.17, 0.17, 0.17, 0.17, 0.17, 0.17, 0.17, 0.17), readoutFrameSize = cms.int32(10), samplingFactors = cms.vdouble(231.0, 231.0, 231.0, 231.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0), siPMCode = cms.int32(2), simHitToPhotoelectrons = cms.double(4000.0), syncPhase = cms.bool(True), timePhase = cms.double(5.0), timeSmearing = cms.bool(False) ), hoHamamatsu = cms.PSet( binOfMaximum = cms.int32(5), doPhotoStatistics = cms.bool(True), firstRing = cms.int32(1), photoelectronsToAnalog = cms.vdouble(3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0), pixels = cms.int32(960), readoutFrameSize = cms.int32(10), samplingFactors = cms.vdouble(231.0, 231.0, 231.0, 231.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0), siPMCode = cms.int32(2), simHitToPhotoelectrons = cms.double(4000.0), syncPhase = cms.bool(True), timePhase = cms.double(5.0), timeSmearing = cms.bool(False) ), hoZecotek = cms.PSet( binOfMaximum = cms.int32(5), doPhotoStatistics = cms.bool(True), firstRing = cms.int32(1), photoelectronsToAnalog = cms.vdouble(3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0), pixels = cms.int32(36000), readoutFrameSize = cms.int32(10), samplingFactors = cms.vdouble(231.0, 231.0, 231.0, 231.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0), siPMCode = cms.int32(2), simHitToPhotoelectrons = cms.double(4000.0), syncPhase = cms.bool(True), timePhase = cms.double(5.0), timeSmearing = cms.bool(False) ), injectTestHits = cms.bool(False), makeDigiSimLinks = cms.untracked.bool(False), minFCToDelay = cms.double(5.0), useOldHB = cms.bool(True), useOldHE = cms.bool(True), useOldHF = cms.bool(True), useOldHO = cms.bool(True), zdc = cms.PSet( binOfMaximum = cms.int32(5), doPhotoStatistics = cms.bool(True), photoelectronsToAnalog = cms.double(1.843), readoutFrameSize = cms.int32(10), samplingFactor = cms.double(1.0), simHitToPhotoelectrons = cms.double(6.0), syncPhase = cms.bool(True), timePhase = cms.double(-4.0) ) ), pixel = cms.PSet( AdcFullScale = cms.int32(255), AdcFullScaleStack = cms.int32(255), AddNoise = cms.bool(True), AddNoisyPixels = cms.bool(True), AddPixelInefficiency = cms.bool(True), AddThresholdSmearing = cms.bool(True), Alpha2Order = cms.bool(True), BPix_SignalResponse_p0 = cms.double(0.0035), BPix_SignalResponse_p1 = cms.double(1.23), BPix_SignalResponse_p2 = cms.double(97.4), BPix_SignalResponse_p3 = cms.double(126.5), ChargeVCALSmearing = cms.bool(True), DeadModules = cms.VPSet(cms.PSet( Dead_detID = cms.int32(302055940), Module = cms.string('tbmB') ), cms.PSet( Dead_detID = cms.int32(302059800), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(302121992), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(302123296), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(302125060), Module = cms.string('tbmA') ), cms.PSet( Dead_detID = cms.int32(302125076), Module = cms.string('tbmA') ), cms.PSet( Dead_detID = cms.int32(302126364), Module = cms.string('tbmB') ), cms.PSet( Dead_detID = cms.int32(302126596), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(302127136), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(302188552), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(302188824), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(302194200), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(302195232), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(302197252), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(302197784), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352453892), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352453896), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352453900), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352453904), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352454916), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352454920), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352454924), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352454928), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352455940), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352455944), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352455948), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352455952), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352454148), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352454152), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352454156), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352455172), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352455176), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352455180), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352456196), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352456200), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352456204), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(343999748), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(343999752), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(343999756), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(343999760), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344014340), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344014344), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344014348), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344019460), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344019464), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344019468), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344077572), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344077576), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344077580), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344077584), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344078596), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344078600), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344078604), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344078608), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344079620), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344079624), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344079628), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344079632), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344078852), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344078856), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344078860), Module = cms.string('whole') )), DeadModules_DB = cms.bool(True), DoPixelAging = cms.bool(False), ElectronPerAdc = cms.double(135.0), ElectronsPerVcal = cms.double(65.5), ElectronsPerVcal_Offset = cms.double(-414.0), FPix_SignalResponse_p0 = cms.double(0.0043), FPix_SignalResponse_p1 = cms.double(1.31), FPix_SignalResponse_p2 = cms.double(93.6), FPix_SignalResponse_p3 = cms.double(134.6), FirstStackLayer = cms.int32(5), GainSmearing = cms.double(0.0), LorentzAngle_DB = cms.bool(True), MissCalibrate = cms.bool(True), NoiseInElectrons = cms.double(175.0), NumPixelBarrel = cms.int32(3), NumPixelEndcap = cms.int32(2), OffsetSmearing = cms.double(0.0), PixGeometryType = cms.string('idealForDigi'), ReadoutNoiseInElec = cms.double(350.0), RoutList = cms.vstring('TrackerHitsPixelBarrelLowTof', 'TrackerHitsPixelBarrelHighTof', 'TrackerHitsPixelEndcapLowTof', 'TrackerHitsPixelEndcapHighTof'), TanLorentzAnglePerTesla_BPix = cms.double(0.106), TanLorentzAnglePerTesla_FPix = cms.double(0.106), ThresholdInElectrons_BPix = cms.double(3500.0), ThresholdInElectrons_BPix_L1 = cms.double(3500.0), ThresholdInElectrons_FPix = cms.double(3000.0), ThresholdSmearing_BPix = cms.double(245.0), ThresholdSmearing_BPix_L1 = cms.double(245.0), ThresholdSmearing_FPix = cms.double(210.0), TofLowerCut = cms.double(-12.5), TofUpperCut = cms.double(12.5), accumulatorType = cms.string('SiPixelDigitizer'), deltaProductionCut = cms.double(0.03), hitsProducer = cms.string('g4SimHits'), killModules = cms.bool(True), makeDigiSimLinks = cms.untracked.bool(True), useDB = cms.bool(False) ), puVtx = cms.PSet( accumulatorType = cms.string('PileupVertexAccumulator'), hitsProducer = cms.string('generator'), makeDigiSimLinks = cms.untracked.bool(False), vtxFallbackTag = cms.InputTag("generator"), vtxTag = cms.InputTag("generatorSmeared") ), strip = cms.PSet( APVSaturationFromHIP = cms.bool(True), APVSaturationProb = cms.double(0.001), APVpeakmode = cms.bool(False), AppliedVoltage = cms.double(300.0), BaselineShift = cms.bool(True), ChargeDistributionRMS = cms.double(6.5e-10), ChargeMobility = cms.double(310.0), CommonModeNoise = cms.bool(True), CosmicDelayShift = cms.untracked.double(0.0), CouplingConstantDecIB1 = cms.vdouble(0.7748, 0.0962, 0.0165), CouplingConstantDecIB2 = cms.vdouble(0.83, 0.0756, 0.0094), CouplingConstantDecOB1 = cms.vdouble(0.6871, 0.1222, 0.0342), CouplingConstantDecOB2 = cms.vdouble(0.725, 0.1102, 0.0273), CouplingConstantDecW1a = cms.vdouble(0.786, 0.093, 0.014), CouplingConstantDecW1b = cms.vdouble(0.822, 0.08, 0.009), CouplingConstantDecW2a = cms.vdouble(0.7962, 0.0914, 0.0104), CouplingConstantDecW2b = cms.vdouble(0.888, 0.05, 0.006), CouplingConstantDecW3a = cms.vdouble(0.8164, 0.09, 0.0018), CouplingConstantDecW3b = cms.vdouble(0.848, 0.06, 0.016), CouplingConstantDecW4 = cms.vdouble(0.876, 0.06, 0.002), CouplingConstantDecW5 = cms.vdouble(0.7565, 0.0913, 0.0304), CouplingConstantDecW6 = cms.vdouble(0.758, 0.093, 0.026), CouplingConstantDecW7 = cms.vdouble(0.7828, 0.0862, 0.0224), CouplingConstantPeakIB1 = cms.vdouble(0.9006, 0.0497), CouplingConstantPeakIB2 = cms.vdouble(0.9342, 0.0328), CouplingConstantPeakOB1 = cms.vdouble(0.8542, 0.0729), CouplingConstantPeakOB2 = cms.vdouble(0.8719, 0.064), CouplingConstantPeakW1a = cms.vdouble(0.996, 0.002), CouplingConstantPeakW1b = cms.vdouble(0.976, 0.012), CouplingConstantPeakW2a = cms.vdouble(1.0, 0.0), CouplingConstantPeakW2b = cms.vdouble(0.998, 0.001), CouplingConstantPeakW3a = cms.vdouble(0.996, 0.002), CouplingConstantPeakW3b = cms.vdouble(0.992, 0.004), CouplingConstantPeakW4 = cms.vdouble(0.992, 0.004), CouplingConstantPeakW5 = cms.vdouble(0.968, 0.016), CouplingConstantPeakW6 = cms.vdouble(0.972, 0.014), CouplingConstantPeakW7 = cms.vdouble(0.964, 0.018), DeltaProductionCut = cms.double(0.120425), DepletionVoltage = cms.double(170.0), DigiModeList = cms.PSet( PRDigi = cms.string('ProcessedRaw'), SCDigi = cms.string('ScopeMode'), VRDigi = cms.string('VirginRaw'), ZSDigi = cms.string('ZeroSuppressed') ), FedAlgorithm = cms.int32(4), FedAlgorithm_PM = cms.int32(4), Gain = cms.string(''), GeometryType = cms.string('idealForDigi'), GevPerElectron = cms.double(3.61e-09), Inefficiency = cms.double(0.0), LandauFluctuations = cms.bool(True), LorentzAngle = cms.string(''), Noise = cms.bool(True), NoiseSigmaThreshold = cms.double(2.0), PedestalsOffset = cms.double(128), PreMixingMode = cms.bool(False), ROUList = cms.vstring('TrackerHitsTIBLowTof', 'TrackerHitsTIBHighTof', 'TrackerHitsTIDLowTof', 'TrackerHitsTIDHighTof', 'TrackerHitsTOBLowTof', 'TrackerHitsTOBHighTof', 'TrackerHitsTECLowTof', 'TrackerHitsTECHighTof'), RealPedestals = cms.bool(True), SingleStripNoise = cms.bool(True), TOFCutForDeconvolution = cms.double(50.0), TOFCutForPeak = cms.double(100.0), Temperature = cms.double(273.0), TrackerConfigurationFromDB = cms.bool(False), ZeroSuppression = cms.bool(True), accumulatorType = cms.string('SiStripDigitizer'), chargeDivisionsPerStrip = cms.int32(10), cmnRMStec = cms.double(2.44), cmnRMStib = cms.double(5.92), cmnRMStid = cms.double(3.08), cmnRMStob = cms.double(1.08), electronPerAdcDec = cms.double(247.0), electronPerAdcPeak = cms.double(262.0), hitsProducer = cms.string('g4SimHits'), makeDigiSimLinks = cms.untracked.bool(True), noDiffusion = cms.bool(False) ) ) process.theDigitizersValid = cms.PSet( castor = cms.PSet( accumulatorType = cms.string('CastorDigiProducer'), castor = cms.PSet( binOfMaximum = cms.int32(5), doPhotoStatistics = cms.bool(True), photoelectronsToAnalog = cms.double(4.009), readoutFrameSize = cms.int32(6), samplingFactor = cms.double(0.062577), simHitToPhotoelectrons = cms.double(1000.0), syncPhase = cms.bool(True), timePhase = cms.double(-4.0) ), doNoise = cms.bool(True), doTimeSlew = cms.bool(True), hitsProducer = cms.InputTag("g4SimHits","CastorFI"), makeDigiSimLinks = cms.untracked.bool(False) ), ecal = cms.PSet( ConstantTerm = cms.double(0.003), EBCorrNoiseMatrixG01 = cms.vdouble(1.0, 0.73354, 0.64442, 0.58851, 0.55425, 0.53082, 0.51916, 0.51097, 0.50732, 0.50409), EBCorrNoiseMatrixG06 = cms.vdouble(1.0, 0.70946, 0.58021, 0.49846, 0.45006, 0.41366, 0.39699, 0.38478, 0.37847, 0.37055), EBCorrNoiseMatrixG12 = cms.vdouble(1.0, 0.71073, 0.55721, 0.46089, 0.40449, 0.35931, 0.33924, 0.32439, 0.31581, 0.30481), EBdigiCollection = cms.string(''), EBs25notContainment = cms.double(0.97), EECorrNoiseMatrixG01 = cms.vdouble(1.0, 0.72698, 0.62048, 0.55691, 0.51848, 0.49147, 0.47813, 0.47007, 0.46621, 0.46265), EECorrNoiseMatrixG06 = cms.vdouble(1.0, 0.71217, 0.47464, 0.34056, 0.26282, 0.20287, 0.17734, 0.16256, 0.15618, 0.14443), EECorrNoiseMatrixG12 = cms.vdouble(1.0, 0.71373, 0.44825, 0.30152, 0.21609, 0.14786, 0.11772, 0.10165, 0.09465, 0.08098), EEdigiCollection = cms.string(''), EEs25notContainment = cms.double(0.975), ESdigiCollection = cms.string(''), EcalPreMixStage1 = cms.bool(False), EcalPreMixStage2 = cms.bool(False), UseLCcorrection = cms.untracked.bool(True), accumulatorType = cms.string('EcalDigiProducer'), apdAddToBarrel = cms.bool(False), apdDigiTag = cms.string('APD'), apdDoPEStats = cms.bool(True), apdNonlParms = cms.vdouble(1.48, -3.75, 1.81, 1.26, 2.0, 45, 1.0), apdSeparateDigi = cms.bool(True), apdShapeTau = cms.double(40.5), apdShapeTstart = cms.double(74.5), apdSimToPEHigh = cms.double(88200000.0), apdSimToPELow = cms.double(2450000.0), apdTimeOffWidth = cms.double(0.8), apdTimeOffset = cms.double(-13.5), applyConstantTerm = cms.bool(True), binOfMaximum = cms.int32(6), cosmicsPhase = cms.bool(False), cosmicsShift = cms.double(0.0), doEB = cms.bool(True), doEE = cms.bool(True), doENoise = cms.bool(True), doES = cms.bool(True), doESNoise = cms.bool(True), doFast = cms.bool(True), doPhotostatistics = cms.bool(True), hitsProducer = cms.string('g4SimHits'), makeDigiSimLinks = cms.untracked.bool(False), photoelectronsToAnalogBarrel = cms.double(0.000444444), photoelectronsToAnalogEndcap = cms.double(0.000555555), readoutFrameSize = cms.int32(10), samplingFactor = cms.double(1.0), simHitToPhotoelectronsBarrel = cms.double(2250.0), simHitToPhotoelectronsEndcap = cms.double(1800.0), syncPhase = cms.bool(True), timePhase = cms.double(0.0) ), hcal = cms.PSet( ChangeResponse = cms.bool(False), CorrFactorFile = cms.FileInPath('SimCalorimetry/HcalSimProducers/data/calor_corr01.txt'), DelivLuminosity = cms.double(0), HBHEUpgradeQIE = cms.bool(True), HBTuningParameter = cms.double(0.875), HEDarkening = cms.bool(False), HETuningParameter = cms.double(0.9), HFDarkening = cms.bool(False), HFQIE10 = cms.bool(False), HFQIE8 = cms.bool(True), HFTuningParameter = cms.double(1.025), HFUpgradeQIE = cms.bool(False), HOTuningParameter = cms.double(1), HcalPreMixStage1 = cms.bool(False), HcalPreMixStage2 = cms.bool(False), HcalReLabel = cms.PSet( RelabelHits = cms.untracked.bool(False), RelabelRules = cms.untracked.PSet( CorrectPhi = cms.untracked.bool(False), Eta1 = cms.untracked.vint32(1, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3), Eta16 = cms.untracked.vint32(1, 1, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3), Eta17 = cms.untracked.vint32(1, 1, 2, 2, 3, 3, 3, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5) ) ), accumulatorType = cms.string('HcalDigiProducer'), doEmpty = cms.bool(True), doHFWindow = cms.bool(False), doHPDNoise = cms.bool(False), doIonFeedback = cms.bool(True), doNoise = cms.bool(True), doThermalNoise = cms.bool(True), doTimeSlew = cms.bool(True), hb = cms.PSet( binOfMaximum = cms.int32(5), doPhotoStatistics = cms.bool(True), firstRing = cms.int32(1), photoelectronsToAnalog = cms.vdouble(0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305), readoutFrameSize = cms.int32(10), samplingFactors = cms.vdouble(125.44, 125.54, 125.32, 125.13, 124.46, 125.01, 125.22, 125.48, 124.45, 125.9, 125.83, 127.01, 126.82, 129.73, 131.83, 143.52), siPMCells = cms.vint32(), simHitToPhotoelectrons = cms.double(2000.0), syncPhase = cms.bool(True), timePhase = cms.double(6.0), timeSmearing = cms.bool(True) ), he = cms.PSet( binOfMaximum = cms.int32(5), doPhotoStatistics = cms.bool(True), firstRing = cms.int32(16), photoelectronsToAnalog = cms.vdouble(0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305), readoutFrameSize = cms.int32(10), samplingFactors = cms.vdouble(210.55, 197.93, 186.12, 189.64, 189.63, 190.28, 189.61, 189.6, 190.12, 191.22, 190.9, 193.06, 188.42, 188.42), simHitToPhotoelectrons = cms.double(2000.0), syncPhase = cms.bool(True), timePhase = cms.double(6.0), timeSmearing = cms.bool(True) ), hf1 = cms.PSet( binOfMaximum = cms.int32(3), doPhotoStatistics = cms.bool(True), photoelectronsToAnalog = cms.double(2.79), readoutFrameSize = cms.int32(4), samplingFactor = cms.double(0.383), simHitToPhotoelectrons = cms.double(6.0), syncPhase = cms.bool(True), timePhase = cms.double(14.0) ), hf2 = cms.PSet( binOfMaximum = cms.int32(3), doPhotoStatistics = cms.bool(True), photoelectronsToAnalog = cms.double(1.843), readoutFrameSize = cms.int32(4), samplingFactor = cms.double(0.368), simHitToPhotoelectrons = cms.double(6.0), syncPhase = cms.bool(True), timePhase = cms.double(13.0) ), hitsProducer = cms.string('g4SimHits'), ho = cms.PSet( binOfMaximum = cms.int32(5), doPhotoStatistics = cms.bool(True), firstRing = cms.int32(1), photoelectronsToAnalog = cms.vdouble(0.24, 0.24, 0.24, 0.24, 0.17, 0.17, 0.17, 0.17, 0.17, 0.17, 0.17, 0.17, 0.17, 0.17, 0.17), readoutFrameSize = cms.int32(10), samplingFactors = cms.vdouble(231.0, 231.0, 231.0, 231.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0), siPMCode = cms.int32(2), simHitToPhotoelectrons = cms.double(4000.0), syncPhase = cms.bool(True), timePhase = cms.double(5.0), timeSmearing = cms.bool(False) ), hoHamamatsu = cms.PSet( binOfMaximum = cms.int32(5), doPhotoStatistics = cms.bool(True), firstRing = cms.int32(1), photoelectronsToAnalog = cms.vdouble(3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0), pixels = cms.int32(960), readoutFrameSize = cms.int32(10), samplingFactors = cms.vdouble(231.0, 231.0, 231.0, 231.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0), siPMCode = cms.int32(2), simHitToPhotoelectrons = cms.double(4000.0), syncPhase = cms.bool(True), timePhase = cms.double(5.0), timeSmearing = cms.bool(False) ), hoZecotek = cms.PSet( binOfMaximum = cms.int32(5), doPhotoStatistics = cms.bool(True), firstRing = cms.int32(1), photoelectronsToAnalog = cms.vdouble(3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0), pixels = cms.int32(36000), readoutFrameSize = cms.int32(10), samplingFactors = cms.vdouble(231.0, 231.0, 231.0, 231.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0), siPMCode = cms.int32(2), simHitToPhotoelectrons = cms.double(4000.0), syncPhase = cms.bool(True), timePhase = cms.double(5.0), timeSmearing = cms.bool(False) ), injectTestHits = cms.bool(False), makeDigiSimLinks = cms.untracked.bool(False), minFCToDelay = cms.double(5.0), useOldHB = cms.bool(True), useOldHE = cms.bool(True), useOldHF = cms.bool(True), useOldHO = cms.bool(True), zdc = cms.PSet( binOfMaximum = cms.int32(5), doPhotoStatistics = cms.bool(True), photoelectronsToAnalog = cms.double(1.843), readoutFrameSize = cms.int32(10), samplingFactor = cms.double(1.0), simHitToPhotoelectrons = cms.double(6.0), syncPhase = cms.bool(True), timePhase = cms.double(-4.0) ) ), mergedtruth = cms.PSet( HepMCProductLabel = cms.InputTag("generatorSmeared"), accumulatorType = cms.string('TrackingTruthAccumulator'), allowDifferentSimHitProcesses = cms.bool(False), alwaysAddAncestors = cms.bool(True), createInitialVertexCollection = cms.bool(False), createMergedBremsstrahlung = cms.bool(True), createUnmergedCollection = cms.bool(True), genParticleCollection = cms.InputTag("genParticles"), ignoreTracksOutsideVolume = cms.bool(False), maximumPreviousBunchCrossing = cms.uint32(9999), maximumSubsequentBunchCrossing = cms.uint32(9999), removeDeadModules = cms.bool(False), select = cms.PSet( chargedOnlyTP = cms.bool(True), intimeOnlyTP = cms.bool(False), lipTP = cms.double(1000), maxRapidityTP = cms.double(5.0), minHitTP = cms.int32(0), minRapidityTP = cms.double(-5.0), pdgIdTP = cms.vint32(), ptMinTP = cms.double(0.1), signalOnlyTP = cms.bool(False), stableOnlyTP = cms.bool(False), tipTP = cms.double(1000) ), simHitCollections = cms.PSet( muon = cms.VInputTag(cms.InputTag("g4SimHits","MuonDTHits"), cms.InputTag("g4SimHits","MuonCSCHits"), cms.InputTag("g4SimHits","MuonRPCHits")), pixel = cms.VInputTag(cms.InputTag("g4SimHits","TrackerHitsPixelBarrelLowTof"), cms.InputTag("g4SimHits","TrackerHitsPixelBarrelHighTof"), cms.InputTag("g4SimHits","TrackerHitsPixelEndcapLowTof"), cms.InputTag("g4SimHits","TrackerHitsPixelEndcapHighTof")), tracker = cms.VInputTag(cms.InputTag("g4SimHits","TrackerHitsTIBLowTof"), cms.InputTag("g4SimHits","TrackerHitsTIBHighTof"), cms.InputTag("g4SimHits","TrackerHitsTIDLowTof"), cms.InputTag("g4SimHits","TrackerHitsTIDHighTof"), cms.InputTag("g4SimHits","TrackerHitsTOBLowTof"), cms.InputTag("g4SimHits","TrackerHitsTOBHighTof"), cms.InputTag("g4SimHits","TrackerHitsTECLowTof"), cms.InputTag("g4SimHits","TrackerHitsTECHighTof")) ), simTrackCollection = cms.InputTag("g4SimHits"), simVertexCollection = cms.InputTag("g4SimHits"), vertexDistanceCut = cms.double(0.003), volumeRadius = cms.double(120.0), volumeZ = cms.double(300.0) ), pixel = cms.PSet( AdcFullScale = cms.int32(255), AdcFullScaleStack = cms.int32(255), AddNoise = cms.bool(True), AddNoisyPixels = cms.bool(True), AddPixelInefficiency = cms.bool(True), AddThresholdSmearing = cms.bool(True), Alpha2Order = cms.bool(True), BPix_SignalResponse_p0 = cms.double(0.0035), BPix_SignalResponse_p1 = cms.double(1.23), BPix_SignalResponse_p2 = cms.double(97.4), BPix_SignalResponse_p3 = cms.double(126.5), ChargeVCALSmearing = cms.bool(True), DeadModules = cms.VPSet(cms.PSet( Dead_detID = cms.int32(302055940), Module = cms.string('tbmB') ), cms.PSet( Dead_detID = cms.int32(302059800), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(302121992), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(302123296), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(302125060), Module = cms.string('tbmA') ), cms.PSet( Dead_detID = cms.int32(302125076), Module = cms.string('tbmA') ), cms.PSet( Dead_detID = cms.int32(302126364), Module = cms.string('tbmB') ), cms.PSet( Dead_detID = cms.int32(302126596), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(302127136), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(302188552), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(302188824), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(302194200), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(302195232), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(302197252), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(302197784), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352453892), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352453896), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352453900), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352453904), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352454916), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352454920), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352454924), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352454928), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352455940), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352455944), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352455948), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352455952), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352454148), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352454152), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352454156), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352455172), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352455176), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352455180), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352456196), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352456200), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352456204), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(343999748), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(343999752), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(343999756), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(343999760), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344014340), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344014344), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344014348), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344019460), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344019464), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344019468), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344077572), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344077576), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344077580), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344077584), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344078596), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344078600), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344078604), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344078608), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344079620), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344079624), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344079628), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344079632), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344078852), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344078856), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344078860), Module = cms.string('whole') )), DeadModules_DB = cms.bool(True), DoPixelAging = cms.bool(False), ElectronPerAdc = cms.double(135.0), ElectronsPerVcal = cms.double(65.5), ElectronsPerVcal_Offset = cms.double(-414.0), FPix_SignalResponse_p0 = cms.double(0.0043), FPix_SignalResponse_p1 = cms.double(1.31), FPix_SignalResponse_p2 = cms.double(93.6), FPix_SignalResponse_p3 = cms.double(134.6), FirstStackLayer = cms.int32(5), GainSmearing = cms.double(0.0), LorentzAngle_DB = cms.bool(True), MissCalibrate = cms.bool(True), NoiseInElectrons = cms.double(175.0), NumPixelBarrel = cms.int32(3), NumPixelEndcap = cms.int32(2), OffsetSmearing = cms.double(0.0), PixGeometryType = cms.string('idealForDigi'), ReadoutNoiseInElec = cms.double(350.0), RoutList = cms.vstring('TrackerHitsPixelBarrelLowTof', 'TrackerHitsPixelBarrelHighTof', 'TrackerHitsPixelEndcapLowTof', 'TrackerHitsPixelEndcapHighTof'), TanLorentzAnglePerTesla_BPix = cms.double(0.106), TanLorentzAnglePerTesla_FPix = cms.double(0.106), ThresholdInElectrons_BPix = cms.double(3500.0), ThresholdInElectrons_BPix_L1 = cms.double(3500.0), ThresholdInElectrons_FPix = cms.double(3000.0), ThresholdSmearing_BPix = cms.double(245.0), ThresholdSmearing_BPix_L1 = cms.double(245.0), ThresholdSmearing_FPix = cms.double(210.0), TofLowerCut = cms.double(-12.5), TofUpperCut = cms.double(12.5), accumulatorType = cms.string('SiPixelDigitizer'), deltaProductionCut = cms.double(0.03), hitsProducer = cms.string('g4SimHits'), killModules = cms.bool(True), makeDigiSimLinks = cms.untracked.bool(True), useDB = cms.bool(False) ), puVtx = cms.PSet( accumulatorType = cms.string('PileupVertexAccumulator'), hitsProducer = cms.string('generator'), makeDigiSimLinks = cms.untracked.bool(False), vtxFallbackTag = cms.InputTag("generator"), vtxTag = cms.InputTag("generatorSmeared") ), strip = cms.PSet( APVSaturationFromHIP = cms.bool(True), APVSaturationProb = cms.double(0.001), APVpeakmode = cms.bool(False), AppliedVoltage = cms.double(300.0), BaselineShift = cms.bool(True), ChargeDistributionRMS = cms.double(6.5e-10), ChargeMobility = cms.double(310.0), CommonModeNoise = cms.bool(True), CosmicDelayShift = cms.untracked.double(0.0), CouplingConstantDecIB1 = cms.vdouble(0.7748, 0.0962, 0.0165), CouplingConstantDecIB2 = cms.vdouble(0.83, 0.0756, 0.0094), CouplingConstantDecOB1 = cms.vdouble(0.6871, 0.1222, 0.0342), CouplingConstantDecOB2 = cms.vdouble(0.725, 0.1102, 0.0273), CouplingConstantDecW1a = cms.vdouble(0.786, 0.093, 0.014), CouplingConstantDecW1b = cms.vdouble(0.822, 0.08, 0.009), CouplingConstantDecW2a = cms.vdouble(0.7962, 0.0914, 0.0104), CouplingConstantDecW2b = cms.vdouble(0.888, 0.05, 0.006), CouplingConstantDecW3a = cms.vdouble(0.8164, 0.09, 0.0018), CouplingConstantDecW3b = cms.vdouble(0.848, 0.06, 0.016), CouplingConstantDecW4 = cms.vdouble(0.876, 0.06, 0.002), CouplingConstantDecW5 = cms.vdouble(0.7565, 0.0913, 0.0304), CouplingConstantDecW6 = cms.vdouble(0.758, 0.093, 0.026), CouplingConstantDecW7 = cms.vdouble(0.7828, 0.0862, 0.0224), CouplingConstantPeakIB1 = cms.vdouble(0.9006, 0.0497), CouplingConstantPeakIB2 = cms.vdouble(0.9342, 0.0328), CouplingConstantPeakOB1 = cms.vdouble(0.8542, 0.0729), CouplingConstantPeakOB2 = cms.vdouble(0.8719, 0.064), CouplingConstantPeakW1a = cms.vdouble(0.996, 0.002), CouplingConstantPeakW1b = cms.vdouble(0.976, 0.012), CouplingConstantPeakW2a = cms.vdouble(1.0, 0.0), CouplingConstantPeakW2b = cms.vdouble(0.998, 0.001), CouplingConstantPeakW3a = cms.vdouble(0.996, 0.002), CouplingConstantPeakW3b = cms.vdouble(0.992, 0.004), CouplingConstantPeakW4 = cms.vdouble(0.992, 0.004), CouplingConstantPeakW5 = cms.vdouble(0.968, 0.016), CouplingConstantPeakW6 = cms.vdouble(0.972, 0.014), CouplingConstantPeakW7 = cms.vdouble(0.964, 0.018), DeltaProductionCut = cms.double(0.120425), DepletionVoltage = cms.double(170.0), DigiModeList = cms.PSet( PRDigi = cms.string('ProcessedRaw'), SCDigi = cms.string('ScopeMode'), VRDigi = cms.string('VirginRaw'), ZSDigi = cms.string('ZeroSuppressed') ), FedAlgorithm = cms.int32(4), FedAlgorithm_PM = cms.int32(4), Gain = cms.string(''), GeometryType = cms.string('idealForDigi'), GevPerElectron = cms.double(3.61e-09), Inefficiency = cms.double(0.0), LandauFluctuations = cms.bool(True), LorentzAngle = cms.string(''), Noise = cms.bool(True), NoiseSigmaThreshold = cms.double(2.0), PedestalsOffset = cms.double(128), PreMixingMode = cms.bool(False), ROUList = cms.vstring('TrackerHitsTIBLowTof', 'TrackerHitsTIBHighTof', 'TrackerHitsTIDLowTof', 'TrackerHitsTIDHighTof', 'TrackerHitsTOBLowTof', 'TrackerHitsTOBHighTof', 'TrackerHitsTECLowTof', 'TrackerHitsTECHighTof'), RealPedestals = cms.bool(True), SingleStripNoise = cms.bool(True), TOFCutForDeconvolution = cms.double(50.0), TOFCutForPeak = cms.double(100.0), Temperature = cms.double(273.0), TrackerConfigurationFromDB = cms.bool(False), ZeroSuppression = cms.bool(True), accumulatorType = cms.string('SiStripDigitizer'), chargeDivisionsPerStrip = cms.int32(10), cmnRMStec = cms.double(2.44), cmnRMStib = cms.double(5.92), cmnRMStid = cms.double(3.08), cmnRMStob = cms.double(1.08), electronPerAdcDec = cms.double(247.0), electronPerAdcPeak = cms.double(262.0), hitsProducer = cms.string('g4SimHits'), makeDigiSimLinks = cms.untracked.bool(True), noDiffusion = cms.bool(False) ) ) process.theMixObjects = cms.PSet( mixCH = cms.PSet( crossingFrames = cms.untracked.vstring(), input = cms.VInputTag(cms.InputTag("g4SimHits","CastorFI"), cms.InputTag("g4SimHits","EcalHitsEB"), cms.InputTag("g4SimHits","EcalHitsEE"), cms.InputTag("g4SimHits","EcalHitsES"), cms.InputTag("g4SimHits","HcalHits"), cms.InputTag("g4SimHits","ZDCHITS")), subdets = cms.vstring('CastorFI', 'EcalHitsEB', 'EcalHitsEE', 'EcalHitsES', 'HcalHits', 'ZDCHITS'), type = cms.string('PCaloHit') ), mixHepMC = cms.PSet( input = cms.VInputTag(cms.InputTag("generatorSmeared"), cms.InputTag("generator")), makeCrossingFrame = cms.untracked.bool(False), type = cms.string('HepMCProduct') ), mixSH = cms.PSet( crossingFrames = cms.untracked.vstring('MuonCSCHits', 'MuonDTHits', 'MuonRPCHits'), input = cms.VInputTag(cms.InputTag("g4SimHits","MuonCSCHits"), cms.InputTag("g4SimHits","MuonDTHits"), cms.InputTag("g4SimHits","MuonRPCHits"), cms.InputTag("g4SimHits","TrackerHitsPixelBarrelHighTof"), cms.InputTag("g4SimHits","TrackerHitsPixelBarrelLowTof"), cms.InputTag("g4SimHits","TrackerHitsPixelEndcapHighTof"), cms.InputTag("g4SimHits","TrackerHitsPixelEndcapLowTof"), cms.InputTag("g4SimHits","TrackerHitsTECHighTof"), cms.InputTag("g4SimHits","TrackerHitsTECLowTof"), cms.InputTag("g4SimHits","TrackerHitsTIBHighTof"), cms.InputTag("g4SimHits","TrackerHitsTIBLowTof"), cms.InputTag("g4SimHits","TrackerHitsTIDHighTof"), cms.InputTag("g4SimHits","TrackerHitsTIDLowTof"), cms.InputTag("g4SimHits","TrackerHitsTOBHighTof"), cms.InputTag("g4SimHits","TrackerHitsTOBLowTof")), subdets = cms.vstring('MuonCSCHits', 'MuonDTHits', 'MuonRPCHits', 'TrackerHitsPixelBarrelHighTof', 'TrackerHitsPixelBarrelLowTof', 'TrackerHitsPixelEndcapHighTof', 'TrackerHitsPixelEndcapLowTof', 'TrackerHitsTECHighTof', 'TrackerHitsTECLowTof', 'TrackerHitsTIBHighTof', 'TrackerHitsTIBLowTof', 'TrackerHitsTIDHighTof', 'TrackerHitsTIDLowTof', 'TrackerHitsTOBHighTof', 'TrackerHitsTOBLowTof'), type = cms.string('PSimHit') ), mixTracks = cms.PSet( input = cms.VInputTag(cms.InputTag("g4SimHits")), makeCrossingFrame = cms.untracked.bool(False), type = cms.string('SimTrack') ), mixVertices = cms.PSet( input = cms.VInputTag(cms.InputTag("g4SimHits")), makeCrossingFrame = cms.untracked.bool(False), type = cms.string('SimVertex') ) ) process.trackingParticles = cms.PSet( HepMCProductLabel = cms.InputTag("generatorSmeared"), accumulatorType = cms.string('TrackingTruthAccumulator'), allowDifferentSimHitProcesses = cms.bool(False), alwaysAddAncestors = cms.bool(True), createInitialVertexCollection = cms.bool(False), createMergedBremsstrahlung = cms.bool(True), createUnmergedCollection = cms.bool(True), genParticleCollection = cms.InputTag("genParticles"), ignoreTracksOutsideVolume = cms.bool(False), maximumPreviousBunchCrossing = cms.uint32(9999), maximumSubsequentBunchCrossing = cms.uint32(9999), removeDeadModules = cms.bool(False), select = cms.PSet( chargedOnlyTP = cms.bool(True), intimeOnlyTP = cms.bool(False), lipTP = cms.double(1000), maxRapidityTP = cms.double(5.0), minHitTP = cms.int32(0), minRapidityTP = cms.double(-5.0), pdgIdTP = cms.vint32(), ptMinTP = cms.double(0.1), signalOnlyTP = cms.bool(False), stableOnlyTP = cms.bool(False), tipTP = cms.double(1000) ), simHitCollections = cms.PSet( muon = cms.VInputTag(cms.InputTag("g4SimHits","MuonDTHits"), cms.InputTag("g4SimHits","MuonCSCHits"), cms.InputTag("g4SimHits","MuonRPCHits")), pixel = cms.VInputTag(cms.InputTag("g4SimHits","TrackerHitsPixelBarrelLowTof"), cms.InputTag("g4SimHits","TrackerHitsPixelBarrelHighTof"), cms.InputTag("g4SimHits","TrackerHitsPixelEndcapLowTof"), cms.InputTag("g4SimHits","TrackerHitsPixelEndcapHighTof")), tracker = cms.VInputTag(cms.InputTag("g4SimHits","TrackerHitsTIBLowTof"), cms.InputTag("g4SimHits","TrackerHitsTIBHighTof"), cms.InputTag("g4SimHits","TrackerHitsTIDLowTof"), cms.InputTag("g4SimHits","TrackerHitsTIDHighTof"), cms.InputTag("g4SimHits","TrackerHitsTOBLowTof"), cms.InputTag("g4SimHits","TrackerHitsTOBHighTof"), cms.InputTag("g4SimHits","TrackerHitsTECLowTof"), cms.InputTag("g4SimHits","TrackerHitsTECHighTof")) ), simTrackCollection = cms.InputTag("g4SimHits"), simVertexCollection = cms.InputTag("g4SimHits"), vertexDistanceCut = cms.double(0.003), volumeRadius = cms.double(120.0), volumeZ = cms.double(300.0) ) process.trackingParticlesSelection = cms.PSet( chargedOnlyTP = cms.bool(True), intimeOnlyTP = cms.bool(False), lipTP = cms.double(1000), maxRapidityTP = cms.double(5.0), minHitTP = cms.int32(0), minRapidityTP = cms.double(-5.0), pdgIdTP = cms.vint32(), ptMinTP = cms.double(0.1), signalOnlyTP = cms.bool(False), stableOnlyTP = cms.bool(False), tipTP = cms.double(1000) ) process.MEtoEDMConverter = cms.EDProducer("MEtoEDMConverter", Frequency = cms.untracked.int32(50), MEPathToSave = cms.untracked.string(''), Name = cms.untracked.string('MEtoEDMConverter'), Verbosity = cms.untracked.int32(0), deleteAfterCopy = cms.untracked.bool(True) ) process.VtxSmeared = cms.EDProducer("BetafuncEvtVtxGenerator", Alpha = cms.double(0.0), BetaStar = cms.double(65.0), Emittance = cms.double(5.411e-08), Phi = cms.double(0.0), SigmaZ = cms.double(5.3), TimeOffset = cms.double(0.0), X0 = cms.double(0.10482), Y0 = cms.double(0.16867), Z0 = cms.double(-1.0985), readDB = cms.bool(False), src = cms.InputTag("generator","unsmeared") ) process.ak1HiGenJets = cms.EDProducer("SubEventGenJetProducer", Active_Area_Repeats = cms.int32(5), GhostArea = cms.double(0.01), Ghost_EtaMax = cms.double(6.0), Rho_EtaMax = cms.double(4.5), doAreaFastjet = cms.bool(True), doPUOffsetCorr = cms.bool(False), doPVCorrection = cms.bool(False), doRhoFastjet = cms.bool(False), inputEMin = cms.double(0.0), inputEtMin = cms.double(0.0), jetAlgorithm = cms.string('AntiKt'), jetPtMin = cms.double(3.0), jetType = cms.string('GenJet'), maxBadEcalCells = cms.uint32(9999999), maxBadHcalCells = cms.uint32(9999999), maxProblematicEcalCells = cms.uint32(9999999), maxProblematicHcalCells = cms.uint32(9999999), maxRecoveredEcalCells = cms.uint32(9999999), maxRecoveredHcalCells = cms.uint32(9999999), minSeed = cms.uint32(14327), nSigmaPU = cms.double(1.0), rParam = cms.double(0.1), radiusPU = cms.double(0.5), src = cms.InputTag("genParticlesForJets"), srcPVs = cms.InputTag(""), useDeterministicSeed = cms.bool(True) ) process.ak2HiGenJets = cms.EDProducer("SubEventGenJetProducer", Active_Area_Repeats = cms.int32(5), GhostArea = cms.double(0.01), Ghost_EtaMax = cms.double(6.0), Rho_EtaMax = cms.double(4.5), doAreaFastjet = cms.bool(True), doPUOffsetCorr = cms.bool(False), doPVCorrection = cms.bool(False), doRhoFastjet = cms.bool(False), inputEMin = cms.double(0.0), inputEtMin = cms.double(0.0), jetAlgorithm = cms.string('AntiKt'), jetPtMin = cms.double(3.0), jetType = cms.string('GenJet'), maxBadEcalCells = cms.uint32(9999999), maxBadHcalCells = cms.uint32(9999999), maxProblematicEcalCells = cms.uint32(9999999), maxProblematicHcalCells = cms.uint32(9999999), maxRecoveredEcalCells = cms.uint32(9999999), maxRecoveredHcalCells = cms.uint32(9999999), minSeed = cms.uint32(14327), nSigmaPU = cms.double(1.0), rParam = cms.double(0.2), radiusPU = cms.double(0.5), src = cms.InputTag("genParticlesForJets"), srcPVs = cms.InputTag(""), useDeterministicSeed = cms.bool(True) ) process.ak3HiGenJets = cms.EDProducer("SubEventGenJetProducer", Active_Area_Repeats = cms.int32(5), GhostArea = cms.double(0.01), Ghost_EtaMax = cms.double(6.0), Rho_EtaMax = cms.double(4.5), doAreaFastjet = cms.bool(True), doPUOffsetCorr = cms.bool(False), doPVCorrection = cms.bool(False), doRhoFastjet = cms.bool(False), inputEMin = cms.double(0.0), inputEtMin = cms.double(0.0), jetAlgorithm = cms.string('AntiKt'), jetPtMin = cms.double(3.0), jetType = cms.string('GenJet'), maxBadEcalCells = cms.uint32(9999999), maxBadHcalCells = cms.uint32(9999999), maxProblematicEcalCells = cms.uint32(9999999), maxProblematicHcalCells = cms.uint32(9999999), maxRecoveredEcalCells = cms.uint32(9999999), maxRecoveredHcalCells = cms.uint32(9999999), minSeed = cms.uint32(14327), nSigmaPU = cms.double(1.0), rParam = cms.double(0.3), radiusPU = cms.double(0.5), src = cms.InputTag("genParticlesForJets"), srcPVs = cms.InputTag(""), useDeterministicSeed = cms.bool(True) ) process.ak4GenJets = cms.EDProducer("FastjetJetProducer", Active_Area_Repeats = cms.int32(5), GhostArea = cms.double(0.01), Ghost_EtaMax = cms.double(6.0), Rho_EtaMax = cms.double(4.5), doAreaFastjet = cms.bool(False), doPUOffsetCorr = cms.bool(False), doPVCorrection = cms.bool(False), doRhoFastjet = cms.bool(False), inputEMin = cms.double(0.0), inputEtMin = cms.double(0.0), jetAlgorithm = cms.string('AntiKt'), jetPtMin = cms.double(3.0), jetType = cms.string('GenJet'), maxBadEcalCells = cms.uint32(9999999), maxBadHcalCells = cms.uint32(9999999), maxProblematicEcalCells = cms.uint32(9999999), maxProblematicHcalCells = cms.uint32(9999999), maxRecoveredEcalCells = cms.uint32(9999999), maxRecoveredHcalCells = cms.uint32(9999999), minSeed = cms.uint32(14327), nSigmaPU = cms.double(1.0), rParam = cms.double(0.4), radiusPU = cms.double(0.5), src = cms.InputTag("genParticlesForJets"), srcPVs = cms.InputTag(""), useDeterministicSeed = cms.bool(True) ) process.ak4GenJetsNoMuNoNu = cms.EDProducer("FastjetJetProducer", Active_Area_Repeats = cms.int32(5), GhostArea = cms.double(0.01), Ghost_EtaMax = cms.double(6.0), Rho_EtaMax = cms.double(4.5), doAreaFastjet = cms.bool(False), doPUOffsetCorr = cms.bool(False), doPVCorrection = cms.bool(False), doRhoFastjet = cms.bool(False), inputEMin = cms.double(0.0), inputEtMin = cms.double(0.0), jetAlgorithm = cms.string('AntiKt'), jetPtMin = cms.double(3.0), jetType = cms.string('GenJet'), maxBadEcalCells = cms.uint32(9999999), maxBadHcalCells = cms.uint32(9999999), maxProblematicEcalCells = cms.uint32(9999999), maxProblematicHcalCells = cms.uint32(9999999), maxRecoveredEcalCells = cms.uint32(9999999), maxRecoveredHcalCells = cms.uint32(9999999), minSeed = cms.uint32(14327), nSigmaPU = cms.double(1.0), rParam = cms.double(0.4), radiusPU = cms.double(0.5), src = cms.InputTag("genParticlesForJetsNoMuNoNu"), srcPVs = cms.InputTag(""), useDeterministicSeed = cms.bool(True) ) process.ak4GenJetsNoNu = cms.EDProducer("FastjetJetProducer", Active_Area_Repeats = cms.int32(5), GhostArea = cms.double(0.01), Ghost_EtaMax = cms.double(6.0), Rho_EtaMax = cms.double(4.5), doAreaFastjet = cms.bool(False), doPUOffsetCorr = cms.bool(False), doPVCorrection = cms.bool(False), doRhoFastjet = cms.bool(False), inputEMin = cms.double(0.0), inputEtMin = cms.double(0.0), jetAlgorithm = cms.string('AntiKt'), jetPtMin = cms.double(3.0), jetType = cms.string('GenJet'), maxBadEcalCells = cms.uint32(9999999), maxBadHcalCells = cms.uint32(9999999), maxProblematicEcalCells = cms.uint32(9999999), maxProblematicHcalCells = cms.uint32(9999999), maxRecoveredEcalCells = cms.uint32(9999999), maxRecoveredHcalCells = cms.uint32(9999999), minSeed = cms.uint32(14327), nSigmaPU = cms.double(1.0), rParam = cms.double(0.4), radiusPU = cms.double(0.5), src = cms.InputTag("genParticlesForJetsNoNu"), srcPVs = cms.InputTag(""), useDeterministicSeed = cms.bool(True) ) process.ak4HiGenJets = cms.EDProducer("SubEventGenJetProducer", Active_Area_Repeats = cms.int32(5), GhostArea = cms.double(0.01), Ghost_EtaMax = cms.double(6.0), Rho_EtaMax = cms.double(4.5), doAreaFastjet = cms.bool(True), doPUOffsetCorr = cms.bool(False), doPVCorrection = cms.bool(False), doRhoFastjet = cms.bool(False), inputEMin = cms.double(0.0), inputEtMin = cms.double(0.0), jetAlgorithm = cms.string('AntiKt'), jetPtMin = cms.double(3.0), jetType = cms.string('GenJet'), maxBadEcalCells = cms.uint32(9999999), maxBadHcalCells = cms.uint32(9999999), maxProblematicEcalCells = cms.uint32(9999999), maxProblematicHcalCells = cms.uint32(9999999), maxRecoveredEcalCells = cms.uint32(9999999), maxRecoveredHcalCells = cms.uint32(9999999), minSeed = cms.uint32(14327), nSigmaPU = cms.double(1.0), rParam = cms.double(0.4), radiusPU = cms.double(0.5), src = cms.InputTag("genParticlesForJets"), srcPVs = cms.InputTag(""), useDeterministicSeed = cms.bool(True) ) process.ak5GenJets = cms.EDProducer("FastjetJetProducer", Active_Area_Repeats = cms.int32(5), GhostArea = cms.double(0.01), Ghost_EtaMax = cms.double(6.0), Rho_EtaMax = cms.double(4.5), doAreaFastjet = cms.bool(False), doPUOffsetCorr = cms.bool(False), doPVCorrection = cms.bool(False), doRhoFastjet = cms.bool(False), inputEMin = cms.double(0.0), inputEtMin = cms.double(0.0), jetAlgorithm = cms.string('AntiKt'), jetPtMin = cms.double(3.0), jetType = cms.string('GenJet'), maxBadEcalCells = cms.uint32(9999999), maxBadHcalCells = cms.uint32(9999999), maxProblematicEcalCells = cms.uint32(9999999), maxProblematicHcalCells = cms.uint32(9999999), maxRecoveredEcalCells = cms.uint32(9999999), maxRecoveredHcalCells = cms.uint32(9999999), minSeed = cms.uint32(14327), nSigmaPU = cms.double(1.0), rParam = cms.double(0.5), radiusPU = cms.double(0.5), src = cms.InputTag("genParticlesForJets"), srcPVs = cms.InputTag(""), useDeterministicSeed = cms.bool(True) ) process.ak5GenJetsNoMuNoNu = cms.EDProducer("FastjetJetProducer", Active_Area_Repeats = cms.int32(5), GhostArea = cms.double(0.01), Ghost_EtaMax = cms.double(6.0), Rho_EtaMax = cms.double(4.5), doAreaFastjet = cms.bool(False), doPUOffsetCorr = cms.bool(False), doPVCorrection = cms.bool(False), doRhoFastjet = cms.bool(False), inputEMin = cms.double(0.0), inputEtMin = cms.double(0.0), jetAlgorithm = cms.string('AntiKt'), jetPtMin = cms.double(3.0), jetType = cms.string('GenJet'), maxBadEcalCells = cms.uint32(9999999), maxBadHcalCells = cms.uint32(9999999), maxProblematicEcalCells = cms.uint32(9999999), maxProblematicHcalCells = cms.uint32(9999999), maxRecoveredEcalCells = cms.uint32(9999999), maxRecoveredHcalCells = cms.uint32(9999999), minSeed = cms.uint32(14327), nSigmaPU = cms.double(1.0), rParam = cms.double(0.5), radiusPU = cms.double(0.5), src = cms.InputTag("genParticlesForJetsNoMuNoNu"), srcPVs = cms.InputTag(""), useDeterministicSeed = cms.bool(True) ) process.ak5GenJetsNoNu = cms.EDProducer("FastjetJetProducer", Active_Area_Repeats = cms.int32(5), GhostArea = cms.double(0.01), Ghost_EtaMax = cms.double(6.0), Rho_EtaMax = cms.double(4.5), doAreaFastjet = cms.bool(False), doPUOffsetCorr = cms.bool(False), doPVCorrection = cms.bool(False), doRhoFastjet = cms.bool(False), inputEMin = cms.double(0.0), inputEtMin = cms.double(0.0), jetAlgorithm = cms.string('AntiKt'), jetPtMin = cms.double(3.0), jetType = cms.string('GenJet'), maxBadEcalCells = cms.uint32(9999999), maxBadHcalCells = cms.uint32(9999999), maxProblematicEcalCells = cms.uint32(9999999), maxProblematicHcalCells = cms.uint32(9999999), maxRecoveredEcalCells = cms.uint32(9999999), maxRecoveredHcalCells = cms.uint32(9999999), minSeed = cms.uint32(14327), nSigmaPU = cms.double(1.0), rParam = cms.double(0.5), radiusPU = cms.double(0.5), src = cms.InputTag("genParticlesForJetsNoNu"), srcPVs = cms.InputTag(""), useDeterministicSeed = cms.bool(True) ) process.ak5HiGenJets = cms.EDProducer("SubEventGenJetProducer", Active_Area_Repeats = cms.int32(5), GhostArea = cms.double(0.01), Ghost_EtaMax = cms.double(6.0), Rho_EtaMax = cms.double(4.5), doAreaFastjet = cms.bool(True), doPUOffsetCorr = cms.bool(False), doPVCorrection = cms.bool(False), doRhoFastjet = cms.bool(False), inputEMin = cms.double(0.0), inputEtMin = cms.double(0.0), jetAlgorithm = cms.string('AntiKt'), jetPtMin = cms.double(3.0), jetType = cms.string('GenJet'), maxBadEcalCells = cms.uint32(9999999), maxBadHcalCells = cms.uint32(9999999), maxProblematicEcalCells = cms.uint32(9999999), maxProblematicHcalCells = cms.uint32(9999999), maxRecoveredEcalCells = cms.uint32(9999999), maxRecoveredHcalCells = cms.uint32(9999999), minSeed = cms.uint32(14327), nSigmaPU = cms.double(1.0), rParam = cms.double(0.5), radiusPU = cms.double(0.5), src = cms.InputTag("genParticlesForJets"), srcPVs = cms.InputTag(""), useDeterministicSeed = cms.bool(True) ) process.ak6HiGenJets = cms.EDProducer("SubEventGenJetProducer", Active_Area_Repeats = cms.int32(5), GhostArea = cms.double(0.01), Ghost_EtaMax = cms.double(6.0), Rho_EtaMax = cms.double(4.5), doAreaFastjet = cms.bool(True), doPUOffsetCorr = cms.bool(False), doPVCorrection = cms.bool(False), doRhoFastjet = cms.bool(False), inputEMin = cms.double(0.0), inputEtMin = cms.double(0.0), jetAlgorithm = cms.string('AntiKt'), jetPtMin = cms.double(3.0), jetType = cms.string('GenJet'), maxBadEcalCells = cms.uint32(9999999), maxBadHcalCells = cms.uint32(9999999), maxProblematicEcalCells = cms.uint32(9999999), maxProblematicHcalCells = cms.uint32(9999999), maxRecoveredEcalCells = cms.uint32(9999999), maxRecoveredHcalCells = cms.uint32(9999999), minSeed = cms.uint32(14327), nSigmaPU = cms.double(1.0), rParam = cms.double(0.6), radiusPU = cms.double(0.5), src = cms.InputTag("genParticlesForJets"), srcPVs = cms.InputTag(""), useDeterministicSeed = cms.bool(True) ) process.ak7HiGenJets = cms.EDProducer("SubEventGenJetProducer", Active_Area_Repeats = cms.int32(5), GhostArea = cms.double(0.01), Ghost_EtaMax = cms.double(6.0), Rho_EtaMax = cms.double(4.5), doAreaFastjet = cms.bool(True), doPUOffsetCorr = cms.bool(False), doPVCorrection = cms.bool(False), doRhoFastjet = cms.bool(False), inputEMin = cms.double(0.0), inputEtMin = cms.double(0.0), jetAlgorithm = cms.string('AntiKt'), jetPtMin = cms.double(3.0), jetType = cms.string('GenJet'), maxBadEcalCells = cms.uint32(9999999), maxBadHcalCells = cms.uint32(9999999), maxProblematicEcalCells = cms.uint32(9999999), maxProblematicHcalCells = cms.uint32(9999999), maxRecoveredEcalCells = cms.uint32(9999999), maxRecoveredHcalCells = cms.uint32(9999999), minSeed = cms.uint32(14327), nSigmaPU = cms.double(1.0), rParam = cms.double(0.7), radiusPU = cms.double(0.5), src = cms.InputTag("genParticlesForJets"), srcPVs = cms.InputTag(""), useDeterministicSeed = cms.bool(True) ) process.ak8GenJets = cms.EDProducer("FastjetJetProducer", Active_Area_Repeats = cms.int32(5), GhostArea = cms.double(0.01), Ghost_EtaMax = cms.double(6.0), Rho_EtaMax = cms.double(4.5), doAreaFastjet = cms.bool(False), doPUOffsetCorr = cms.bool(False), doPVCorrection = cms.bool(False), doRhoFastjet = cms.bool(False), inputEMin = cms.double(0.0), inputEtMin = cms.double(0.0), jetAlgorithm = cms.string('AntiKt'), jetPtMin = cms.double(15.0), jetType = cms.string('GenJet'), maxBadEcalCells = cms.uint32(9999999), maxBadHcalCells = cms.uint32(9999999), maxProblematicEcalCells = cms.uint32(9999999), maxProblematicHcalCells = cms.uint32(9999999), maxRecoveredEcalCells = cms.uint32(9999999), maxRecoveredHcalCells = cms.uint32(9999999), minSeed = cms.uint32(14327), nSigmaPU = cms.double(1.0), rParam = cms.double(0.8), radiusPU = cms.double(0.5), src = cms.InputTag("genParticlesForJets"), srcPVs = cms.InputTag(""), useDeterministicSeed = cms.bool(True) ) process.ak8GenJetsNoMuNoNu = cms.EDProducer("FastjetJetProducer", Active_Area_Repeats = cms.int32(5), GhostArea = cms.double(0.01), Ghost_EtaMax = cms.double(6.0), Rho_EtaMax = cms.double(4.5), doAreaFastjet = cms.bool(False), doPUOffsetCorr = cms.bool(False), doPVCorrection = cms.bool(False), doRhoFastjet = cms.bool(False), inputEMin = cms.double(0.0), inputEtMin = cms.double(0.0), jetAlgorithm = cms.string('AntiKt'), jetPtMin = cms.double(15.0), jetType = cms.string('GenJet'), maxBadEcalCells = cms.uint32(9999999), maxBadHcalCells = cms.uint32(9999999), maxProblematicEcalCells = cms.uint32(9999999), maxProblematicHcalCells = cms.uint32(9999999), maxRecoveredEcalCells = cms.uint32(9999999), maxRecoveredHcalCells = cms.uint32(9999999), minSeed = cms.uint32(14327), nSigmaPU = cms.double(1.0), rParam = cms.double(0.8), radiusPU = cms.double(0.5), src = cms.InputTag("genParticlesForJetsNoMuNoNu"), srcPVs = cms.InputTag(""), useDeterministicSeed = cms.bool(True) ) process.ak8GenJetsNoNu = cms.EDProducer("FastjetJetProducer", Active_Area_Repeats = cms.int32(5), GhostArea = cms.double(0.01), Ghost_EtaMax = cms.double(6.0), Rho_EtaMax = cms.double(4.5), doAreaFastjet = cms.bool(False), doPUOffsetCorr = cms.bool(False), doPVCorrection = cms.bool(False), doRhoFastjet = cms.bool(False), inputEMin = cms.double(0.0), inputEtMin = cms.double(0.0), jetAlgorithm = cms.string('AntiKt'), jetPtMin = cms.double(15.0), jetType = cms.string('GenJet'), maxBadEcalCells = cms.uint32(9999999), maxBadHcalCells = cms.uint32(9999999), maxProblematicEcalCells = cms.uint32(9999999), maxProblematicHcalCells = cms.uint32(9999999), maxRecoveredEcalCells = cms.uint32(9999999), maxRecoveredHcalCells = cms.uint32(9999999), minSeed = cms.uint32(14327), nSigmaPU = cms.double(1.0), rParam = cms.double(0.8), radiusPU = cms.double(0.5), src = cms.InputTag("genParticlesForJetsNoNu"), srcPVs = cms.InputTag(""), useDeterministicSeed = cms.bool(True) ) process.ca4GenJets = cms.EDProducer("FastjetJetProducer", Active_Area_Repeats = cms.int32(5), GhostArea = cms.double(0.01), Ghost_EtaMax = cms.double(6.0), Rho_EtaMax = cms.double(4.5), doAreaFastjet = cms.bool(False), doPUOffsetCorr = cms.bool(False), doPVCorrection = cms.bool(False), doRhoFastjet = cms.bool(False), inputEMin = cms.double(0.0), inputEtMin = cms.double(0.0), jetAlgorithm = cms.string('CambridgeAachen'), jetPtMin = cms.double(3.0), jetType = cms.string('GenJet'), maxBadEcalCells = cms.uint32(9999999), maxBadHcalCells = cms.uint32(9999999), maxProblematicEcalCells = cms.uint32(9999999), maxProblematicHcalCells = cms.uint32(9999999), maxRecoveredEcalCells = cms.uint32(9999999), maxRecoveredHcalCells = cms.uint32(9999999), minSeed = cms.uint32(14327), nSigmaPU = cms.double(1.0), rParam = cms.double(0.4), radiusPU = cms.double(0.5), src = cms.InputTag("genParticlesForJets"), srcPVs = cms.InputTag(""), useDeterministicSeed = cms.bool(True) ) process.ca4GenJetsNoMuNoNu = cms.EDProducer("FastjetJetProducer", Active_Area_Repeats = cms.int32(5), GhostArea = cms.double(0.01), Ghost_EtaMax = cms.double(6.0), Rho_EtaMax = cms.double(4.5), doAreaFastjet = cms.bool(False), doPUOffsetCorr = cms.bool(False), doPVCorrection = cms.bool(False), doRhoFastjet = cms.bool(False), inputEMin = cms.double(0.0), inputEtMin = cms.double(0.0), jetAlgorithm = cms.string('CambridgeAachen'), jetPtMin = cms.double(3.0), jetType = cms.string('GenJet'), maxBadEcalCells = cms.uint32(9999999), maxBadHcalCells = cms.uint32(9999999), maxProblematicEcalCells = cms.uint32(9999999), maxProblematicHcalCells = cms.uint32(9999999), maxRecoveredEcalCells = cms.uint32(9999999), maxRecoveredHcalCells = cms.uint32(9999999), minSeed = cms.uint32(14327), nSigmaPU = cms.double(1.0), rParam = cms.double(0.4), radiusPU = cms.double(0.5), src = cms.InputTag("genParticlesForJetsNoMuNoNu"), srcPVs = cms.InputTag(""), useDeterministicSeed = cms.bool(True) ) process.ca4GenJetsNoNu = cms.EDProducer("FastjetJetProducer", Active_Area_Repeats = cms.int32(5), GhostArea = cms.double(0.01), Ghost_EtaMax = cms.double(6.0), Rho_EtaMax = cms.double(4.5), doAreaFastjet = cms.bool(False), doPUOffsetCorr = cms.bool(False), doPVCorrection = cms.bool(False), doRhoFastjet = cms.bool(False), inputEMin = cms.double(0.0), inputEtMin = cms.double(0.0), jetAlgorithm = cms.string('CambridgeAachen'), jetPtMin = cms.double(3.0), jetType = cms.string('GenJet'), maxBadEcalCells = cms.uint32(9999999), maxBadHcalCells = cms.uint32(9999999), maxProblematicEcalCells = cms.uint32(9999999), maxProblematicHcalCells = cms.uint32(9999999), maxRecoveredEcalCells = cms.uint32(9999999), maxRecoveredHcalCells = cms.uint32(9999999), minSeed = cms.uint32(14327), nSigmaPU = cms.double(1.0), rParam = cms.double(0.4), radiusPU = cms.double(0.5), src = cms.InputTag("genParticlesForJetsNoNu"), srcPVs = cms.InputTag(""), useDeterministicSeed = cms.bool(True) ) process.ca8GenJets = cms.EDProducer("FastjetJetProducer", Active_Area_Repeats = cms.int32(5), GhostArea = cms.double(0.01), Ghost_EtaMax = cms.double(6.0), Rho_EtaMax = cms.double(4.5), doAreaFastjet = cms.bool(False), doPUOffsetCorr = cms.bool(False), doPVCorrection = cms.bool(False), doRhoFastjet = cms.bool(False), inputEMin = cms.double(0.0), inputEtMin = cms.double(0.0), jetAlgorithm = cms.string('CambridgeAachen'), jetPtMin = cms.double(3.0), jetType = cms.string('GenJet'), maxBadEcalCells = cms.uint32(9999999), maxBadHcalCells = cms.uint32(9999999), maxProblematicEcalCells = cms.uint32(9999999), maxProblematicHcalCells = cms.uint32(9999999), maxRecoveredEcalCells = cms.uint32(9999999), maxRecoveredHcalCells = cms.uint32(9999999), minSeed = cms.uint32(14327), nSigmaPU = cms.double(1.0), rParam = cms.double(0.8), radiusPU = cms.double(0.5), src = cms.InputTag("genParticlesForJets"), srcPVs = cms.InputTag(""), useDeterministicSeed = cms.bool(True) ) process.ca8GenJetsNoMuNoNu = cms.EDProducer("FastjetJetProducer", Active_Area_Repeats = cms.int32(5), GhostArea = cms.double(0.01), Ghost_EtaMax = cms.double(6.0), Rho_EtaMax = cms.double(4.5), doAreaFastjet = cms.bool(False), doPUOffsetCorr = cms.bool(False), doPVCorrection = cms.bool(False), doRhoFastjet = cms.bool(False), inputEMin = cms.double(0.0), inputEtMin = cms.double(0.0), jetAlgorithm = cms.string('CambridgeAachen'), jetPtMin = cms.double(3.0), jetType = cms.string('GenJet'), maxBadEcalCells = cms.uint32(9999999), maxBadHcalCells = cms.uint32(9999999), maxProblematicEcalCells = cms.uint32(9999999), maxProblematicHcalCells = cms.uint32(9999999), maxRecoveredEcalCells = cms.uint32(9999999), maxRecoveredHcalCells = cms.uint32(9999999), minSeed = cms.uint32(14327), nSigmaPU = cms.double(1.0), rParam = cms.double(0.8), radiusPU = cms.double(0.5), src = cms.InputTag("genParticlesForJetsNoMuNoNu"), srcPVs = cms.InputTag(""), useDeterministicSeed = cms.bool(True) ) process.ca8GenJetsNoNu = cms.EDProducer("FastjetJetProducer", Active_Area_Repeats = cms.int32(5), GhostArea = cms.double(0.01), Ghost_EtaMax = cms.double(6.0), Rho_EtaMax = cms.double(4.5), doAreaFastjet = cms.bool(False), doPUOffsetCorr = cms.bool(False), doPVCorrection = cms.bool(False), doRhoFastjet = cms.bool(False), inputEMin = cms.double(0.0), inputEtMin = cms.double(0.0), jetAlgorithm = cms.string('CambridgeAachen'), jetPtMin = cms.double(3.0), jetType = cms.string('GenJet'), maxBadEcalCells = cms.uint32(9999999), maxBadHcalCells = cms.uint32(9999999), maxProblematicEcalCells = cms.uint32(9999999), maxProblematicHcalCells = cms.uint32(9999999), maxRecoveredEcalCells = cms.uint32(9999999), maxRecoveredHcalCells = cms.uint32(9999999), minSeed = cms.uint32(14327), nSigmaPU = cms.double(1.0), rParam = cms.double(0.8), radiusPU = cms.double(0.5), src = cms.InputTag("genParticlesForJetsNoNu"), srcPVs = cms.InputTag(""), useDeterministicSeed = cms.bool(True) ) process.genCandidatesForMET = cms.EDProducer("InputGenJetsParticleSelector", excludeFromResonancePids = cms.vuint32(), excludeResonances = cms.bool(False), ignoreParticleIDs = cms.vuint32(1000022, 1000012, 1000014, 1000016, 2000012, 2000014, 2000016, 1000039, 5100039, 4000012, 4000014, 4000016, 9900012, 9900014, 9900016, 39, 12, 13, 14, 16), partonicFinalState = cms.bool(False), src = cms.InputTag("genParticles"), tausAsJets = cms.bool(False) ) process.genFilterEfficiencyProducer = cms.EDProducer("GenFilterEfficiencyProducer", filterPath = cms.string('generation_step') ) process.genMetCalo = cms.EDProducer("GenMETProducer", alias = cms.string('genMetCalo'), applyFiducialThresholdForFractions = cms.bool(False), globalThreshold = cms.double(0.0), onlyFiducialParticles = cms.bool(True), src = cms.InputTag("genCandidatesForMET"), usePt = cms.bool(True) ) process.genMetCaloAndNonPrompt = cms.EDProducer("GenMETProducer", alias = cms.string('genMetCaloAndNonPrompt'), applyFiducialThresholdForFractions = cms.bool(False), globalThreshold = cms.double(0.0), onlyFiducialParticles = cms.bool(True), src = cms.InputTag("genParticlesForJets"), usePt = cms.bool(True) ) process.genMetIC5GenJets = cms.EDProducer("ElseMETProducer", InputType = cms.string('CandidateCollection'), METType = cms.string('MET'), alias = cms.string('genMetIC5GenJets'), applyFiducialThresholdForFractions = cms.bool(False), globalThreshold = cms.double(0.0), noHF = cms.bool(False), src = cms.InputTag("iterativeCone5GenJets"), usePt = cms.bool(True) ) process.genMetTrue = cms.EDProducer("GenMETProducer", alias = cms.string('genMetTrue'), applyFiducialThresholdForFractions = cms.bool(False), globalThreshold = cms.double(0.0), onlyFiducialParticles = cms.bool(False), src = cms.InputTag("genParticlesForMETAllVisible"), usePt = cms.bool(True) ) process.genParticleCandidates = cms.EDProducer("FastGenParticleCandidateProducer", abortOnUnknownPDGCode = cms.untracked.bool(False), saveBarCodes = cms.untracked.bool(False), src = cms.InputTag("generatorSmeared") ) process.genParticles = cms.EDProducer("GenParticleProducer", abortOnUnknownPDGCode = cms.untracked.bool(False), saveBarCodes = cms.untracked.bool(True), src = cms.InputTag("generatorSmeared") ) process.genParticlesForJets = cms.EDProducer("InputGenJetsParticleSelector", excludeFromResonancePids = cms.vuint32(12, 13, 14, 16), excludeResonances = cms.bool(False), ignoreParticleIDs = cms.vuint32(1000022, 1000012, 1000014, 1000016, 2000012, 2000014, 2000016, 1000039, 5100039, 4000012, 4000014, 4000016, 9900012, 9900014, 9900016, 39), partonicFinalState = cms.bool(False), src = cms.InputTag("genParticles"), tausAsJets = cms.bool(False) ) process.genParticlesForJetsNoMuNoNu = cms.EDProducer("InputGenJetsParticleSelector", excludeFromResonancePids = cms.vuint32(12, 13, 14, 16), excludeResonances = cms.bool(False), ignoreParticleIDs = cms.vuint32(1000022, 1000012, 1000014, 1000016, 2000012, 2000014, 2000016, 1000039, 5100039, 4000012, 4000014, 4000016, 9900012, 9900014, 9900016, 39, 12, 13, 14, 16), partonicFinalState = cms.bool(False), src = cms.InputTag("genParticles"), tausAsJets = cms.bool(False) ) process.genParticlesForJetsNoNu = cms.EDProducer("InputGenJetsParticleSelector", excludeFromResonancePids = cms.vuint32(12, 13, 14, 16), excludeResonances = cms.bool(False), ignoreParticleIDs = cms.vuint32(1000022, 1000012, 1000014, 1000016, 2000012, 2000014, 2000016, 1000039, 5100039, 4000012, 4000014, 4000016, 9900012, 9900014, 9900016, 39, 12, 14, 16), partonicFinalState = cms.bool(False), src = cms.InputTag("genParticles"), tausAsJets = cms.bool(False) ) process.genParticlesForMETAllVisible = cms.EDProducer("InputGenJetsParticleSelector", excludeFromResonancePids = cms.vuint32(), excludeResonances = cms.bool(False), ignoreParticleIDs = cms.vuint32(1000022, 1000012, 1000014, 1000016, 2000012, 2000014, 2000016, 1000039, 5100039, 4000012, 4000014, 4000016, 9900012, 9900014, 9900016, 39, 12, 14, 16), partonicFinalState = cms.bool(False), src = cms.InputTag("genParticles"), tausAsJets = cms.bool(False) ) process.generatorSmeared = cms.EDProducer("GeneratorSmearedProducer", currentTag = cms.untracked.InputTag("VtxSmeared"), previousTag = cms.untracked.InputTag("generator") ) process.gk5GenJets = cms.EDProducer("FastjetJetProducer", Active_Area_Repeats = cms.int32(5), GhostArea = cms.double(0.01), Ghost_EtaMax = cms.double(6.0), Rho_EtaMax = cms.double(4.5), doAreaFastjet = cms.bool(False), doPUOffsetCorr = cms.bool(False), doPVCorrection = cms.bool(False), doRhoFastjet = cms.bool(False), inputEMin = cms.double(0.0), inputEtMin = cms.double(0.0), jetAlgorithm = cms.string('GeneralizedKt'), jetPtMin = cms.double(3.0), jetType = cms.string('GenJet'), maxBadEcalCells = cms.uint32(9999999), maxBadHcalCells = cms.uint32(9999999), maxProblematicEcalCells = cms.uint32(9999999), maxProblematicHcalCells = cms.uint32(9999999), maxRecoveredEcalCells = cms.uint32(9999999), maxRecoveredHcalCells = cms.uint32(9999999), minSeed = cms.uint32(14327), nSigmaPU = cms.double(1.0), rParam = cms.double(0.5), radiusPU = cms.double(0.5), src = cms.InputTag("genParticlesForJets"), srcPVs = cms.InputTag(""), useDeterministicSeed = cms.bool(True) ) process.gk5GenJetsNoMuNoNu = cms.EDProducer("FastjetJetProducer", Active_Area_Repeats = cms.int32(5), GhostArea = cms.double(0.01), Ghost_EtaMax = cms.double(6.0), Rho_EtaMax = cms.double(4.5), doAreaFastjet = cms.bool(False), doPUOffsetCorr = cms.bool(False), doPVCorrection = cms.bool(False), doRhoFastjet = cms.bool(False), inputEMin = cms.double(0.0), inputEtMin = cms.double(0.0), jetAlgorithm = cms.string('GeneralizedKt'), jetPtMin = cms.double(3.0), jetType = cms.string('GenJet'), maxBadEcalCells = cms.uint32(9999999), maxBadHcalCells = cms.uint32(9999999), maxProblematicEcalCells = cms.uint32(9999999), maxProblematicHcalCells = cms.uint32(9999999), maxRecoveredEcalCells = cms.uint32(9999999), maxRecoveredHcalCells = cms.uint32(9999999), minSeed = cms.uint32(14327), nSigmaPU = cms.double(1.0), rParam = cms.double(0.5), radiusPU = cms.double(0.5), src = cms.InputTag("genParticlesForJetsNoMuNoNu"), srcPVs = cms.InputTag(""), useDeterministicSeed = cms.bool(True) ) process.gk5GenJetsNoNu = cms.EDProducer("FastjetJetProducer", Active_Area_Repeats = cms.int32(5), GhostArea = cms.double(0.01), Ghost_EtaMax = cms.double(6.0), Rho_EtaMax = cms.double(4.5), doAreaFastjet = cms.bool(False), doPUOffsetCorr = cms.bool(False), doPVCorrection = cms.bool(False), doRhoFastjet = cms.bool(False), inputEMin = cms.double(0.0), inputEtMin = cms.double(0.0), jetAlgorithm = cms.string('GeneralizedKt'), jetPtMin = cms.double(3.0), jetType = cms.string('GenJet'), maxBadEcalCells = cms.uint32(9999999), maxBadHcalCells = cms.uint32(9999999), maxProblematicEcalCells = cms.uint32(9999999), maxProblematicHcalCells = cms.uint32(9999999), maxRecoveredEcalCells = cms.uint32(9999999), maxRecoveredHcalCells = cms.uint32(9999999), minSeed = cms.uint32(14327), nSigmaPU = cms.double(1.0), rParam = cms.double(0.5), radiusPU = cms.double(0.5), src = cms.InputTag("genParticlesForJetsNoNu"), srcPVs = cms.InputTag(""), useDeterministicSeed = cms.bool(True) ) process.gk8GenJets = cms.EDProducer("FastjetJetProducer", Active_Area_Repeats = cms.int32(5), GhostArea = cms.double(0.01), Ghost_EtaMax = cms.double(6.0), Rho_EtaMax = cms.double(4.5), doAreaFastjet = cms.bool(False), doPUOffsetCorr = cms.bool(False), doPVCorrection = cms.bool(False), doRhoFastjet = cms.bool(False), inputEMin = cms.double(0.0), inputEtMin = cms.double(0.0), jetAlgorithm = cms.string('GeneralizedKt'), jetPtMin = cms.double(3.0), jetType = cms.string('GenJet'), maxBadEcalCells = cms.uint32(9999999), maxBadHcalCells = cms.uint32(9999999), maxProblematicEcalCells = cms.uint32(9999999), maxProblematicHcalCells = cms.uint32(9999999), maxRecoveredEcalCells = cms.uint32(9999999), maxRecoveredHcalCells = cms.uint32(9999999), minSeed = cms.uint32(14327), nSigmaPU = cms.double(1.0), rParam = cms.double(0.8), radiusPU = cms.double(0.5), src = cms.InputTag("genParticlesForJets"), srcPVs = cms.InputTag(""), useDeterministicSeed = cms.bool(True) ) process.gk8GenJetsNoMuNoNu = cms.EDProducer("FastjetJetProducer", Active_Area_Repeats = cms.int32(5), GhostArea = cms.double(0.01), Ghost_EtaMax = cms.double(6.0), Rho_EtaMax = cms.double(4.5), doAreaFastjet = cms.bool(False), doPUOffsetCorr = cms.bool(False), doPVCorrection = cms.bool(False), doRhoFastjet = cms.bool(False), inputEMin = cms.double(0.0), inputEtMin = cms.double(0.0), jetAlgorithm = cms.string('GeneralizedKt'), jetPtMin = cms.double(3.0), jetType = cms.string('GenJet'), maxBadEcalCells = cms.uint32(9999999), maxBadHcalCells = cms.uint32(9999999), maxProblematicEcalCells = cms.uint32(9999999), maxProblematicHcalCells = cms.uint32(9999999), maxRecoveredEcalCells = cms.uint32(9999999), maxRecoveredHcalCells = cms.uint32(9999999), minSeed = cms.uint32(14327), nSigmaPU = cms.double(1.0), rParam = cms.double(0.8), radiusPU = cms.double(0.5), src = cms.InputTag("genParticlesForJetsNoMuNoNu"), srcPVs = cms.InputTag(""), useDeterministicSeed = cms.bool(True) ) process.gk8GenJetsNoNu = cms.EDProducer("FastjetJetProducer", Active_Area_Repeats = cms.int32(5), GhostArea = cms.double(0.01), Ghost_EtaMax = cms.double(6.0), Rho_EtaMax = cms.double(4.5), doAreaFastjet = cms.bool(False), doPUOffsetCorr = cms.bool(False), doPVCorrection = cms.bool(False), doRhoFastjet = cms.bool(False), inputEMin = cms.double(0.0), inputEtMin = cms.double(0.0), jetAlgorithm = cms.string('GeneralizedKt'), jetPtMin = cms.double(3.0), jetType = cms.string('GenJet'), maxBadEcalCells = cms.uint32(9999999), maxBadHcalCells = cms.uint32(9999999), maxProblematicEcalCells = cms.uint32(9999999), maxProblematicHcalCells = cms.uint32(9999999), maxRecoveredEcalCells = cms.uint32(9999999), maxRecoveredHcalCells = cms.uint32(9999999), minSeed = cms.uint32(14327), nSigmaPU = cms.double(1.0), rParam = cms.double(0.8), radiusPU = cms.double(0.5), src = cms.InputTag("genParticlesForJetsNoNu"), srcPVs = cms.InputTag(""), useDeterministicSeed = cms.bool(True) ) process.iterativeCone5GenJets = cms.EDProducer("FastjetJetProducer", Active_Area_Repeats = cms.int32(5), GhostArea = cms.double(0.01), Ghost_EtaMax = cms.double(6.0), Rho_EtaMax = cms.double(4.5), doAreaFastjet = cms.bool(False), doPUOffsetCorr = cms.bool(False), doPVCorrection = cms.bool(False), doRhoFastjet = cms.bool(False), inputEMin = cms.double(0.0), inputEtMin = cms.double(0.0), jetAlgorithm = cms.string('IterativeCone'), jetPtMin = cms.double(3.0), jetType = cms.string('GenJet'), maxBadEcalCells = cms.uint32(9999999), maxBadHcalCells = cms.uint32(9999999), maxProblematicEcalCells = cms.uint32(9999999), maxProblematicHcalCells = cms.uint32(9999999), maxRecoveredEcalCells = cms.uint32(9999999), maxRecoveredHcalCells = cms.uint32(9999999), minSeed = cms.uint32(14327), nSigmaPU = cms.double(1.0), rParam = cms.double(0.5), radiusPU = cms.double(0.5), src = cms.InputTag("genParticlesForJets"), srcPVs = cms.InputTag(""), useDeterministicSeed = cms.bool(True) ) process.iterativeCone5GenJetsNoMuNoNu = cms.EDProducer("FastjetJetProducer", Active_Area_Repeats = cms.int32(5), GhostArea = cms.double(0.01), Ghost_EtaMax = cms.double(6.0), Rho_EtaMax = cms.double(4.5), doAreaFastjet = cms.bool(False), doPUOffsetCorr = cms.bool(False), doPVCorrection = cms.bool(False), doRhoFastjet = cms.bool(False), inputEMin = cms.double(0.0), inputEtMin = cms.double(0.0), jetAlgorithm = cms.string('IterativeCone'), jetPtMin = cms.double(3.0), jetType = cms.string('GenJet'), maxBadEcalCells = cms.uint32(9999999), maxBadHcalCells = cms.uint32(9999999), maxProblematicEcalCells = cms.uint32(9999999), maxProblematicHcalCells = cms.uint32(9999999), maxRecoveredEcalCells = cms.uint32(9999999), maxRecoveredHcalCells = cms.uint32(9999999), minSeed = cms.uint32(14327), nSigmaPU = cms.double(1.0), rParam = cms.double(0.5), radiusPU = cms.double(0.5), src = cms.InputTag("genParticlesForJetsNoMuNoNu"), srcPVs = cms.InputTag(""), useDeterministicSeed = cms.bool(True) ) process.iterativeCone5GenJetsNoNu = cms.EDProducer("FastjetJetProducer", Active_Area_Repeats = cms.int32(5), GhostArea = cms.double(0.01), Ghost_EtaMax = cms.double(6.0), Rho_EtaMax = cms.double(4.5), doAreaFastjet = cms.bool(False), doPUOffsetCorr = cms.bool(False), doPVCorrection = cms.bool(False), doRhoFastjet = cms.bool(False), inputEMin = cms.double(0.0), inputEtMin = cms.double(0.0), jetAlgorithm = cms.string('IterativeCone'), jetPtMin = cms.double(3.0), jetType = cms.string('GenJet'), maxBadEcalCells = cms.uint32(9999999), maxBadHcalCells = cms.uint32(9999999), maxProblematicEcalCells = cms.uint32(9999999), maxProblematicHcalCells = cms.uint32(9999999), maxRecoveredEcalCells = cms.uint32(9999999), maxRecoveredHcalCells = cms.uint32(9999999), minSeed = cms.uint32(14327), nSigmaPU = cms.double(1.0), rParam = cms.double(0.5), radiusPU = cms.double(0.5), src = cms.InputTag("genParticlesForJetsNoNu"), srcPVs = cms.InputTag(""), useDeterministicSeed = cms.bool(True) ) process.iterativeCone5HiGenJets = cms.EDProducer("SubEventGenJetProducer", Active_Area_Repeats = cms.int32(5), GhostArea = cms.double(0.01), Ghost_EtaMax = cms.double(6.0), Rho_EtaMax = cms.double(4.5), doAreaFastjet = cms.bool(True), doPUOffsetCorr = cms.bool(False), doPVCorrection = cms.bool(False), doRhoFastjet = cms.bool(False), inputEMin = cms.double(0.0), inputEtMin = cms.double(0.0), jetAlgorithm = cms.string('IterativeCone'), jetPtMin = cms.double(3.0), jetType = cms.string('GenJet'), maxBadEcalCells = cms.uint32(9999999), maxBadHcalCells = cms.uint32(9999999), maxProblematicEcalCells = cms.uint32(9999999), maxProblematicHcalCells = cms.uint32(9999999), maxRecoveredEcalCells = cms.uint32(9999999), maxRecoveredHcalCells = cms.uint32(9999999), minSeed = cms.uint32(14327), nSigmaPU = cms.double(1.0), rParam = cms.double(0.5), radiusPU = cms.double(0.5), src = cms.InputTag("genParticlesForJets"), srcPVs = cms.InputTag(""), useDeterministicSeed = cms.bool(True) ) process.iterativeCone7HiGenJets = cms.EDProducer("SubEventGenJetProducer", Active_Area_Repeats = cms.int32(5), GhostArea = cms.double(0.01), Ghost_EtaMax = cms.double(6.0), Rho_EtaMax = cms.double(4.5), doAreaFastjet = cms.bool(True), doPUOffsetCorr = cms.bool(False), doPVCorrection = cms.bool(False), doRhoFastjet = cms.bool(False), inputEMin = cms.double(0.0), inputEtMin = cms.double(0.0), jetAlgorithm = cms.string('IterativeCone'), jetPtMin = cms.double(3.0), jetType = cms.string('GenJet'), maxBadEcalCells = cms.uint32(9999999), maxBadHcalCells = cms.uint32(9999999), maxProblematicEcalCells = cms.uint32(9999999), maxProblematicHcalCells = cms.uint32(9999999), maxRecoveredEcalCells = cms.uint32(9999999), maxRecoveredHcalCells = cms.uint32(9999999), minSeed = cms.uint32(14327), nSigmaPU = cms.double(1.0), rParam = cms.double(0.7), radiusPU = cms.double(0.5), src = cms.InputTag("genParticlesForJets"), srcPVs = cms.InputTag(""), useDeterministicSeed = cms.bool(True) ) process.kt4GenJets = cms.EDProducer("FastjetJetProducer", Active_Area_Repeats = cms.int32(5), GhostArea = cms.double(0.01), Ghost_EtaMax = cms.double(6.0), Rho_EtaMax = cms.double(4.5), doAreaFastjet = cms.bool(False), doPUOffsetCorr = cms.bool(False), doPVCorrection = cms.bool(False), doRhoFastjet = cms.bool(False), inputEMin = cms.double(0.0), inputEtMin = cms.double(0.0), jetAlgorithm = cms.string('Kt'), jetPtMin = cms.double(3.0), jetType = cms.string('GenJet'), maxBadEcalCells = cms.uint32(9999999), maxBadHcalCells = cms.uint32(9999999), maxProblematicEcalCells = cms.uint32(9999999), maxProblematicHcalCells = cms.uint32(9999999), maxRecoveredEcalCells = cms.uint32(9999999), maxRecoveredHcalCells = cms.uint32(9999999), minSeed = cms.uint32(14327), nSigmaPU = cms.double(1.0), rParam = cms.double(0.4), radiusPU = cms.double(0.5), src = cms.InputTag("genParticlesForJets"), srcPVs = cms.InputTag(""), useDeterministicSeed = cms.bool(True) ) process.kt4GenJetsNoMuNoNu = cms.EDProducer("FastjetJetProducer", Active_Area_Repeats = cms.int32(5), GhostArea = cms.double(0.01), Ghost_EtaMax = cms.double(6.0), Rho_EtaMax = cms.double(4.5), doAreaFastjet = cms.bool(False), doPUOffsetCorr = cms.bool(False), doPVCorrection = cms.bool(False), doRhoFastjet = cms.bool(False), inputEMin = cms.double(0.0), inputEtMin = cms.double(0.0), jetAlgorithm = cms.string('Kt'), jetPtMin = cms.double(3.0), jetType = cms.string('GenJet'), maxBadEcalCells = cms.uint32(9999999), maxBadHcalCells = cms.uint32(9999999), maxProblematicEcalCells = cms.uint32(9999999), maxProblematicHcalCells = cms.uint32(9999999), maxRecoveredEcalCells = cms.uint32(9999999), maxRecoveredHcalCells = cms.uint32(9999999), minSeed = cms.uint32(14327), nSigmaPU = cms.double(1.0), rParam = cms.double(0.4), radiusPU = cms.double(0.5), src = cms.InputTag("genParticlesForJetsNoMuNoNu"), srcPVs = cms.InputTag(""), useDeterministicSeed = cms.bool(True) ) process.kt4GenJetsNoNu = cms.EDProducer("FastjetJetProducer", Active_Area_Repeats = cms.int32(5), GhostArea = cms.double(0.01), Ghost_EtaMax = cms.double(6.0), Rho_EtaMax = cms.double(4.5), doAreaFastjet = cms.bool(False), doPUOffsetCorr = cms.bool(False), doPVCorrection = cms.bool(False), doRhoFastjet = cms.bool(False), inputEMin = cms.double(0.0), inputEtMin = cms.double(0.0), jetAlgorithm = cms.string('Kt'), jetPtMin = cms.double(3.0), jetType = cms.string('GenJet'), maxBadEcalCells = cms.uint32(9999999), maxBadHcalCells = cms.uint32(9999999), maxProblematicEcalCells = cms.uint32(9999999), maxProblematicHcalCells = cms.uint32(9999999), maxRecoveredEcalCells = cms.uint32(9999999), maxRecoveredHcalCells = cms.uint32(9999999), minSeed = cms.uint32(14327), nSigmaPU = cms.double(1.0), rParam = cms.double(0.4), radiusPU = cms.double(0.5), src = cms.InputTag("genParticlesForJetsNoNu"), srcPVs = cms.InputTag(""), useDeterministicSeed = cms.bool(True) ) process.kt4HiGenJets = cms.EDProducer("SubEventGenJetProducer", Active_Area_Repeats = cms.int32(5), GhostArea = cms.double(0.01), Ghost_EtaMax = cms.double(6.0), Rho_EtaMax = cms.double(4.5), doAreaFastjet = cms.bool(True), doPUOffsetCorr = cms.bool(False), doPVCorrection = cms.bool(False), doRhoFastjet = cms.bool(False), inputEMin = cms.double(0.0), inputEtMin = cms.double(0.0), jetAlgorithm = cms.string('Kt'), jetPtMin = cms.double(3.0), jetType = cms.string('GenJet'), maxBadEcalCells = cms.uint32(9999999), maxBadHcalCells = cms.uint32(9999999), maxProblematicEcalCells = cms.uint32(9999999), maxProblematicHcalCells = cms.uint32(9999999), maxRecoveredEcalCells = cms.uint32(9999999), maxRecoveredHcalCells = cms.uint32(9999999), minSeed = cms.uint32(14327), nSigmaPU = cms.double(1.0), rParam = cms.double(0.4), radiusPU = cms.double(0.5), src = cms.InputTag("genParticlesForJets"), srcPVs = cms.InputTag(""), useDeterministicSeed = cms.bool(True) ) process.kt6GenJets = cms.EDProducer("FastjetJetProducer", Active_Area_Repeats = cms.int32(5), GhostArea = cms.double(0.01), Ghost_EtaMax = cms.double(6.0), Rho_EtaMax = cms.double(4.5), doAreaFastjet = cms.bool(False), doPUOffsetCorr = cms.bool(False), doPVCorrection = cms.bool(False), doRhoFastjet = cms.bool(False), inputEMin = cms.double(0.0), inputEtMin = cms.double(0.0), jetAlgorithm = cms.string('Kt'), jetPtMin = cms.double(3.0), jetType = cms.string('GenJet'), maxBadEcalCells = cms.uint32(9999999), maxBadHcalCells = cms.uint32(9999999), maxProblematicEcalCells = cms.uint32(9999999), maxProblematicHcalCells = cms.uint32(9999999), maxRecoveredEcalCells = cms.uint32(9999999), maxRecoveredHcalCells = cms.uint32(9999999), minSeed = cms.uint32(14327), nSigmaPU = cms.double(1.0), rParam = cms.double(0.6), radiusPU = cms.double(0.5), src = cms.InputTag("genParticlesForJets"), srcPVs = cms.InputTag(""), useDeterministicSeed = cms.bool(True) ) process.kt6GenJetsNoMuNoNu = cms.EDProducer("FastjetJetProducer", Active_Area_Repeats = cms.int32(5), GhostArea = cms.double(0.01), Ghost_EtaMax = cms.double(6.0), Rho_EtaMax = cms.double(4.5), doAreaFastjet = cms.bool(False), doPUOffsetCorr = cms.bool(False), doPVCorrection = cms.bool(False), doRhoFastjet = cms.bool(False), inputEMin = cms.double(0.0), inputEtMin = cms.double(0.0), jetAlgorithm = cms.string('Kt'), jetPtMin = cms.double(3.0), jetType = cms.string('GenJet'), maxBadEcalCells = cms.uint32(9999999), maxBadHcalCells = cms.uint32(9999999), maxProblematicEcalCells = cms.uint32(9999999), maxProblematicHcalCells = cms.uint32(9999999), maxRecoveredEcalCells = cms.uint32(9999999), maxRecoveredHcalCells = cms.uint32(9999999), minSeed = cms.uint32(14327), nSigmaPU = cms.double(1.0), rParam = cms.double(0.6), radiusPU = cms.double(0.5), src = cms.InputTag("genParticlesForJetsNoMuNoNu"), srcPVs = cms.InputTag(""), useDeterministicSeed = cms.bool(True) ) process.kt6GenJetsNoNu = cms.EDProducer("FastjetJetProducer", Active_Area_Repeats = cms.int32(5), GhostArea = cms.double(0.01), Ghost_EtaMax = cms.double(6.0), Rho_EtaMax = cms.double(4.5), doAreaFastjet = cms.bool(False), doPUOffsetCorr = cms.bool(False), doPVCorrection = cms.bool(False), doRhoFastjet = cms.bool(False), inputEMin = cms.double(0.0), inputEtMin = cms.double(0.0), jetAlgorithm = cms.string('Kt'), jetPtMin = cms.double(3.0), jetType = cms.string('GenJet'), maxBadEcalCells = cms.uint32(9999999), maxBadHcalCells = cms.uint32(9999999), maxProblematicEcalCells = cms.uint32(9999999), maxProblematicHcalCells = cms.uint32(9999999), maxRecoveredEcalCells = cms.uint32(9999999), maxRecoveredHcalCells = cms.uint32(9999999), minSeed = cms.uint32(14327), nSigmaPU = cms.double(1.0), rParam = cms.double(0.6), radiusPU = cms.double(0.5), src = cms.InputTag("genParticlesForJetsNoNu"), srcPVs = cms.InputTag(""), useDeterministicSeed = cms.bool(True) ) process.kt6HiGenJets = cms.EDProducer("SubEventGenJetProducer", Active_Area_Repeats = cms.int32(5), GhostArea = cms.double(0.01), Ghost_EtaMax = cms.double(6.0), Rho_EtaMax = cms.double(4.5), doAreaFastjet = cms.bool(True), doPUOffsetCorr = cms.bool(False), doPVCorrection = cms.bool(False), doRhoFastjet = cms.bool(False), inputEMin = cms.double(0.0), inputEtMin = cms.double(0.0), jetAlgorithm = cms.string('Kt'), jetPtMin = cms.double(3.0), jetType = cms.string('GenJet'), maxBadEcalCells = cms.uint32(9999999), maxBadHcalCells = cms.uint32(9999999), maxProblematicEcalCells = cms.uint32(9999999), maxProblematicHcalCells = cms.uint32(9999999), maxRecoveredEcalCells = cms.uint32(9999999), maxRecoveredHcalCells = cms.uint32(9999999), minSeed = cms.uint32(14327), nSigmaPU = cms.double(1.0), rParam = cms.double(0.6), radiusPU = cms.double(0.5), src = cms.InputTag("genParticlesForJets"), srcPVs = cms.InputTag(""), useDeterministicSeed = cms.bool(True) ) process.mix = cms.EDProducer("MixingModule", LabelPlayback = cms.string(''), bunchspace = cms.int32(450), digitizers = cms.PSet( castor = cms.PSet( accumulatorType = cms.string('CastorDigiProducer'), castor = cms.PSet( binOfMaximum = cms.int32(5), doPhotoStatistics = cms.bool(True), photoelectronsToAnalog = cms.double(4.009), readoutFrameSize = cms.int32(6), samplingFactor = cms.double(0.062577), simHitToPhotoelectrons = cms.double(1000.0), syncPhase = cms.bool(True), timePhase = cms.double(-4.0) ), doNoise = cms.bool(True), doTimeSlew = cms.bool(True), hitsProducer = cms.InputTag("g4SimHits","CastorFI"), makeDigiSimLinks = cms.untracked.bool(False) ), ecal = cms.PSet( ConstantTerm = cms.double(0.003), EBCorrNoiseMatrixG01 = cms.vdouble(1.0, 0.73354, 0.64442, 0.58851, 0.55425, 0.53082, 0.51916, 0.51097, 0.50732, 0.50409), EBCorrNoiseMatrixG06 = cms.vdouble(1.0, 0.70946, 0.58021, 0.49846, 0.45006, 0.41366, 0.39699, 0.38478, 0.37847, 0.37055), EBCorrNoiseMatrixG12 = cms.vdouble(1.0, 0.71073, 0.55721, 0.46089, 0.40449, 0.35931, 0.33924, 0.32439, 0.31581, 0.30481), EBdigiCollection = cms.string(''), EBs25notContainment = cms.double(0.97), EECorrNoiseMatrixG01 = cms.vdouble(1.0, 0.72698, 0.62048, 0.55691, 0.51848, 0.49147, 0.47813, 0.47007, 0.46621, 0.46265), EECorrNoiseMatrixG06 = cms.vdouble(1.0, 0.71217, 0.47464, 0.34056, 0.26282, 0.20287, 0.17734, 0.16256, 0.15618, 0.14443), EECorrNoiseMatrixG12 = cms.vdouble(1.0, 0.71373, 0.44825, 0.30152, 0.21609, 0.14786, 0.11772, 0.10165, 0.09465, 0.08098), EEdigiCollection = cms.string(''), EEs25notContainment = cms.double(0.975), ESdigiCollection = cms.string(''), EcalPreMixStage1 = cms.bool(False), EcalPreMixStage2 = cms.bool(False), UseLCcorrection = cms.untracked.bool(True), accumulatorType = cms.string('EcalDigiProducer'), apdAddToBarrel = cms.bool(False), apdDigiTag = cms.string('APD'), apdDoPEStats = cms.bool(True), apdNonlParms = cms.vdouble(1.48, -3.75, 1.81, 1.26, 2.0, 45, 1.0), apdSeparateDigi = cms.bool(True), apdShapeTau = cms.double(40.5), apdShapeTstart = cms.double(74.5), apdSimToPEHigh = cms.double(88200000.0), apdSimToPELow = cms.double(2450000.0), apdTimeOffWidth = cms.double(0.8), apdTimeOffset = cms.double(-13.5), applyConstantTerm = cms.bool(True), binOfMaximum = cms.int32(6), cosmicsPhase = cms.bool(False), cosmicsShift = cms.double(0.0), doEB = cms.bool(True), doEE = cms.bool(True), doENoise = cms.bool(True), doES = cms.bool(True), doESNoise = cms.bool(True), doFast = cms.bool(True), doPhotostatistics = cms.bool(True), hitsProducer = cms.string('g4SimHits'), makeDigiSimLinks = cms.untracked.bool(False), photoelectronsToAnalogBarrel = cms.double(0.000444444), photoelectronsToAnalogEndcap = cms.double(0.000555555), readoutFrameSize = cms.int32(10), samplingFactor = cms.double(1.0), simHitToPhotoelectronsBarrel = cms.double(2250.0), simHitToPhotoelectronsEndcap = cms.double(1800.0), syncPhase = cms.bool(True), timePhase = cms.double(0.0) ), hcal = cms.PSet( ChangeResponse = cms.bool(False), CorrFactorFile = cms.FileInPath('SimCalorimetry/HcalSimProducers/data/calor_corr01.txt'), DelivLuminosity = cms.double(0), HBHEUpgradeQIE = cms.bool(True), HBTuningParameter = cms.double(0.875), HEDarkening = cms.bool(False), HETuningParameter = cms.double(0.9), HFDarkening = cms.bool(False), HFQIE10 = cms.bool(False), HFQIE8 = cms.bool(True), HFTuningParameter = cms.double(1.025), HFUpgradeQIE = cms.bool(False), HOTuningParameter = cms.double(1), HcalPreMixStage1 = cms.bool(False), HcalPreMixStage2 = cms.bool(False), HcalReLabel = cms.PSet( RelabelHits = cms.untracked.bool(False), RelabelRules = cms.untracked.PSet( CorrectPhi = cms.untracked.bool(False), Eta1 = cms.untracked.vint32(1, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3), Eta16 = cms.untracked.vint32(1, 1, 2, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3), Eta17 = cms.untracked.vint32(1, 1, 2, 2, 3, 3, 3, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5) ) ), accumulatorType = cms.string('HcalDigiProducer'), doEmpty = cms.bool(True), doHFWindow = cms.bool(False), doHPDNoise = cms.bool(False), doIonFeedback = cms.bool(True), doNoise = cms.bool(True), doThermalNoise = cms.bool(True), doTimeSlew = cms.bool(True), hb = cms.PSet( binOfMaximum = cms.int32(5), doPhotoStatistics = cms.bool(True), firstRing = cms.int32(1), photoelectronsToAnalog = cms.vdouble(0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305), readoutFrameSize = cms.int32(10), samplingFactors = cms.vdouble(125.44, 125.54, 125.32, 125.13, 124.46, 125.01, 125.22, 125.48, 124.45, 125.9, 125.83, 127.01, 126.82, 129.73, 131.83, 143.52), siPMCells = cms.vint32(), simHitToPhotoelectrons = cms.double(2000.0), syncPhase = cms.bool(True), timePhase = cms.double(6.0), timeSmearing = cms.bool(True) ), he = cms.PSet( binOfMaximum = cms.int32(5), doPhotoStatistics = cms.bool(True), firstRing = cms.int32(16), photoelectronsToAnalog = cms.vdouble(0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305, 0.3305), readoutFrameSize = cms.int32(10), samplingFactors = cms.vdouble(210.55, 197.93, 186.12, 189.64, 189.63, 190.28, 189.61, 189.6, 190.12, 191.22, 190.9, 193.06, 188.42, 188.42), simHitToPhotoelectrons = cms.double(2000.0), syncPhase = cms.bool(True), timePhase = cms.double(6.0), timeSmearing = cms.bool(True) ), hf1 = cms.PSet( binOfMaximum = cms.int32(3), doPhotoStatistics = cms.bool(True), photoelectronsToAnalog = cms.double(2.79), readoutFrameSize = cms.int32(4), samplingFactor = cms.double(0.383), simHitToPhotoelectrons = cms.double(6.0), syncPhase = cms.bool(True), timePhase = cms.double(14.0) ), hf2 = cms.PSet( binOfMaximum = cms.int32(3), doPhotoStatistics = cms.bool(True), photoelectronsToAnalog = cms.double(1.843), readoutFrameSize = cms.int32(4), samplingFactor = cms.double(0.368), simHitToPhotoelectrons = cms.double(6.0), syncPhase = cms.bool(True), timePhase = cms.double(13.0) ), hitsProducer = cms.string('g4SimHits'), ho = cms.PSet( binOfMaximum = cms.int32(5), doPhotoStatistics = cms.bool(True), firstRing = cms.int32(1), photoelectronsToAnalog = cms.vdouble(0.24, 0.24, 0.24, 0.24, 0.17, 0.17, 0.17, 0.17, 0.17, 0.17, 0.17, 0.17, 0.17, 0.17, 0.17), readoutFrameSize = cms.int32(10), samplingFactors = cms.vdouble(231.0, 231.0, 231.0, 231.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0), siPMCode = cms.int32(2), simHitToPhotoelectrons = cms.double(4000.0), syncPhase = cms.bool(True), timePhase = cms.double(5.0), timeSmearing = cms.bool(False) ), hoHamamatsu = cms.PSet( binOfMaximum = cms.int32(5), doPhotoStatistics = cms.bool(True), firstRing = cms.int32(1), photoelectronsToAnalog = cms.vdouble(3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0), pixels = cms.int32(960), readoutFrameSize = cms.int32(10), samplingFactors = cms.vdouble(231.0, 231.0, 231.0, 231.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0), siPMCode = cms.int32(2), simHitToPhotoelectrons = cms.double(4000.0), syncPhase = cms.bool(True), timePhase = cms.double(5.0), timeSmearing = cms.bool(False) ), hoZecotek = cms.PSet( binOfMaximum = cms.int32(5), doPhotoStatistics = cms.bool(True), firstRing = cms.int32(1), photoelectronsToAnalog = cms.vdouble(3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0), pixels = cms.int32(36000), readoutFrameSize = cms.int32(10), samplingFactors = cms.vdouble(231.0, 231.0, 231.0, 231.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0, 360.0), siPMCode = cms.int32(2), simHitToPhotoelectrons = cms.double(4000.0), syncPhase = cms.bool(True), timePhase = cms.double(5.0), timeSmearing = cms.bool(False) ), injectTestHits = cms.bool(False), makeDigiSimLinks = cms.untracked.bool(False), minFCToDelay = cms.double(5.0), useOldHB = cms.bool(True), useOldHE = cms.bool(True), useOldHF = cms.bool(True), useOldHO = cms.bool(True), zdc = cms.PSet( binOfMaximum = cms.int32(5), doPhotoStatistics = cms.bool(True), photoelectronsToAnalog = cms.double(1.843), readoutFrameSize = cms.int32(10), samplingFactor = cms.double(1.0), simHitToPhotoelectrons = cms.double(6.0), syncPhase = cms.bool(True), timePhase = cms.double(-4.0) ) ), pixel = cms.PSet( AdcFullScale = cms.int32(255), AdcFullScaleStack = cms.int32(255), AddNoise = cms.bool(True), AddNoisyPixels = cms.bool(True), AddPixelInefficiency = cms.bool(True), AddThresholdSmearing = cms.bool(True), Alpha2Order = cms.bool(True), BPix_SignalResponse_p0 = cms.double(0.0035), BPix_SignalResponse_p1 = cms.double(1.23), BPix_SignalResponse_p2 = cms.double(97.4), BPix_SignalResponse_p3 = cms.double(126.5), ChargeVCALSmearing = cms.bool(True), DeadModules = cms.VPSet(cms.PSet( Dead_detID = cms.int32(302055940), Module = cms.string('tbmB') ), cms.PSet( Dead_detID = cms.int32(302059800), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(302121992), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(302123296), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(302125060), Module = cms.string('tbmA') ), cms.PSet( Dead_detID = cms.int32(302125076), Module = cms.string('tbmA') ), cms.PSet( Dead_detID = cms.int32(302126364), Module = cms.string('tbmB') ), cms.PSet( Dead_detID = cms.int32(302126596), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(302127136), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(302188552), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(302188824), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(302194200), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(302195232), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(302197252), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(302197784), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352453892), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352453896), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352453900), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352453904), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352454916), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352454920), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352454924), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352454928), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352455940), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352455944), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352455948), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352455952), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352454148), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352454152), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352454156), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352455172), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352455176), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352455180), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352456196), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352456200), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(352456204), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(343999748), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(343999752), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(343999756), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(343999760), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344014340), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344014344), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344014348), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344019460), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344019464), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344019468), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344077572), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344077576), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344077580), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344077584), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344078596), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344078600), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344078604), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344078608), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344079620), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344079624), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344079628), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344079632), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344078852), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344078856), Module = cms.string('whole') ), cms.PSet( Dead_detID = cms.int32(344078860), Module = cms.string('whole') )), DeadModules_DB = cms.bool(True), DoPixelAging = cms.bool(False), ElectronPerAdc = cms.double(135.0), ElectronsPerVcal = cms.double(65.5), ElectronsPerVcal_Offset = cms.double(-414.0), FPix_SignalResponse_p0 = cms.double(0.0043), FPix_SignalResponse_p1 = cms.double(1.31), FPix_SignalResponse_p2 = cms.double(93.6), FPix_SignalResponse_p3 = cms.double(134.6), FirstStackLayer = cms.int32(5), GainSmearing = cms.double(0.0), LorentzAngle_DB = cms.bool(True), MissCalibrate = cms.bool(True), NoiseInElectrons = cms.double(175.0), NumPixelBarrel = cms.int32(3), NumPixelEndcap = cms.int32(2), OffsetSmearing = cms.double(0.0), PixGeometryType = cms.string('idealForDigi'), ReadoutNoiseInElec = cms.double(350.0), RoutList = cms.vstring('TrackerHitsPixelBarrelLowTof', 'TrackerHitsPixelBarrelHighTof', 'TrackerHitsPixelEndcapLowTof', 'TrackerHitsPixelEndcapHighTof'), TanLorentzAnglePerTesla_BPix = cms.double(0.106), TanLorentzAnglePerTesla_FPix = cms.double(0.106), ThresholdInElectrons_BPix = cms.double(3500.0), ThresholdInElectrons_BPix_L1 = cms.double(3500.0), ThresholdInElectrons_FPix = cms.double(3000.0), ThresholdSmearing_BPix = cms.double(245.0), ThresholdSmearing_BPix_L1 = cms.double(245.0), ThresholdSmearing_FPix = cms.double(210.0), TofLowerCut = cms.double(-12.5), TofUpperCut = cms.double(12.5), accumulatorType = cms.string('SiPixelDigitizer'), deltaProductionCut = cms.double(0.03), hitsProducer = cms.string('g4SimHits'), killModules = cms.bool(True), makeDigiSimLinks = cms.untracked.bool(True), useDB = cms.bool(False) ), puVtx = cms.PSet( accumulatorType = cms.string('PileupVertexAccumulator'), hitsProducer = cms.string('generator'), makeDigiSimLinks = cms.untracked.bool(False), vtxFallbackTag = cms.InputTag("generator"), vtxTag = cms.InputTag("generatorSmeared") ), strip = cms.PSet( APVSaturationFromHIP = cms.bool(True), APVSaturationProb = cms.double(0.001), APVpeakmode = cms.bool(False), AppliedVoltage = cms.double(300.0), BaselineShift = cms.bool(True), ChargeDistributionRMS = cms.double(6.5e-10), ChargeMobility = cms.double(310.0), CommonModeNoise = cms.bool(True), CosmicDelayShift = cms.untracked.double(0.0), CouplingConstantDecIB1 = cms.vdouble(0.7748, 0.0962, 0.0165), CouplingConstantDecIB2 = cms.vdouble(0.83, 0.0756, 0.0094), CouplingConstantDecOB1 = cms.vdouble(0.6871, 0.1222, 0.0342), CouplingConstantDecOB2 = cms.vdouble(0.725, 0.1102, 0.0273), CouplingConstantDecW1a = cms.vdouble(0.786, 0.093, 0.014), CouplingConstantDecW1b = cms.vdouble(0.822, 0.08, 0.009), CouplingConstantDecW2a = cms.vdouble(0.7962, 0.0914, 0.0104), CouplingConstantDecW2b = cms.vdouble(0.888, 0.05, 0.006), CouplingConstantDecW3a = cms.vdouble(0.8164, 0.09, 0.0018), CouplingConstantDecW3b = cms.vdouble(0.848, 0.06, 0.016), CouplingConstantDecW4 = cms.vdouble(0.876, 0.06, 0.002), CouplingConstantDecW5 = cms.vdouble(0.7565, 0.0913, 0.0304), CouplingConstantDecW6 = cms.vdouble(0.758, 0.093, 0.026), CouplingConstantDecW7 = cms.vdouble(0.7828, 0.0862, 0.0224), CouplingConstantPeakIB1 = cms.vdouble(0.9006, 0.0497), CouplingConstantPeakIB2 = cms.vdouble(0.9342, 0.0328), CouplingConstantPeakOB1 = cms.vdouble(0.8542, 0.0729), CouplingConstantPeakOB2 = cms.vdouble(0.8719, 0.064), CouplingConstantPeakW1a = cms.vdouble(0.996, 0.002), CouplingConstantPeakW1b = cms.vdouble(0.976, 0.012), CouplingConstantPeakW2a = cms.vdouble(1.0, 0.0), CouplingConstantPeakW2b = cms.vdouble(0.998, 0.001), CouplingConstantPeakW3a = cms.vdouble(0.996, 0.002), CouplingConstantPeakW3b = cms.vdouble(0.992, 0.004), CouplingConstantPeakW4 = cms.vdouble(0.992, 0.004), CouplingConstantPeakW5 = cms.vdouble(0.968, 0.016), CouplingConstantPeakW6 = cms.vdouble(0.972, 0.014), CouplingConstantPeakW7 = cms.vdouble(0.964, 0.018), DeltaProductionCut = cms.double(0.120425), DepletionVoltage = cms.double(170.0), DigiModeList = cms.PSet( PRDigi = cms.string('ProcessedRaw'), SCDigi = cms.string('ScopeMode'), VRDigi = cms.string('VirginRaw'), ZSDigi = cms.string('ZeroSuppressed') ), FedAlgorithm = cms.int32(4), FedAlgorithm_PM = cms.int32(4), Gain = cms.string(''), GeometryType = cms.string('idealForDigi'), GevPerElectron = cms.double(3.61e-09), Inefficiency = cms.double(0.0), LandauFluctuations = cms.bool(True), LorentzAngle = cms.string(''), Noise = cms.bool(True), NoiseSigmaThreshold = cms.double(2.0), PedestalsOffset = cms.double(128), PreMixingMode = cms.bool(False), ROUList = cms.vstring('TrackerHitsTIBLowTof', 'TrackerHitsTIBHighTof', 'TrackerHitsTIDLowTof', 'TrackerHitsTIDHighTof', 'TrackerHitsTOBLowTof', 'TrackerHitsTOBHighTof', 'TrackerHitsTECLowTof', 'TrackerHitsTECHighTof'), RealPedestals = cms.bool(True), SingleStripNoise = cms.bool(True), TOFCutForDeconvolution = cms.double(50.0), TOFCutForPeak = cms.double(100.0), Temperature = cms.double(273.0), TrackerConfigurationFromDB = cms.bool(False), ZeroSuppression = cms.bool(True), accumulatorType = cms.string('SiStripDigitizer'), chargeDivisionsPerStrip = cms.int32(10), cmnRMStec = cms.double(2.44), cmnRMStib = cms.double(5.92), cmnRMStid = cms.double(3.08), cmnRMStob = cms.double(1.08), electronPerAdcDec = cms.double(247.0), electronPerAdcPeak = cms.double(262.0), hitsProducer = cms.string('g4SimHits'), makeDigiSimLinks = cms.untracked.bool(True), noDiffusion = cms.bool(False) ) ), maxBunch = cms.int32(3), minBunch = cms.int32(-5), mixObjects = cms.PSet( mixCH = cms.PSet( crossingFrames = cms.untracked.vstring(), input = cms.VInputTag(cms.InputTag("g4SimHits","CastorFI"), cms.InputTag("g4SimHits","EcalHitsEB"), cms.InputTag("g4SimHits","EcalHitsEE"), cms.InputTag("g4SimHits","EcalHitsES"), cms.InputTag("g4SimHits","HcalHits"), cms.InputTag("g4SimHits","ZDCHITS")), subdets = cms.vstring('CastorFI', 'EcalHitsEB', 'EcalHitsEE', 'EcalHitsES', 'HcalHits', 'ZDCHITS'), type = cms.string('PCaloHit') ), mixHepMC = cms.PSet( input = cms.VInputTag(cms.InputTag("generatorSmeared"), cms.InputTag("generator")), makeCrossingFrame = cms.untracked.bool(False), type = cms.string('HepMCProduct') ), mixSH = cms.PSet( crossingFrames = cms.untracked.vstring('MuonCSCHits', 'MuonDTHits', 'MuonRPCHits'), input = cms.VInputTag(cms.InputTag("g4SimHits","MuonCSCHits"), cms.InputTag("g4SimHits","MuonDTHits"), cms.InputTag("g4SimHits","MuonRPCHits"), cms.InputTag("g4SimHits","TrackerHitsPixelBarrelHighTof"), cms.InputTag("g4SimHits","TrackerHitsPixelBarrelLowTof"), cms.InputTag("g4SimHits","TrackerHitsPixelEndcapHighTof"), cms.InputTag("g4SimHits","TrackerHitsPixelEndcapLowTof"), cms.InputTag("g4SimHits","TrackerHitsTECHighTof"), cms.InputTag("g4SimHits","TrackerHitsTECLowTof"), cms.InputTag("g4SimHits","TrackerHitsTIBHighTof"), cms.InputTag("g4SimHits","TrackerHitsTIBLowTof"), cms.InputTag("g4SimHits","TrackerHitsTIDHighTof"), cms.InputTag("g4SimHits","TrackerHitsTIDLowTof"), cms.InputTag("g4SimHits","TrackerHitsTOBHighTof"), cms.InputTag("g4SimHits","TrackerHitsTOBLowTof")), subdets = cms.vstring('MuonCSCHits', 'MuonDTHits', 'MuonRPCHits', 'TrackerHitsPixelBarrelHighTof', 'TrackerHitsPixelBarrelLowTof', 'TrackerHitsPixelEndcapHighTof', 'TrackerHitsPixelEndcapLowTof', 'TrackerHitsTECHighTof', 'TrackerHitsTECLowTof', 'TrackerHitsTIBHighTof', 'TrackerHitsTIBLowTof', 'TrackerHitsTIDHighTof', 'TrackerHitsTIDLowTof', 'TrackerHitsTOBHighTof', 'TrackerHitsTOBLowTof'), type = cms.string('PSimHit') ), mixTracks = cms.PSet( input = cms.VInputTag(cms.InputTag("g4SimHits")), makeCrossingFrame = cms.untracked.bool(False), type = cms.string('SimTrack') ), mixVertices = cms.PSet( input = cms.VInputTag(cms.InputTag("g4SimHits")), makeCrossingFrame = cms.untracked.bool(False), type = cms.string('SimVertex') ) ), mixProdStep1 = cms.bool(False), mixProdStep2 = cms.bool(False), playback = cms.untracked.bool(False), useCurrentProcessOnly = cms.bool(False) ) process.randomEngineStateProducer = cms.EDProducer("RandomEngineStateProducer") process.sisCone5GenJets = cms.EDProducer("FastjetJetProducer", Active_Area_Repeats = cms.int32(5), GhostArea = cms.double(0.01), Ghost_EtaMax = cms.double(6.0), Rho_EtaMax = cms.double(4.5), doAreaFastjet = cms.bool(False), doPUOffsetCorr = cms.bool(False), doPVCorrection = cms.bool(False), doRhoFastjet = cms.bool(False), inputEMin = cms.double(0.0), inputEtMin = cms.double(0.0), jetAlgorithm = cms.string('SISCone'), jetPtMin = cms.double(3.0), jetType = cms.string('GenJet'), maxBadEcalCells = cms.uint32(9999999), maxBadHcalCells = cms.uint32(9999999), maxProblematicEcalCells = cms.uint32(9999999), maxProblematicHcalCells = cms.uint32(9999999), maxRecoveredEcalCells = cms.uint32(9999999), maxRecoveredHcalCells = cms.uint32(9999999), minSeed = cms.uint32(14327), nSigmaPU = cms.double(1.0), rParam = cms.double(0.5), radiusPU = cms.double(0.5), src = cms.InputTag("genParticlesForJets"), srcPVs = cms.InputTag(""), useDeterministicSeed = cms.bool(True) ) process.sisCone5GenJetsNoMuNoNu = cms.EDProducer("FastjetJetProducer", Active_Area_Repeats = cms.int32(5), GhostArea = cms.double(0.01), Ghost_EtaMax = cms.double(6.0), Rho_EtaMax = cms.double(4.5), doAreaFastjet = cms.bool(False), doPUOffsetCorr = cms.bool(False), doPVCorrection = cms.bool(False), doRhoFastjet = cms.bool(False), inputEMin = cms.double(0.0), inputEtMin = cms.double(0.0), jetAlgorithm = cms.string('SISCone'), jetPtMin = cms.double(3.0), jetType = cms.string('GenJet'), maxBadEcalCells = cms.uint32(9999999), maxBadHcalCells = cms.uint32(9999999), maxProblematicEcalCells = cms.uint32(9999999), maxProblematicHcalCells = cms.uint32(9999999), maxRecoveredEcalCells = cms.uint32(9999999), maxRecoveredHcalCells = cms.uint32(9999999), minSeed = cms.uint32(14327), nSigmaPU = cms.double(1.0), rParam = cms.double(0.5), radiusPU = cms.double(0.5), src = cms.InputTag("genParticlesForJetsNoMuNoNu"), srcPVs = cms.InputTag(""), useDeterministicSeed = cms.bool(True) ) process.sisCone5GenJetsNoNu = cms.EDProducer("FastjetJetProducer", Active_Area_Repeats = cms.int32(5), GhostArea = cms.double(0.01), Ghost_EtaMax = cms.double(6.0), Rho_EtaMax = cms.double(4.5), doAreaFastjet = cms.bool(False), doPUOffsetCorr = cms.bool(False), doPVCorrection = cms.bool(False), doRhoFastjet = cms.bool(False), inputEMin = cms.double(0.0), inputEtMin = cms.double(0.0), jetAlgorithm = cms.string('SISCone'), jetPtMin = cms.double(3.0), jetType = cms.string('GenJet'), maxBadEcalCells = cms.uint32(9999999), maxBadHcalCells = cms.uint32(9999999), maxProblematicEcalCells = cms.uint32(9999999), maxProblematicHcalCells = cms.uint32(9999999), maxRecoveredEcalCells = cms.uint32(9999999), maxRecoveredHcalCells = cms.uint32(9999999), minSeed = cms.uint32(14327), nSigmaPU = cms.double(1.0), rParam = cms.double(0.5), radiusPU = cms.double(0.5), src = cms.InputTag("genParticlesForJetsNoNu"), srcPVs = cms.InputTag(""), useDeterministicSeed = cms.bool(True) ) process.sisCone8GenJets = cms.EDProducer("FastjetJetProducer", Active_Area_Repeats = cms.int32(5), GhostArea = cms.double(0.01), Ghost_EtaMax = cms.double(6.0), Rho_EtaMax = cms.double(4.5), doAreaFastjet = cms.bool(False), doPUOffsetCorr = cms.bool(False), doPVCorrection = cms.bool(False), doRhoFastjet = cms.bool(False), inputEMin = cms.double(0.0), inputEtMin = cms.double(0.0), jetAlgorithm = cms.string('SISCone'), jetPtMin = cms.double(3.0), jetType = cms.string('GenJet'), maxBadEcalCells = cms.uint32(9999999), maxBadHcalCells = cms.uint32(9999999), maxProblematicEcalCells = cms.uint32(9999999), maxProblematicHcalCells = cms.uint32(9999999), maxRecoveredEcalCells = cms.uint32(9999999), maxRecoveredHcalCells = cms.uint32(9999999), minSeed = cms.uint32(14327), nSigmaPU = cms.double(1.0), rParam = cms.double(0.8), radiusPU = cms.double(0.5), src = cms.InputTag("genParticlesForJets"), srcPVs = cms.InputTag(""), useDeterministicSeed = cms.bool(True) ) process.sisCone8GenJetsNoMuNoNu = cms.EDProducer("FastjetJetProducer", Active_Area_Repeats = cms.int32(5), GhostArea = cms.double(0.01), Ghost_EtaMax = cms.double(6.0), Rho_EtaMax = cms.double(4.5), doAreaFastjet = cms.bool(False), doPUOffsetCorr = cms.bool(False), doPVCorrection = cms.bool(False), doRhoFastjet = cms.bool(False), inputEMin = cms.double(0.0), inputEtMin = cms.double(0.0), jetAlgorithm = cms.string('SISCone'), jetPtMin = cms.double(3.0), jetType = cms.string('GenJet'), maxBadEcalCells = cms.uint32(9999999), maxBadHcalCells = cms.uint32(9999999), maxProblematicEcalCells = cms.uint32(9999999), maxProblematicHcalCells = cms.uint32(9999999), maxRecoveredEcalCells = cms.uint32(9999999), maxRecoveredHcalCells = cms.uint32(9999999), minSeed = cms.uint32(14327), nSigmaPU = cms.double(1.0), rParam = cms.double(0.8), radiusPU = cms.double(0.5), src = cms.InputTag("genParticlesForJetsNoMuNoNu"), srcPVs = cms.InputTag(""), useDeterministicSeed = cms.bool(True) ) process.sisCone8GenJetsNoNu = cms.EDProducer("FastjetJetProducer", Active_Area_Repeats = cms.int32(5), GhostArea = cms.double(0.01), Ghost_EtaMax = cms.double(6.0), Rho_EtaMax = cms.double(4.5), doAreaFastjet = cms.bool(False), doPUOffsetCorr = cms.bool(False), doPVCorrection = cms.bool(False), doRhoFastjet = cms.bool(False), inputEMin = cms.double(0.0), inputEtMin = cms.double(0.0), jetAlgorithm = cms.string('SISCone'), jetPtMin = cms.double(3.0), jetType = cms.string('GenJet'), maxBadEcalCells = cms.uint32(9999999), maxBadHcalCells = cms.uint32(9999999), maxProblematicEcalCells = cms.uint32(9999999), maxProblematicHcalCells = cms.uint32(9999999), maxRecoveredEcalCells = cms.uint32(9999999), maxRecoveredHcalCells = cms.uint32(9999999), minSeed = cms.uint32(14327), nSigmaPU = cms.double(1.0), rParam = cms.double(0.8), radiusPU = cms.double(0.5), src = cms.InputTag("genParticlesForJetsNoNu"), srcPVs = cms.InputTag(""), useDeterministicSeed = cms.bool(True) ) process.generator = cms.EDFilter("Pythia8HadronizerFilter", PythiaParameters = cms.PSet( parameterSets = cms.vstring('pythia8CommonSettings', 'pythia8PowhegEmissionVetoSettings', 'processParameters', 'ueParameters'), processParameters = cms.vstring('POWHEG:nFinal = 2', 'TimeShower:mMaxGamma = 1.0'), pythia8CommonSettings = cms.vstring('Tune:preferLHAPDF = 2', 'Main:timesAllowErrors = 10000', 'Check:epTolErr = 0.01', 'Beams:setProductionScalesFromLHEF = off', 'SLHA:keepSM = on', 'SLHA:minMassSM = 1000.', 'ParticleDecays:limitTau0 = on', 'ParticleDecays:tau0Max = 10', 'ParticleDecays:allowPhotonRadiation = on'), pythia8PowhegEmissionVetoSettings = cms.vstring('POWHEG:veto = 1', 'POWHEG:pTdef = 1', 'POWHEG:emitted = 0', 'POWHEG:pTemt = 0', 'POWHEG:pThard = 0', 'POWHEG:vetoCount = 100', 'SpaceShower:pTmaxMatch = 2', 'TimeShower:pTmaxMatch = 2'), ueParameters = cms.vstring('Tune:pp 14', 'Tune:ee 7', 'MultipartonInteractions:ecmPow=0.25208', 'SpaceShower:alphaSvalue=0.1108', 'PDF:pSet=LHAPDF6:NNPDF30_lo_as_0130', 'MultipartonInteractions:pT0Ref=2.197139e+00', 'MultipartonInteractions:expPow=1.608572e+00', 'ColourReconnection:range=6.593269e+00', 'SpaceShower:pTmin=1.5') ), comEnergy = cms.double(8000.0), filterEfficiency = cms.untracked.double(1.0), maxEventsToPrint = cms.untracked.int32(1), pythiaHepMCVerbosity = cms.untracked.bool(False), pythiaPylistVerbosity = cms.untracked.int32(1) ) process.genstepfilter = cms.EDFilter("TriggerResultsFilter", daqPartitions = cms.uint32(1), hltResults = cms.InputTag("TriggerResults"), l1tIgnoreMask = cms.bool(False), l1tResults = cms.InputTag(""), l1techIgnorePrescales = cms.bool(False), throw = cms.bool(True), triggerConditions = cms.vstring('generation_step') ) process.MEtoMEComparitor = cms.EDAnalyzer("MEtoMEComparitor", Diffgoodness = cms.double(0.1), KSgoodness = cms.double(0.9), MEtoEDMLabel = cms.string('MEtoEDMConverter'), OverAllgoodness = cms.double(0.9), autoProcess = cms.bool(True), dirDepth = cms.uint32(1), lumiInstance = cms.string('MEtoEDMConverterLumi'), processNew = cms.string('RERECO'), processRef = cms.string('HLT'), runInstance = cms.string('MEtoEDMConverterRun') ) process.analysis = cms.EDAnalyzer("VptGenAnalyzer", genEventInfoProduct = cms.InputTag("generator"), genParticles = cms.InputTag("genParticles"), leptonConeSize = cms.double(0.1), leptonMaxEta = cms.double(3.0), leptonMinPt = cms.double(15), lheEventProduct = cms.InputTag("source") ) process.genXSecAnalyzer = cms.EDAnalyzer("GenXSecAnalyzer") process.rivetAnalyzer0 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(0), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w0.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer1 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(1), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w1.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer10 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(10), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w10.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer100 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(100), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w100.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer101 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(101), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w101.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer102 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(102), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w102.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer103 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(103), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w103.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer104 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(104), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w104.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer105 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(105), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w105.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer106 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(106), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w106.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer107 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(107), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w107.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer108 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(108), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w108.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer109 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(109), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w109.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer11 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(11), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w11.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer110 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(110), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w110.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer111 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(111), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w111.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer112 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(112), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w112.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer113 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(113), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w113.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer114 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(114), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w114.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer115 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(115), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w115.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer116 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(116), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w116.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer117 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(117), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w117.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer118 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(118), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w118.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer119 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(119), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w119.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer12 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(12), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w12.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer120 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(120), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w120.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer121 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(121), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w121.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer122 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(122), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w122.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer123 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(123), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w123.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer124 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(124), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w124.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer125 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(125), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w125.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer126 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(126), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w126.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer127 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(127), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w127.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer128 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(128), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w128.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer129 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(129), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w129.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer13 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(13), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w13.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer130 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(130), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w130.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer131 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(131), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w131.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer132 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(132), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w132.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer133 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(133), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w133.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer134 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(134), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w134.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer135 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(135), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w135.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer136 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(136), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w136.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer137 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(137), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w137.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer138 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(138), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w138.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer139 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(139), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w139.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer14 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(14), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w14.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer140 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(140), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w140.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer141 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(141), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w141.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer142 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(142), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w142.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer143 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(143), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w143.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer144 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(144), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w144.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer145 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(145), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w145.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer146 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(146), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w146.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer147 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(147), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w147.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer148 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(148), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w148.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer149 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(149), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w149.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer15 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(15), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w15.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer150 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(150), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w150.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer151 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(151), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w151.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer152 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(152), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w152.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer153 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(153), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w153.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer154 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(154), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w154.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer155 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(155), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w155.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer156 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(156), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w156.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer157 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(157), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w157.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer158 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(158), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w158.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer159 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(159), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w159.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer16 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(16), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w16.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer160 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(160), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w160.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer161 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(161), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w161.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer162 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(162), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w162.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer163 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(163), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w163.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer164 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(164), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w164.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer165 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(165), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w165.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer166 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(166), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w166.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer167 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(167), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w167.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer168 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(168), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w168.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer169 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(169), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w169.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer17 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(17), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w17.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer170 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(170), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w170.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer171 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(171), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w171.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer172 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(172), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w172.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer173 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(173), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w173.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer174 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(174), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w174.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer175 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(175), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w175.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer176 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(176), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w176.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer177 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(177), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w177.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer178 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(178), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w178.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer179 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(179), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w179.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer18 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(18), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w18.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer180 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(180), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w180.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer181 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(181), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w181.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer182 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(182), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w182.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer183 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(183), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w183.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer184 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(184), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w184.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer185 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(185), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w185.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer186 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(186), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w186.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer187 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(187), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w187.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer188 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(188), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w188.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer189 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(189), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w189.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer19 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(19), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w19.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer190 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(190), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w190.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer191 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(191), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w191.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer192 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(192), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w192.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer193 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(193), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w193.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer194 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(194), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w194.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer195 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(195), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w195.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer196 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(196), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w196.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer197 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(197), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w197.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer198 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(198), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w198.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer199 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(199), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w199.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer2 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(2), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w2.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer20 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(20), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w20.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer200 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(200), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w200.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer201 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(201), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w201.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer202 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(202), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w202.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer203 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(203), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w203.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer204 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(204), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w204.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer205 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(205), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w205.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer206 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(206), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w206.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer207 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(207), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w207.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer208 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(208), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w208.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer209 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(209), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w209.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer21 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(21), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w21.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer210 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(210), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w210.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer211 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(211), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w211.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer212 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(212), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w212.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer213 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(213), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w213.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer214 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(214), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w214.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer215 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(215), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w215.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer216 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(216), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w216.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer217 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(217), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w217.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer218 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(218), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w218.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer219 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(219), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w219.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer22 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(22), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w22.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer220 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(220), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w220.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer221 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(221), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w221.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer222 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(222), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w222.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer223 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(223), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w223.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer224 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(224), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w224.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer225 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(225), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w225.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer226 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(226), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w226.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer227 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(227), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w227.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer228 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(228), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w228.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer229 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(229), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w229.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer23 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(23), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w23.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer230 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(230), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w230.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer231 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(231), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w231.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer232 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(232), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w232.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer233 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(233), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w233.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer234 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(234), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w234.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer235 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(235), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w235.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer236 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(236), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w236.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer237 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(237), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w237.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer238 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(238), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w238.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer239 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(239), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w239.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer24 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(24), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w24.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer240 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(240), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w240.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer241 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(241), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w241.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer242 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(242), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w242.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer243 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(243), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w243.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer244 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(244), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w244.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer245 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(245), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w245.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer246 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(246), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w246.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer247 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(247), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w247.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer248 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(248), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w248.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer249 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(249), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w249.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer25 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(25), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w25.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer250 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(250), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w250.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer251 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(251), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w251.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer252 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(252), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w252.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer253 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(253), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w253.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer254 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(254), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w254.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer255 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(255), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w255.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer256 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(256), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w256.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer257 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(257), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w257.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer258 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(258), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w258.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer259 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(259), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w259.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer26 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(26), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w26.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer260 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(260), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w260.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer261 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(261), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w261.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer262 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(262), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w262.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer263 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(263), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w263.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer264 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(264), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w264.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer265 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(265), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w265.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer266 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(266), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w266.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer267 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(267), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w267.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer268 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(268), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w268.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer269 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(269), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w269.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer27 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(27), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w27.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer270 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(270), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w270.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer271 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(271), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w271.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer272 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(272), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w272.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer273 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(273), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w273.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer274 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(274), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w274.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer275 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(275), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w275.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer276 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(276), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w276.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer277 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(277), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w277.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer278 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(278), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w278.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer279 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(279), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w279.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer28 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(28), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w28.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer280 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(280), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w280.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer281 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(281), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w281.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer29 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(29), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w29.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer3 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(3), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w3.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer30 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(30), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w30.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer31 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(31), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w31.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer32 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(32), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w32.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer33 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(33), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w33.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer34 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(34), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w34.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer35 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(35), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w35.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer36 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(36), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w36.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer37 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(37), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w37.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer38 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(38), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w38.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer39 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(39), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w39.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer4 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(4), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w4.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer40 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(40), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w40.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer41 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(41), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w41.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer42 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(42), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w42.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer43 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(43), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w43.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer44 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(44), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w44.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer45 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(45), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w45.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer46 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(46), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w46.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer47 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(47), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w47.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer48 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(48), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w48.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer49 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(49), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w49.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer5 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(5), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w5.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer50 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(50), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w50.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer51 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(51), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w51.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer52 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(52), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w52.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer53 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(53), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w53.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer54 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(54), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w54.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer55 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(55), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w55.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer56 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(56), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w56.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer57 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(57), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w57.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer58 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(58), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w58.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer59 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(59), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w59.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer6 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(6), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w6.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer60 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(60), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w60.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer61 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(61), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w61.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer62 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(62), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w62.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer63 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(63), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w63.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer64 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(64), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w64.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer65 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(65), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w65.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer66 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(66), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w66.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer67 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(67), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w67.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer68 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(68), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w68.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer69 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(69), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w69.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer7 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(7), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w7.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer70 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(70), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w70.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer71 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(71), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w71.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer72 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(72), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w72.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer73 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(73), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w73.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer74 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(74), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w74.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer75 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(75), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w75.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer76 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(76), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w76.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer77 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(77), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w77.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer78 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(78), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w78.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer79 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(79), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w79.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer8 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(8), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w8.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer80 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(80), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w80.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer81 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(81), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w81.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer82 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(82), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w82.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer83 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(83), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w83.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer84 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(84), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w84.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer85 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(85), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w85.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer86 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(86), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w86.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer87 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(87), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w87.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer88 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(88), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w88.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer89 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(89), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w89.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer9 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(9), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w9.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer90 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(90), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w90.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer91 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(91), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w91.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer92 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(92), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w92.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer93 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(93), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w93.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer94 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(94), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w94.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer95 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(95), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w95.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer96 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(96), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w96.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer97 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(97), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w97.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer98 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(98), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w98.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.rivetAnalyzer99 = cms.EDAnalyzer("RivetAnalyzer", AnalysisNames = cms.vstring('ATLAS_2015_I1408516_MU'), CrossSection = cms.double(1000), DoFinalize = cms.bool(True), GenEventInfoCollection = cms.InputTag("generator"), HepMCCollection = cms.InputTag("generatorSmeared"), LHECollection = cms.InputTag("externalLHEProducer"), LHEweightNumber = cms.int32(99), OutputFile = cms.string('ZJ_ptsqmin4_tune6.w99.yoda'), ProduceDQMOutput = cms.bool(False), UseExternalWeight = cms.bool(True), useLHEweights = cms.bool(True) ) process.genMETParticles = cms.Sequence(process.genCandidatesForMET+process.genParticlesForMETAllVisible) process.GenSmeared = cms.Sequence(process.generatorSmeared) process.recoAllGenJetsNoNu = cms.Sequence(process.kt4GenJetsNoNu+process.kt6GenJetsNoNu+process.ak4GenJetsNoNu+process.ak5GenJetsNoNu+process.ak8GenJetsNoNu) process.ProductionFilterSequence = cms.Sequence(process.generator) process.hiRecoGenJets = cms.Sequence(process.iterativeCone5HiGenJets+process.kt4HiGenJets+process.kt6HiGenJets+process.ak1HiGenJets+process.ak2HiGenJets+process.ak3HiGenJets+process.ak4HiGenJets+process.ak5HiGenJets+process.ak6HiGenJets+process.ak7HiGenJets) process.genFilterSummary = cms.Sequence(process.genFilterEfficiencyProducer+process.genXSecAnalyzer) process.recoAllGenJets = cms.Sequence(process.kt4GenJets+process.kt6GenJets+process.ak4GenJets+process.ak5GenJets+process.ak8GenJets) process.GeneInfo = cms.Sequence(process.genParticles) process.endOfProcess = cms.Sequence(process.MEtoEDMConverter) process.genJetParticles = cms.Sequence(process.genParticlesForJets+process.genParticlesForJetsNoNu) process.VertexSmearing = cms.Sequence(cms.SequencePlaceholder("VtxSmeared")) process.endOfProcess_withComparison = cms.Sequence(process.MEtoEDMConverter+process.MEtoMEComparitor) process.recoGenMET = cms.Sequence(process.genMetCalo+process.genMetTrue) process.recoAllGenJetsNoMuNoNu = cms.Sequence(process.kt4GenJetsNoMuNoNu+process.kt6GenJetsNoMuNoNu+process.ak4GenJetsNoMuNoNu+process.ak5GenJetsNoMuNoNu+process.ak8GenJetsNoMuNoNu) process.recoGenJets = cms.Sequence(process.ak4GenJets+process.ak8GenJets+process.ak4GenJetsNoNu+process.ak8GenJetsNoNu) process.pgen_genonly = cms.Sequence(cms.SequencePlaceholder("randomEngineStateProducer")) process.genJetMET = cms.Sequence(process.genJetParticles+process.recoGenJets+process.genMETParticles+process.recoGenMET) process.pgen = cms.Sequence(cms.SequencePlaceholder("randomEngineStateProducer")+process.VertexSmearing+process.GenSmeared+process.GeneInfo+process.genJetMET) process.fixGenInfo = cms.Sequence(process.GeneInfo+process.genJetMET) process.generation_step = cms.Path(process.ProductionFilterSequence+process.pgen+process.rivetAnalyzer0+process.rivetAnalyzer1+process.rivetAnalyzer2+process.rivetAnalyzer3+process.rivetAnalyzer4+process.rivetAnalyzer5+process.rivetAnalyzer6+process.rivetAnalyzer7+process.rivetAnalyzer8+process.rivetAnalyzer9+process.rivetAnalyzer10+process.rivetAnalyzer11+process.rivetAnalyzer12+process.rivetAnalyzer13+process.rivetAnalyzer14+process.rivetAnalyzer15+process.rivetAnalyzer16+process.rivetAnalyzer17+process.rivetAnalyzer18+process.rivetAnalyzer19+process.rivetAnalyzer20+process.rivetAnalyzer21+process.rivetAnalyzer22+process.rivetAnalyzer23+process.rivetAnalyzer24+process.rivetAnalyzer25+process.rivetAnalyzer26+process.rivetAnalyzer27+process.rivetAnalyzer28+process.rivetAnalyzer29+process.rivetAnalyzer30+process.rivetAnalyzer31+process.rivetAnalyzer32+process.rivetAnalyzer33+process.rivetAnalyzer34+process.rivetAnalyzer35+process.rivetAnalyzer36+process.rivetAnalyzer37+process.rivetAnalyzer38+process.rivetAnalyzer39+process.rivetAnalyzer40+process.rivetAnalyzer41+process.rivetAnalyzer42+process.rivetAnalyzer43+process.rivetAnalyzer44+process.rivetAnalyzer45+process.rivetAnalyzer46+process.rivetAnalyzer47+process.rivetAnalyzer48+process.rivetAnalyzer49+process.rivetAnalyzer50+process.rivetAnalyzer51+process.rivetAnalyzer52+process.rivetAnalyzer53+process.rivetAnalyzer54+process.rivetAnalyzer55+process.rivetAnalyzer56+process.rivetAnalyzer57+process.rivetAnalyzer58+process.rivetAnalyzer59+process.rivetAnalyzer60+process.rivetAnalyzer61+process.rivetAnalyzer62+process.rivetAnalyzer63+process.rivetAnalyzer64+process.rivetAnalyzer65+process.rivetAnalyzer66+process.rivetAnalyzer67+process.rivetAnalyzer68+process.rivetAnalyzer69+process.rivetAnalyzer70+process.rivetAnalyzer71+process.rivetAnalyzer72+process.rivetAnalyzer73+process.rivetAnalyzer74+process.rivetAnalyzer75+process.rivetAnalyzer76+process.rivetAnalyzer77+process.rivetAnalyzer78+process.rivetAnalyzer79+process.rivetAnalyzer80+process.rivetAnalyzer81+process.rivetAnalyzer82+process.rivetAnalyzer83+process.rivetAnalyzer84+process.rivetAnalyzer85+process.rivetAnalyzer86+process.rivetAnalyzer87+process.rivetAnalyzer88+process.rivetAnalyzer89+process.rivetAnalyzer90+process.rivetAnalyzer91+process.rivetAnalyzer92+process.rivetAnalyzer93+process.rivetAnalyzer94+process.rivetAnalyzer95+process.rivetAnalyzer96+process.rivetAnalyzer97+process.rivetAnalyzer98+process.rivetAnalyzer99+process.rivetAnalyzer100+process.rivetAnalyzer101+process.rivetAnalyzer102+process.rivetAnalyzer103+process.rivetAnalyzer104+process.rivetAnalyzer105+process.rivetAnalyzer106+process.rivetAnalyzer107+process.rivetAnalyzer108+process.rivetAnalyzer109+process.rivetAnalyzer110+process.rivetAnalyzer111+process.rivetAnalyzer112+process.rivetAnalyzer113+process.rivetAnalyzer114+process.rivetAnalyzer115+process.rivetAnalyzer116+process.rivetAnalyzer117+process.rivetAnalyzer118+process.rivetAnalyzer119+process.rivetAnalyzer120+process.rivetAnalyzer121+process.rivetAnalyzer122+process.rivetAnalyzer123+process.rivetAnalyzer124+process.rivetAnalyzer125+process.rivetAnalyzer126+process.rivetAnalyzer127+process.rivetAnalyzer128+process.rivetAnalyzer129+process.rivetAnalyzer130+process.rivetAnalyzer131+process.rivetAnalyzer132+process.rivetAnalyzer133+process.rivetAnalyzer134+process.rivetAnalyzer135+process.rivetAnalyzer136+process.rivetAnalyzer137+process.rivetAnalyzer138+process.rivetAnalyzer139+process.rivetAnalyzer140+process.rivetAnalyzer141+process.rivetAnalyzer142+process.rivetAnalyzer143+process.rivetAnalyzer144+process.rivetAnalyzer145+process.rivetAnalyzer146+process.rivetAnalyzer147+process.rivetAnalyzer148+process.rivetAnalyzer149+process.rivetAnalyzer150+process.rivetAnalyzer151+process.rivetAnalyzer152+process.rivetAnalyzer153+process.rivetAnalyzer154+process.rivetAnalyzer155+process.rivetAnalyzer156+process.rivetAnalyzer157+process.rivetAnalyzer158+process.rivetAnalyzer159+process.rivetAnalyzer160+process.rivetAnalyzer161+process.rivetAnalyzer162+process.rivetAnalyzer163+process.rivetAnalyzer164+process.rivetAnalyzer165+process.rivetAnalyzer166+process.rivetAnalyzer167+process.rivetAnalyzer168+process.rivetAnalyzer169+process.rivetAnalyzer170+process.rivetAnalyzer171+process.rivetAnalyzer172+process.rivetAnalyzer173+process.rivetAnalyzer174+process.rivetAnalyzer175+process.rivetAnalyzer176+process.rivetAnalyzer177+process.rivetAnalyzer178+process.rivetAnalyzer179+process.rivetAnalyzer180+process.rivetAnalyzer181+process.rivetAnalyzer182+process.rivetAnalyzer183+process.rivetAnalyzer184+process.rivetAnalyzer185+process.rivetAnalyzer186+process.rivetAnalyzer187+process.rivetAnalyzer188+process.rivetAnalyzer189+process.rivetAnalyzer190+process.rivetAnalyzer191+process.rivetAnalyzer192+process.rivetAnalyzer193+process.rivetAnalyzer194+process.rivetAnalyzer195+process.rivetAnalyzer196+process.rivetAnalyzer197+process.rivetAnalyzer198+process.rivetAnalyzer199+process.rivetAnalyzer200+process.rivetAnalyzer201+process.rivetAnalyzer202+process.rivetAnalyzer203+process.rivetAnalyzer204+process.rivetAnalyzer205+process.rivetAnalyzer206+process.rivetAnalyzer207+process.rivetAnalyzer208+process.rivetAnalyzer209+process.rivetAnalyzer210+process.rivetAnalyzer211+process.rivetAnalyzer212+process.rivetAnalyzer213+process.rivetAnalyzer214+process.rivetAnalyzer215+process.rivetAnalyzer216+process.rivetAnalyzer217+process.rivetAnalyzer218+process.rivetAnalyzer219+process.rivetAnalyzer220+process.rivetAnalyzer221+process.rivetAnalyzer222+process.rivetAnalyzer223+process.rivetAnalyzer224+process.rivetAnalyzer225+process.rivetAnalyzer226+process.rivetAnalyzer227+process.rivetAnalyzer228+process.rivetAnalyzer229+process.rivetAnalyzer230+process.rivetAnalyzer231+process.rivetAnalyzer232+process.rivetAnalyzer233+process.rivetAnalyzer234+process.rivetAnalyzer235+process.rivetAnalyzer236+process.rivetAnalyzer237+process.rivetAnalyzer238+process.rivetAnalyzer239+process.rivetAnalyzer240+process.rivetAnalyzer241+process.rivetAnalyzer242+process.rivetAnalyzer243+process.rivetAnalyzer244+process.rivetAnalyzer245+process.rivetAnalyzer246+process.rivetAnalyzer247+process.rivetAnalyzer248+process.rivetAnalyzer249+process.rivetAnalyzer250+process.rivetAnalyzer251+process.rivetAnalyzer252+process.rivetAnalyzer253+process.rivetAnalyzer254+process.rivetAnalyzer255+process.rivetAnalyzer256+process.rivetAnalyzer257+process.rivetAnalyzer258+process.rivetAnalyzer259+process.rivetAnalyzer260+process.rivetAnalyzer261+process.rivetAnalyzer262+process.rivetAnalyzer263+process.rivetAnalyzer264+process.rivetAnalyzer265+process.rivetAnalyzer266+process.rivetAnalyzer267+process.rivetAnalyzer268+process.rivetAnalyzer269+process.rivetAnalyzer270+process.rivetAnalyzer271+process.rivetAnalyzer272+process.rivetAnalyzer273+process.rivetAnalyzer274+process.rivetAnalyzer275+process.rivetAnalyzer276+process.rivetAnalyzer277+process.rivetAnalyzer278+process.rivetAnalyzer279+process.rivetAnalyzer280+process.rivetAnalyzer281) process.genfiltersummary_step = cms.EndPath(process.genFilterSummary) process.endjob_step = cms.EndPath(process.endOfProcess) process.DQMStore = cms.Service("DQMStore") process.MessageLogger = cms.Service("MessageLogger", FrameworkJobReport = cms.untracked.PSet( FwkJob = cms.untracked.PSet( limit = cms.untracked.int32(10000000), optionalPSet = cms.untracked.bool(True) ), default = cms.untracked.PSet( limit = cms.untracked.int32(0) ), optionalPSet = cms.untracked.bool(True) ), categories = cms.untracked.vstring('FwkJob', 'FwkReport', 'FwkSummary', 'Root_NoDictionary'), cerr = cms.untracked.PSet( FwkJob = cms.untracked.PSet( limit = cms.untracked.int32(0), optionalPSet = cms.untracked.bool(True) ), FwkReport = cms.untracked.PSet( limit = cms.untracked.int32(10000000), optionalPSet = cms.untracked.bool(True), reportEvery = cms.untracked.int32(5000) ), FwkSummary = cms.untracked.PSet( limit = cms.untracked.int32(10000000), optionalPSet = cms.untracked.bool(True), reportEvery = cms.untracked.int32(1) ), INFO = cms.untracked.PSet( limit = cms.untracked.int32(0) ), Root_NoDictionary = cms.untracked.PSet( limit = cms.untracked.int32(0), optionalPSet = cms.untracked.bool(True) ), default = cms.untracked.PSet( limit = cms.untracked.int32(10000000) ), noTimeStamps = cms.untracked.bool(False), optionalPSet = cms.untracked.bool(True), threshold = cms.untracked.string('INFO') ), cerr_stats = cms.untracked.PSet( optionalPSet = cms.untracked.bool(True), output = cms.untracked.string('cerr'), threshold = cms.untracked.string('WARNING') ), cout = cms.untracked.PSet( placeholder = cms.untracked.bool(True) ), debugModules = cms.untracked.vstring(), debugs = cms.untracked.PSet( placeholder = cms.untracked.bool(True) ), default = cms.untracked.PSet( ), destinations = cms.untracked.vstring('warnings', 'errors', 'infos', 'debugs', 'cout', 'cerr'), errors = cms.untracked.PSet( placeholder = cms.untracked.bool(True) ), fwkJobReports = cms.untracked.vstring('FrameworkJobReport'), infos = cms.untracked.PSet( Root_NoDictionary = cms.untracked.PSet( limit = cms.untracked.int32(0), optionalPSet = cms.untracked.bool(True) ), optionalPSet = cms.untracked.bool(True), placeholder = cms.untracked.bool(True) ), statistics = cms.untracked.vstring('cerr_stats'), suppressDebug = cms.untracked.vstring(), suppressInfo = cms.untracked.vstring(), suppressWarning = cms.untracked.vstring(), warnings = cms.untracked.PSet( placeholder = cms.untracked.bool(True) ) ) process.RandomNumberGeneratorService = cms.Service("RandomNumberGeneratorService", LHCTransport = cms.PSet( engineName = cms.untracked.string('TRandom3'), initialSeed = cms.untracked.uint32(87654321) ), MuonSimHits = cms.PSet( engineName = cms.untracked.string('TRandom3'), initialSeed = cms.untracked.uint32(987346) ), VtxSmeared = cms.PSet( engineName = cms.untracked.string('HepJamesRandom'), initialSeed = cms.untracked.uint32(98765432) ), ecalPreshowerRecHit = cms.PSet( engineName = cms.untracked.string('TRandom3'), initialSeed = cms.untracked.uint32(6541321) ), ecalRecHit = cms.PSet( engineName = cms.untracked.string('TRandom3'), initialSeed = cms.untracked.uint32(654321) ), externalLHEProducer = cms.PSet( engineName = cms.untracked.string('HepJamesRandom'), initialSeed = cms.untracked.uint32(234567) ), famosPileUp = cms.PSet( engineName = cms.untracked.string('TRandom3'), initialSeed = cms.untracked.uint32(918273) ), famosSimHits = cms.PSet( engineName = cms.untracked.string('TRandom3'), initialSeed = cms.untracked.uint32(13579) ), g4SimHits = cms.PSet( engineName = cms.untracked.string('HepJamesRandom'), initialSeed = cms.untracked.uint32(11) ), generator = cms.PSet( engineName = cms.untracked.string('HepJamesRandom'), initialSeed = cms.untracked.uint32(123456789) ), hbhereco = cms.PSet( engineName = cms.untracked.string('TRandom3'), initialSeed = cms.untracked.uint32(541321) ), hfreco = cms.PSet( engineName = cms.untracked.string('TRandom3'), initialSeed = cms.untracked.uint32(541321) ), hiSignal = cms.PSet( engineName = cms.untracked.string('HepJamesRandom'), initialSeed = cms.untracked.uint32(123456789) ), hiSignalG4SimHits = cms.PSet( engineName = cms.untracked.string('HepJamesRandom'), initialSeed = cms.untracked.uint32(11) ), hiSignalLHCTransport = cms.PSet( engineName = cms.untracked.string('TRandom3'), initialSeed = cms.untracked.uint32(88776655) ), horeco = cms.PSet( engineName = cms.untracked.string('TRandom3'), initialSeed = cms.untracked.uint32(541321) ), l1ParamMuons = cms.PSet( engineName = cms.untracked.string('TRandom3'), initialSeed = cms.untracked.uint32(6453209) ), mix = cms.PSet( engineName = cms.untracked.string('HepJamesRandom'), initialSeed = cms.untracked.uint32(12345) ), mixData = cms.PSet( engineName = cms.untracked.string('HepJamesRandom'), initialSeed = cms.untracked.uint32(12345) ), mixGenPU = cms.PSet( engineName = cms.untracked.string('TRandom3'), initialSeed = cms.untracked.uint32(918273) ), mixRecoTracks = cms.PSet( engineName = cms.untracked.string('TRandom3'), initialSeed = cms.untracked.uint32(918273) ), mixSimCaloHits = cms.PSet( engineName = cms.untracked.string('TRandom3'), initialSeed = cms.untracked.uint32(918273) ), paramMuons = cms.PSet( engineName = cms.untracked.string('TRandom3'), initialSeed = cms.untracked.uint32(54525) ), saveFileName = cms.untracked.string(''), siTrackerGaussianSmearingRecHits = cms.PSet( engineName = cms.untracked.string('TRandom3'), initialSeed = cms.untracked.uint32(24680) ), simBeamSpotFilter = cms.PSet( engineName = cms.untracked.string('HepJamesRandom'), initialSeed = cms.untracked.uint32(87654321) ), simMuonCSCDigis = cms.PSet( engineName = cms.untracked.string('HepJamesRandom'), initialSeed = cms.untracked.uint32(11223344) ), simMuonDTDigis = cms.PSet( engineName = cms.untracked.string('HepJamesRandom'), initialSeed = cms.untracked.uint32(1234567) ), simMuonRPCDigis = cms.PSet( engineName = cms.untracked.string('HepJamesRandom'), initialSeed = cms.untracked.uint32(1234567) ), simSiStripDigiSimLink = cms.PSet( engineName = cms.untracked.string('HepJamesRandom'), initialSeed = cms.untracked.uint32(1234567) ) ) process.TFileService = cms.Service("TFileService", fileName = cms.string('ZJ_ptsqmin4_tune6.root') ) process.CSCGeometryESModule = cms.ESProducer("CSCGeometryESModule", alignmentsLabel = cms.string(''), appendToDataLabel = cms.string(''), applyAlignment = cms.bool(True), debugV = cms.untracked.bool(False), useCentreTIOffsets = cms.bool(False), useDDD = cms.bool(False), useGangedStripsInME1a = cms.bool(True), useOnlyWiresInME1a = cms.bool(False), useRealWireGeometry = cms.bool(True) ) process.CaloGeometryBuilder = cms.ESProducer("CaloGeometryBuilder", SelectedCalos = cms.vstring('HCAL', 'ZDC', 'CASTOR', 'EcalBarrel', 'EcalEndcap', 'EcalPreshower', 'TOWER') ) process.CaloTopologyBuilder = cms.ESProducer("CaloTopologyBuilder") process.CaloTowerGeometryFromDBEP = cms.ESProducer("CaloTowerGeometryFromDBEP", applyAlignment = cms.bool(False), hcalTopologyConstants = cms.PSet( maxDepthHB = cms.int32(2), maxDepthHE = cms.int32(3), mode = cms.string('HcalTopologyMode::LHC') ) ) process.CaloTowerTopologyEP = cms.ESProducer("CaloTowerTopologyEP") process.CastorDbProducer = cms.ESProducer("CastorDbProducer") process.CastorGeometryFromDBEP = cms.ESProducer("CastorGeometryFromDBEP", applyAlignment = cms.bool(False) ) process.DTGeometryESModule = cms.ESProducer("DTGeometryESModule", alignmentsLabel = cms.string(''), appendToDataLabel = cms.string(''), applyAlignment = cms.bool(True), fromDDD = cms.bool(False) ) process.EcalBarrelGeometryFromDBEP = cms.ESProducer("EcalBarrelGeometryFromDBEP", applyAlignment = cms.bool(True) ) process.EcalElectronicsMappingBuilder = cms.ESProducer("EcalElectronicsMappingBuilder") process.EcalEndcapGeometryFromDBEP = cms.ESProducer("EcalEndcapGeometryFromDBEP", applyAlignment = cms.bool(True) ) process.EcalLaserCorrectionService = cms.ESProducer("EcalLaserCorrectionService") process.EcalPreshowerGeometryFromDBEP = cms.ESProducer("EcalPreshowerGeometryFromDBEP", applyAlignment = cms.bool(True) ) process.EcalTrigTowerConstituentsMapBuilder = cms.ESProducer("EcalTrigTowerConstituentsMapBuilder", MapFile = cms.untracked.string('Geometry/EcalMapping/data/EndCap_TTMap.txt') ) process.GlobalTrackingGeometryESProducer = cms.ESProducer("GlobalTrackingGeometryESProducer") process.HcalAlignmentEP = cms.ESProducer("HcalAlignmentEP") process.HcalGeometryFromDBEP = cms.ESProducer("HcalGeometryFromDBEP", applyAlignment = cms.bool(True), hcalTopologyConstants = cms.PSet( maxDepthHB = cms.int32(2), maxDepthHE = cms.int32(3), mode = cms.string('HcalTopologyMode::LHC') ) ) process.MuonDetLayerGeometryESProducer = cms.ESProducer("MuonDetLayerGeometryESProducer") process.ParabolicParametrizedMagneticFieldProducer = cms.ESProducer("AutoParametrizedMagneticFieldProducer", label = cms.untracked.string('ParabolicMf'), valueOverride = cms.int32(-1), version = cms.string('Parabolic') ) process.RPCGeometryESModule = cms.ESProducer("RPCGeometryESModule", compatibiltyWith11 = cms.untracked.bool(True), useDDD = cms.untracked.bool(False) ) process.SiStripRecHitMatcherESProducer = cms.ESProducer("SiStripRecHitMatcherESProducer", ComponentName = cms.string('StandardMatcher'), NSigmaInside = cms.double(3.0), PreFilter = cms.bool(False) ) process.StripCPEfromTrackAngleESProducer = cms.ESProducer("StripCPEESProducer", ComponentName = cms.string('StripCPEfromTrackAngle'), ComponentType = cms.string('StripCPEfromTrackAngle'), parameters = cms.PSet( mLC_P0 = cms.double(-0.326), mLC_P1 = cms.double(0.618), mLC_P2 = cms.double(0.3), mTEC_P0 = cms.double(-1.885), mTEC_P1 = cms.double(0.471), mTIB_P0 = cms.double(-0.742), mTIB_P1 = cms.double(0.202), mTID_P0 = cms.double(-1.427), mTID_P1 = cms.double(0.433), mTOB_P0 = cms.double(-1.026), mTOB_P1 = cms.double(0.253), maxChgOneMIP = cms.double(6000.0), useLegacyError = cms.bool(False) ) ) process.TrackerRecoGeometryESProducer = cms.ESProducer("TrackerRecoGeometryESProducer") process.VolumeBasedMagneticFieldESProducer = cms.ESProducer("VolumeBasedMagneticFieldESProducerFromDB", debugBuilder = cms.untracked.bool(False), label = cms.untracked.string(''), valueOverride = cms.int32(-1) ) process.ZdcGeometryFromDBEP = cms.ESProducer("ZdcGeometryFromDBEP", applyAlignment = cms.bool(False) ) process.fakeForIdealAlignment = cms.ESProducer("FakeAlignmentProducer", appendToDataLabel = cms.string('fakeForIdeal') ) process.hcalDDDRecConstants = cms.ESProducer("HcalDDDRecConstantsESModule", appendToDataLabel = cms.string('') ) process.hcalDDDSimConstants = cms.ESProducer("HcalDDDSimConstantsESModule", appendToDataLabel = cms.string('') ) process.hcalTopologyIdeal = cms.ESProducer("HcalTopologyIdealEP", Exclude = cms.untracked.string(''), appendToDataLabel = cms.string('') ) process.hcal_db_producer = cms.ESProducer("HcalDbProducer", dump = cms.untracked.vstring(''), file = cms.untracked.string('') ) process.idealForDigiCSCGeometry = cms.ESProducer("CSCGeometryESModule", alignmentsLabel = cms.string('fakeForIdeal'), appendToDataLabel = cms.string('idealForDigi'), applyAlignment = cms.bool(False), debugV = cms.untracked.bool(False), useCentreTIOffsets = cms.bool(False), useDDD = cms.bool(False), useGangedStripsInME1a = cms.bool(True), useOnlyWiresInME1a = cms.bool(False), useRealWireGeometry = cms.bool(True) ) process.idealForDigiDTGeometry = cms.ESProducer("DTGeometryESModule", alignmentsLabel = cms.string('fakeForIdeal'), appendToDataLabel = cms.string('idealForDigi'), applyAlignment = cms.bool(False), fromDDD = cms.bool(False) ) process.idealForDigiTrackerGeometry = cms.ESProducer("TrackerDigiGeometryESModule", alignmentsLabel = cms.string('fakeForIdeal'), appendToDataLabel = cms.string('idealForDigi'), applyAlignment = cms.bool(False), fromDDD = cms.bool(False) ) process.siPixelQualityESProducer = cms.ESProducer("SiPixelQualityESProducer", ListOfRecordToMerge = cms.VPSet(cms.PSet( record = cms.string('SiPixelQualityFromDbRcd'), tag = cms.string('') ), cms.PSet( record = cms.string('SiPixelDetVOffRcd'), tag = cms.string('') )) ) process.siStripBackPlaneCorrectionDepESProducer = cms.ESProducer("SiStripBackPlaneCorrectionDepESProducer", BackPlaneCorrectionDeconvMode = cms.PSet( label = cms.untracked.string('deconvolution'), record = cms.string('SiStripBackPlaneCorrectionRcd') ), BackPlaneCorrectionPeakMode = cms.PSet( label = cms.untracked.string('peak'), record = cms.string('SiStripBackPlaneCorrectionRcd') ), LatencyRecord = cms.PSet( label = cms.untracked.string(''), record = cms.string('SiStripLatencyRcd') ) ) process.siStripGainESProducer = cms.ESProducer("SiStripGainESProducer", APVGain = cms.VPSet(cms.PSet( Label = cms.untracked.string(''), NormalizationFactor = cms.untracked.double(1.0), Record = cms.string('SiStripApvGainRcd') ), cms.PSet( Label = cms.untracked.string(''), NormalizationFactor = cms.untracked.double(1.0), Record = cms.string('SiStripApvGain2Rcd') )), AutomaticNormalization = cms.bool(False), appendToDataLabel = cms.string(''), printDebug = cms.untracked.bool(False) ) process.siStripGainSimESProducer = cms.ESProducer("SiStripGainSimESProducer", APVGain = cms.VPSet(cms.PSet( Label = cms.untracked.string(''), NormalizationFactor = cms.untracked.double(1.0), Record = cms.string('SiStripApvGainSimRcd') )), AutomaticNormalization = cms.bool(False), appendToDataLabel = cms.string(''), printDebug = cms.untracked.bool(False) ) process.siStripLorentzAngleDepESProducer = cms.ESProducer("SiStripLorentzAngleDepESProducer", LatencyRecord = cms.PSet( label = cms.untracked.string(''), record = cms.string('SiStripLatencyRcd') ), LorentzAngleDeconvMode = cms.PSet( label = cms.untracked.string('deconvolution'), record = cms.string('SiStripLorentzAngleRcd') ), LorentzAnglePeakMode = cms.PSet( label = cms.untracked.string('peak'), record = cms.string('SiStripLorentzAngleRcd') ) ) process.siStripQualityESProducer = cms.ESProducer("SiStripQualityESProducer", ListOfRecordToMerge = cms.VPSet(cms.PSet( record = cms.string('SiStripDetVOffRcd'), tag = cms.string('') ), cms.PSet( record = cms.string('SiStripDetCablingRcd'), tag = cms.string('') ), cms.PSet( record = cms.string('RunInfoRcd'), tag = cms.string('') ), cms.PSet( record = cms.string('SiStripBadChannelRcd'), tag = cms.string('') ), cms.PSet( record = cms.string('SiStripBadFiberRcd'), tag = cms.string('') ), cms.PSet( record = cms.string('SiStripBadModuleRcd'), tag = cms.string('') ), cms.PSet( record = cms.string('SiStripBadStripRcd'), tag = cms.string('') )), PrintDebugOutput = cms.bool(False), ReduceGranularity = cms.bool(False), ThresholdForReducedGranularity = cms.double(0.3), UseEmptyRunInfo = cms.bool(False), appendToDataLabel = cms.string('') ) process.sistripconn = cms.ESProducer("SiStripConnectivity") process.stripCPEESProducer = cms.ESProducer("StripCPEESProducer", ComponentName = cms.string('stripCPE'), ComponentType = cms.string('SimpleStripCPE'), parameters = cms.PSet( ) ) process.trackerGeometryDB = cms.ESProducer("TrackerDigiGeometryESModule", alignmentsLabel = cms.string(''), appendToDataLabel = cms.string(''), applyAlignment = cms.bool(True), fromDDD = cms.bool(False) ) process.trackerNumberingGeometryDB = cms.ESProducer("TrackerGeometricDetESModule", appendToDataLabel = cms.string(''), fromDDD = cms.bool(False) ) process.trackerTopology = cms.ESProducer("TrackerTopologyEP", appendToDataLabel = cms.string('') ) process.GlobalTag = cms.ESSource("PoolDBESSource", DBParameters = cms.PSet( authenticationPath = cms.untracked.string(''), authenticationSystem = cms.untracked.int32(0), messageLevel = cms.untracked.int32(0), security = cms.untracked.string('') ), DumpStat = cms.untracked.bool(False), ReconnectEachRun = cms.untracked.bool(False), RefreshAlways = cms.untracked.bool(False), RefreshEachRun = cms.untracked.bool(False), RefreshOpenIOVs = cms.untracked.bool(False), connect = cms.string('frontier://FrontierProd/CMS_CONDITIONS'), globaltag = cms.string('80X_mcRun2_asymptotic_2016_v1'), pfnPostfix = cms.untracked.string(''), pfnPrefix = cms.untracked.string(''), snapshotTime = cms.string(''), toGet = cms.VPSet() ) process.HepPDTESSource = cms.ESSource("HepPDTESSource", pdtFileName = cms.FileInPath('SimGeneral/HepPDTESSource/data/pythiaparticle.tbl') ) process.eegeom = cms.ESSource("EmptyESSource", firstValid = cms.vuint32(1), iovIsRunNotTime = cms.bool(True), recordName = cms.string('EcalMappingRcd') ) process.es_hardcode = cms.ESSource("HcalHardcodeCalibrations", GainWidthsForTrigPrims = cms.bool(False), HERecalibration = cms.bool(False), HEreCalibCutoff = cms.double(20.0), HFRecalibration = cms.bool(False), iLumi = cms.double(-1.0), testHFQIE10 = cms.bool(False), toGet = cms.untracked.vstring('GainWidths') ) process.prefer("es_hardcode") process.simCastorDigis = cms.EDAlias( mix = cms.VPSet(cms.PSet( type = cms.string('CastorDataFramesSorted') )) ) process.simEcalUnsuppressedDigis = cms.EDAlias( mix = cms.VPSet(cms.PSet( type = cms.string('EBDigiCollection') ), cms.PSet( type = cms.string('EEDigiCollection') ), cms.PSet( type = cms.string('ESDigiCollection') )) ) process.simHcalUnsuppressedDigis = cms.EDAlias( mix = cms.VPSet(cms.PSet( type = cms.string('HBHEDataFramesSorted') ), cms.PSet( type = cms.string('HcalUpgradeDataFramesSorted') ), cms.PSet( type = cms.string('HFDataFramesSorted') ), cms.PSet( type = cms.string('HODataFramesSorted') ), cms.PSet( type = cms.string('ZDCDataFramesSorted') ), cms.PSet( type = cms.string('QIE10DataFrameHcalDataFrameContainer') )) ) process.simSiPixelDigis = cms.EDAlias( mix = cms.VPSet(cms.PSet( type = cms.string('PixelDigiedmDetSetVector') ), cms.PSet( type = cms.string('PixelDigiSimLinkedmDetSetVector') )) ) process.simSiStripDigis = cms.EDAlias( mix = cms.VPSet(cms.PSet( type = cms.string('SiStripDigiedmDetSetVector') ), cms.PSet( type = cms.string('SiStripRawDigiedmDetSetVector') ), cms.PSet( type = cms.string('StripDigiSimLinkedmDetSetVector') )) ) process.schedule = cms.Schedule(*[ process.generation_step, process.genfiltersummary_step, process.endjob_step ])
[ "karla.pena@cern.ch" ]
karla.pena@cern.ch
5ef59af4bd4952d9745411591a3a686223aaacc2
889335eaa2e884c867a1d39d83ac96b3befa8401
/examples/python/groups_of_lists.py
33b27da1e56a203827d3dff28950d399916f48ff
[]
no_license
nikisix/classes
1f9f7b0f07cf9464e7bbae55529db56a3a4c4145
a36705831cf2e46c2244e5527c2674910cc4a859
refs/heads/master
2021-01-12T21:37:09.658048
2017-03-06T22:07:13
2017-03-06T22:07:13
68,322,183
0
1
null
null
null
null
UTF-8
Python
false
false
1,260
py
''' i have a list a = [1, 2, 3, 5, 2] i need to group these list elements to where they are in groups that their sum `<= 5` ie; this would produce myNewList = [[1,2,2], [3], [5]] ''' import scipy as sp MAXITEMS = 100 target = 20 #"target val" a = [int(round(i * target)) for i in sp.rand(100).tolist()] #a = [1, 1, 4, 2, 3, 5, 2, 4, 3, 2, 1] #a = [1, 1, 4, 2, 3, 5, 2] #a = [1, 5, 2, 3] a = sorted(a, reverse=True) res = [] temp = [] i = 0 while 1: #len(a) > 0: #curr item too large or at target: add it in its own list if a[i] >= target: res.append([a[i]]) a.__delitem__(i) i=0 #over target: check further down in list elif(sum(temp + [a[i]] ) > target): i += 1 #at target: move from temp to result list elif(sum(temp + [a[i]] ) == target): res.append(temp + [a[i]]) temp = [] a.__delitem__(i) i=0 #under target: move from big to temp list else:#(sum(temp + a[i]) < target): temp += [a[i]] a.__delitem__(i) i=0 if len(a) == 0: res.append(temp) break #reached the end of list: move temp to result. reset index if i == len(a): res.append(temp) temp = [] i = 0 print res
[ "nicolai.tesela@gmail.com" ]
nicolai.tesela@gmail.com
1008b28ac6f171e47dac7079c1dc2a1d1f17700b
8dfcc1197cc15d1b05f6529df98be1061fe5215f
/follow_along/apps/still_following/apps.py
b5b5e6279e0e6a2be18066da59cbef52792406f4
[]
no_license
devbaj/django_intro
cae7d32cb95ccd22ce0a922a2497acae1d82995c
62369cc6fb25112f84814dc0ab244f1de83b33b9
refs/heads/master
2020-05-07T16:24:53.191982
2019-04-11T20:46:28
2019-04-11T20:46:28
180,681,451
0
0
null
null
null
null
UTF-8
Python
false
false
104
py
from django.apps import AppConfig class StillFollowingConfig(AppConfig): name = 'still_following'
[ "bjory7@gmail.com" ]
bjory7@gmail.com
e001f4413a6b84f5417a4140027ceaf7b64db41c
82be39549f5d90b1ca1bb65407ae7695e1686ed8
/code_challenges/264/clamy_fernet.py
1b42ee8ab2c6228e9691947ac3cc2b4f0b6f4467
[]
no_license
dcribb19/bitesofpy
827adc9a8984d01c0580f1c03855c939f286507f
a1eb0a5553e50e88d3568a36b275138d84d9fb46
refs/heads/master
2023-03-02T02:04:46.865409
2021-02-12T01:20:30
2021-02-12T01:20:30
259,764,008
1
0
null
2020-10-06T13:48:16
2020-04-28T22:16:38
HTML
UTF-8
Python
false
false
2,146
py
import base64 from cryptography.fernet import Fernet from cryptography.hazmat.backends import default_backend from cryptography.hazmat.primitives import hashes from cryptography.hazmat.primitives.kdf.pbkdf2 import PBKDF2HMAC from dataclasses import dataclass from os import urandom from typing import ByteString @dataclass class ClamyFernet: """Fernet implementation by clamytoe Takes a bytestring as a password and derives a Fernet key from it. If a key is provided, that key will be used. :param password: ByteString of the password to use :param key: ByteString of the key to use, else defaults to None Other class variables that you should implement that are hard set: salt, algorithm, length, iterations, backend, and generate a base64 urlsafe_b64encoded key using self.clf(). """ password: ByteString = b"pybites" key: ByteString = None algorithm = hashes.SHA256() length: int = 32 salt: str = urandom(16) iterations: int = 100000 backend = default_backend() def __post_init__(self): if not self.key: self.key = base64.urlsafe_b64encode(self.kdf.derive(self.password)) @property def kdf(self): """Derives the key from the password Uses PBKDF2HMAC to generate a secure key. This is where you will use the salt, algorithm, length, iterations, and backend variables. """ kdf = PBKDF2HMAC( algorithm=self.algorithm, length=self.length, salt=self.salt, iterations=self.iterations, backend=self.backend ) return kdf @property def clf(self): """Generates a Fernet object Key that is derived from cryptogrophy's fermet. """ return Fernet(self.key) def encrypt(self, message: str) -> ByteString: """Encrypts the message passed to it""" return self.clf.encrypt(message.encode('utf-8')) def decrypt(self, token: ByteString) -> str: """Decrypts the encrypted message passed to it""" return self.clf.decrypt(token).decode()
[ "daniel.cribb.10@gmail.com" ]
daniel.cribb.10@gmail.com
b8bd8ecb2d6ae7c537ba03e53c5ca140b4fa8868
015249134af48ac21c24e10063cc4d6cff364b54
/pyscan.py
d334871e351897d722e0fc2d1ba8d1aca2e3be5c
[]
no_license
redgick/pycom-lora
5537c477848b805f583b67ae9d62651bdac87bf0
2f84d572975e9a6e9935c5535fe2a0a7e4954786
refs/heads/master
2020-03-21T05:39:58.047825
2018-06-28T07:56:25
2018-06-28T07:56:25
138,172,221
1
0
null
null
null
null
UTF-8
Python
false
false
190
py
from pycoproc import Pycoproc __version__ = '1.0.0' class Pyscan(Pycoproc): def __init__(self, i2c=None, sda='P22', scl='P21'): Pycoproc.__init__(self, i2c, sda, scl)
[ "remy@chefclub.tv" ]
remy@chefclub.tv
40dce7b2189c4714c18f812a71958d9b2df2f9ae
19dda8b9ef951a3c640733a300e9c35e451c14e9
/traphing/math/basicMathlib.py
260a5520b96094c2c18d3bb6250606d947589232
[]
no_license
manuwhs/traphing
b47236e390cdbc7bd8f64a6341d8582754b4cd8f
505b6680246bffce2e8bb82225d1eac20bddf5a2
refs/heads/master
2020-07-29T20:33:53.865869
2019-11-17T14:38:13
2019-11-17T14:38:13
209,950,140
1
0
null
null
null
null
UTF-8
Python
false
false
12,904
py
#########################################################3 ############### BASIC MATH ############################## ########################################################## ## Library with basic mathematical functions # These funcitons expect a price sequences: # has to be a np.array [Nsamples][Nsec] import pandas as pd import numpy as np import matplotlib.pyplot as plt import os as os import matplotlib.colors as ColCon from scipy import spatial import datetime as dt from sklearn import linear_model from .. import utils as ul import scipy.stats as stats from scipy.stats import multivariate_normal from scipy.stats import norm import scipy from sklearn.decomposition import PCA import math def delta(L): delta = np.zeros((L,1)) delta[0] = 1 return delta def diffw(L, lag = 1): # Window for the lagging delta = np.zeros((L,1)) delta[0] = 1 delta[lag] = -1 return delta def convolve(signal, window, mode = "full"): # performs the convolution of the signals L = window.size sM = np.convolve(signal.flatten(),window.flatten(), mode = "full") if (mode == "valid"): sM[:L] = sM[:L] * np.Nan sM = sM[:-L+1] # Remove the last values since they hare convolved with 0's as well sM = sM.reshape ((sM.size,1)) return sM def get_return(price_sequences, lag = 1, cval = 0): # Get the return of the price sequences Nsam, Nsec = price_sequences.shape # print price_sequences.shape R = (price_sequences[lag:,:] - price_sequences[0:-lag,:])/price_sequences[0:-lag,:] # Add zero vector so that the length of the output is the same # as of the input cval_vec = np.ones((lag,Nsec)) * cval R = np.concatenate((cval_vec,R), axis = 0) return R def reconstruc_return(seq,ret, lag = 1, cval = 0): # Reconstruction, given some returns a sequence # How it would be to take reconstruct from the diff signal # We shift to the right to that # v[i] = x[i] - x[i-1] and x[i] # If we do v[j] = v[i+1] = x[i+1] - x[i] # Then v[j] + x[i] = x[i+1] # So then we shift to the left # For the returns is similar # r[i] = (x[i] - x[i-1])/x[i-1] and x[i] # x[i] = x[i-1]* r[i] + x[i-1] ret_shifted = np.roll(ret,-lag, axis = 0) reconstruction = seq * ret_shifted + seq reconstruction = np.roll(reconstruction,lag, axis = 0) return reconstruction def get_cumReturn(price_sequences): # Get the cumulative return of the price sequences returns = get_return(price_sequences) cR = np.cumsum(returns, axis = 0) return cR def get_SharpR(Returns, axis = 0, Rf = 0): # Computes the Sharp ratio of the given returns # Rf = Risk-free return E_Return = np.mean(Returns,axis) std_Return = np.std(Returns,axis) SR = (E_Return- Rf)/std_Return return SR def get_SortinoR(Returns, axis = 0): # Computes the Sortino ratio of the given returns E_Return = np.mean(Returns,axis) Positive_Returns = Returns[np.where(Returns < 0)] std_Return = np.std(Positive_Returns,axis) SR = E_Return/std_Return return SR def get_covMatrix(returns): # We need to transpose it to fit the numpy standard covRet = np.cov(returns.T) return covRet def get_corrMatrix(returns): # We need to transpose it to fit the numpy standard covRet = np.corrcoef(returns.T) return covRet def get_linearRef(X,Y): ## Calculates the parameters of the linear regression Nsam, Ndim = X.shape # X = np.concatenate((np.ones((Nsam,1)), X ), axis = 1) # Create linear regression object regr = linear_model.LinearRegression() # Train the model using the training sets regr.fit(X, Y) # coeffs = np.array([regr.intercept_, regr.coef_])[0] coeffs = np.append(regr.intercept_, regr.coef_) # coeffs = np.concatenate((regr.coef_,regr.intercept_), axis = 1) return coeffs def obtain_equation_line(Rf, Epoint, STDpoint): # Given the Rf and a portfolio point # This function calculates the equation of the line # Where the portfolio should be. P1 = [STDpoint, Epoint] P0 = [0, Rf] # Origin point slope = (P1[1] - P0[1])/(P1[0] - P0[0]) bias = slope * P0[0] + P0[1] param = [bias, slope] return param def get_TurnOver(w1,w2): # Gets the turn over between two porfolios # That is the absolute value of allocation we have to do. to = np.subtract(w1,w2) to = np.abs(to) to = np.sum(to) return to def get_meanRange(timeSeries, window = 6): # This function moves a window of samples over a timeSeries and calculates # the mean and range to see if they are correlated and a transformation # of the original signal is needed. timeSeries = ul.fnp(timeSeries) means = [] ranges = [] # print timeSeries for i in range(timeSeries.size - window): samples = timeSeries[i:(i+window),:] rangei = max(samples) - min(samples) meani = np.mean(samples) means.append(meani) ranges.append(rangei) means = ul.fnp(means) ranges = ul.fnp(ranges) return means, ranges #from scipy.ndimage import interpolation #interpolation.shift def diff(X, lag = 1, n = 1, cval = np.NaN): # cval=np.NaN # It computes the lagged difference of the signal X[Nsamples, Nsig] # The output vector has the same length as X, the noncomputable values # are set as cval # n is the number of times we apply the diff. X = ul.fnp(X) Nsa, Nsig = X.shape for i in range(n): X = X[lag:,:] - X[:-lag,:] # print sd # Shift to the right npossitions unk_vec = np.ones((lag*n,Nsig)) * cval try: X = np.concatenate((unk_vec,X), axis = 0) except: print("Exception in diff function. Probably the input vector is dates") return X def shift(X, lag = 1, cval = np.nan): # cval=np.NaN # It shifts the X[Nsam][Ndim] lag positions to the right. or left if negative X = ul.fnp(X) if (len (X.shape) == 1): X = np.atleast_2d(X).T Nsa, Nsig = X.shape if (lag > 0): filling = cval * np.ones((lag,Nsig)) X = np.concatenate((filling,X[:-lag,:]), axis = 0) elif(lag < 0): # print sd # Shift to the right npossitions filling = cval * np.ones((-lag,Nsig)) X = np.concatenate((X[-lag:,:],filling), axis = 0) return X def get_plane_Z(grid_x, grid_y, params): # Given the grids and the parameters we can calculate the Z xx, yy = np.meshgrid(grid_x, grid_y, sparse=True) z = params[0] + params[1]*xx + params[2]*yy ## Method 2 # z = [] # for x in xx: # for y in yy: # z.append(params[0] + params[1]*x + params[2]*y) # z = np.sin(xx**2 + yy**2) / (xx**2 + yy**2) return z #theta = np.degrees(np.arctan2(*vecs[:,0][::-1])) # *vecs[:,0][::-1] #def length(v): # return np.sqrt(v.T.dot(v)) #theta = np.degrees(math.acos(ret1.T.dot(ret2) / (length(ret1) * length(ret2)))) def eigsorted2(data): pca = PCA(n_components=2) xtPCA = pca.fit_transform(data) vecs = pca.components_ vals = pca.explained_variance_ return vecs,vals def gaussian1D_points(X = None, mean = None, std = None, num = 100, std_K = 2, x_grid = None): ## Fit a gaussian to the data or use the parameters given. # Gives the gaussian set of points for the std_K if (type(X) != type(None)): mean = np.mean(X) std = np.std(X) if (type(x_grid) == type(None)): x_grid = np.linspace(mean - std_K*std, mean + std_K*std, num = num).T # print (mean - std_K*std, mean + std_K*std) y_values = norm.pdf(x_grid,mean,std*std) # Z = (x_grid - mean)/std # y_values = stats.norm.pdf(Z) / std# * stats.norm.pdf(-mean/std) return x_grid, y_values def gaussian1D_points_cdf(X = None, mean = None, std = None, num = 100, std_K = 2, x_grid = None): ## Fit a gaussian to the data or use the parameters given. # Gives the cummulative distribution of the gaussian set of points for the std_K if (type(X) != type(None)): mean = np.mean(X) std = np.std(X) if (type(x_grid) == type(None)): x_grid = np.linspace(mean - std_K*std, mean + std_K*std, num = num) # We normalize since the function assumes a gaussian N(0,1) Z = (x_grid - mean)/std y_values = stats.norm.cdf(Z) # * stats.norm.pdf(-mean/std) return x_grid, y_values def empirical_1D_cdf(X): ## Fit a gaussian to the data or use the parameters given. # Gives the gaussian set of points for the std_K sorted_X = np.sort(X.flatten()) y_values = ul.fnp(range(1,X.size + 1))/float(X.size) return sorted_X, y_values def get_eigenVectorsAndValues(X = None, Sigma = None): # Gets the gaussian params needed to plot the ellipse of data if (type(X) == type(None)): vecs, vals, V = scipy.linalg.svd(Sigma) else: vecs,vals = eigsorted2(X) return vecs,vals def get_gaussian_ellipse_params(X = None, mu = None, Sigma = None, Chi2val = 2.4477): # Gets the gaussian params needed to plot the ellipse of data if (type(X) != type(None)): mean = np.mean(X, axis = 0) # vals, vecs = eigsorted(cov) vecs,vals = eigsorted2(X) else: vecs, vals, V = scipy.linalg.svd(Sigma) mean = mu # Get the 95% confidence interval error ellipse w, h = Chi2val * np.sqrt(vals) # Calculate the angle between the x-axis and the largest eigenvector # This angle is between -pi and pi. #Let's shift it such that the angle is between 0 and 2pi # theta theta = math.atan2(vecs[0,1],vecs[0,0]); if(theta < 0): theta = theta + 2*np.pi; return mean, w,h, theta def get_ellipse_points(center,a,b,phi, num = 100): # Returns: the [x,y]_Nsam points to plot an ellipse. # center: Centre point of the ellipse # a: X width of the ellipse # b: Y height of the llipse # phi: Angle of the major axis of the ellipse with the X axis. theta_grid = np.linspace(0,2*np.pi, num = num); # the ellipse in x and y coordinates ellipse_x_r = a*np.cos( theta_grid ); ellipse_y_r = b*np.sin( theta_grid ); #Define a rotation matrix R = np.array([[ np.cos(phi), np.sin(phi)], [-np.sin(phi), np.cos(phi) ]]); #let's rotate the ellipse to some angle phi r_ellipse = np.array([ellipse_x_r,ellipse_y_r]).T.dot(R) r_ellipse[:,0] += center[0] r_ellipse[:,1] += center[1] return r_ellipse from sklearn.neighbors import KernelDensity def kde_sklearn(x, x_grid, bandwidth=0.2, **kwargs): """Kernel Density Estimation with Scikit-learn""" kde_skl = KernelDensity(bandwidth=bandwidth, **kwargs) x = ul.fnp(x) x_grid = ul.fnp(x_grid) print (x.shape) # if (x.shape[1] == 1): # x = x[:, np.newaxis] # x_grid = x_grid[:, np.newaxis] kde_skl.fit(x) # score_samples() returns the log-likelihood of the samples log_pdf = kde_skl.score_samples(x_grid) return np.exp(log_pdf) def kde2D(x, y, bandwidth, xbins=10j, ybins=10j, **kwargs): """Build 2D kernel density estimate (KDE).""" # create grid of sample locations (default: 100x100) xx, yy = np.mgrid[x.min():x.max():xbins, y.min():y.max():ybins] xy_sample = np.vstack([yy.ravel(), xx.ravel()]).T xy_train = np.vstack([y.T, x.T]).T print (xy_train.shape) print (xy_sample.shape) kde_skl = KernelDensity(bandwidth=bandwidth, **kwargs) kde_skl.fit(xy_train) # score_samples() returns the log-likelihood of the samples z = np.exp(kde_skl.score_samples(xy_sample)) return xx, yy, np.reshape(z, xx.shape) def get_gaussian2D_pdf(data = None, xbins=10j, ybins=10j, mu = None, cov = None, std_K = 2, x_grid = None): ## Fit a gaussian to the data or use the parameters given. # Gives the gaussian set of points for the std_K mu = np.array(mu).flatten() std_1 = np.sqrt(cov[0,0]) std_2 = np.sqrt(cov[1,1]) if (type(data) != type(None)): mu = np.mean(data) cov = np.cpv(data) if (type(x_grid) == type(None)): xx, yy = np.mgrid[mu[0] - std_K*std_1:mu[0] + std_K*std_1:xbins, mu[1] - std_K*std_2:mu[1] + std_K*std_2:ybins] # Function to obtain the 3D plot of the pdf of a 2D gaussian # create grid of sample locations (default: 100x100) xy_sample = np.vstack([xx.ravel(), yy.ravel()]).T # xy_train = np.vstack([data[:,[1]].T, data[:,[0]].T]).T # score_samples() returns the log-likelihood of the samples z = multivariate_normal.pdf(xy_sample,mu,cov) return xx, yy, np.reshape(z, xx.shape)
[ "https://manuDTU@bitbucket.org" ]
https://manuDTU@bitbucket.org
53173191d03737e0d31468e8b84e16775f2ccb45
b7d0b601a6c513768ead72b38c96752e06206626
/run_q4.py
4c07880300c2f1a6d96a400a6dca5bf14abfceeb
[]
no_license
tongerlee/ComputerVision-HW5
ac405294abd372f4a54de2c132590caf90c25c0c
3948f4b02bf57049eacd09525ec566d2dd023a01
refs/heads/master
2020-05-16T12:56:59.248260
2019-04-23T17:03:44
2019-04-23T17:03:44
183,059,955
0
0
null
null
null
null
UTF-8
Python
false
false
4,543
py
import os import numpy as np import matplotlib.pyplot as plt import matplotlib.patches import skimage import skimage.measure import skimage.color import skimage.restoration import skimage.io import skimage.filters import skimage.morphology import skimage.segmentation from nn import * from q4 import * # do not include any more libraries here! # no opencv, no sklearn, etc! import warnings warnings.simplefilter(action='ignore', category=FutureWarning) warnings.simplefilter(action='ignore', category=UserWarning) # real content of the images true_content = [list('TODOLIST'), list('1MAKEATODOLIST'), list('2CHECKOFFTHEFIRST'), list('THINGONTODOLIST'), list('3REALIZEYOUHAVEALREADY'), list('COMPLETED2THINGS'), list('4REWARDYOURSELFWITH'), list('ANAP'), list('ABCDEFG'), list('HIJKLMN'), list('OPQRSTU'), list('VWXYZ'), list('1234567890'), list('HAIKUSAREEASY'), list('BUTSOMETIMESTHEYDONTMAKESENSE'), list('REFRIGERATOR'), list('DEEPLEARNING'), list('DEEPERLEARNING'), list('DEEPESTLEARNING')] count = 0 # count for the images for img in os.listdir('../images'): im1 = skimage.img_as_float(skimage.io.imread(os.path.join('../images',img))) bboxes, bw = findLetters(im1) plt.figure() plt.imshow(bw) for bbox in bboxes: minr, minc, maxr, maxc = bbox rect = matplotlib.patches.Rectangle((minc, minr), maxc - minc, maxr - minr, fill=False, edgecolor='red', linewidth=2) plt.gca().add_patch(rect) plt.show() # find the rows using..RANSAC, counting, clustering, etc. row_boxes = np.array(bboxes)[:, 0].reshape(-1, 1) # print(row_boxes) rows = [] current_row = [] # clustering for i in range(row_boxes.shape[0]-1): current_row.append(bboxes[i]) if row_boxes[i+1] - row_boxes[i] > 100: rows.append(current_row) current_row = [] current_row.append(bboxes[-1]) rows.append(current_row) # crop the bounding boxes # note.. before you flatten, transpose the image (that's how the dataset is!) # consider doing a square crop, and even using np.pad() to get your images looking more like the dataset # load the weights # run the crops through your neural network and print them out import pickle import string letters = np.array([_ for _ in string.ascii_uppercase[:26]] + [str(_) for _ in range(10)]) params = pickle.load(open('q3_weights.pickle','rb')) total_char = 0 correct = 0 for eachRow in rows: # sort each row by center sorted_row = sorted(eachRow, key = lambda x: (x[1] + x[3])//2 ) row_content = [] for bbox in sorted_row: # get each letter cropped crop_image = bw[bbox[0]:bbox[2], bbox[1]:bbox[3]] # padding pad_factor = max(crop_image.shape[0], crop_image.shape[1]) pad_y = int((pad_factor - crop_image.shape[0])//2 + pad_factor//10) pad_x = int((pad_factor - crop_image.shape[1])//2 + pad_factor//10) crop_padding = np.pad(crop_image, [(pad_y, pad_y),(pad_x, pad_x)], 'constant',constant_values=(1, 1)) # resize crop_final = skimage.transform.resize(crop_padding, (32, 32)) # according to the plot, the resized images are pretty unclear so I am using erosion here to emphasize the letter crop_final = skimage.morphology.erosion(crop_final,skimage.morphology.square(3)) # flatten row_content.append(crop_final.T.flatten()) row_content = np.array(row_content) # forward h1 = forward(row_content, params,'layer1') probs = forward(h1, params, 'output', softmax) predicted_values = np.argmax(probs, axis=1) predicted_content = [letters[i] for i in predicted_values] print(''.join(predicted_content)) for j, eachChar in enumerate(true_content[count]): total_char +=1 if j >= len(predicted_content): break if eachChar == predicted_content[j]: correct+=1 count+=1 print(correct) print('Accuracy: ', correct/total_char)
[ "noreply@github.com" ]
tongerlee.noreply@github.com
2f15223d580c39440b6fc5541b5cfe89cb21abe3
ff99a12652e0c1379fd0e8ae6b6536a397bc5d0a
/thesis/experiments/exp_dm/utils.py
59e998b0a25df77d321a0d10af45881eed147e47
[]
no_license
peterashwell/honors
3f6c6fc7add4412a8bc4789c46b78481c3ccce0a
a3c29c61f3be097ed1f4bebb84d180e3a48a39bc
refs/heads/master
2021-01-20T04:36:38.542142
2011-11-05T13:27:14
2011-11-05T13:27:14
1,482,000
1
0
null
null
null
null
UTF-8
Python
false
false
5,900
py
import random from math import fabs from math import tan from math import radians from math import floor from math import sqrt import numpy # Take the average of the two nearest values that are present to position def simple_interpolate(lc): max_length = int(lc[0][-1]) new_lc = [[], []] # Iterato over all time indices that should be there available_index = 0 # The index of the available time for time in xrange(max_length): #if available_index >= len(lc[0]): # new_lc[1].append((lc[1][available_index - 1] + 0) / 2.0) if time == lc[0][available_index]: new_lc[0].append(time) new_lc[1].append(lc[1][available_index]) available_index += 1 else: # Interpolate if available_index == 0 or available_index == lc[0][-1]: pass else: new_lc[0].append(time) new_lc[1].append((lc[1][available_index - 1] + lc[1][available_index]) / 2.0) return new_lc def distribute(lc): flux = lc[1] min = 1 max = 10 new_flux = random.uniform(max ** -2.3, min) ** (1 / -2.3) mean = 1.0 * sum(flux) / len(flux) for obs_num in xrange(len(flux)): flux[obs_num] *= new_flux / mean return [lc[0], flux] # Make percent of the signal available def available(lc, percent): print percent, percent > 0, percent < 100 assert percent > 0 and percent < 100 #print percent #print len(lc[0]) #print percent / 100.0 #print floor(len(lc[0]) * (percent / 100.0)) avail_range = int(floor(len(lc[0]) * (percent / 100.0))) return [lc[0][:avail_range], lc[1][:avail_range]] # Add gaussian noise to the signal to the new signal to noise ratio def signal_noise(lc, sig_noise_ratio): # First compute signal std dev lc_len = len(lc[0]) * 1.0 sigma = sqrt(sum([x ** 2 for x in lc[1]]) / lc_len - (sum(lc[1]) / lc_len) ** 2) print sigma # Add random noise noise_amt = (1.0 / sig_noise_ratio) * sigma return [lc[0], [x + numpy.random.normal(0,noise_amt) for x in lc[1]]] # Remove part of the signal as chunks of size 1, 2, 5 def gapify(lc, gap_amt): print lc[0] MINIMUM_POINTS = 5 gaps = [] time = lc[0] flux = lc[1] remove_amt = int(floor(len(flux) * gap_amt / 100.0)) if len(lc[0]) - remove_amt < MINIMUM_POINTS: remove_amt = len(lc[0]) - MINIMUM_POINTS removed = 0 while removed < remove_amt: gap_size = random.choice([1, 2, 5]) if gap_size > remove_amt - removed: gap_size = remove_amt - removed removed += gap_size gap_start = random.randrange(1, len(flux) - gap_size) gaps.append((gap_start, time[gap_start:gap_start + gap_size])) time = time[:gap_start] + time[gap_start + gap_size:] flux = flux[:gap_start] + flux[gap_start + gap_size:] # reintroduce gaps as '-' for gap in reversed(gaps): start = gap[0] time = time[:start] + gap[1] + time[start:] flux = flux[:start] + ['-'] * len(gap[1]) + flux[start:] return [time, flux] # Find linear approximation of a light curve def linearapprox(lc, granularity): approx = [] interval_times = [] interval_points = [] for i, point in enumerate(lc[1]): interval_times.append(lc[0][i]) # grab time as well interval_points.append(point) if i != 0 and i % granularity == 0: # Compute linear regression S_xy = sum([x * y for x, y in zip(interval_times, interval_points)]) S_x = sum(interval_times) S_y = sum(interval_points) S_xx = sum([x * x for x in interval_times]) gradient = None if fabs(S_x + S_xx) < 1e-10: grad_symb = 0 else: n = len(interval_times) gradient = (n * S_xy - S_x * S_y) / (n * S_xx - S_x ** 2) #print gradient, interval_points #print interval_points #print gradient if gradient >= tan(radians(75)): grad_symb = 0 elif gradient >= tan(radians(45)): grad_symb = 1 elif gradient >= tan(radians(15)): grad_symb = 2 elif gradient >= tan(radians(5)): grad_symb = 3 elif gradient >= -1 * tan(radians(5)): grad_symb = 4 elif gradient >= -1 * tan(radians(15)): grad_symb = 5 elif gradient >= -1 * tan(radians(45)): grad_symb = 6 elif gradient >= -1 * tan(radians(75)): grad_symb = 7 else: grad_symb = 8 approx.append([interval_times[0], interval_times[-1], grad_symb]) interval_times = [] interval_points = [] return approx # Change the intensity of the curve to have mean of new_mean def normalise(lc, new_mean=1): # Compute mean of the curve flux_sum = 0 for p in lc[1]: flux_sum += p flux_mean = flux_sum / (1.0 * len(lc[1])) # Update the flux measurements for i in xrange(len(lc[1])): lc[1][i] = lc[1][i] / flux_mean * new_mean return lc def crossfold(folds, dataset): random.shuffle(dataset) fold_size = len(dataset) / folds fold_left = len(dataset) % folds #print "fold size:", fold_size #print "fold left:", fold_left # For each fold yield fold test and train prev_end = None # keep track of last endpoint for fold for fold_num in xrange(folds): if fold_left > 0: offset = 1 fold_left -= 1 else: offset = 0 if prev_end is None: # first run fold_start = 0 fold_end = 0 + fold_size + offset prev_end = fold_end else: fold_start = prev_end fold_end = fold_start + fold_size + offset prev_end = fold_end # record last endpoint test = dataset[fold_start : fold_end] train = dataset[:fold_start] + dataset[fold_end:] yield test, train # In place, take a sample of maxlen of a light curve def sample(lc, maxlen): if len(lc[1]) <= maxlen: return lc else: new_lc = [[],[]] sparsity = int(len(lc[1]) / (1.0 * maxlen)) #print "sparsity:", sparsity for i, point in enumerate(lc[1]): if i % sparsity == 0: new_lc[0].append(lc[0][i]) new_lc[1].append(lc[1][i]) return new_lc def all_distortions(lc, noise, available_pct, missing, powlaw): if powerlaw: lc = distribute(lc) else: lc = normalise(lc) if noise > 0: lc = signal_noise(lc, noise) if available_pct < 100.0: lc = available(lc, available_pct) if missing > 0: lc = gapify(lc, missing) return lc
[ "pash4408@uni.sydney.edu.au" ]
pash4408@uni.sydney.edu.au
08cde55c61536e4765df810f0133a40c439ba803
116231623775a8624f1c0e134d88a20f25c8d2d0
/Ex_Files_Learning_Python/Ex_Files_Learning_Python/Exercise Files/Ch5/htmlparsing_start.py
94b3882ba569cc80177300ef57590e93a70cdd4c
[]
no_license
pavankumarNama/PythonLearnig
2a3e585efe3b81a8d51d439df506b2c066d7e87f
69bd744a55b7a53d3fc891b10efc319e2e148829
refs/heads/master
2020-07-17T18:39:20.501105
2019-09-14T17:31:36
2019-09-14T17:31:36
206,074,122
0
0
null
null
null
null
UTF-8
Python
false
false
1,241
py
# # Example file for parsing and processing HTML # from html.parser import HTMLParser metacount = 0 class MyHtmlParser(HTMLParser): def handle_comment(self, data): print("comment encountered ", data) pos = self.getpos() print("line number %d and position" % pos[0], pos[1]) def handle_data(self, data): if data.isspace(): return print("data encountered ", data) pos = self.getpos() print("line number %d and position" % pos[0], pos[1]) def handle_endtag(self, tag): print("end tag encountered ", tag) pos = self.getpos() print("line number %d and position" % pos[0], pos[1]) def handle_starttag(self, tag, attrs): global metacount if tag == 'meta': metacount += 1 print("start tag encountered ", tag) pos = self.getpos() print("line number %d and position" % pos[0], pos[1]) if attrs.__len__() > 0: print('Attributes') for attr in attrs: print(attr[0], '=', attr[1]) def main(): # instantiate the parser and feed it some HTML parser = MyHtmlParser() f = open("samplehtml.html") if(f.mode == 'r'): data = f.read() parser.feed(data) if __name__ == "__main__": main(); print("Meta Count :: ", metacount)
[ "pavan_nama@epam.com" ]
pavan_nama@epam.com
a68dd80c57ee01d1dce08e0314b100dd89bc0f14
5ecfa1bf82a7a9fcb542f5063e0ef1c439e0607d
/chapter_14/tally_predictions.py
8f225d50913c2f317809641b1695bea200917665
[ "MIT" ]
permissive
alexiewx/PracticalDeepLearningPython
54256e1e973d30d4290ae9346ee2d314ab6f59c8
7466bac89e6e8e1e491dcacc5172598a05920d79
refs/heads/main
2023-08-30T22:39:04.848840
2021-10-24T17:47:39
2021-10-24T17:47:39
null
0
0
null
null
null
null
UTF-8
Python
false
false
541
py
def tally_predictions(model, x, y): pp = model.predict(x) p = np.zeros(pp.shape[0], dtype="uint8") for i in range(pp.shape[0]): p[i] = 0 if (pp[i,0] > pp[i,1]) else 1 tp = tn = fp = fn = 0 for i in range(len(y)): if (p[i] == 0) and (y[i] == 0): tn += 1 elif (p[i] == 0) and (y[i] == 1): fn += 1 elif (p[i] == 1) and (y[i] == 0): fp += 1 else: tp += 1 score = float(tp+tn) / float(tp+tn+fp+fn) return [tp, tn, fp, fn, score]
[ "oneelkruns@hotmail.com" ]
oneelkruns@hotmail.com
c8038c6ab4252fe32f824e803f86d7d7591701ef
bcc7011cb121e653d831e77206e541675e348337
/Ugly_Number_II.py
afcfbde2313398bcaea4e0213ada86f9ccf34003
[]
no_license
Built00/Leetcode
2115c20bf91e9f9226ce952293132bc7a852fe86
ec3c0d4bd368dd1039f0fed2a07bf89e645a89c3
refs/heads/master
2020-11-24T09:12:08.172973
2018-03-27T01:23:08
2018-03-27T01:23:08
null
0
0
null
null
null
null
UTF-8
Python
false
false
2,405
py
# -*- encoding:utf-8 -*- # __author__=='Gan' # Write a program to find the n-th ugly number. # Ugly numbers are positive numbers whose prime factors only include 2, 3, 5. # For example, 1, 2, 3, 4, 5, 6, 8, 9, 10, 12 is the sequence of the first 10 ugly numbers. # Note that 1 is typically treated as an ugly number, and n does not exceed 1690. # Credits: # Special thanks to @jianchao.li.fighter for adding this problem and creating all test cases. # 596 / 596 test cases passed. # Status: Accepted # Runtime: 199 ms # Your runtime beats 52.37 % of python submissions. class Solution(object): def nthUglyNumber(self, n): """ :type n: int :rtype: int """ if n <= 0: return False ans = [1] factor2 = 0 factor3 = 0 factor5 = 0 for i in range(1, n): ans += min( ans[factor2] * 2, ans[factor3] * 3, ans[factor5] * 5, ), if ans[-1] == ans[factor2] * 2: factor2 += 1 if ans[-1] == ans[factor3] * 3: factor3 += 1 if ans[-1] == ans[factor5] * 5: factor5 += 1 return ans[-1] # 596 / 596 test cases passed. # Status: Accepted # Runtime: 52 ms # Your runtime beats 97.52 % of python submissions. class Solution(object): ans = sorted( (2 ** i) * (3 ** j) * (5 ** k) for i in range(32) for j in range(20) for k in range(14) ) def nthUglyNumber(self, n): """ :type n: int :rtype: int """ # Use self, the instance only once iteration. return self.ans[n - 1] # 596 / 596 test cases passed. # Status: Accepted # Runtime: 459 ms # Your runtime beats 15.13 % of python submissions. import heapq class Solution(object): def nthUglyNumber(self, n): """ :type n: int :rtype: int """ q2, q3, q5 = [2], [3], [5] ugly = 1 for u in heapq.merge(q2, q3, q5): if n == 1: print(q2, q3, q5) return ugly if u > ugly: ugly = u n -= 1 q2 += 2 * u, q3 += 3 * u, q5 += 5 * u, if __name__ == '__main__': print(Solution().nthUglyNumber(10)) print(Solution().nthUglyNumber(1))
[ "binwengan@gmail.com" ]
binwengan@gmail.com
8ef0f77a37724f1d373210f52b0c4685c81421b1
c32611ddb45d0c0aeb25c9923257e453305f2e3e
/jchord/knowledge.py
8c98771d2d0bd2b1c29c81879d790df3d2d66148
[ "MIT" ]
permissive
sourcery-ai-bot/jchord
5681004b0636a21bc92284f35ba79a469ca4081f
63a8e0cafe8f7884cb372359456a396d8785c6d7
refs/heads/master
2022-09-13T04:14:16.319446
2020-05-31T14:33:52
2020-05-31T14:33:52
268,298,006
0
0
null
2020-05-31T14:33:40
2020-05-31T14:33:40
null
UTF-8
Python
false
false
3,332
py
""" Contains various literals that are used for computations throughout the library. * `REPETITION_SYMBOL` (`str`): The symbol that's used to indicate repetition in textual representations of chord progressions. * `MAJOR_SCALE_OFFSETS` (`Dict[int, int]`): Maps the scale degrees of the major scale to number of semitones from the root. * `ACCIDENTALS` (`Set[str]`): The set of accidentals. * `MAJOR_FROM_C` (`List[str]`): A list of the 7 note names in the C major scale. * `CHROMATIC` (`List[str]`): A list of the 12 chromatic notes starting from C. Only sharp notes are included here. * `ENHARMONIC` (`List[Tuple[str, str]])`): A list of the 5 pairs of enharmonic note names. * `CHORD_NAMES` (`Dict[str, List[str]]`): Maps chord names to the list of scale degrees in the chord, not including the root. * `CHORD_ALIASES`: (`Dict[str, str]`): Maps alternative chord names to the canonical chord name in `CHORD_NAMES`. * `DYADS`: (`Dict[int, str]`): A collection of two-note chords with names. Maps the number of semitones between the root and the other note to the chord name. * `TRIADS_WITH_FIFTH` (`Dict[int, str]`): A collection of three-note chords with names. All of these triads include a fifth. Maps the semitone that is not the root or the fifth to the chord name. """ REPETITION_SYMBOL = "--" MAJOR_SCALE_OFFSETS = {1: 0, 2: 2, 3: 4, 4: 5, 5: 7, 6: 9, 7: 11} ACCIDENTALS = {"b", "#"} MAJOR_FROM_C = ["C", "D", "E", "F", "G", "A", "B"] ROMAN = ["III", "IV", "II", "I", "VII", "VI", "V"] LETTERS = ROMAN + MAJOR_FROM_C CHROMATIC = ["C", "C#", "D", "D#", "E", "F", "F#", "G", "G#", "A", "A#", "B"] ENHARMONIC = [("C#", "Db"), ("D#", "Eb"), ("F#", "Gb"), ("G#", "Ab"), ("A#", "Bb")] CHORD_NAMES = { # Major "maj": ["3", "5"], "maj7": ["3", "5", "7"], "maj9": ["3", "5", "7", "9"], "maj11": ["3", "5", "7", "9", "11"], "maj13": ["3", "5", "7", "9", "11", "13"], "6": ["3", "5", "6"], "69": ["3", "5", "6", "9"], "5": ["5"], # Dominant "7": ["3", "5", "b7"], "9": ["3", "5", "b7", "9"], "7#9": ["3", "5", "b7", "#9"], "7b9": ["3", "5", "b7", "b9"], "11": ["3", "5", "b7", "9", "11"], "7b11": ["3", "5", "b7", "9", "b11"], "7#11": ["3", "5", "b7", "9", "#11"], "13": ["3", "5", "b7", "9", "11", "13"], "7b13": ["3", "5", "b7", "9", "11", "b13"], "7#13": ["3", "5", "b7", "9", "11", "#13"], # Minor "m": ["b3", "5"], "m6": ["b3", "5", "6"], "m7": ["b3", "5", "b7"], "m9": ["b3", "5", "b7", "9"], "m11": ["b3", "5", "b7", "9", "11"], "m13": ["b3", "5", "b7", "9", "11", "13"], # Diminished "dim": ["b3", "b5"], "m7b5": ["b3", "b5", "b7"], "dim7": ["b3", "b5", "bb7"], # Augmented "aug": ["3", "#5"], # Suspended "sus2": ["2", "5"], "sus4": ["4", "5"], "7sus2": ["2", "5", "b7"], "7sus4": ["4", "5", "b7"], } CHORD_ALIASES = { # Major "major": "maj", "maj": "maj", # Minor "-": "m", "min": "m", "minor": "m", # Dominant "dom": "7", # Diminished "o": "dim7", "ø": "m7b5", # Augmented "+": "aug", } DYADS = {3: "min(no5)", 4: "(no5)", 7: "5"} TRIADS_WITH_FIFTH = { 1: "phryg", 2: "sus2", 3: "min", 4: "", 5: "sus4", 6: "lyd", 8: "b6(no3)", 9: "6(no3)", 10: "7(no3)", 11: "maj7(no3)", }
[ "jonathan.gjertsen@disruptive-technologies.com" ]
jonathan.gjertsen@disruptive-technologies.com
535adfee0b0f83921b51a9cb5041442ca646d69c
9de93d7a5f6bb6b21e729e569acd834765988212
/py-manage-server/manage_server.py
f56ce7b467774cd17f06ef7ce71adb0b5a12f987
[ "Apache-2.0" ]
permissive
dkoudlo/py-manage-server
50e14ea33313bdb6d9700bd82eb67aad97ad32cb
812af40f94188df76dec085f85d958a5d83cd2ed
refs/heads/master
2021-01-15T10:59:42.140783
2016-10-17T21:29:20
2016-10-17T21:29:20
68,629,765
0
0
null
null
null
null
UTF-8
Python
false
false
1,427
py
import playbook_manager import role_manager # apt = modules.package.apt def main(args): # load roles from main.yml roles = role_manager.get_roles() # parse command line arguments if len(args) == 1: print "Please provide role name to apply in the arguments." print "Example: python py-manage-server php-prod" # skip first element of args iterargs = iter(args) next(iterargs) for arg in iterargs: # get playbooks. False if empty playbooks = roles.get(arg, False) # if playbook defined apply if playbooks: print "Applying " + arg + " role." for playbook in playbooks: playbook_manager.apply_playbook(playbook) else: print "Could not match provided argument (" + arg + ") to the defined role." # # by default if only one role found # if len(roles) == 1: # # role_manager.get_roles_playbook(roles) # print roles # else : # print "For now py-manage-server only supports single role in the /configuration/roles/main.yml." # print "Later we'd like to add support for configuring roles. " # print "Please configure only one single role in the main.yml file" # persist applied playbooks locally # so later on we can apply only changes if __name__ == '__main__': main()
[ "dkoudlo@gmail.com" ]
dkoudlo@gmail.com
fdd4e60ae201e9b7782d6481674845881cea4578
f5a4b6f7a98d79f7d06a8152753683a33fcf9660
/shops/orders/migrations/0001_initial.py
5b2c5cd024e7a30e4d7951e7e0396b45ffbc1b49
[]
no_license
FalseHuman/online-shop
9969591a72739697fc6c562a8e84634c474de6c0
1b41993f0524c5bfdc554cb743fb8af737f36401
refs/heads/master
2023-03-27T19:03:53.089636
2021-04-04T09:59:17
2021-04-04T09:59:17
352,659,707
0
0
null
null
null
null
UTF-8
Python
false
false
1,797
py
# Generated by Django 2.0.5 on 2021-03-27 13:38 from django.db import migrations, models import django.db.models.deletion class Migration(migrations.Migration): initial = True dependencies = [ ('shop', '0001_initial'), ] operations = [ migrations.CreateModel( name='Order', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('first_name', models.CharField(max_length=50)), ('last_name', models.CharField(max_length=50)), ('email', models.EmailField(max_length=254)), ('address', models.CharField(max_length=250)), ('postal_code', models.CharField(max_length=20)), ('city', models.CharField(max_length=100)), ('created', models.DateTimeField(auto_now_add=True)), ('updated', models.DateTimeField(auto_now=True)), ('paid', models.BooleanField(default=False)), ], options={ 'ordering': ('-created',), }, ), migrations.CreateModel( name='OrderItem', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('price', models.DecimalField(decimal_places=2, max_digits=10)), ('quantity', models.PositiveIntegerField(default=1)), ('order', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='items', to='orders.Order')), ('product', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='order_items', to='shop.Product')), ], ), ]
[ "emilkhazioff@yandex.com" ]
emilkhazioff@yandex.com
24a548c4597ee98698afd93f6fd0abb67fc327f0
5f0deb6916a28f9ba5d2bb3c3289a535e39f3dac
/tests/test_common.py
c7f0fd7f4be52ffd5e5c623c39c8ab654b4fd13d
[ "MIT" ]
permissive
subrota-mondal/pytorch_tabular
95a36d6cedb7f840e32120ad3e311908798ca680
6e9e6e180523a634ba671b3f90fc80cc1206587f
refs/heads/main
2023-08-17T03:06:03.387762
2021-10-07T10:17:15
2021-10-07T10:17:15
null
0
0
null
null
null
null
UTF-8
Python
false
false
6,248
py
#!/usr/bin/env python """Tests for `pytorch_tabular` package.""" import pytest import torch from pytorch_tabular import TabularModel from pytorch_tabular.config import DataConfig, OptimizerConfig, TrainerConfig from pytorch_tabular.feature_extractor import DeepFeatureExtractor from pytorch_tabular.models import ( AutoIntConfig, CategoryEmbeddingModelConfig, NodeConfig, TabNetModelConfig, ) MODEL_CONFIG_SAVE_TEST = [ (CategoryEmbeddingModelConfig, dict(layers="10-20")), (AutoIntConfig, dict(num_heads=1,num_attn_blocks=1,)), (NodeConfig, dict(num_trees=100, depth=2)), (TabNetModelConfig, dict(n_a=2, n_d=2)), ] MODEL_CONFIG_FEATURE_EXT_TEST = [ CategoryEmbeddingModelConfig, AutoIntConfig, ] def fake_metric(y_hat, y): return (y_hat - y).mean() @pytest.mark.parametrize( "model_config_class", MODEL_CONFIG_SAVE_TEST, ) @pytest.mark.parametrize( "continuous_cols", [ [ "AveRooms", "AveBedrms", "Population", "AveOccup", "Latitude", "Longitude", ], ], ) @pytest.mark.parametrize("categorical_cols", [["HouseAgeBin"]]) @pytest.mark.parametrize("custom_metrics", [None, [fake_metric]]) @pytest.mark.parametrize("custom_loss", [None, torch.nn.L1Loss()]) @pytest.mark.parametrize("custom_optimizer", [None, torch.optim.Adagrad]) def test_save_load( regression_data, model_config_class, continuous_cols, categorical_cols, custom_metrics, custom_loss, custom_optimizer, tmpdir, ): (train, test, target) = regression_data data_config = DataConfig( target=target, continuous_cols=continuous_cols, categorical_cols=categorical_cols, ) model_config_class, model_config_params = model_config_class model_config_params['task']="regression" model_config = model_config_class(**model_config_params) trainer_config = TrainerConfig( max_epochs=3, checkpoints=None, early_stopping=None, gpus=None, fast_dev_run=True ) optimizer_config = OptimizerConfig() tabular_model = TabularModel( data_config=data_config, model_config=model_config, optimizer_config=optimizer_config, trainer_config=trainer_config, ) tabular_model.fit( train=train, test=test, metrics=custom_metrics, loss=custom_loss, optimizer=custom_optimizer, optimizer_params=None if custom_optimizer is None else {}, ) result_1 = tabular_model.evaluate(test) # sv_dir = tmpdir/"save_model" # sv_dir.mkdir(exist_ok=True, parents=True) sv_dir = tmpdir.mkdir("saved_model") tabular_model.save_model(str(sv_dir)) new_mdl = TabularModel.load_from_checkpoint(str(sv_dir)) result_2 = new_mdl.evaluate(test) assert ( result_1[0][f"test_{tabular_model.model.hparams.metrics[0]}"] == result_2[0][f"test_{new_mdl.model.hparams.metrics[0]}"] ) @pytest.mark.parametrize( "model_config_class", MODEL_CONFIG_FEATURE_EXT_TEST, ) @pytest.mark.parametrize( "continuous_cols", [ [ "AveRooms", "AveBedrms", "Population", "AveOccup", "Latitude", "Longitude", ], ], ) @pytest.mark.parametrize("categorical_cols", [["HouseAgeBin"]]) def test_feature_extractor( regression_data, model_config_class, continuous_cols, categorical_cols, ): (train, test, target) = regression_data data_config = DataConfig( target=target, continuous_cols=continuous_cols, categorical_cols=categorical_cols, ) model_config_params = dict(task="regression") model_config = model_config_class(**model_config_params) trainer_config = TrainerConfig( max_epochs=3, checkpoints=None, early_stopping=None, gpus=None, fast_dev_run=True ) optimizer_config = OptimizerConfig() tabular_model = TabularModel( data_config=data_config, model_config=model_config, optimizer_config=optimizer_config, trainer_config=trainer_config, ) tabular_model.fit( train=train, test=test, ) dt = DeepFeatureExtractor(tabular_model) enc_df = dt.fit_transform(test) assert any([col for col in enc_df.columns if "backbone" in col]) # import numpy as np # import pandas as pd # from sklearn.datasets import fetch_california_housing, fetch_covtype # from pathlib import Path # def regression_data(): # dataset = fetch_california_housing(data_home="data", as_frame=True) # df = dataset.frame.sample(5000) # df["HouseAgeBin"] = pd.qcut(df["HouseAge"], q=4) # df["HouseAgeBin"] = "age_" + df.HouseAgeBin.cat.codes.astype(str) # test_idx = df.sample(int(0.2 * len(df)), random_state=42).index # test = df[df.index.isin(test_idx)] # train = df[~df.index.isin(test_idx)] # return (train, test, dataset.target_names) # def classification_data(): # dataset = fetch_covtype(data_home="data") # data = np.hstack([dataset.data, dataset.target.reshape(-1, 1)])[:10000, :] # col_names = [f"feature_{i}" for i in range(data.shape[-1])] # col_names[-1] = "target" # data = pd.DataFrame(data, columns=col_names) # data["feature_0_cat"] = pd.qcut(data["feature_0"], q=4) # data["feature_0_cat"] = "feature_0_" + data.feature_0_cat.cat.codes.astype(str) # test_idx = data.sample(int(0.2 * len(data)), random_state=42).index # test = data[data.index.isin(test_idx)] # train = data[~data.index.isin(test_idx)] # return (train, test, ["target"]) # from tests.conftest import load_regression_data, load_classification_data # from pathlib import Path # test_save_load( # load_regression_data(), # model_config_class=MODEL_CONFIG_SAVE_TEST[0], # continuous_cols=[ # "AveRooms", # "AveBedrms", # "Population", # "AveOccup", # "Latitude", # "Longitude", # ], # categorical_cols=[], # custom_metrics = None, #[fake_metric], # custom_loss = None, custom_optimizer = None, # tmpdir = Path("tmp") # ) # test_embedding_transformer(regression_data()) # classification_data()
[ "manujosephv@gmail.com" ]
manujosephv@gmail.com
ddec9c42c08c7b36ab9fba195a8000e8d419e04c
0eb6aff9064ffbd1af61a643513703d7ca5de438
/main.py
0533b64c82b13bc3ca043565dc53f39f9b05c238
[ "MIT" ]
permissive
shenyao97/label-dcm
6a9164a8077aeb7c2ee3f35b1c5d534fee0e7adf
cc8d5f3497364b0f6d0b775858ada527eb90f879
refs/heads/main
2023-05-26T00:57:33.807251
2021-03-02T02:52:05
2021-03-02T02:52:05
null
0
0
null
null
null
null
UTF-8
Python
false
false
227
py
if __name__ == '__main__': from module.app import LabelApp from PyQt5.QtWidgets import QApplication import sys app = QApplication(sys.argv) labelApp = LabelApp() labelApp.show() sys.exit(app.exec())
[ "v.makise@foxmail.com" ]
v.makise@foxmail.com
005133cbc738ddb6c51030f6fb44f6dae7a2faf9
6d7678e3d79c97ddea2e2d65f2c2ef03b17f88f6
/venv/lib/python3.6/site-packages/pysmi/searcher/__init__.py
cd95edb37e9541b91f70578821dc87adce859e79
[ "MIT" ]
permissive
PitCoder/NetworkMonitor
b47d481323f26f89be120c27f614f2a17dc9c483
36420ae48d2b04d2cc3f13d60d82f179ae7454f3
refs/heads/master
2020-04-25T11:48:08.718862
2019-03-19T06:19:40
2019-03-19T06:19:40
172,757,390
2
0
MIT
2019-03-15T06:07:27
2019-02-26T17:26:06
Python
UTF-8
Python
false
false
355
py
# # This file is part of pysmi software. # # Copyright (c) 2015-2019, Ilya Etingof <etingof@gmail.com> # License: http://snmplabs.com/pysmi/license.html # from pysmi.searcher.pyfile import PyFileSearcher from pysmi.searcher.pypackage import PyPackageSearcher from pysmi.searcher.stub import StubSearcher from pysmi.searcher.anyfile import AnyFileSearcher
[ "overlord.lae@gmail.com" ]
overlord.lae@gmail.com
0ee67e0edbae0a3a002f8d52db71e464fb092ea2
65994be793d2ad1e0cdcb07b127a279e61b8ecb1
/Scripts/simple/simple/core/forms.py
5d18a3f03aed56de7966dd10fc5bc1f1595a24bf
[]
no_license
RodrigoDot/Python_Django
1f19b851a2ddad3c480483669945728dff8abbec
bf6db374bf91aedd3306ae61caa7edba1013a162
refs/heads/master
2022-12-25T07:24:04.595400
2018-07-21T23:17:41
2018-07-21T23:17:41
139,657,841
0
1
null
2022-12-13T02:52:02
2018-07-04T02:20:56
Python
UTF-8
Python
false
false
287
py
from django import forms class ContactForm(forms.Form): name = forms.CharField( label='Nome', max_length=100 ) email = forms.CharField( label='Email' ) message = forms.CharField( label='Mensagem', widget=forms.Textarea )
[ "rodrigodot@outlook.com" ]
rodrigodot@outlook.com
d62b832442f7db399b5c7cc1fb98040defb24316
59f70dcdcbb76a5de11977b1c3a273d92b640313
/pi_face_detection.py
6db842244926bf07ef36ed6b0c08c6db751787ae
[]
no_license
Henrique-Potter/ppu_experiments
18d1ceb0ff00dd7376ec5cf47bdc0b02672f6958
ff547cff49f68a991510d03d527bb3afebbe6efa
refs/heads/master
2022-12-12T10:22:43.561274
2021-08-16T00:51:36
2021-08-16T00:51:36
177,529,736
0
0
null
2022-11-22T04:25:27
2019-03-25T06:44:35
Python
UTF-8
Python
false
false
15,060
py
from imutils.video import VideoStream from imutils.video import FPS from ai import face_match as fm from pathlib import Path import numpy as np import cv2 as cv import platform import time import json import os import pandas as pd blue_color = (255, 0, 0) green_color = (0, 255, 0) red_color = (0, 0, 255) use_raspiberry = False beep_pin = 40 g_led_pin = 36 r_led_pin = 38 if platform.uname()[1] == 'raspberrypi': import RPi.GPIO as GPIO GPIO.setmode(GPIO.BOARD) GPIO.setup(beep_pin, GPIO.OUT, initial=0) GPIO.setup(g_led_pin, GPIO.OUT, initial=0) GPIO.setup(r_led_pin, GPIO.OUT, initial=0) use_raspiberry = True class PiFaceDet: def __init__(self, face_det_model_path='face_id_models/20170512-110547.pb', preview=False): dir_path = os.path.dirname(os.path.realpath(__file__)) model_path = os.path.join(dir_path, face_det_model_path) self.faces_db_file = os.path.join(dir_path, "faces_db.json") if Path(self.faces_db_file).is_file(): with open(self.faces_db_file) as json_file: self.faces_db = json.load(json_file) else: self.faces_db = {'face_count': 0, 'faces': {}} self.face_det = fm.FaceMatch(model_path) self.preview = preview self.face_counter = 0 if os.path.exists("trigger_metrics.csv"): self.trigger_metrics_list = pd.read_csv("trigger_metrics.csv", index_col=False).values.tolist() else: self.trigger_metrics_list = [] def id_face_trigger(self, sample_frames=10): color = blue_color frame_count = 0 most_similar_name = None self.beep_blink(1, g_led_pin, 0.2) face_drawn_frame = None while frame_count < sample_frames: frame = self.get_photo() frame = cv.flip(frame, 0) start1 = time.time() face_found, faces_boxes = self.detect_face(frame) print("Time to detect face: {}".format(time.time() - start1)) face_drawn_frame = self.show_detections(frame, faces_boxes) if face_found: self.beep_blink(2, g_led_pin, 0.1) start2 = time.time() frame_face_data = self.face_det.get_face_embeddings(faces_boxes, frame) print("Time to extract embeddings: {}".format(time.time() - start2)) frame_face_emb = frame_face_data[0]['embedding'] start3 = time.time() most_similar_name, most_similar_emb, match_map = self.find_face(frame_face_emb) print("Time to find face in DB: {}".format(time.time() - start3)) if most_similar_name: print("Authorization confirmed".format(most_similar_name)) self.beep_blink(3, g_led_pin, 0.3) else: print("Alert! User not authorized detected") self.beep_blink(1, r_led_pin, 1.5) if self.preview: img = self.show_detections(frame, faces_boxes) cv.imwrite("test_img.jpg", img) frame_count += 1 frame_as_json = None data_dict = {} frame_as_json = self.compress_to_jpeg(data_dict, face_drawn_frame, frame_as_json, most_similar_name) return most_similar_name, frame_as_json @staticmethod def compress_to_jpeg(data_dict, face_drawn_frame, frame_as_json, face_name): if np.any(face_drawn_frame): import json encode_param = [int(cv.IMWRITE_JPEG_QUALITY), 90] result, encimg = cv.imencode('.jpg', face_drawn_frame, encode_param) data_dict['detection_frame'] = encimg.tolist() data_dict['person_name'] = face_name frame_as_json = json.dumps(data_dict) return frame_as_json def learn_face_trigger(self, sample_frames=5): self.beep_blink(1, g_led_pin, 0.2) vs = self.get_cam() time.sleep(2.0) frame_count = 0 state_changed = False new_name = None while frame_count < sample_frames: frame = vs.read() frame = cv.flip(frame, 0) start1 = time.time() face_found, faces_boxes = self.detect_face(frame) print("Time to detect face: {}".format(time.time() - start1)) if face_found: self.beep_blink(8, g_led_pin, 0.1) start4 = time.time() new_face_name, new_embs_added = self.learn_new_face(faces_boxes, frame) state_changed = new_embs_added new_name = new_face_name print("Time to learn face: {}".format(time.time() - start4)) print("New face: {} was learned.".format(new_face_name)) self.beep_blink(4, g_led_pin, 0.3) if self.preview: self.show_detections(frame, faces_boxes) key = cv.waitKey(1) if key & 0xFF == ord('q'): break frame_count += 1 if state_changed: self.save_db_state() cv.destroyAllWindows() vs.stop() time.sleep(2.0) return new_name # Used for measuring the accuracy of range sensor triggers def continuous_face_detection(self, process_queue): vs = self.get_cam() time.sleep(2.0) tm_counter = 10 while True: if not process_queue.empty(): trigger_data = process_queue.get() if trigger_data[0] == 1: self.trigger_metrics_list.append(trigger_data) tm_counter = tm_counter - 1 print('[INFO - Micro Lidar] Get received at:{} Save deadline:{}'.format(trigger_data, tm_counter)) elif trigger_data[0] == 2: self.trigger_metrics_list.append(trigger_data) tm_counter = tm_counter - 1 print('[INFO - Sonar] Get received at:{} Save deadline:{}'.format(trigger_data, tm_counter)) frame = vs.read() frame = cv.flip(frame, 0) start1 = time.time() face_found, faces_boxes = self.detect_face(frame) if face_found: self.beep_blink(1, g_led_pin, 0.5) time_stamp = time.time() self.trigger_metrics_list.append([0, time_stamp]) tm_counter = tm_counter - 1 print('[INFO - CAM] Get received at:{} Save deadline:{}'.format(time_stamp, tm_counter)) print('[INFO - CAM] Time to detect face: {}'.format(time.time() - start1)) time.sleep(5) if tm_counter < 1: total_data_df = pd.DataFrame(self.trigger_metrics_list) try: total_data_df.to_csv("trigger_metrics.csv", index=False) except Exception as e: print(e) tm_counter = 10 print('[INFO] Saving trigger metrics.') print(total_data_df) def continuous_face_identification(self, process_queue): last_detection_time = 0 vs = self.get_cam() time.sleep(2.0) fps = FPS().start() print("before loop") color = blue_color while True: if not process_queue.empty(): msg_code = process_queue.get_nowait() else: msg_code = None frame = vs.read() print("frame") # if platform.uname()[1] == 'raspberrypi': # frame = cv.flip(frame, 0) start1 = time.time() face_found, faces_boxes = self.detect_face(frame) if face_found and msg_code is None: self.beep_blink(1, g_led_pin, 0.1) print("Time to detect face: {}".format(time.time() - start1)) start2 = time.time() frame_face_data = self.face_det.get_face_embeddings(faces_boxes, frame) print("Time to extract embeddings: {}".format(time.time() - start2)) frame_face_emb = frame_face_data[0]['embedding'] start3 = time.time() most_similar_name, most_similar_emb, match_map = self.find_face(frame_face_emb) print("Time to find face in DB: {}".format(time.time() - start3)) if most_similar_name: print("Authorization for {} confirmed".format(most_similar_name)) self.beep_blink(2, g_led_pin, 0.3) else: print("Alert! User not authorized detected") self.beep_blink(1, r_led_pin, 1.5) if face_found and msg_code == 2: self.beep_blink(8, g_led_pin, 0.1) start4 = time.time() most_similar_name, state_changed = self.learn_new_face(faces_boxes, frame) print("Time to learn face: {}".format(time.time() - start4)) print("New face: {} was learned.".format(most_similar_name)) process_queue.get() self.beep_blink(4, g_led_pin, 0.3) if state_changed: self.save_db_state() if self.preview: img = self.show_detections(frame, faces_boxes) key = cv.waitKey(1) cv.imshow('', img) if key & 0xFF == ord('q'): break fps.update() fps.stop() print("[INFO] elapsed time: {:.2f}".format(fps.elapsed())) print("[INFO] approx. FPS: {:.2f}".format(fps.fps())) cv.destroyAllWindows() vs.stop() time.sleep(2.0) def detect_face(self, frame): face_boxes = self.face_det.extract_face(frame) faces_found = np.any(face_boxes) return faces_found, face_boxes def find_face(self, frame_face_emb): face_embs = None most_similar_name = None best_matches = 0 best_match_map = None if self.faces_db: for name, face_data in self.faces_db['faces'].items(): f_emb = np.asarray(face_data['embedding']) face_distances = self.face_det.euclidean_distance_vec(frame_face_emb, f_emb) match_map = face_distances <= 1.0 matches = np.sum(match_map) if matches > best_matches: best_matches = matches face_embs = face_data most_similar_name = name best_match_map = match_map return most_similar_name, face_embs, best_match_map def learn_new_face(self, faces_boxes, frame): new_embs_added = False frame_face_data = self.face_det.get_face_embeddings(faces_boxes, frame) frame_face_emb = frame_face_data[0]['embedding'] most_similar_name, face_embs, match_map = self.find_face(frame_face_emb) if most_similar_name is None: # Broadcast the sum of 5 to force unrecognizable faces at the start faces = np.zeros([5, 128], dtype=np.float) + 5 faces[0] = frame_face_emb[0] face = {'embedding': faces} self.face_counter = self.face_counter + 1 self.faces_db['face_count'] += 1 most_similar_name = 'face {}'.format(self.faces_db['face_count']) self.faces_db['faces'][most_similar_name] = face new_embs_added = True elif most_similar_name and np.sum(match_map) < 5: free_face_slot_index = np.where(np.invert(match_map)) index = free_face_slot_index[0][0] face_embs['embedding'][index] = frame_face_emb[0] self.faces_db['faces'][most_similar_name] = face_embs new_embs_added = True return most_similar_name, new_embs_added def save_db_state(self): start = time.time() with open(self.faces_db_file, 'w') as outfile: json.dump(self.faces_db, outfile, sort_keys=True, indent=4, cls=NumpyEncoder) print("Time to dump json file: {}".format(time.time() - start)) @staticmethod def beep(beep_times, duration=0.1): if platform.uname()[1] == 'raspberrypi': for i in range(beep_times): GPIO.output(beep_pin, GPIO.HIGH) time.sleep(duration) GPIO.output(beep_pin, GPIO.LOW) time.sleep(duration) @staticmethod def red_blink(blink_times, duration=0.3): if platform.uname()[1] == 'raspberrypi': for i in range(blink_times): GPIO.output(r_led_pin, GPIO.HIGH) time.sleep(duration) GPIO.output(r_led_pin, GPIO.LOW) time.sleep(duration) @staticmethod def green_blink(blink_times, duration=0.3): if platform.uname()[1] == 'raspberrypi': for i in range(blink_times): GPIO.output(g_led_pin, GPIO.HIGH) time.sleep(duration) GPIO.output(g_led_pin, GPIO.LOW) time.sleep(duration) @staticmethod def beep_blink(blink_times, led_pin, duration=0.3): if platform.uname()[1] == 'raspberrypi': for i in range(blink_times): GPIO.output(beep_pin, GPIO.HIGH) GPIO.output(led_pin, GPIO.HIGH) time.sleep(duration) GPIO.output(beep_pin, GPIO.LOW) GPIO.output(led_pin, GPIO.LOW) time.sleep(duration) @staticmethod def get_photo(resolution=(320, 240)): if use_raspiberry: import picamera import picamera.array camera = picamera.PiCamera() try: camera.resolution = resolution rawCapture = picamera.array.PiRGBArray(camera, size=resolution) camera.capture(rawCapture, format="bgr") return rawCapture.array finally: camera.close() else: stream = cv.VideoCapture(0) time.sleep(1) try: (grabbed, frame) = stream.read() return frame finally: stream.release() @staticmethod def get_cam(): if use_raspiberry: return VideoStream(usePiCamera=True).start() else: return VideoStream(src=0).start() @staticmethod def show_detections(img, f_boxes): img_cp = img.copy() for f_box in f_boxes: cv.rectangle(img_cp, (f_box[0], f_box[1]), (f_box[2], f_box[3]), (0,0,255), 2) cv.putText(img_cp, "Face", (f_box[2] + 10, f_box[3]), cv.FONT_HERSHEY_SIMPLEX, 0.5, (0, 0, 0)) return img_cp class NumpyEncoder(json.JSONEncoder): def default(self, obj): if isinstance(obj, np.ndarray): return obj.tolist() return json.JSONEncoder.default(obj)
[ "henriquepotter.hp@gmail.com" ]
henriquepotter.hp@gmail.com
3bb5629083314c1e2c619943e66d3168945a1688
5988fc4cb08278d3090195a2aa6421ce8347819f
/src/modules/rw_treelist_view.py
ac1c1dab6c6687b7e4207fa8898b85eec25586bb
[]
no_license
Fitiantsoa/Osup
0062f90f8e8a5b4d0f8f0884c412444deccbba33
a9228cf1f911c5bc5594531fe44b6d1239f5ada4
refs/heads/main
2023-08-10T10:53:05.315702
2021-09-17T15:06:43
2021-09-17T15:06:43
387,406,568
0
0
null
2021-09-17T15:06:44
2021-07-19T09:17:11
QML
UTF-8
Python
false
false
2,529
py
from PyQt5.QtGui import QMouseEvent from PyQt5.QtWidgets import QTreeWidget, QTreeWidgetItem from PyQt5.QtCore import Qt, pyqtSignal class TreeListView(QTreeWidget): """List all plot to let the user choose with one to display""" toggle = pyqtSignal(QMouseEvent) def __init__(self): QTreeWidget.__init__(self) self.setColumnCount(1) self.setHeaderLabel(str("Choisissez les courbes à afficher :")) self.parent = QTreeWidgetItem(self) self.addTopLevelItem(self.parent) self.resize(284, 200) # self.addModel() def add_model(self, model): self.clear() self.expandsOnDoubleClick() self.parent = self.invisibleRootItem() self.idx = 0 self.add_view(model, self.parent) def add_view(self, data, parent): for item in data.keys(): if isinstance(data[item][list(data[item].keys())[0]], dict): new = QTreeWidgetItem() new.setText(0, item) new.setData(1, 0, data[item]) parent.addChild(new) self.add_view(data[item], new) else: self.idx += 1 print(data[item]) new = QTreeWidgetItem() new.setText(0, item) new.setData(2, 0, data[item]) new.setWhatsThis(0, str(self.idx)) new.setFlags(Qt.ItemIsEnabled | Qt.ItemIsUserCheckable) new.setCheckState(0, False) parent.addChild(new) def toggle_plot_visible(self, QMouseEvent): """Display/Hide a plot""" # self.blockSignals(True) item = self.itemAt(QMouseEvent.pos()) if item is not None: if item.childCount() == 0: if item.checkState(0) == 2: item.setCheckState(0, Qt.Unchecked) else: item.setCheckState(0, Qt.Checked) index = self.indexFromItem(item) if item.isExpanded(): self.collapse(index) else: self.expand(index) if item.parent() is not None: return item.data(2, 0), item.text(0), item.parent().text(0), item.whatsThis(0), item.checkState(0) return None # def mouseReleaseEvent(self, QMouseEvent): # self.blockSignals(True) def mouseDoubleClickEvent(self, *args, **kwargs): pass def mousePressEvent(self, QMouseEvent): self.toggle.emit(QMouseEvent)
[ "fitiantsoa.antenaina@ortec.fr" ]
fitiantsoa.antenaina@ortec.fr
83aaca0d2c081e8e5f248cf12397bcef49910b51
9452f681ea486fc53ad88d05392aed5fc450805c
/data_language_all/python/python_358.txt
3202680a961720d40a417dbb85b675ccb1b70be6
[]
no_license
CoryCollins/src-class
11a6df24f4bd150f6db96ad848d7bfcac152a695
f08a2dd917f740e05864f51ff4b994c368377f97
refs/heads/master
2023-08-17T11:53:28.754781
2021-09-27T21:13:23
2021-09-27T21:13:23
null
0
0
null
null
null
null
UTF-8
Python
false
false
603
txt
#!/usr/bin/env python # coding:utf-8 import time from gae import __version__ def application(environ, start_response): start_response('200 OK', [('Content-Type', 'text/plain; charset=UTF-8')]) if environ['PATH_INFO'] == '/robots.txt': yield '\n'.join(['User-agent: *', 'Disallow: /']) else: timestamp = long(environ['CURRENT_VERSION_ID'].split('.')[1])/2**28 ctime = time.strftime('%Y-%m-%d %H:%M:%S', time.gmtime(timestamp+8*3600)) yield "GoAgent 服务端已经在 %s 升级到 %s 版本, 请更新您的客户端。" % (ctime, __version__)
[ "znsoft@163.com" ]
znsoft@163.com
70e5533cd0a7b22b28fa85ab4717987e07581440
dcf449640933fed0977a330f7c755e84dc9c1035
/Day026_project/Day026_project/settings.py
ea35021013fdfe80e9e41cca6ad94d25d85b7b83
[]
no_license
doublemint111/Day026_HW
f8c887fe19c87c25a27cda88f18faf0cce531b21
3bc42c8a4edd15b240772948dff030203370868c
refs/heads/master
2021-05-22T14:26:19.015957
2020-04-04T10:53:29
2020-04-04T10:53:29
252,962,009
0
0
null
null
null
null
UTF-8
Python
false
false
3,167
py
# -*- coding: utf-8 -*- # Scrapy settings for Day026_project project # # For simplicity, this file contains only settings considered important or # commonly used. You can find more settings consulting the documentation: # # https://docs.scrapy.org/en/latest/topics/settings.html # https://docs.scrapy.org/en/latest/topics/downloader-middleware.html # https://docs.scrapy.org/en/latest/topics/spider-middleware.html BOT_NAME = 'Day026_project' SPIDER_MODULES = ['Day026_project.spiders'] NEWSPIDER_MODULE = 'Day026_project.spiders' # Crawl responsibly by identifying yourself (and your website) on the user-agent #USER_AGENT = 'Day026_project (+http://www.yourdomain.com)' # Obey robots.txt rules ROBOTSTXT_OBEY = True # Configure maximum concurrent requests performed by Scrapy (default: 16) #CONCURRENT_REQUESTS = 32 # Configure a delay for requests for the same website (default: 0) # See https://docs.scrapy.org/en/latest/topics/settings.html#download-delay # See also autothrottle settings and docs #DOWNLOAD_DELAY = 3 # The download delay setting will honor only one of: #CONCURRENT_REQUESTS_PER_DOMAIN = 16 #CONCURRENT_REQUESTS_PER_IP = 16 # Disable cookies (enabled by default) #COOKIES_ENABLED = False # Disable Telnet Console (enabled by default) #TELNETCONSOLE_ENABLED = False # Override the default request headers: #DEFAULT_REQUEST_HEADERS = { # 'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', # 'Accept-Language': 'en', #} # Enable or disable spider middlewares # See https://docs.scrapy.org/en/latest/topics/spider-middleware.html #SPIDER_MIDDLEWARES = { # 'Day026_project.middlewares.Day026ProjectSpiderMiddleware': 543, #} # Enable or disable downloader middlewares # See https://docs.scrapy.org/en/latest/topics/downloader-middleware.html #DOWNLOADER_MIDDLEWARES = { # 'Day026_project.middlewares.Day026ProjectDownloaderMiddleware': 543, #} # Enable or disable extensions # See https://docs.scrapy.org/en/latest/topics/extensions.html #EXTENSIONS = { # 'scrapy.extensions.telnet.TelnetConsole': None, #} # Configure item pipelines # See https://docs.scrapy.org/en/latest/topics/item-pipeline.html #ITEM_PIPELINES = { # 'Day026_project.pipelines.Day026ProjectPipeline': 300, #} # Enable and configure the AutoThrottle extension (disabled by default) # See https://docs.scrapy.org/en/latest/topics/autothrottle.html #AUTOTHROTTLE_ENABLED = True # The initial download delay #AUTOTHROTTLE_START_DELAY = 5 # The maximum download delay to be set in case of high latencies #AUTOTHROTTLE_MAX_DELAY = 60 # The average number of requests Scrapy should be sending in parallel to # each remote server #AUTOTHROTTLE_TARGET_CONCURRENCY = 1.0 # Enable showing throttling stats for every response received: #AUTOTHROTTLE_DEBUG = False # Enable and configure HTTP caching (disabled by default) # See https://docs.scrapy.org/en/latest/topics/downloader-middleware.html#httpcache-middleware-settings #HTTPCACHE_ENABLED = True #HTTPCACHE_EXPIRATION_SECS = 0 #HTTPCACHE_DIR = 'httpcache' #HTTPCACHE_IGNORE_HTTP_CODES = [] #HTTPCACHE_STORAGE = 'scrapy.extensions.httpcache.FilesystemCacheStorage'
[ "56514586+doublemint111@users.noreply.github.com" ]
56514586+doublemint111@users.noreply.github.com
b02c21e407872780cb910894728b13b0e39c8b75
7fb52a467aaa1e64bc76440039b9cfdbb4ec3fb8
/python/tvm/relay/op/contrib/tensorrt.py
db9684d02ac914398f12f2141a8a3b2f4a20cdf9
[ "Apache-2.0", "Zlib", "MIT", "BSD-2-Clause", "LicenseRef-scancode-unknown-license-reference", "Unlicense" ]
permissive
heagoo/tvm
41400b2bdb40084209bd270e62a7f0df73adf393
052ad3d92d20abdf221600005c2ccb130e39b6b4
refs/heads/main
2023-02-21T22:20:53.123265
2021-01-16T17:51:04
2021-01-16T17:51:04
330,346,516
1
0
Apache-2.0
2021-01-17T08:29:32
2021-01-17T08:29:31
null
UTF-8
Python
false
false
38,856
py
# Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information # regarding copyright ownership. The ASF licenses this file # to you 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. # pylint: disable=invalid-name, unused-argument """TensorRT supported operators.""" import logging import numpy as np import tvm from tvm import relay from tvm.relay import transform from tvm.relay.build_module import bind_params_by_name from tvm.relay.expr import Call, Constant, Tuple, GlobalVar, Var, TupleGetItem from tvm.relay.expr_functor import ExprMutator, ExprVisitor logger = logging.getLogger("TensorRT") def is_tensorrt_runtime_enabled(): """Check if the TensorRT graph runtime is present. Returns ------- ret: bool True if present, False if not. """ check_enabled = tvm.get_global_func("relay.op.is_tensorrt_runtime_enabled", True) if check_enabled: return check_enabled() return False def get_tensorrt_version(): """Gets the version of TensorRT that TVM is built against or is targeting. Returns ------- ret: Tuple[int, int, int] TensorRT version as a tuple of major, minor, and patch number. If TVM is not built with TensorRT, the value set by set_tensorrt_version() is returned instead. """ pass_ctx = tvm.transform.PassContext.current() if "relay.ext.tensorrt.options" in pass_ctx.config: return tuple(pass_ctx.config["relay.ext.tensorrt.options"].tensorrt_version) return tuple(tvm.get_global_func("relay.op.get_tensorrt_version")()) def get_tensorrt_use_implicit_batch_mode(): pass_ctx = tvm.transform.PassContext.current() if "relay.ext.tensorrt.options" in pass_ctx.config: return pass_ctx.config["relay.ext.tensorrt.options"].use_implicit_batch logger.warning( "PassContext has no relay.ext.tensorrt.options config, using default value " "use_implicit_batch=True." ) return True def get_tensorrt_remove_no_mac_subgraphs(): pass_ctx = tvm.transform.PassContext.current() if "relay.ext.tensorrt.options" in pass_ctx.config: return pass_ctx.config["relay.ext.tensorrt.options"].remove_no_mac_subgraphs logger.warning( "PassContext has no relay.ext.tensorrt.options config, using default value " "remove_no_mac_subgraphs=False." ) return False def partition_for_tensorrt( mod, params=None, version=None, use_implicit_batch=True, remove_no_mac_subgraphs=False, max_workspace_size=1 << 30, ): """Partition the graph greedily offloading supported operators to TensorRT. Parameters ---------- mod : Module The module to run passes on. params : Optional[Dict[str, NDArray]] Constant input parameters. version : Optional[Tuple[int, int, int]] TensorRT version to target as tuple of (major, minor, patch). If TVM is compiled with USE_TENSORRT_RUNTIME=ON, the linked TensorRT version will be used instead. use_implicit_batch : Optional[bool] Use TensorRT implicit batch mode (default true). Setting to false will enable explicit batch mode which will widen supported operators to include those which modify the batch dimension, but may reduce performance for some models. remove_no_mac_subgraphs : Optional[bool] Removes subgraphs which have been partitioned for TensorRT if they do not have any multiply-accumulate operations. The removed subgraphs will go through TVM's standard compilation instead. Can improve performance. max_workspace_size : Optional[int] How many bytes of workspace size to allow each subgraph to use for TensorRT engine creation. See TensorRT documentation for more info. Returns ------- mod_and_config : Tuple[Module, Dict[str, Any]] A tuple of 1) annotated and partitioned module and 2) "relay.ext.tensorrt.options" configuration which should be given to PassContext when building. """ config = { "use_implicit_batch": use_implicit_batch, "max_workspace_size": max_workspace_size, "remove_no_mac_subgraphs": remove_no_mac_subgraphs, } if version: assert isinstance(version, tuple) and len(version) == 3 config["tensorrt_version"] = version else: linked_version = tuple(tvm.get_global_func("relay.op.get_tensorrt_version")()) if not linked_version: logger.warning( "TVM was not built against TensorRT and no version was provided to " "partition_for_tensorrt. Defaulting to 6.0.1" ) linked_version = (6, 0, 1) config["tensorrt_version"] = linked_version if params: mod["main"] = bind_params_by_name(mod["main"], params) seq = tvm.transform.Sequential( [ transform.InferType(), RemoveDropoutPass(), transform.RemoveUnusedFunctions(), transform.ConvertLayout( { "nn.conv2d": ["NCHW", "default"], "nn.conv3d": ["NCDHW", "default"], "nn.conv2d_transpose": ["NCHW", "default"], } ), transform.FoldConstant(), transform.AnnotateTarget("tensorrt"), transform.MergeCompilerRegions(), transform.PartitionGraph(), transform.InferType(), ] ) with tvm.transform.PassContext(opt_level=3, config={"relay.ext.tensorrt.options": config}): mod = seq(mod) mod = prune_tensorrt_subgraphs(mod) return mod, config def check_dynamism(args, op_name): """ Check for dynamism inside any of the args in the op. Parameters ---------- args : tvm.ir.container.Array Arguments of the op. Each of the argument shape is checked for presence of dynamic components. op_name: str Name of the op for debugging purposes only. Returns ---------- ret : bool True if dynamism is present, False otherwise """ for arg in args: if isinstance(arg, (Call, Var, Constant, TupleGetItem)): for dim_shape in arg.checked_type.shape[1:]: if isinstance(dim_shape, tvm.tir.expr.Any): return True elif isinstance(arg, Tuple): return check_dynamism(arg.fields, op_name) else: logger.info( "Arg not supported in TensorRT for %s with type %s", op_name, type(arg), ) return True return False def _register_external_op_helper_with_checker(op_name, checker): @tvm.ir.register_op_attr(op_name, "target.tensorrt") def _func_wrapper(expr): attrs, args = expr.attrs, expr.args # ops with dynamic shapes are offloaded to VM if check_dynamism(args, op_name): return False if any([x.checked_type.dtype != "float32" for x in args]): logger.info("Only float32 inputs are supported for TensorRT.") return False if op_name == "multiply": shapes = [ [ int(x) if not isinstance(x, tvm.tir.expr.Any) else -1 for x in arg.checked_type.shape ] for arg in args ] # Batched multiply operations don't work in implicit batch mode. The following shapes # have been excluded because they occur in PT MaskRCNN model. The long term solution is # to switch to explicit batch mode after performance regressions are solved. if all( [list(map(int, shape)) in [[300, 64, 7, 7], [300, 1, 1, 1]] for shape in shapes] ): return False return checker(attrs, args, op_name) return _func_wrapper def _register_external_op_helper(op_name, supported=True): return _register_external_op_helper_with_checker( op_name, lambda attrs, args, op_name: supported ) def _register_external_dynamic_check_func(op_name): """Wrapper to check dynamic shapes inside any of the args in the op.""" def _decorator_helper(checker): @tvm.ir.register_op_attr(op_name, "target.tensorrt") def _func_wrapper(expr): args = expr.args # ops with dynamic shapes are offloaded to VM if check_dynamism(args, op_name): return False return checker(expr) return _func_wrapper return _decorator_helper # Ops which are always supported _register_external_op_helper("nn.relu") _register_external_op_helper("sigmoid") _register_external_op_helper("tanh") _register_external_op_helper("subtract") _register_external_op_helper("multiply") _register_external_op_helper("divide") _register_external_op_helper("power") _register_external_op_helper("maximum") _register_external_op_helper("minimum") _register_external_op_helper("exp") _register_external_op_helper("log") _register_external_op_helper("sqrt") _register_external_op_helper("abs") _register_external_op_helper("negative") _register_external_op_helper("nn.batch_flatten") _register_external_op_helper("clip") def reduce_annotate_fn(attrs, args, op_name): """Helper for reduce operations.""" if not attrs.axis or len(attrs.axis) == 0: logger.info("%s: cannot reduce to scalar.", op_name) return False if attrs.exclude: logger.info("%s: exclude not supported.", op_name) return False if get_tensorrt_use_implicit_batch_mode() and any([x == 0 for x in map(int, attrs.axis)]): logger.info("%s: can't modify batch dimension.", op_name) return False return True _register_external_op_helper_with_checker("sum", reduce_annotate_fn) _register_external_op_helper_with_checker("prod", reduce_annotate_fn) _register_external_op_helper_with_checker("max", reduce_annotate_fn) _register_external_op_helper_with_checker("min", reduce_annotate_fn) _register_external_op_helper_with_checker("mean", reduce_annotate_fn) def trt_version_annotate_fn(version): """Helper for ops which require a minimum TRT version""" def _func_wrapper(attrs, args, op_name): if get_tensorrt_version() < version: logger.info( "%s: requires TensorRT version %s or higher.", op_name, ".".join(map(str, version)) ) return False return True return _func_wrapper _register_external_op_helper_with_checker("nn.leaky_relu", trt_version_annotate_fn((5, 1, 5))) _register_external_op_helper_with_checker("sin", trt_version_annotate_fn((5, 1, 5))) _register_external_op_helper_with_checker("cos", trt_version_annotate_fn((5, 1, 5))) _register_external_op_helper_with_checker("atan", trt_version_annotate_fn((5, 1, 5))) _register_external_op_helper_with_checker("ceil", trt_version_annotate_fn((5, 1, 5))) @_register_external_dynamic_check_func("add") def add_annotate_fn(expr): # pylint: disable=unused-variable """Check if add is supported by TensorRT.""" args = expr.args shapes = [ [int(x) if not isinstance(x, tvm.tir.expr.Any) else -1 for x in arg.checked_type.shape] for arg in args ] # RelayVM + TRT doesn't support scalar addition yet. for shape in shapes: if len(shape) < 1: return False if any([x.checked_type.dtype != "float32" for x in args]): logger.info("Only float32 inputs are supported for TensorRT.") return False if ( not get_tensorrt_use_implicit_batch_mode() and (isinstance(args[0], Constant) or isinstance(args[1], Constant)) and shapes[0][0] == shapes[1][0] and shapes[0][0] != 1 and (len(shapes[0]) > 3 or len(shapes[1]) > 3) ): logger.info("add: bug in TRT with adding batched constants.") return False return True @_register_external_dynamic_check_func("nn.batch_norm") def batch_norm_annotate_fn(expr): # pylint: disable=unused-variable """Check if nn.batch_norm is supported by TensorRT.""" attrs, args = expr.attrs, expr.args if any([x.checked_type.dtype != "float32" for x in args]): logger.info("Only float32 inputs are supported for TensorRT.") return False if len(args[0].checked_type.shape) == 5 and get_tensorrt_version() < (6, 0, 1): logger.info("nn.batch_norm: TensorRT 6.0.1 or higher is required for rank 5 inputs.") return False if len(args[0].checked_type.shape) > 5: logger.info("nn.batch_norm: Input rank must be 5 or less.") return False if int(attrs.axis) not in (1, 3): logger.info("nn.batch_norm: axis is %d but must be 1 or 3.", int(attrs.axis)) return False return True @_register_external_dynamic_check_func("nn.softmax") def softmax_annotate_fn(expr): # pylint: disable=unused-variable """Check if nn.softmax is supported by TensorRT.""" attrs, args = expr.attrs, expr.args if any([x.checked_type.dtype != "float32" for x in args]): logger.info("Only float32 inputs are supported for TensorRT.") return False if get_tensorrt_use_implicit_batch_mode() and int(attrs.axis) == 0: logger.info("nn.softmax: can't modify batch dimension.") return False return True @_register_external_dynamic_check_func("nn.conv2d") def conv2d_annotate_fn(expr): # pylint: disable=unused-variable """Check if nn.conv2d is supported by TensorRT.""" attrs, args = expr.attrs, expr.args if any([x.checked_type.dtype != "float32" for x in args]): logger.info("Only float32 inputs are supported for TensorRT.") return False if attrs.data_layout != "NCHW": logger.info("nn.conv2d: data_layout is %s but must be NCHW.", attrs.data_layout) return False if attrs.kernel_layout != "OIHW": logger.info("nn.conv2d: kernel_layout is %s but must be OIHW.", attrs.kernel_layout) return False if attrs.out_layout and attrs.out_layout != "NCHW": logger.info("nn.conv2d: out_layout is %s but must be NCHW.", attrs.out_layout) return False return True @_register_external_dynamic_check_func("nn.dense") def dense_annotate_fn(expr): # pylint: disable=unused-variable """Check if dense is supported by TensorRT.""" args = expr.args if any([x.checked_type.dtype != "float32" for x in args]): logger.info("Only float32 inputs are supported for TensorRT.") return False input_rank = len(args[0].checked_type.shape) weight_rank = len(args[1].checked_type.shape) if input_rank not in (2, 3, 4): logger.info("nn.dense: input has rank %d but must be 2, 3 or 4.", input_rank) return False if weight_rank != 2: logger.info("nn.dense: weight has rank %d but must be 2.", weight_rank) return False return True @_register_external_dynamic_check_func("nn.bias_add") def bias_add_annotate_fn(expr): # pylint: disable=unused-variable """Check if nn.bias_add is supported by TensorRT.""" args = expr.args if any([x.checked_type.dtype != "float32" for x in args]): logger.info("Only float32 inputs are supported for TensorRT.") return False input_rank = len(args[0].checked_type.shape) if input_rank not in (2, 3, 4): logger.info("nn.bias_add: input rank is %d but must be 2, 3 or 4.", input_rank) return False return True @_register_external_dynamic_check_func("nn.max_pool2d") def max_pool_2d_annotate_fn(expr): # pylint: disable=unused-variable """Check if nn.max_pool2d is supported by TensorRT.""" attrs, args = expr.attrs, expr.args if any([x.checked_type.dtype != "float32" for x in args]): logger.info("Only float32 inputs are supported for TensorRT.") return False if attrs.layout != "NCHW": logger.info("nn.max_pool2d: layout is %s but must be NCHW.", attrs.layout) return False if attrs.ceil_mode and get_tensorrt_version() < (5, 1, 5): logger.info("nn.avg_pool2d: ceil_mode=True requires TensorRT 5.1.5 or greater.") return False return True @_register_external_dynamic_check_func("nn.avg_pool2d") def avg_pool_2d_annotate_fn(expr): # pylint: disable=unused-variable """Check if nn.avg_pool2d is supported by TensorRT.""" attrs, args = expr.attrs, expr.args if any([x.checked_type.dtype != "float32" for x in args]): logger.info("Only float32 inputs are supported for TensorRT.") return False if attrs.layout != "NCHW": logger.info("nn.avg_pool2d: layout is %d but must be NCHW.", attrs.layout) return False if ( attrs.count_include_pad and len(attrs.padding) == 4 and ( int(attrs.padding[0]) != int(attrs.padding[2]) or int(attrs.padding[1]) != int(attrs.padding[3]) ) ): logger.info( "nn.avg_pool2d: inclusive-counted blended or average " "pooling is not supported in combination with asymmetric padding" ) return False if attrs.ceil_mode and get_tensorrt_version() < (5, 1, 5): logger.info("nn.avg_pool2d: ceil_mode=True requires TensorRT 5.1.5 or greater.") return False return True @_register_external_dynamic_check_func("nn.global_max_pool2d") def global_max_pool_2d_annotate_fn(expr): # pylint: disable=unused-variable """Check if nn.global_max_pool2d is supported by TensorRT.""" attrs, args = expr.attrs, expr.args if any([x.checked_type.dtype != "float32" for x in args]): logger.info("Only float32 inputs are supported for TensorRT.") return False if attrs.layout != "NCHW": logger.info("nn.global_max_pool2d: layout is %s but must be NCHW.", attrs.layout) return False return True @_register_external_dynamic_check_func("nn.global_avg_pool2d") def global_avg_pool_2d_annotate_fn(expr): # pylint: disable=unused-variable """Check if nn.global_avg_pool2d is supported by TensorRT.""" attrs, args = expr.attrs, expr.args if any([x.checked_type.dtype != "float32" for x in args]): logger.info("Only float32 inputs are supported for TensorRT.") return False if attrs.layout != "NCHW": logger.info("nn.global_avg_pool2d: layout is %s but must be NCHW.", attrs.layout) return False return True @_register_external_dynamic_check_func("expand_dims") def expand_dims_annotate_fn(expr): # pylint: disable=unused-variable """Check if expand_dims is supported by TensorRT.""" attrs, args = expr.attrs, expr.args if any([x.checked_type.dtype != "float32" for x in args]): logger.info("Only float32 inputs are supported for TensorRT.") return False if get_tensorrt_use_implicit_batch_mode() and int(attrs.axis) == 0: logger.info("expand_dims: can't modify batch dimension.") return False return True @_register_external_dynamic_check_func("squeeze") def squeeze_annotate_fn(expr): # pylint: disable=unused-variable """Check if squeeze is supported by TensorRT.""" attrs, args = expr.attrs, expr.args if any([x.checked_type.dtype != "float32" for x in args]): logger.info("Only float32 inputs are supported for TensorRT.") return False if not attrs.axis: logger.info("squeeze: must explicitly set axis.") return False if get_tensorrt_use_implicit_batch_mode() and any([axis == 0 for axis in map(int, attrs.axis)]): logger.info("squeeze: can't modify batch dimension.") return False return True @_register_external_dynamic_check_func("concatenate") def concatenate_annotate_fn(expr): # pylint: disable=unused-variable """Check if concatenate is supported by TensorRT.""" attrs, args = expr.attrs, expr.args if any([x.dtype != "float32" for x in args[0].checked_type.fields]): logger.info("Only float32 inputs are supported for TensorRT.") return False if not get_tensorrt_use_implicit_batch_mode(): return True if int(attrs.axis) == 0: logger.info("concatenate: can't modify batch dimension.") return False if isinstance(args[0], Tuple): for tuple_input in args[0].fields: if isinstance(tuple_input, Constant): logger.info("concatenate: can't concatenate tensors with constants.") return False return True @_register_external_dynamic_check_func("nn.conv2d_transpose") def conv2d_transpose_annotate_fn(expr): # pylint: disable=unused-variable """Check if nn.conv2d_transpose is supported by TensorRT.""" attrs, args = expr.attrs, expr.args if any([x.checked_type.dtype != "float32" for x in args]): logger.info("Only float32 inputs are supported for TensorRT.") return False if attrs.data_layout != "NCHW": logger.info("nn.conv2d_transpose: data_layout is %s but must be NCHW.", attrs.data_layout) return False if attrs.kernel_layout != "OIHW": logger.info( "nn.conv2d_transpose: kernel_layout is %s but must be OIHW.", attrs.kernel_layout ) return False if attrs.out_layout and attrs.out_layout != "NCHW": logger.info("nn.conv2d_transpose: out_layout is %s but must be NCHW.", attrs.out_layout) return False if attrs.dilation and any([rate != 1 for rate in map(int, attrs.dilation)]): logger.info("nn.conv2d_transpose: dilation rate must be 1.") return False return True @_register_external_dynamic_check_func("transpose") def transpose_annotate_fn(expr): # pylint: disable=unused-variable """Check if transpose is supported by TensorRT.""" attrs, args = expr.attrs, expr.args if any([x.checked_type.dtype != "float32" for x in args]): logger.info("Only float32 inputs are supported for TensorRT.") return False if get_tensorrt_use_implicit_batch_mode() and int(attrs.axes[0]) != 0: logger.info("transpose: can't modify batch dimension.") return False return True @_register_external_dynamic_check_func("layout_transform") def layout_transform_annotate_fn(expr): # pylint: disable=unused-variable """Check if layout_transform is supported by TensorRT.""" attrs, args = expr.attrs, expr.args if any([x.checked_type.dtype != "float32" for x in args]): logger.info("Only float32 inputs are supported for TensorRT.") return False if (attrs.src_layout, attrs.dst_layout) not in [ ("NCHW", "NHWC"), ("NHWC", "NCHW"), ("NDHWC", "NCDHW"), ("NCDHW", "NDHWC"), ]: logger.info( "layout_transform: %s to %s is not supported.", attrs.src_layout, attrs.dst_layout ) return False return True @_register_external_dynamic_check_func("reshape") def reshape_annotate_fn(expr): # pylint: disable=unused-variable """Check if reshape is supported by TensorRT.""" attrs, args = expr.attrs, expr.args if args[0].checked_type.dtype != "float32": logger.info("Only float32 inputs are supported for TensorRT.") return False if any([x < -1 for x in map(int, attrs.newshape)]): logger.info("reshape: new shape dims must be explicit.") return False if get_tensorrt_use_implicit_batch_mode(): shape = args[0].checked_type.shape new_shape = attrs.newshape if len(new_shape) == 0 or len(shape) == 0: logger.info("reshape: Can't reshape to or from scalar.") return False dynamic_reshape = any([isinstance(x, tvm.tir.expr.Any) for x in shape]) if dynamic_reshape: # Make sure that the batch dim is unmodified. if int(new_shape[0]) < 0: for shape_val, new_shape_val in enumerate(shape[1:], new_shape[1:]): if not ( isinstance(shape_val, int) and isinstance(new_shape_val, int) and int(shape_val) == int(new_shape_val) ): return False elif int(new_shape[0]) > 0: if not ( isinstance(shape[0], int) and isinstance(new_shape[0], int) and int(shape[0]) == int(new_shape[0]) ): return False return True shape = list(map(int, shape)) new_shape = list(map(int, new_shape)) # TRT cannot modify batch dimension. original_volume = np.prod(shape) # First, resolve 0. for i, value in enumerate(new_shape): if value == 0: new_shape[i] = shape[i] # Resolve -1. for i, value in enumerate(new_shape): if value == -1: new_shape[i] = original_volume // np.prod([x for x in new_shape if x != -1]) # Remove batch dimension and see if volumes match if shape[0] != new_shape[0]: logger.info("reshape: can't modify batch dimension.") return False return True @_register_external_dynamic_check_func("nn.pad") def pad_annotate_fn(expr): # pylint: disable=unused-variable """Check if nn.pad is supported by TensorRT.""" attrs, args = expr.attrs, expr.args if any([x.checked_type.dtype != "float32" for x in args]): logger.info("Only float32 inputs are supported for TensorRT.") return False if attrs.pad_mode != "constant": logger.info("nn.pad: pad mode is %s but must be constant.", attrs.pad_mode) return False if float(attrs.pad_value) != 0.0: logger.info("nn.pad: pad value is %f but must be 0.0.", float(attrs.pad_value)) return False if any([x != 0 for x in attrs.pad_width[0]]) or any([x != 0 for x in attrs.pad_width[1]]): logger.info("nn.pad: can't pad batch or channel dimensions.") return False if len(attrs.pad_width) == 5 and any([x != 0 for x in attrs.pad_width[2]]): logger.info("nn.pad: can only pad last two dimensions for 5D inputs.") return True @_register_external_dynamic_check_func("strided_slice") def strided_slice_annotate_fn(expr): # pylint: disable=unused-variable """Check if strided_slice is supported by TensorRT.""" attrs, args = expr.attrs, expr.args if args[0].checked_type.dtype != "float32": logger.info("Only float32 inputs are supported for TensorRT.") return False if not trt_version_annotate_fn((5, 1, 5))(attrs, args, "strided_slice"): return False if get_tensorrt_use_implicit_batch_mode(): batch_dim_begin_modified = attrs.begin[0] is not None and int(attrs.begin[0]) != 0 batch_dim_end_modified = ( attrs.end[0] is not None and int(attrs.end[0]) != -1 and int(attrs.end[0]) != int(args[0].checked_type.shape[0]) ) if batch_dim_begin_modified or batch_dim_end_modified: logger.info("strided_slice: can't modify batch dimension.") return False if any([x is not None and x <= 0 for x in attrs.strides]): logger.info("strided_slice: stride must be positive") return False for i in range(0, len(args[0].checked_type.shape)): begin = int(attrs.begin[i]) if attrs.slice_mode == "end": end = ( int(attrs.end[i]) if attrs.end[i] is not None and int(attrs.end[i]) != -1 else args[0].checked_type.shape[i] ) size = int(end) - int(begin) elif attrs.slice_mode == "size": size = ( int(attrs.end[i]) if attrs.end[i] is not None and int(attrs.end[i]) != -1 else args[0].checked_type.shape[i] - begin ) else: logger.warning("strided_slice: unknown slice mode encountered") if int(size) < 1: logger.info("strided_slice: size of slice must be at least 1") return False return True @_register_external_dynamic_check_func("nn.adaptive_max_pool2d") def adaptive_max_pool2d_annotate_fn(expr): # pylint: disable=unused-variable """Check if nn.adaptive_max_pool2d is supported by TensorRT.""" attrs, args = expr.attrs, expr.args if any([x.checked_type.dtype != "float32" for x in args]): logger.info("Only float32 inputs are supported for TensorRT.") return False if len(attrs.output_size) == 0 or any([size != 1 for size in map(int, attrs.output_size)]): logger.info("nn.adaptive_max_pool2d: output size must be (1, 1).") return False return True @_register_external_dynamic_check_func("nn.adaptive_avg_pool2d") def adaptive_avg_pool2d_annotate_fn(expr): # pylint: disable=unused-variable """Check if nn.adaptive_avg_pool2d is supported by TensorRT.""" attrs, args = expr.attrs, expr.args if any([x.checked_type.dtype != "float32" for x in args]): logger.info("Only float32 inputs are supported for TensorRT.") return False if len(attrs.output_size) == 0 or any([size != 1 for size in map(int, attrs.output_size)]): logger.info("nn.adaptive_avg_pool2d: output size must be (1, 1).") return False return True @_register_external_dynamic_check_func("nn.conv3d") def conv3d_annotate_fn(expr): # pylint: disable=unused-variable """Check if nn.conv3d is supported by TensorRT.""" attrs, args = expr.attrs, expr.args if any([x.checked_type.dtype != "float32" for x in args]): logger.info("Only float32 inputs are supported for TensorRT.") return False if not trt_version_annotate_fn((6, 0, 1))(attrs, args, "nn.conv3d"): return False if attrs.data_layout != "NCDHW": logger.info("nn.conv3d: data_layout is %s but must be NCDHW.", attrs.data_layout) return False if attrs.kernel_layout != "OIDHW": logger.info("nn.conv3d: kernel_layout is %s but must be OIDHW.", attrs.kernel_layout) return False if attrs.out_layout and attrs.out_layout != "NCDHW": logger.info("nn.conv3d: out_layout is %s but must be NCDHW.", attrs.out_layout) return False return True @_register_external_dynamic_check_func("nn.max_pool3d") def max_pool_3d_annotate_fn(expr): # pylint: disable=unused-variable """Check if nn.max_pool3d is supported by TensorRT.""" attrs, args = expr.attrs, expr.args if any([x.checked_type.dtype != "float32" for x in args]): logger.info("Only float32 inputs are supported for TensorRT.") return False if not trt_version_annotate_fn((6, 0, 1))(attrs, args, "nn.max_pool3d"): return False if attrs.layout != "NCDHW": logger.info("nn.max_pool3d: layout is %s but must be NCDHW.", attrs.layout) return False return True @_register_external_dynamic_check_func("nn.avg_pool3d") def avg_pool_3d_annotate_fn(expr): # pylint: disable=unused-variable """Check if nn.avg_pool3d is supported by TensorRT.""" attrs, args = expr.attrs, expr.args if any([x.checked_type.dtype != "float32" for x in args]): logger.info("Only float32 inputs are supported for TensorRT.") return False if not trt_version_annotate_fn((6, 0, 1))(attrs, args, "nn.avg_pool3d"): return False if attrs.layout != "NCDHW": logger.info("nn.avg_pool3d: layout is %s but must be NCDHW.", attrs.layout) return False return True @_register_external_dynamic_check_func("nn.conv3d_transpose") def conv3d_transpose_annotate_fn(expr): # pylint: disable=unused-variable """Check if nn.conv3d_transpose is supported by TensorRT.""" attrs, args = expr.attrs, expr.args if any([x.checked_type.dtype != "float32" for x in args]): logger.info("Only float32 inputs are supported for TensorRT.") return False if not trt_version_annotate_fn((6, 0, 1))(attrs, args, "nn.conv3d_transpose"): return False if attrs.data_layout != "NCDHW": logger.info("nn.conv3d_transpose: data_layout is %s but must be NCDHW.", attrs.data_layout) return False if attrs.kernel_layout != "OIDHW": logger.info( "nn.conv3d_transpose: kernel_layout is %s but must be OIDHW.", attrs.kernel_layout ) return False if attrs.out_layout and attrs.out_layout != "NCDHW": logger.info("nn.conv3d_transpose: out_layout is %s but must be NCDHW.", attrs.out_layout) return False if attrs.dilation and any([rate != 1 for rate in map(int, attrs.dilation)]): logger.info("nn.conv3d_transpose: dilation rate must be 1.") return False if attrs.output_padding and any([x != 0 for x in map(int, attrs.output_padding)]): logger.info("nn.conv3d_transpose: output padding is not supported.") return False return True class IsComputeIntensiveGraph(ExprVisitor): """ Visits the Graph recursively and checks if it contains compute heavy ops like convolutions and its transpose, dense and batch mat-mul. """ def __init__(self): ExprVisitor.__init__(self) self.is_compute_intensive = False def visit_call(self, call): compute_intensive_ops = set( [ "nn.conv2d", "nn.conv2d_transpose", "nn.conv3d", "nn.conv3d_transpose", "nn.dense", "nn.batch_matmul", ] ) if isinstance(call.op, tvm.tir.op.Op): if str(call.op) in compute_intensive_ops: self.is_compute_intensive = True return super().visit_call(call) def is_graph_compute_intensive(self, subgraph) -> bool: """ This function recursively visits the graph and checks if it's compute intensive" """ self.visit(subgraph) return self.is_compute_intensive def is_valid_subgraph(params, body): """Final check on whether the subgraph is valid and should be offloaded to TensorRT.""" # Remove invalid subgraphs for implicit batch mode. if get_tensorrt_use_implicit_batch_mode(): input_batch_sizes = [] for var in params: # In implicit batch mode, all inputs must have same batch size # TODO: (codeislife99) : Fix different dynamic batch size inputs if isinstance(var.checked_type, relay.TupleType): for tupe_type in var.checked_type.fields: # Scalar inputs not allowed if len(tupe_type.shape) == 0: logger.info("tensorrt: scalar inputs not supported") return False if not isinstance(tupe_type.shape[0], tvm.tir.expr.Any): input_batch_sizes.append(int(tupe_type.shape[0])) else: # Scalar inputs not allowed if len(var.checked_type.shape) == 0: logger.info("tensorrt: scalar inputs not supported") return False if not isinstance(var.checked_type.shape[0], tvm.tir.expr.Any): input_batch_sizes.append(int(var.checked_type.shape[0])) if len(input_batch_sizes) > 1 and len(set(input_batch_sizes)) != 1: logger.info("tensorrt: inputs have different batch sizes") return False if ( get_tensorrt_remove_no_mac_subgraphs() and not IsComputeIntensiveGraph().is_graph_compute_intensive(body) ): return False return True def prune_tensorrt_subgraphs(mod): """ Removes invalid subgraphs and those with no multiply-accumulates (if remove_no_max_subgraphs is set). """ class SubgraphRemover(ExprMutator): """ Reverts subgraphs in subgraphs_to_remove back to TVM instead of using an external codegen. """ def __init__(self, subgraphs_to_remove, mod, new_mod): ExprMutator.__init__(self) self.subgraphs_to_remove = subgraphs_to_remove self.mod = mod self.new_mod = new_mod def visit_call(self, call): if isinstance(call.op, GlobalVar): name = call.op.name_hint if name in self.subgraphs_to_remove: # "Inline" the subgraph back into new main function. func = self.mod[name] var_map = {} for arg, param in zip(call.args, func.params): var_map[param] = super().visit(arg) new_body = relay.bind(func.body, var_map) return new_body if name != "main": args = [] for arg in call.args: args.append(super().visit(arg)) return call.op(*args) return super().visit_call(call) subgraphs_to_remove = [] # Remove invalid subgraphs for subgraph in mod.get_global_vars(): name = subgraph.name_hint if not mod[name].attrs or mod[name].attrs["Compiler"] != "tensorrt": continue if not is_valid_subgraph(mod[name].params, mod[name].body): subgraphs_to_remove.append(name) # Create new pruned module new_mod = tvm.IRModule(mod.functions, mod.type_definitions) new_mod["main"] = SubgraphRemover(subgraphs_to_remove, mod, new_mod).visit(mod["main"]) return new_mod class RemoveDropout(ExprMutator): """ Removes all nn.dropout from an expr. """ def visit_tuple_getitem(self, op): visit = super().visit_tuple_getitem(op) if visit.index != 0: return visit if ( isinstance(visit.tuple_value, Call) and visit.tuple_value.op.name == "nn.dropout" and visit.index == 0 ): return visit.tuple_value.args[0] return visit @transform.function_pass(opt_level=0) class RemoveDropoutPass: def transform_function(self, func, mod, _): return RemoveDropout().visit(func)
[ "noreply@github.com" ]
heagoo.noreply@github.com
b1b58622a1b6dc3a9bdd97647d5dee2e9ccc9ecb
1bdc90a523785fe185655761200820ed37835e7c
/data/screen_helper.py
b4c2bd75e3b3eb6b658961b3c5964d5e9e234b8d
[]
no_license
robinarthur/MineSweeperBot
958bf0b2d24128f82130cda1bcb4b1df4a558d14
fdc54b49058c3571e4f34faf7d1ee5b29c330e16
refs/heads/master
2021-01-01T17:39:55.214329
2018-03-16T07:07:22
2018-03-16T07:07:22
98,127,037
0
0
null
null
null
null
UTF-8
Python
false
false
694
py
""" This file contains some functions from Adrianus Kleemans: https://github.com/robinarthur/bejeweled-bot """ import autopy as ap import Quartz.CoreGraphics as CG import struct import pygame import time import sys ### Constans - dont know if i use this for my bot... ### SLEEPING_TIME = 0.02 MAX_MOVES = 5 DRAW_CANVAS = False MAX_TIME = 75 ### input helpers ### def left_down(): pass def left_up(): pass def move_mouse(x, y): pass def click(x, y): pass def move_fields(x0, y0, x1, y1): global moves ### screen helpers ### def capture(): global screenshot_width global screenshot_data region = CG.CGRectInfinite # Create screenshot as CGImage
[ "stukka@gmx.de" ]
stukka@gmx.de
b6cf0010323137b56fa6a9fb8154537ce795ecf0
e6c65e2e354336a4bea5b6a4ccbccd3682915fe2
/out-bin/py/google/fhir/labels/bundle_to_label_test.runfiles/pypi__apache_beam_2_9_0/apache_beam/testing/util.py
d3a88f330d1f77eb73607ff539bda56a44994246
[ "Apache-2.0" ]
permissive
rasalt/fhir-datalab
c30ab773d84983dd04a37e9d0ddec8bf2824b8a4
3e329fc8b4226d3e3a4a7c23c306a86e7a9ea0de
refs/heads/master
2021-10-09T05:51:04.593416
2018-12-21T18:11:03
2018-12-22T05:38:32
162,744,237
0
0
null
null
null
null
UTF-8
Python
false
false
137
py
/home/rkharwar/.cache/bazel/_bazel_rkharwar/0ddaa3627472ad9d1367a008236ce2f5/external/pypi__apache_beam_2_9_0/apache_beam/testing/util.py
[ "ruchika.kharwar@gmail.com" ]
ruchika.kharwar@gmail.com
e77029948447f9b2a9aa08469f03020db9af79bc
24b4dcd555dd3e644467aec13edd671afdd3f49c
/SU2/eval/design_stochastic.py~
c947f55e5ddf42301012c47e6617cf4c2ba2983e
[]
no_license
garcgutierrez/adj_sto_su2
2c8294b65dcef8faf4bf1f453a413bca429a6751
22ec37839ed0a08f5dbe1935d18205f085b28a70
refs/heads/master
2022-11-16T22:13:59.666403
2020-07-14T15:38:22
2020-07-14T15:38:22
279,776,069
0
0
null
null
null
null
UTF-8
Python
false
false
21,765
#!/usr/bin/env python ## \file design.py # \brief python package for designs # \author T. Lukaczyk, F. Palacios # \version 7.0.5 "Blackbird" # # SU2 Project Website: https://su2code.github.io # # The SU2 Project is maintained by the SU2 Foundation # (http://su2foundation.org) # # Copyright 2012-2020, SU2 Contributors (cf. AUTHORS.md) # # SU2 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. # # SU2 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 SU2. If not, see <http://www.gnu.org/licenses/>. # ---------------------------------------------------------------------- # Imports # ---------------------------------------------------------------------- import os, copy from .. import io as su2io from . import func as su2func from . import grad as su2grad from ..io import redirect_folder, save_data import numpy as np # todo: # shouldnt be needed, but self.append_state() (ie after initialization) # ---------------------------------------------------------------------- # Design Class # ---------------------------------------------------------------------- class Design_Stochastic(object): """ SU2.eval.Design(config,state=None,folder='DESIGNS/DSN_*') Starts a design class, which manages a config and state. Will run design in folder, and with self indexing name if '*' is included in the folder name. Methods are wrappers for SU2.eval.func() and SU2.eval.grad() Attributes: state - design state config - design config files - design files folder - design folder funcs - design function value bunch grads - design gradient values bunch Methods: Optimizer Interface The following methods take a design vector for input as a list (shape n) or numpy array (shape n or nx1 or 1xn). Values are returned as floats or lists or lists of lists. See SU2.eval.obj_f, etc for more detail. obj_f(dvs) - objective function : float obj_df(dvs) - objective function derivatives : list con_ceq(dvs) - equality constraints : list con_dceq(dvs) - equality constraint derivatives : list[list] con_cieq(dvs) - inequality constraints : list con_dcieq(dvs) - inequality constraint gradients : list[list] Fucntional Interface The following methods take an objective function name for input. func(func_name) - function of specified name grad(func_name,method='CONTINUOUS_ADJOINT') - gradient of specified name """ def __init__(self, config, state=None, folder='DESIGNS/DSN_*', UQ = None): """ Initializes an SU2 Design """ ## ???: Move to Project, no next folder here self.UQ = UQ if '*' in folder: folder = su2io.next_folder(folder) self.Machs = self.UQ.Machs self.AOAs = self.UQ.AOAs config = copy.deepcopy(config) self.config = config self.state = state self.folder_big = folder #nMach = len(self.Machs) for ii in np.arange(self.UQ.Nquadrature): mach = self.Machs[ii] aoa = self.AOAs[ii] state_little = state[ii] state_little = copy.deepcopy(state_little) state_little = su2io.State(state_little) state_little.find_files(config) self.files = state_little.FILES self.funcs = state_little.FUNCTIONS self.grads = state_little.GRADIENTS self.folder = folder+'/M_{}'.format(ii) self.filename = 'design.pkl' # initialize folder with files config.MACH_NUMBER = mach config.AOA = aoa pull,link = state_little.pullnlink(config) with redirect_folder(self.folder,pull,link,force=True): # save design, config save_data(self.filename,self) config.dump('config_DSN.cfg') def _eval(self,eval_func,*args): """ Evaluates an SU2 Design always adds config and state to the inputs list """ config = self.config # state = self.state for ii,state in zip(np.arange(self.UQ.Nquadrature), self.state): mach = self.Machs[ii] aoa = self.AOAs[ii] #state = self.state[ii] files = state.FILES # state = self.state folder = self.folder_big+'/M_{}'.format(ii) filename = self.filename # check folder if not os.path.exists(folder): os.makedirs(folder) konfig = copy.deepcopy(config) ''' If the time convergence criterion was activated, we have less time iterations. Store the changed values of TIME_ITER, ITER_AVERAGE_OBJ and UNST_ADJOINT_ITER in state.WND_CAUCHY_DATA''' if 'TIME_ITER' in state.WND_CAUCHY_DATA: # Use Convergence data, if we have already a direct run konfig['TIME_ITER'] = state.WND_CAUCHY_DATA['TIME_ITER'] konfig['ITER_AVERAGE_OBJ'] = state.WND_CAUCHY_DATA['ITER_AVERAGE_OBJ'] konfig['UNST_ADJOINT_ITER'] = state.WND_CAUCHY_DATA['UNST_ADJOINT_ITER'] # list files to pull and link pull,link = state.pullnlink(konfig) # output redirection, don't re-pull files print('Folder : {}'.format(folder)) print(pull) print(link) with redirect_folder(folder,pull,link,force=False) as push: print('Entra') # get timestamp timestamp = state.tic() # print(timestamp) # run config.MACH_NUMBER = mach config.AOA = aoa state.setSubfolder('../M_{}/'.format(ii)) inputs = args + (config, state) #config.MACH_NUMBER vals = eval_func(*inputs) state.setSubfolder('../M_{}/'.format(ii)) # save design if state.toc(timestamp): # print('toc') # print(filename) save_data(filename,self) #: with redirect folder # update files self.files.update(state['FILES']) # print('states files:{}'.format(state['FILES'])) # print('Vals:{}'.format(vals)) return vals def obj_f(self,dvs): """ Evaluates SU2 Design Objectives """ return self._eval(obj_fs,dvs) def obj_df(self,dvs): """ Evaluates SU2 Design Objective Gradients """ return self._eval(obj_dfs,dvs) def con_ceq(self,dvs): """ Evaluates SU2 Design Equality Constraints """ return self._eval(con_ceqs,dvs) def con_dceq(self,dvs): """ Evaluates SU2 Design Equality Constraint Gradients """ return self._eval(con_dceqs,dvs) def con_cieq(self,dvs): """ Evaluates SU2 Design Inequality Constraints """ return self._eval(con_cieqs,dvs) def con_dcieq(self,dvs): """ Evaluates SU2 Design Inequality Constraint Gradients """ return self._eval(con_dcieqs,dvs) def func(self,func_name): """ Evaluates SU2 Design Functions by Name """ return self._eval(su2func,func_name) def grad(self,func_name,method='CONTINUOUS_ADJOINT'): """ Evaluates SU2 Design Gradients by Name """ return self._eval(su2grad,func_name,method) def touch(self): return self._eval(touch) def skip(self,*args,**kwarg): return self._eval(skip) def __repr__(self): return '<Design> %s' % self.folder def __str__(self): output = self.__repr__() output += '\n%s' % self.state return output #: class Design() # ---------------------------------------------------------------------- # Optimization Interface Functions # ---------------------------------------------------------------------- def obj_fs(dvs,config,state=None): """ val = SU2.eval.obj_f(dvs,config,state=None) Evaluates SU2 Objectives Wraps SU2.eval.func() Takes a design vector for input as a list (shape n) or numpy array (shape n or nx1 or 1xn), a config and optionally a state. Outputs a float. """ # unpack config and state config.unpack_dvs(dvs) state = su2io.State(state) def_objs = config['OPT_OBJECTIVE'] objectives = def_objs.keys() # evaluate each objective vals_out = [] func = 0.0 for i_obj,this_obj in enumerate(objectives): scale = def_objs[this_obj]['SCALE'] global_factor = float(config['OPT_GRADIENT_FACTOR']) sign = su2io.get_objectiveSign(this_obj) # Evaluate Objective Function scaling and sign # If default evaluate as normal, if def_objs[this_obj]['OBJTYPE']=='DEFAULT': func += su2func(this_obj,config,state) * sign * scale * global_factor # otherwise evaluate the penalty function (OBJTYPE = '>','<', or '=') else: func += obj_p(config,state,this_obj,def_objs) * scale vals_out.append(func) #: for each objective # If evaluating the combined function is desired, update it here. # This is only used when OPT_COMBINE_OBJECTIVE = YES if 'COMBO' in state.FUNCTIONS: state['FUNCTIONS']['COMBO'] = func return vals_out #: def obj_f() def obj_ps(config,state,this_obj,def_objs): # Penalty function: square of the difference between value and limit # This function is used when a constraint-type term is added to OPT_OBJECTIVE # This code, and obj_dp, must be changed to use a non-quadratic penalty function funcval = su2func(this_obj,config,state) constraint = float(def_objs[this_obj]['VALUE']) penalty = 0.0 if (def_objs[this_obj]['OBJTYPE']=='=' or \ (def_objs[this_obj]['OBJTYPE']=='>' and funcval < constraint) or \ (def_objs[this_obj]['OBJTYPE']=='<' and funcval > constraint )): penalty = (constraint - funcval)**2.0 # If 'DEFAULT' objtype this returns the function value. else: penalty = funcval return penalty #: def obj_p() def obj_dps(config,state,this_obj,def_objs): # Partial Derivative of Penalty function: square of the difference between value and limit # This function is used when a constraint-type term is added to OPT_OBJECTIVE # This code, and obj_p, must be changed to use a non-quadratic penalty function funcval = su2func(this_obj,config,state) constraint = float(def_objs[this_obj]['VALUE']) dpenalty=0.0 # Inequalities will be 0 or a positive value if ((def_objs[this_obj]['OBJTYPE']=='>' and funcval < constraint) or\ (def_objs[this_obj]['OBJTYPE']=='<' and funcval > constraint )): dpenalty=2.0*abs(constraint - funcval) # Equalities dp will be positive if value>constraint, negative if value<constraint elif (def_objs[this_obj]['OBJTYPE']=='='): dpenalty=2.0*(funcval -constraint) # If 'DEFAULT' objtype, this will return 1.0 elif (def_objs[this_obj]['OBJTYPE']=='DEFAULT'): dpenalty = 1.0 return dpenalty #: def obj_dp() def obj_dfs(dvs,config,state=None): """ vals = SU2.eval.obj_df(dvs,config,state=None) Evaluates SU2 Objective Gradients Wraps SU2.eval.grad() Takes a design vector for input as a list (shape n) or numpy array (shape n or nx1 or 1xn), a config and optionally a state. Outputs a list of gradients. """ # unpack config and state config.unpack_dvs(dvs) state = su2io.State(state) grad_method = config.get('GRADIENT_METHOD','CONTINUOUS_ADJOINT') def_objs = config['OPT_OBJECTIVE'] objectives = def_objs.keys() # Number of objective functionals n_obj = len( objectives ) # Whether to calculate gradients one-by-one or all-at-once combine_obj = (config['OPT_COMBINE_OBJECTIVE']=="YES") dv_scales = config['DEFINITION_DV']['SCALE'] dv_size = config['DEFINITION_DV']['SIZE'] # evaluate each objective vals_out = [] if (combine_obj and n_obj>1): # Evaluate objectives all-at-once; for adjoint methods this results in a # single, combined objective. scale = [1.0]*n_obj obj_list=['DRAG']*n_obj for i_obj,this_obj in enumerate(objectives): obj_list[i_obj]=this_obj scale[i_obj] = def_objs[this_obj]['SCALE'] if def_objs[this_obj]['OBJTYPE']== 'DEFAULT': # Standard case sign = su2io.get_objectiveSign(this_obj) scale[i_obj] *= sign else: # For a penalty function, the term is scaled by the partial derivative # d p(j) / dx = (dj / dx) * ( dp / dj) scale[i_obj]*=obj_dp(config, state, this_obj, def_objs) config['OBJECTIVE_WEIGHT']=','.join(map(str,scale)) grad= su2grad(obj_list,grad_method,config,state) # scaling : obj scale and sign are accounted for in combo gradient, dv scale now applied global_factor = float(config['OPT_GRADIENT_FACTOR']) k = 0 for i_dv,dv_scl in enumerate(dv_scales): for i_grd in range(dv_size[i_dv]): grad[k] = grad[k]*global_factor / dv_scl k = k + 1 vals_out.append(grad) else: # Evaluate objectives one-by-one marker_monitored = config['MARKER_MONITORING'] for i_obj,this_obj in enumerate(objectives): # For multiple objectives are evaluated one-by-one rather than combined # MARKER_MONITORING should be updated to only include the marker for i_obj # For single objectives, multiple markers can be used if (n_obj>1): config['MARKER_MONITORING'] = marker_monitored[i_obj] scale = def_objs[this_obj]['SCALE'] global_factor = float(config['OPT_GRADIENT_FACTOR']) sign = su2io.get_objectiveSign(this_obj) if def_objs[this_obj]['OBJTYPE']!= 'DEFAULT': # For a penalty function, the term is scaled by the partial derivative # and the sign is always positive # d p(j) / dx = (dj / dx) * ( dp / dj) scale*=obj_dp(config, state, this_obj, def_objs) sign = 1.0 # Evaluate Objective Gradient grad = su2grad(this_obj,grad_method,config,state) # scaling and sign k = 0 for i_dv,dv_scl in enumerate(dv_scales): for i_grd in range(dv_size[i_dv]): grad[k] = grad[k] * sign * scale * global_factor / dv_scl k = k + 1 vals_out.append(grad) #: for each objective return vals_out #: def obj_df() def con_ceqs(dvs,config,state=None): """ vals = SU2.eval.con_ceq(dvs,config,state=None) Evaluates SU2 Equality Constraints Wraps SU2.eval.func() Takes a design vector for input as a list (shape n) or numpy array (shape n or nx1 or 1xn), a config and optionally a state. Returns: a list of constraint values, ordered by the OPT_CONSTRAINT config parameter. """ # unpack state and config config.unpack_dvs(dvs) state = su2io.State(state) def_cons = config['OPT_CONSTRAINT']['EQUALITY'] constraints = def_cons.keys() # evaluate each constraint vals_out = [] for i_obj,this_con in enumerate(constraints): global_factor = float(config['OPT_GRADIENT_FACTOR']) push = def_cons[this_con]['SCALE'] value = def_cons[this_con]['VALUE'] # Evaluate Constraint Function func = su2func(this_con,config,state) # scaling and centering func = (func - value) * global_factor * push vals_out.append(func) #: for each constraint return vals_out #: def obj_ceq() def con_dceqs(dvs,config,state=None): """ vals = SU2.eval.con_dceq(dvs,config,state=None) Evaluates SU2 Equality Constraint Gradients Wraps SU2.eval.grad() Takes a design vector for input as a list (shape n) or numpy array (shape n or nx1 or 1xn), a config and optionally a state. Returns a list of lists of constraint gradients, ordered by the OPT_CONSTRAINT config parameter. """ # unpack state and config config.unpack_dvs(dvs) state = su2io.State(state) grad_method = config.get('GRADIENT_METHOD','CONTINUOUS_ADJOINT') def_cons = config['OPT_CONSTRAINT']['EQUALITY'] constraints = def_cons.keys() dv_scales = config['DEFINITION_DV']['SCALE'] dv_size = config['DEFINITION_DV']['SIZE'] # evaluate each constraint vals_out = [] for i_obj,this_con in enumerate(constraints): global_factor = float(config['OPT_GRADIENT_FACTOR']) value = def_cons[this_con]['VALUE'] # Evaluate Constraint Gradient grad = su2grad(this_con,grad_method,config,state) # scaling k = 0 for i_dv,dv_scl in enumerate(dv_scales): for i_grd in range(dv_size[i_dv]): grad[k] = grad[k] * global_factor / dv_scl k = k + 1 vals_out.append(grad) #: for each constraint return vals_out #: def obj_dceq() def con_cieqs(dvs,config,state=None): """ vals = SU2.eval.con_cieq(dvs,config,state=None) Evaluates SU2 Inequality Constraints Wraps SU2.eval.func() Convention is con(x)<=0 Takes a design vector for input as a list (shape n) or numpy array (shape n or nx1 or 1xn), a config and optionally a state. Returns a list of constraint gradients, ordered by the OPT_CONSTRAINT config parameter. """ # unpack state and config config.unpack_dvs(dvs) state = su2io.State(state) def_cons = config['OPT_CONSTRAINT']['INEQUALITY'] constraints = def_cons.keys() # evaluate each constraint vals_out = [] for i_obj,this_con in enumerate(constraints): global_factor = float(config['OPT_GRADIENT_FACTOR']) push = def_cons[this_con]['SCALE'] value = def_cons[this_con]['VALUE'] sign = def_cons[this_con]['SIGN'] sign = su2io.get_constraintSign(sign) # Evaluate Constraint Function func = su2func(this_con,config,state) # scaling and centering func = (func - value) * sign * global_factor * push vals_out.append(func) #: for each constraint return vals_out #: def obj_cieq() def con_dcieqs(dvs,config,state=None): """ vals = SU2.eval.con_dceq(dvs,config,state=None) Evaluates SU2 Inequality Constraint Gradients Wraps SU2.eval.grad() Convention is con(x)<=0 Takes a design vector for input as a list (shape n) or numpy array (shape n or nx1 or 1xn), a config and optionally a state. Returns a list of lists of constraint gradients, ordered by the OPT_CONSTRAINT config parameter. """ # unpack state and config config.unpack_dvs(dvs) state = su2io.State(state) grad_method = config.get('GRADIENT_METHOD','CONTINUOUS_ADJOINT') def_cons = config['OPT_CONSTRAINT']['INEQUALITY'] constraints = def_cons.keys() dv_scales = config['DEFINITION_DV']['SCALE'] dv_size = config['DEFINITION_DV']['SIZE'] # evaluate each constraint vals_out = [] for i_obj,this_con in enumerate(constraints): global_factor = float(config['OPT_GRADIENT_FACTOR']) value = def_cons[this_con]['VALUE'] sign = def_cons[this_con]['SIGN'] sign = su2io.get_constraintSign(sign) # Evaluate Constraint Gradient grad = su2grad(this_con,grad_method,config,state) # scaling and sign k = 0 for i_dv,dv_scl in enumerate(dv_scales): for i_grd in range(dv_size[i_dv]): grad[k] = grad[k] * sign * global_factor / dv_scl k = k + 1 vals_out.append(grad) #: for each constraint return vals_out #: def obj_dcieq() def touchs(config,state): """ SU2.eval.touch(config,state) resets state timestamp """ state.set_timestamp() def skips(config,state): """ SU2.eval.skip(config,state) does nothing """ pass
[ "garcgutierrez@gmail.com" ]
garcgutierrez@gmail.com
01fc1409605234c13e24de032454d1bbe841a338
e820092c087bbe253c3d9496afc34c4c5cf3f51f
/modules/database.py
28790e27b065ddcdb667882c263a77dd5825b68f
[ "BSD-2-Clause" ]
permissive
geomatikzh/openadms-node
4a7f2267da4ffa77f44901631bc7c15e7ff8ba83
aedfdc0b20e5e2cd668090f97a6bbb0b9c59d658
refs/heads/master
2020-04-25T09:13:33.417335
2019-03-26T09:09:56
2019-03-26T09:09:56
172,669,925
0
0
BSD-2-Clause
2019-02-26T08:31:20
2019-02-26T08:31:20
null
UTF-8
Python
false
false
9,870
py
#!/usr/bin/env python3.6 """Connectivity modules for various NoSQL databases.""" __author__ = 'Philipp Engel' __copyright__ = 'Copyright (c) 2018 Hochschule Neubrandenburg' __license__ = 'BSD-2-Clause' import logging import threading import time from typing import Any, Dict, Union try: import couchdb except ImportError: logging.getLogger().critical('Importing Python module "couchdb" failed') from tinydb import TinyDB from tinydb.storages import MemoryStorage from core.manager import Manager from core.observation import Observation from core.prototype import Prototype class CouchDriver(Prototype): """ CouchDriver provides connectivity for Apache CouchDB. Observations send to a CouchDriver instance will be cached and then stored in the database defined the configuration. TinyDB is used for caching (either file-based or in-memory). The JSON-based configuration for this module: Parameters: server (str): FQDN or IP address of CouchDB server. path (str): Additional CouchDB instance path or blank. port (int): Port number of CouchDB server. user (str): User name. password (str): Password. db (str): Database name. tls (bool): Use TLS encryption (default: False). cacheFile (str): Optional file name of local cache database (e.g., `cache.json`). If not set, an in-memory database will be used instead. """ def __init__(self, module_name: str, module_type: str, manager: Manager): super().__init__(module_name, module_type, manager) config = self.get_module_config(self._name) self._couch = None # CouchDB driver. self._db = None # CouchDB database. self._thread = None # Thread doing the caching. self._timeout = 30.0 # Time to wait on connection error. cache_file = config.get('cacheFile') # Initialise local cache database. if not cache_file or cache_file.strip() == "": # Create in-memory cache database. self.logger.verbose('Creating in-memory cache database ...') self._cache_db = TinyDB(storage=MemoryStorage) else: # Create file-based cache database. try: self.logger.verbose(f'Opening local cache database ' f'"{cache_file}" ...') self._cache_db = TinyDB(cache_file) except Exception: raise ValueError(f'Cache database "{self._db_file}" could ' f'not be opened') # Use either HTTPS or HTTP. is_tls = config.get('tls', False) self._scheme = 'https' if is_tls else 'http' # Configuration of the CouchDB server. self._server = config.get('server') self._path = config.get('path', '') self._port = config.get('port', 5984) user = config.get('user') password = config.get('password') # Generate URI to CouchDB server, for example: # https://<user>:<password>@iot.example.com:443/couchdb/ self._server_uri = (f'{self._scheme}://{user}:{password}@{self._server}' f':{self._port}/{self._path}') # Set name of database to open. self._db_name = config.get('db') def _cache_observation_data(self, obs: Observation) -> str: """Caches the given observation in local cache database. Args: obs: The observation object. Returns: Document id of cached data set. """ doc_id = self._cache_db.insert(obs.data) return doc_id def _connect(self) -> None: """Connects to CouchDB database server. Raises: Exception: On connection error. """ # Connect to CouchDB server. self.logger.info(f'Connecting to CouchDB server "{self._scheme}://' f'{self._server}:{self._port}/{self._path}" ...') self._couch = couchdb.Server(self._server_uri) # Open database. if self._db_name not in self._couch: self.logger.error(f'Database "{self._db_name}" not found on server ' f'"{self._server_uri}"') self.logger.info(f'Opening CouchDB database "{self._db_name}" ...') self._db = self._couch[self._db_name] def _get_cached_observation_data(self) -> Union[Dict[str, Any], None]: """"Returns a random JSON-serialised observation data set from the local cache database. Returns: Observation data or None if cache is empty. """ if len(self._cache_db) > 0: return self._cache_db.all()[0] return None def _insert_observation_data(self, obs_data: Dict[str, Any]) -> bool: """Inserts observation data into CouchDB database. Args: obs_data: The observation data. Returns: True on success, False on failure. """ try: if self._couch is None: self._connect() self._db[obs_data.get('id')] = obs_data self.logger.info(f'Saved observation "{obs_data.get("name")}" of ' f'target "{obs_data.get("target")}" from ' f'port "{obs_data.get("portName")}" to CouchDB ' f'database "{self._db_name}"') except Exception as e: self.logger.error(f'Observation "{obs_data.get("name")}" with ' f'target "{obs_data.get("target")}" from port ' f'"{obs_data.get("portName")}" could not be ' f'saved in CouchDB database "{self._db_name}": ' f'{e}') return False return True def _remove_observation_data(self, doc_id: int) -> None: """Removes a single observations from the local cache database. Args: doc_id: The document id. """ self._cache_db.remove(doc_ids=[doc_id]) self.logger.debug(f'Removed observation from cache (doc id = {doc_id})') def has_cached_observation_data(self) -> bool: """Returns whether or not a cached observation exists in the local cache database. Returns: True if cached observation exists, False if not. """ return True if len(self._cache_db) > 0 else False def process_observation(self, obs: Observation) -> Observation: doc_id = self._cache_observation_data(obs) if doc_id: self.logger.debug(f'Cached observation "{obs.get("name")}" of ' f'target "{obs.get("target")}" (doc id = ' f'{doc_id})') else: self.logger.error(f'Caching of observation "{obs.get("name")}" of ' f'target "{obs.get("target")}" failed') return obs def run(self) -> None: """Inserts cached observation data into CouchDB database.""" while self.is_running: # Poor men's event handling ... if not self.has_cached_observation_data(): time.sleep(1.0) continue if len(self._cache_db) > 500: self.logger.warning('Cache database is running full ' '({} cached observations)' .format(len(self._cache_db))) # Insert cached observation data into CouchDB database. obs_data = self._get_cached_observation_data() if not obs_data: continue self.logger.debug(f'Trying to insert observation ' f'"{obs_data.get("name")}" of target ' f'"{obs_data.get("target")}" ' f'(doc id = {obs_data.doc_id}) into CouchDB ' f'database "{self._db_name}" ...') # Remove the inserted observation data from local cache. if self._insert_observation_data(obs_data): self._remove_observation_data(obs_data.doc_id) else: time.sleep(self._timeout) def start(self) -> None: """Starts the module.""" if self._is_running: return super().start() self._thread = threading.Thread(target=self.run) self._thread.daemon = True self._thread.start() class TinyDriver(Prototype): """ TinyDriver stores observations in a TinyDB document store. The JSON-based configuration for this module: Parameters: path (str): Path to the database file. """ def __init__(self, module_name: str, module_type: str, manager: Manager): super().__init__(module_name, module_type, manager) config = self.get_module_config(self._name) self._path = config.get('path') def process_observation(self, obs: Observation) -> Observation: try: self.logger.debug(f'Opening TinyDB document store ' f'"{self._path}" ...') db = TinyDB(self._path) doc_id = db.insert(obs.data) self.logger.verbose(f'Saved observation "{obs.get("name")}" of ' f'target "{obs.get("target")}" in document ' f'store "{self._path}" (doc id = {doc_id})') db.close() self.logger.debug(f'Closed TinyDB document store' f'"{self._path}" ...') except Exception as e: self.logger.critical(f'Could not access document store ' f'"{self._path}": {str(e)}') return obs
[ "pengel@hs-nb.de" ]
pengel@hs-nb.de
1dcd4823d7cd977207da1e30b6e356b847c5aaac
81fbbf5a2c34b6d48aafa90b05faf0f56db892e1
/lib/fileop/errors.py
5a9f6ba40301635909a3731013191234f0129063
[ "MIT" ]
permissive
ellenlee1/dynamo
d1ea05a6f93668875576520d2e62cd3174120e4f
1d42ef49f523f5bc56ff2cf42fdf8e47a4108e2e
refs/heads/master
2020-03-25T00:37:09.660391
2018-08-01T18:50:12
2018-08-01T18:50:12
143,195,297
0
0
MIT
2018-08-01T18:47:01
2018-08-01T18:47:01
null
UTF-8
Python
false
false
3,738
py
import errno # For whatever reason, the following codes are missing from python errno errno.ENOMEDIUM = 123 errno.EMEDIUMTYPE = 124 errno.ECANCELED = 125 errno.ENOKEY = 126 errno.EKEYEXPIRED = 127 errno.EKEYREVOKED = 128 errno.EKEYREJECTED = 129 # message, error code msg_to_code = [ ('performance marker', errno.ETIMEDOUT), ('Name or service not known', errno.EHOSTUNREACH), ('Connection timed out', errno.ETIMEDOUT), ('Operation timed out', errno.ETIMEDOUT), ('Idle Timeout', errno.ETIMEDOUT), ('end-of-file was reached', errno.EREMOTEIO), ('end of file occurred', errno.EREMOTEIO), ('SRM_INTERNAL_ERROR', errno.ECONNABORTED), ('Internal server error', errno.ECONNABORTED), ('was forcefully killed', errno.ECONNABORTED), ('operation timeout', errno.ETIMEDOUT), ('proxy expired', errno.EKEYEXPIRED), ('with an error 550 File not found', errno.ENOENT), ('ile exists and overwrite', errno.EEXIST), ('No such file', errno.ENOENT), ('SRM_INVALID_PATH', errno.ENOENT), ('The certificate has expired', errno.EKEYEXPIRED), ('The available CRL has expired', errno.EKEYEXPIRED), ('SRM Authentication failed', errno.EKEYREJECTED), ('SRM_DUPLICATION_ERROR', errno.EKEYREJECTED), ('SRM_AUTHENTICATION_FAILURE', errno.EKEYREJECTED), ('SRM_AUTHORIZATION_FAILURE', errno.EKEYREJECTED), ('Authentication Error', errno.EKEYREJECTED), ('SRM_NO_FREE_SPACE', errno.ENOSPC), ('digest too big for rsa key', errno.EMSGSIZE), ('Can not determine address of local host', errno.ENONET), ('Permission denied', errno.EACCES), ('System error in write', errno.EIO), ('File exists', errno.EEXIST), ('checksum do not match', errno.EIO), ('CHECKSUM MISMATCH', errno.EIO), ('gsiftp performance marker', errno.ETIMEDOUT), ('Could NOT load client credentials', errno.ENOKEY), ('Error reading host credential', errno.ENOKEY), ('File not found', errno.ENOENT), ('SRM_FILE_UNAVAILABLE', errno.ENOENT), ('Unable to connect', errno.ENETUNREACH), ('could not open connection to', errno.ENETUNREACH), ('user not authorized', errno.EACCES), ('Broken pipe', errno.EPIPE), ('limit exceeded', errno.EREMOTEIO), ('write denied', errno.EACCES), ('error in reading', errno.EIO), ('over-load', errno.EREMOTEIO), ('connection limit', errno.EMFILE) ] def find_msg_code(msg): for m, c in msg_to_code: if m in msg: return c return None # from FTS3 heuristics.cpp + some originals irrecoverable_errors = set([ -1, # Job was not even submitted errno.ENOENT, # No such file or directory errno.EPERM, # Operation not permitted errno.EACCES, # Permission denied errno.EEXIST, # Destination file exists errno.EISDIR, # Is a directory errno.ENAMETOOLONG, # File name too long errno.E2BIG, # Argument list too long errno.ENOTDIR, # Part of the path is not a directory errno.EFBIG, # File too big errno.ENOSPC, # No space left on device errno.EROFS, # Read-only file system errno.EPROTONOSUPPORT, # Protocol not supported by gfal2 (plugin missing?) errno.ECANCELED, # Canceled errno.EIO, # I/O error errno.EMSGSIZE, # Message too long errno.ENONET, # Machine is not on the network errno.ENOKEY, # Could not load key errno.EKEYEXPIRED, # Key has expired errno.EKEYREJECTED, # Key was rejected by service errno.ENETUNREACH, # Network is unreachable errno.ECOMM # Communication error (may be recoverable in some cases?) ])
[ "yiiyama@mit.edu" ]
yiiyama@mit.edu
7d2c5b5c3707bb563341a8b014ea257b464b3691
032406baa04e40d210dc1b1fc6b24df0169b3829
/pat(advanced)python/1020(advanced).py
b0cf128236d7bc428310d1d4aee0de15304bbcc8
[]
no_license
Xnaivety/pat
cabc2837019085fc72c78aedc048239b3cc23140
0383e8f0cca836d3326ad8460b985436ab1888a6
refs/heads/master
2023-01-13T05:29:39.899784
2020-11-13T14:52:45
2020-11-13T14:52:45
282,879,900
2
0
null
null
null
null
UTF-8
Python
false
false
1,472
py
class new_node(): left_children = 99999 right_children = 99999 def __init__(self, node): self.myself = node def traversal(head1, tail1, head2, tail2): # 1是postorder的头尾,2是inorder的头尾 length = tail1 - head1 + 1 if (length <= 0): return 99999 node = postorder[tail1] newnode = new_node(node) count = 0 for i in inorder[head2:]: count += 1 if (i == node): # head2+count是下一个根结点的index # 进行左子树的遍历 newnode.left_children = traversal(head1, head1 + count - 2, head2, head2 + count - 2) # 进行右子树的遍历 newnode.right_children = traversal(tail1 - length + count, tail1 - 1, tail2 - length + count + 1, tail2) break return newnode if __name__ == '__main__': number_nodes = int(input()) postorder = list(map(int, input().split())) inorder = list(map(int, input().split())) level_traversal = [traversal(0, number_nodes - 1, 0, number_nodes - 1)] count1 = 0 while (level_traversal): index_node = level_traversal.pop(0) if (count1 != 0): print(' ', end='') print(index_node.myself, end='') count1 += 1 if (index_node.left_children != 99999): level_traversal.append(index_node.left_children) if (index_node.right_children != 99999): level_traversal.append(index_node.right_children)
[ "827725022@qq.com" ]
827725022@qq.com
99e5dde4f9e8caf124d612b0cc3ab50630307c1c
1fe0b680ce53bb3bb9078356ea2b25e572d9cfdc
/venv/lib/python2.7/site-packages/ansible/modules/network/aos/_aos_asn_pool.py
c81fac21e7ef1a096bd8194e0a17fb616932b7a1
[ "MIT" ]
permissive
otus-devops-2019-02/devopscourses_infra
1929c4a9eace3fdb0eb118bf216f3385fc0cdb1c
e42e5deafce395af869084ede245fc6cff6d0b2c
refs/heads/master
2020-04-29T02:41:49.985889
2019-05-21T06:35:19
2019-05-21T06:35:19
175,780,457
0
1
MIT
2019-05-21T06:35:20
2019-03-15T08:35:54
HCL
UTF-8
Python
false
false
10,714
py
#!/usr/bin/python # # (c) 2017 Apstra Inc, <community@apstra.com> # # This file is part of Ansible # # Ansible is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # Ansible 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 General Public License for more details. # # You should have received a copy of the GNU General Public License # along with Ansible. If not, see <http://www.gnu.org/licenses/>. # ANSIBLE_METADATA = {'metadata_version': '1.1', 'status': ['deprecated'], 'supported_by': 'community'} DOCUMENTATION = ''' --- module: aos_asn_pool author: Damien Garros (@dgarros) version_added: "2.3" short_description: Manage AOS ASN Pool deprecated: removed_in: "2.9" why: This module does not support AOS 2.1 or later alternative: See new modules at U(https://www.ansible.com/ansible-apstra). description: - Apstra AOS ASN Pool module let you manage your ASN Pool easily. You can create and delete ASN Pool by Name, ID or by using a JSON File. This module is idempotent and support the I(check) mode. It's using the AOS REST API. requirements: - "aos-pyez >= 0.6.0" options: session: description: - An existing AOS session as obtained by M(aos_login) module. required: true name: description: - Name of the ASN Pool to manage. Only one of I(name), I(id) or I(content) can be set. id: description: - AOS Id of the ASN Pool to manage. Only one of I(name), I(id) or I(content) can be set. content: description: - Datastructure of the ASN Pool to manage. The data can be in YAML / JSON or directly a variable. It's the same datastructure that is returned on success in I(value). state: description: - Indicate what is the expected state of the ASN Pool (present or not). default: present choices: ['present', 'absent'] ranges: description: - List of ASNs ranges to add to the ASN Pool. Each range must have 2 values. ''' EXAMPLES = ''' - name: "Create ASN Pool" aos_asn_pool: session: "{{ aos_session }}" name: "my-asn-pool" ranges: - [ 100, 200 ] state: present register: asnpool - name: "Save ASN Pool into a file in JSON" copy: content: "{{ asnpool.value | to_nice_json }}" dest: resources/asn_pool_saved.json - name: "Save ASN Pool into a file in YAML" copy: content: "{{ asnpool.value | to_nice_yaml }}" dest: resources/asn_pool_saved.yaml - name: "Delete ASN Pool" aos_asn_pool: session: "{{ aos_session }}" name: "my-asn-pool" state: absent - name: "Load ASN Pool from File(JSON)" aos_asn_pool: session: "{{ aos_session }}" content: "{{ lookup('file', 'resources/asn_pool_saved.json') }}" state: present - name: "Delete ASN Pool from File(JSON)" aos_asn_pool: session: "{{ aos_session }}" content: "{{ lookup('file', 'resources/asn_pool_saved.json') }}" state: absent - name: "Load ASN Pool from File(Yaml)" aos_asn_pool: session: "{{ aos_session }}" content: "{{ lookup('file', 'resources/asn_pool_saved.yaml') }}" state: present register: test - name: "Delete ASN Pool from File(Yaml)" aos_asn_pool: session: "{{ aos_session }}" content: "{{ lookup('file', 'resources/asn_pool_saved.yaml') }}" state: absent ''' RETURNS = ''' name: description: Name of the ASN Pool returned: always type: str sample: Private-ASN-pool id: description: AOS unique ID assigned to the ASN Pool returned: always type: str sample: fcc4ac1c-e249-4fe7-b458-2138bfb44c06 value: description: Value of the object as returned by the AOS Server returned: always type: dict sample: {'...'} ''' import json from ansible.module_utils.basic import AnsibleModule from ansible.module_utils.network.aos.aos import get_aos_session, find_collection_item, do_load_resource, check_aos_version, content_to_dict def check_ranges_are_valid(module, ranges): i = 1 for range in ranges: if not isinstance(range, list): module.fail_json(msg="Range (%i) must be a list not %s" % (i, type(range))) elif len(range) != 2: module.fail_json(msg="Range (%i) must be a list of 2 members, not %i" % (i, len(range))) elif not isinstance(range[0], int): module.fail_json(msg="1st element of range (%i) must be integer instead of %s " % (i, type(range[0]))) elif not isinstance(range[1], int): module.fail_json(msg="2nd element of range (%i) must be integer instead of %s " % (i, type(range[1]))) elif range[1] <= range[0]: module.fail_json(msg="2nd element of range (%i) must be bigger than 1st " % (i)) i += 1 return True def get_list_of_range(asn_pool): ranges = [] for range in asn_pool.value['ranges']: ranges.append([range['first'], range['last']]) return ranges def create_new_asn_pool(asn_pool, name, ranges): # Create value datum = dict(display_name=name, ranges=[]) for range in ranges: datum['ranges'].append(dict(first=range[0], last=range[1])) asn_pool.datum = datum # Write to AOS return asn_pool.write() def asn_pool_absent(module, aos, my_pool): margs = module.params # If the module do not exist, return directly if my_pool.exists is False: module.exit_json(changed=False, name=margs['name'], id='', value={}) # Check if object is currently in Use or Not # If in Use, return an error if my_pool.value: if my_pool.value['status'] != 'not_in_use': module.fail_json(msg="Unable to delete ASN Pool '%s' is currently in use" % my_pool.name) else: module.fail_json(msg="ASN Pool object has an invalid format, value['status'] must be defined") # If not in check mode, delete Ip Pool if not module.check_mode: try: my_pool.delete() except Exception: module.fail_json(msg="An error occurred, while trying to delete the ASN Pool") module.exit_json(changed=True, name=my_pool.name, id=my_pool.id, value={}) def asn_pool_present(module, aos, my_pool): margs = module.params # if content is defined, create object from Content if margs['content'] is not None: if 'display_name' in module.params['content'].keys(): do_load_resource(module, aos.AsnPools, module.params['content']['display_name']) else: module.fail_json(msg="Unable to find display_name in 'content', Mandatory") # if asn_pool doesn't exist already, create a new one if my_pool.exists is False and 'name' not in margs.keys(): module.fail_json(msg="name is mandatory for module that don't exist currently") elif my_pool.exists is False: if not module.check_mode: try: my_new_pool = create_new_asn_pool(my_pool, margs['name'], margs['ranges']) my_pool = my_new_pool except Exception: module.fail_json(msg="An error occurred while trying to create a new ASN Pool ") module.exit_json(changed=True, name=my_pool.name, id=my_pool.id, value=my_pool.value) # Currently only check if the pool exist or not # if exist return change false # # Later it would be good to check if the list of ASN are same # if pool already exist, check if list of ASN is the same # if same just return the object and report change false # if set(get_list_of_range(my_pool)) == set(margs['ranges']): module.exit_json(changed=False, name=my_pool.name, id=my_pool.id, value=my_pool.value) # ######################################################## # Main Function # ######################################################## def asn_pool(module): margs = module.params try: aos = get_aos_session(module, margs['session']) except Exception: module.fail_json(msg="Unable to login to the AOS server") item_name = False item_id = False # Check ID / Name and Content if margs['content'] is not None: content = content_to_dict(module, margs['content']) if 'display_name' in content.keys(): item_name = content['display_name'] else: module.fail_json(msg="Unable to extract 'display_name' from 'content'") elif margs['name'] is not None: item_name = margs['name'] elif margs['id'] is not None: item_id = margs['id'] # If ranges are provided, check if they are valid if 'ranges' in margs.keys(): check_ranges_are_valid(module, margs['ranges']) # ---------------------------------------------------- # Find Object if available based on ID or Name # ---------------------------------------------------- try: my_pool = find_collection_item(aos.AsnPools, item_name=item_name, item_id=item_id) except Exception: module.fail_json(msg="Unable to find the IP Pool based on name or ID, something went wrong") # ---------------------------------------------------- # Proceed based on State value # ---------------------------------------------------- if margs['state'] == 'absent': asn_pool_absent(module, aos, my_pool) elif margs['state'] == 'present': asn_pool_present(module, aos, my_pool) def main(): module = AnsibleModule( argument_spec=dict( session=dict(required=True, type="dict"), name=dict(required=False), id=dict(required=False), content=dict(required=False, type="json"), state=dict(required=False, choices=['present', 'absent'], default="present"), ranges=dict(required=False, type="list", default=[]) ), mutually_exclusive=[('name', 'id', 'content')], required_one_of=[('name', 'id', 'content')], supports_check_mode=True ) # Check if aos-pyez is present and match the minimum version check_aos_version(module, '0.6.0') asn_pool(module) if __name__ == "__main__": main()
[ "skydevapp@gmail.com" ]
skydevapp@gmail.com
50743954f7da3ac86db294d8917ddcbcc9fd10d7
42871de8e9857749e0e25d5c471b8ec081f84b48
/env.py
88bfb42d4c9c5bb04ffb56d86cf54d3ba6f2b2db
[]
no_license
Nico-Kraus/QBM
530a0c8a7224b84f20a9565d5f72df94d51b314b
59fd5f1345dc8bb9c3cd2fbf83da86e134cc5f49
refs/heads/main
2023-08-25T08:52:17.826562
2021-10-16T17:28:07
2021-10-16T17:28:07
406,765,020
0
0
null
null
null
null
UTF-8
Python
false
false
8,631
py
import numpy as np import os os.system("") class Env(): LEFT = 0 DOWN = 1 RIGHT = 2 UP = 3 def __init__(self, rows=4, cols=4,border="restart"): self.map = np.zeros((rows,cols), dtype=int) self.start = np.zeros(2, dtype=int) # [row,col] from top left self.n_actions = 4 self.rows = rows self.cols = cols self.border = border self.num_states = self.rows*self.cols self.state = np.copy(self.start) @staticmethod def make_example(num, border): if num == 1: rows = 2 cols = 2 env = Env(rows,cols,border) env.set_start(np.zeros(2, dtype=int)) env.add_reward(rows-1, cols-1) env.add_penalty(0,1) env.print_env() return env if num == 2: rows = 3 cols = 3 env = Env(rows,cols,border) env.set_start(np.zeros(2, dtype=int)) env.add_reward(rows-1, cols-1) env.add_penalty(1,2) env.add_penalty(2,0) env.print_env() return env if num == 3: rows = 4 cols = 4 env = Env(rows,cols,border) env.set_start(np.zeros(2, dtype=int)) env.add_reward(rows-1, cols-1) env.add_penalty(1,1) env.add_penalty(1,3) env.add_penalty(2,3) env.add_penalty(3,0) env.print_env() return env if num == 4: rows = 3 cols = 5 env = Env(rows,cols,border) start = np.zeros(2, dtype=int) start[0] = rows-1 start[1] = cols-1 env.set_start(start) env.add_reward(0,0) env.add_penalty(1,2) env.add_penalty(2,2) env.print_env() return env if num == 5: rows = 5 cols = 5 env = Env(rows,cols,border) start = np.zeros(2, dtype=int) start[0] = 0 start[1] = 0 env.set_start(start) env.add_reward(rows-1, cols-1) env.add_penalty(1,0) env.add_penalty(1,1) env.add_penalty(3,1) env.add_penalty(0,3) env.add_penalty(1,3) env.add_penalty(3,3) env.add_penalty(3,4) env.print_env() return env if num == 6: rows = 6 cols = 6 env = Env(rows,cols,border) start = np.zeros(2, dtype=int) start[0] = 0 start[1] = 0 env.set_start(start) env.add_reward(2, 1) env.add_penalty(1,0) env.add_penalty(1,1) env.add_penalty(1,2) env.add_penalty(1,4) env.add_penalty(1,5) env.add_penalty(2,2) env.add_penalty(3,1) env.add_penalty(3,2) env.add_penalty(3,4) env.add_penalty(4,1) env.add_penalty(4,2) env.add_penalty(4,4) env.print_env() return env if num == 7: rows = 8 cols = 8 env = Env(rows,cols,border) start = np.zeros(2, dtype=int) start[0] = 0 start[1] = 0 env.set_start(start) env.add_reward(rows-1, cols-1) env.add_penalty(4,3) env.add_penalty(4,4) env.add_penalty(4,5) env.print_env() return env if num == 8: rows = 8 cols = 8 env = Env(rows,cols,border) start = np.zeros(2, dtype=int) start[0] = 0 start[1] = 0 env.set_start(start) env.add_reward(rows-1, cols-1) env.add_penalty(1,1) env.add_penalty(2,1) env.add_penalty(1,4) env.add_penalty(1,5) env.add_penalty(3,3) env.add_penalty(3,4) env.add_penalty(5,0) env.add_penalty(5,3) env.add_penalty(6,3) env.add_penalty(7,3) env.add_penalty(6,5) env.add_penalty(6,6) env.add_penalty(6,7) env.add_penalty(0,7) env.print_env() return env if num == 9: rows = 11 cols = 11 env = Env(rows,cols,border) start = np.zeros(2, dtype=int) start[0] = 0 start[1] = 0 env.set_start(start) penalties = [ [0,0,0,0,0,1,0,0,0,0,0], [1,1,1,1,0,1,0,1,0,1,0], [0,0,0,1,0,0,0,1,0,1,0], [0,1,0,1,0,1,1,1,0,1,0], [0,1,2,1,0,0,0,1,0,1,0], [0,1,1,1,0,1,1,1,1,1,0], [0,1,0,0,0,1,0,0,0,1,0], [0,1,1,1,1,1,0,1,0,1,0], [0,0,0,0,0,0,0,1,0,1,0], [1,1,0,1,0,1,1,1,0,1,0], [0,0,0,1,0,0,0,1,0,0,0] ] for x, row in enumerate(penalties): for y, value in enumerate(row): if value == 1: env.add_penalty(x,y) if value == 2: env.add_reward(x,y) env.print_env() return env def set_start(self, start): self.start = start self.reset() def set_state(self, obs_state): self.state[0] = obs_state // self.rows self.state[1] = obs_state % self.rows def add_reward(self, row, col): if row > self.rows or col > self.cols: print("reward out of range") else: self.map[row][col] = 1 def add_penalty(self, row, col): if row > self.rows or col > self.cols: print("penalty out of range") else: self.map[row][col] = -1 def get_obs_state(self): return self.state[1] + self.state[0]*self.cols def get_matrix_state(self): return self.state def get_array_state(self): result = [0]*self.num_states result[self.state[1] + self.state[0]*self.cols] = 1 return result def take_action(self, action): curr_state = np.copy(self.get_matrix_state()) if action == self.LEFT: self.get_matrix_state()[1] -= 1 if action == self.RIGHT: self.get_matrix_state()[1] += 1 if action == self.DOWN: self.get_matrix_state()[0] += 1 if action == self.UP: self.get_matrix_state()[0] -= 1 row = self.get_matrix_state()[0] col = self.get_matrix_state()[1] if 0 > row or row > self.rows - 1 or 0 > col or col > self.cols - 1: if self.border == "stay": self.state = curr_state elif self.border == "restart": self.get_matrix_state()[0] = 0 self.get_matrix_state()[1] = 0 obs = self.get_obs_state() reward = self.get_reward() if self.map[self.state[0]][self.state[1]] == 0: done = False else: done = True return obs, reward, done def action_name(self, action): if action == 0: name = 'LEFT' if action == 1: name = 'DOWN' if action == 2: name = 'RIGHT' if action == 3: name = 'UP' return name def action_symbol(self, action): if action == 0: name = '<' if action == 1: name = 'v' if action == 2: name = '>' if action == 3: name = 'n' return name def get_reward(self): if self.map[self.state[0]][self.state[1]] == 1: reward = 1 else: reward = 0 return reward def print_env(self): for i in range(self.map.shape[0]): # iterate over rows for j in range(self.map[i].shape[0]): # iterate over cols if self.get_matrix_state()[0] == i and self.get_matrix_state()[1] == j: if self.map[i][j] >= 0: print(' ', end='') print('\x1b[6;30;42m' + str(self.map[i][j]) + '\x1b[0m', end='') else: if self.map[i][j] >= 0: print(' ', end='') print(self.map[i][j], end='') print() print() def reset(self): self.state = np.copy(self.start) return self.get_obs_state()
[ "n.kraus@campus.lmu.de" ]
n.kraus@campus.lmu.de
b1b4ffe6299135bcbf5ed61b581a7ac712667b01
012d9fb3e46b6e86822f8ff84bc855910dfa86fa
/message/urls.py
289fc7aeafa6858d8b725ba2df341eb298849dd9
[]
no_license
bvishal8510/channel
c7ea4281eb0f44e05268be6f1f1c0119cc307823
626a52c5c5786a032c0117a8a02996e08b5ac64a
refs/heads/master
2021-04-28T14:42:24.713468
2018-07-17T07:44:32
2018-07-17T07:44:32
121,972,127
0
0
null
null
null
null
UTF-8
Python
false
false
1,073
py
"""message URL Configuration The `urlpatterns` list routes URLs to views. For more information please see: https://docs.djangoproject.com/en/1.11/topics/http/urls/ Examples: Function views 1. Add an import: from my_app import views 2. Add a URL to urlpatterns: url(r'^$', views.home, name='home') Class-based views 1. Add an import: from other_app.views import Home 2. Add a URL to urlpatterns: url(r'^$', Home.as_view(), name='home') Including another URLconf 1. Import the include() function: from django.conf.urls import url, include 2. Add a URL to urlpatterns: url(r'^blog/', include('blog.urls')) """ # from django.conf.urls import url # from django.contrib import admin # urlpatterns = [ # url(r'^admin/', admin.site.urls), # ] from django.conf.urls import include, url # from django.contrib import admin from talk import views from django.contrib.auth.models import User urlpatterns = [ # url(r'^admin/', admin.site.urls), # url(r'^', include('talk.urls', namespace='example')), url(r'^', include('talk.urls')), ]
[ "baghel.vishal124124@gmail.com" ]
baghel.vishal124124@gmail.com
457402d4eaabebf8990389ea3c4f45cb68b8bcbe
2359121ebcebba9db2cee20b4e8f8261c5b5116b
/configs_pytorch/e34.py
d36f30f4a718d8dba027c70d21f4493f0b2003f5
[]
no_license
EliasVansteenkiste/plnt
79840bbc9f1518c6831705d5a363dcb3e2d2e5c2
e15ea384fd0f798aabef04d036103fe7af3654e0
refs/heads/master
2021-01-20T00:34:37.275041
2017-07-20T18:03:08
2017-07-20T18:03:08
89,153,531
2
1
null
null
null
null
UTF-8
Python
false
false
14,351
py
#copy of j25 import numpy as np from collections import namedtuple from functools import partial from PIL import Image import data_transforms import data_iterators import pathfinder import utils import app import torch import torchvision import torch.optim as optim import torch.nn as nn from torch.nn import init import torch.nn.functional as F from torch.autograd import Variable import math restart_from_save = None rng = np.random.RandomState(42) # transformations p_transform = {'patch_size': (256, 256), 'channels': 3, 'n_labels': 17} p_augmentation = { 'zoom_range': (1, 1), 'rotation_range': (0, 89), 'shear_range': (0, 0), 'translation_range': (-1, 1), 'do_flip': True, 'allow_stretch': False, 'rot90_values': [0, 1, 2, 3], 'flip': [0, 1] } # mean and std values calculated with the slim data iterator mean = 0.512 std = 0.311 # data preparation function def data_prep_function_train(x, p_transform=p_transform, p_augmentation=p_augmentation, **kwargs): x = x.convert('RGB') x = np.array(x) x = np.swapaxes(x,0,2) x = x / 255. x -= mean x /= std x = x.astype(np.float32) losless_aug = dict((k,p_augmentation[k]) for k in ('rot90_values','flip') if k in p_augmentation) x = data_transforms.random_lossless(x, losless_aug, rng) pert_aug = dict((k,p_augmentation[k]) for k in ('zoom_range','rotation_range','shear_range','translation_range','do_flip','allow_stretch') if k in p_augmentation) x = data_transforms.perturb(x, pert_aug, p_transform['patch_size'], rng,n_channels=p_transform["channels"]) return x def data_prep_function_valid(x, p_transform=p_transform, **kwargs): x = x.convert('RGB') x = np.array(x) x = np.swapaxes(x,0,2) x = x / 255. x -= mean x /= std x = x.astype(np.float32) return x def label_prep_function(x): #cut out the label return x # data iterators batch_size = 192 nbatches_chunk = 1 chunk_size = batch_size * nbatches_chunk folds = app.make_stratified_split(no_folds=5) print len(folds) train_ids = folds[0] + folds[1] + folds[2] + folds[3] valid_ids = folds[4] all_ids = folds[0] + folds[1] + folds[2] + folds[3] + folds[4] bad_ids = [] train_ids = [x for x in train_ids if x not in bad_ids] valid_ids = [x for x in valid_ids if x not in bad_ids] test_ids = np.arange(40669) test2_ids = np.arange(20522) train_data_iterator = data_iterators.DataGenerator(dataset='train-jpg', batch_size=chunk_size, img_ids = train_ids, p_transform=p_transform, data_prep_fun = data_prep_function_train, label_prep_fun = label_prep_function, rng=rng, full_batch=True, random=True, infinite=True) feat_data_iterator = data_iterators.DataGenerator(dataset='train-jpg', batch_size=chunk_size, img_ids = all_ids, p_transform=p_transform, data_prep_fun = data_prep_function_valid, label_prep_fun = label_prep_function, rng=rng, full_batch=False, random=True, infinite=False) valid_data_iterator = data_iterators.DataGenerator(dataset='train-jpg', batch_size=chunk_size, img_ids = valid_ids, p_transform=p_transform, data_prep_fun = data_prep_function_valid, label_prep_fun = label_prep_function, rng=rng, full_batch=False, random=True, infinite=False) test_data_iterator = data_iterators.DataGenerator(dataset='test-jpg', batch_size=chunk_size, img_ids = test_ids, p_transform=p_transform, data_prep_fun = data_prep_function_valid, label_prep_fun = label_prep_function, rng=rng, full_batch=False, random=False, infinite=False) test2_data_iterator = data_iterators.DataGenerator(dataset='test2-jpg', batch_size=chunk_size, img_ids = test2_ids, p_transform=p_transform, data_prep_fun = data_prep_function_valid, label_prep_fun = label_prep_function, rng=rng, full_batch=False, random=False, infinite=False) import tta tta = tta.LosslessTTA(p_augmentation) tta_test_data_iterator = data_iterators.TTADataGenerator(dataset='test-jpg', tta = tta, duplicate_label = False, img_ids = test_ids, p_transform=p_transform, data_prep_fun = data_prep_function_valid, label_prep_fun = label_prep_function, rng=rng, full_batch=False, random=False, infinite=False) tta_test2_data_iterator = data_iterators.TTADataGenerator(dataset='test2-jpg', tta = tta, duplicate_label = False, img_ids = test2_ids, p_transform=p_transform, data_prep_fun = data_prep_function_valid, label_prep_fun = label_prep_function, rng=rng, full_batch=False, random=False, infinite=False) tta_valid_data_iterator = data_iterators.TTADataGenerator(dataset='train-jpg', tta = tta, duplicate_label = True, batch_size=chunk_size, img_ids = valid_ids, p_transform=p_transform, data_prep_fun = data_prep_function_valid, label_prep_fun = label_prep_function, rng=rng, full_batch=False, random=True, infinite=False) nchunks_per_epoch = train_data_iterator.nsamples / chunk_size max_nchunks = nchunks_per_epoch * 40 validate_every = int(0.5 * nchunks_per_epoch) save_every = int(10 * nchunks_per_epoch) learning_rate_schedule = { 0: 1e-3, int(max_nchunks * 0.4): 5e-4, int(max_nchunks * 0.6): 2e-4, int(max_nchunks * 0.8): 1e-4, int(max_nchunks * 0.9): 5e-5 } # model from collections import OrderedDict class Fire(nn.Module): def __init__(self, inplanes, squeeze_planes, expand1x1_planes, expand3x3_planes): super(Fire, self).__init__() self.inplanes = inplanes self.squeeze = nn.Conv2d(inplanes, squeeze_planes, kernel_size=1) self.squeeze_activation = nn.ReLU(inplace=True) self.expand1x1 = nn.Conv2d(squeeze_planes, expand1x1_planes, kernel_size=1) self.expand1x1_activation = nn.ReLU(inplace=True) self.expand3x3 = nn.Conv2d(squeeze_planes, expand3x3_planes, kernel_size=3, padding=1) self.expand3x3_activation = nn.ReLU(inplace=True) def forward(self, x): x = self.squeeze_activation(self.squeeze(x)) return torch.cat([ self.expand1x1_activation(self.expand1x1(x)), self.expand3x3_activation(self.expand3x3(x)) ], 1) class SqueezeNet(nn.Module): def __init__(self, version=1.0, num_classes=1000): super(SqueezeNet, self).__init__() if version not in [1.0, 1.1]: raise ValueError("Unsupported SqueezeNet version {version}:" "1.0 or 1.1 expected".format(version=version)) self.num_classes = num_classes if version == 1.0: self.features = nn.Sequential( nn.Conv2d(3, 96, kernel_size=7, stride=2), nn.ReLU(inplace=True), nn.MaxPool2d(kernel_size=3, stride=2, ceil_mode=True), Fire(96, 16, 64, 64), Fire(128, 16, 64, 64), Fire(128, 32, 128, 128), nn.MaxPool2d(kernel_size=3, stride=2, ceil_mode=True), Fire(256, 32, 128, 128), Fire(256, 48, 192, 192), Fire(384, 48, 192, 192), Fire(384, 64, 256, 256), nn.MaxPool2d(kernel_size=3, stride=2, ceil_mode=True), Fire(512, 64, 256, 256), ) else: self.features = nn.Sequential( nn.Conv2d(3, 64, kernel_size=3, stride=2), nn.ReLU(inplace=True), nn.MaxPool2d(kernel_size=3, stride=2, ceil_mode=True), Fire(64, 16, 64, 64), Fire(128, 16, 64, 64), nn.MaxPool2d(kernel_size=3, stride=2, ceil_mode=True), Fire(128, 32, 128, 128), Fire(256, 32, 128, 128), nn.MaxPool2d(kernel_size=3, stride=2, ceil_mode=True), Fire(256, 48, 192, 192), Fire(384, 48, 192, 192), Fire(384, 64, 256, 256), Fire(512, 64, 256, 256), ) # Final convolution is initialized differently form the rest final_conv = nn.Conv2d(512, self.num_classes, kernel_size=1) self.classifier = nn.Sequential( nn.Dropout(p=0.5), final_conv, nn.ReLU(inplace=True), nn.AvgPool2d(13) ) for m in self.modules(): if isinstance(m, nn.Conv2d): if m is final_conv: init.normal(m.weight.data, mean=0.0, std=0.01) else: init.kaiming_uniform(m.weight.data) if m.bias is not None: m.bias.data.zero_() def forward(self, x): x = self.features(x) x = self.classifier(x) return x.view(x.size(0), x.size(1)) def _forward_features(self, x): return self.features(x) def squeezenet1_0(pretrained=False, **kwargs): r"""SqueezeNet model architecture from the `"SqueezeNet: AlexNet-level accuracy with 50x fewer parameters and <0.5MB model size" <https://arxiv.org/abs/1602.07360>`_ paper. Args: pretrained (bool): If True, returns a model pre-trained on ImageNet """ model = SqueezeNet(version=1.0, **kwargs) if pretrained: model.load_state_dict(torch.utils.model_zoo.load_url(torchvision.models.squeezenet.model_urls['squeezenet1_0'])) return model def squeezenet1_1(pretrained=False, **kwargs): r"""SqueezeNet 1.1 model from the `official SqueezeNet repo <https://github.com/DeepScale/SqueezeNet/tree/master/SqueezeNet_v1.1>`_. SqueezeNet 1.1 has 2.4x less computation and slightly fewer parameters than SqueezeNet 1.0, without sacrificing accuracy. Args: pretrained (bool): If True, returns a model pre-trained on ImageNet """ model = SqueezeNet(version=1.1, **kwargs) if pretrained: model.load_state_dict(torch.utils.model_zoo.load_url(torchvision.models.squeezenet.model_urls['squeezenet1_1'])) return model class Net(nn.Module): def __init__(self, shape=(3,256,256)): super(Net, self).__init__() self.squeezenet = squeezenet1_1(pretrained=True) self.n_classes = p_transform["n_labels"] self.squeezenet.classifier = self.final_classifier() def final_classifier(self): final_conv = nn.Conv2d(512, self.n_classes, kernel_size=1) classifier = nn.Sequential( nn.Dropout(p=0.5), final_conv, nn.AvgPool2d(15) ) return classifier def forward(self, x): x = self.squeezenet(x) return F.sigmoid(x) def build_model(): net = Net() return namedtuple('Model', [ 'l_out'])( net ) # loss class MultiLoss(torch.nn.modules.loss._Loss): def __init__(self, weight): super(MultiLoss, self).__init__() self.weight = weight def forward(self, input, target): torch.nn.modules.loss._assert_no_grad(target) weighted = (self.weight*target)*(input-target)**2 +(1-target)*(input-target)**2 return torch.mean(weighted) def build_objective(): return MultiLoss(4.0) def build_objective2(): return MultiLoss(1.0) def score(gts, preds): return app.f2_score_arr(gts, preds) # updates def build_updates(model, learning_rate): return optim.Adam(model.parameters(), lr=learning_rate)
[ "Elias.Vansteenkiste@gmail.com" ]
Elias.Vansteenkiste@gmail.com
5cdc0af5edab6e038cb4eeb8d2e7b703f2d36c10
4c7baee40b96e6499f96d6fe81935437264c9c88
/stock_scraper/MainDriver/IndicatorTester/ADXIndicatorTesting.py
e6644bf00c73eb419ffdcb89a30ffbd596017f75
[ "MIT" ]
permissive
webclinic017/Stock-Analysis
083d376484adebcad2d52113749a513aa48b09a8
eea8cb5bcb635f12eb15ac13306ef16e2892cd92
refs/heads/master
2022-04-13T00:20:54.287730
2020-03-29T21:05:22
2020-03-29T21:05:22
null
0
0
null
null
null
null
UTF-8
Python
false
false
6,729
py
import sys from os import path sys.path.append( path.dirname( path.dirname( path.abspath(__file__) ) ) ) sys.path.append( path.dirname( path.dirname( path.dirname( path.abspath(__file__) ) ) ) ) import pandas as pd from scraper.utility import * from MainDriver.IndicatorTester.IndicatorTesterClass import kIndicatorTesterClass from multiprocessing import Process, Queue class kADXIndicatorTesting(kIndicatorTesterClass): def __init__(self, symbol, noOfDays=3): self.symbol = symbol self.filename = CSV_DATA_DIRECTORY + symbol + CSV_INDICATOR_EXTENSTION kIndicatorTesterClass.__init__(self, self.symbol, "ADX", noOfDays) self.noOfDays = noOfDays # creating percentage dataframe self.perPassFailFile = CSV_SINGAL_DATA_DIRECTORY + "ADX" + "PercentagePassFail" + CSV_INDICATOR_EXTENSTION try: self.perPassFailDF = pd.read_csv(self.perPassFailFile, index_col=0) except Exception as e: print "Exception while reading signal test file" print e # Use this to test effeciency of this indicator def testBackData(self): startIndex = START_INDEX endIndex = END_INDEX df = self.getDataFrame() #self.df.drop(self.df.index[range(28)], inplace=True) plusDIs = df["+DI14"] minusDIs = df["-DI14"] adxs = df["ADX"] close = df["Close"] flag = True if minusDIs[startIndex] > plusDIs[startIndex]: flag = False for i in range(startIndex + 1, plusDIs.count() - endIndex): if minusDIs[i-1] > plusDIs[i-1]: flag = False else: flag = True if flag: if minusDIs[i] > plusDIs[i] and adxs[i] > 20: #print "plusDI: "+ str(plusDIs[i]) + " minusDI: " + str(minusDIs[i]) + " adx: " + str(adxs[i]) self.sellSignal(i) flag = False else: if plusDIs[i] > minusDIs[i] and adxs[i] > 20: #print "plusDI: "+ str(plusDIs[i]) + " minusDI: " + str(minusDIs[i]) + " adx: " + str(adxs[i]) self.buySignal(i) flag = True print "====== Test result b/w +DI14 & -DI14 having ADX>20 ======" self.buySignalResult() print "====================================" self.sellSignalResult() def __call__(self): startIndex = START_INDEX df = self.getDataFrame() #self.df.drop(self.df.index[range(28)], inplace=True) plusDIs = df["+DI14"] minusDIs = df["-DI14"] adxs = df["ADX"] close = df["Close"] flag = True lastIndex = plusDIs.count()-1 if (minusDIs[lastIndex-1] > plusDIs[lastIndex-1]): flag = False else: flag = True if flag: if minusDIs[lastIndex] > plusDIs[lastIndex] and adxs[lastIndex] > 20: for i in range(self.perPassFailDF["Symbol"].__len__()): if self.perPassFailDF["Symbol"][i+1] == self.symbol and str(self.perPassFailDF["Type"][i+1])=="Sell": if self.perPassFailDF["Normal %"][i+1] < thresholdPassFailPer: return else: break ltp = close[lastIndex] tp1 = ltp*(1-TARGET_PRICE_1*0.01) tp2 = ltp*(1-TARGET_PRICE_2*0.01) tp3 = ltp*(1-TARGET_PRICE_3*0.01) sl = ltp*(1+STOP_LOSS*0.01) subject = "Stock Alert | Date " + str(df.index[lastIndex]) content = "Sell signal for " + self.symbol + ". LTP: " + str(close[lastIndex]) content += "\n\tTarget prices: " + str(tp1) + ", " + str(tp2) + ", " + str(tp3) content += "\n\tStoploss: " + str(sl) content += "\n\nADX Indicator" SENDMAIL(subject, content) print "\n\n\n########################### Sell signal " + self.symbol + " on " + str(df.index[lastIndex]) + ": LTP " + str(close[lastIndex]) + "Target prices: " + str(tp1) + ", " + str(tp2) + ", " + str(tp3) + "Stoploss: " + str(sl) + " ###########################\n\n\n" else: print "No Sell signal for " + self.symbol + " on " + str(df.index[lastIndex]) else: if plusDIs[lastIndex] > minusDIs[lastIndex] and adxs[lastIndex] > 20: for i in range(self.perPassFailDF["Symbol"].__len__()): if self.perPassFailDF["Symbol"][i+1] == self.symbol and str(self.perPassFailDF["Type"][i+1])=="Buy": if self.perPassFailDF["Normal %"][i+1] < thresholdPassFailPer: return else: break ltp = close[lastIndex] tp1 = ltp*(1+TARGET_PRICE_1*0.01) tp2 = ltp*(1+TARGET_PRICE_2*0.01) tp3 = ltp*(1+TARGET_PRICE_3*0.01) sl = ltp*(1-STOP_LOSS*0.01) subject = "Stock Alert | Date " + str(df.index[lastIndex]) content = "Buy signal for " + self.symbol + ". LTP: " + str(close[lastIndex]) content += "\n\tTarget prices: " + str(tp1) + ", " + str(tp2) + ", " + str(tp3) content += "\n\tStoploss: " + str(sl) content += "\n\nADX Indicator" SENDMAIL(subject, content) print "\n\n\n########################### Buy Signal for " + self.symbol + " on " + str(df.index[lastIndex]) + ": LTP " + str(close[lastIndex]) + "Target prices: " + str(tp1) + ", " + str(tp2) + ", " + str(tp3) + "Stoploss: " + str(sl) +" ###########################\n\n\n" else: print "No Buy signal for " + self.symbol + " on " + str(df.index[lastIndex]) class kCommand: def __init__(self, *args): self.args = args def run_job(self, queue, args): try: adxIndicatorTesting = kADXIndicatorTesting(symbol=self.args[0][0]) adxIndicatorTesting() queue.put(None) except Exception as e: queue.put(e) def do(self): queue = Queue() process = Process(target=self.run_job, args=(queue, self.args)) process.start() result = queue.get() process.join() if result is not None: raise result def get_name(self): return "ADX indicator testing command" if __name__ == "__main__": adxTesting = kADXIndicatorTesting("SBIN", 3) #adxTesting.testBackData() adxTesting()
[ "singhanurag50@gmail.com" ]
singhanurag50@gmail.com
bd95ac54466908c01ab281e5fb8819a4a4e886aa
79a6955e5f4b300d65595df27f1ba872499b8e91
/NaiveBayes/word.py
dbbfed3baec82bf0489434cbd5753f2f916c591d
[]
no_license
koss-null/ML-4thgrade
14db1db605b7668eb3488585c1493224b211942d
994f0c4527cd9354bd8ec444ab1ff4d1f0021cf3
refs/heads/master
2021-08-28T14:14:59.904115
2017-12-12T12:44:51
2017-12-12T12:44:51
null
0
0
null
null
null
null
UTF-8
Python
false
false
353
py
class Word: def __init__(self, word): self.word = word self.frequency = 1. self.amount = 1. def increase_amount(self, coeff): self.amount += 1 * coeff def count_frequency(self, amount): self.frequency = self.amount / amount #print("freq of " + str(self.word) + " is " + str(self.frequency))
[ "d.kossovich@yadro.com" ]
d.kossovich@yadro.com
238ce5c153b88e0d5699dd526c1fcdcb8a4b82c8
bffd1c511273ccc456d49bdcdd75372cfde13ba2
/blog/pelican-plugins/events/events.py
eb51e5bb1937a5392c68e663f6737a5af4422d6f
[ "AGPL-3.0-only", "MIT" ]
permissive
lemonsong/lemonsong.github.io
9bc4f8686c7c09dfee20faf50a3ce98de90d4160
3b906bc37e1c25bb7933f450af6c09a7176ed71a
refs/heads/master
2023-07-06T08:23:00.557867
2023-06-23T19:05:32
2023-06-23T19:05:32
41,400,974
0
0
MIT
2022-01-10T04:39:17
2015-08-26T02:58:30
HTML
UTF-8
Python
false
false
4,126
py
# -*- coding: utf-8 -*- """ events plugin for Pelican ========================= This plugin looks for and parses an "events" directory and generates blog posts with a user-defined event date. (typically in the future) It also generates an ICalendar v2.0 calendar file. https://en.wikipedia.org/wiki/ICalendar Author: Federico Ceratto <federico.ceratto@gmail.com> Released under AGPLv3+ license, see LICENSE """ from datetime import datetime, timedelta from pelican import signals, utils import icalendar import logging import os.path import pytz log = logging.getLogger(__name__) TIME_MULTIPLIERS = { 'w': 'weeks', 'd': 'days', 'h': 'hours', 'm': 'minutes', 's': 'seconds' } events = [] def parse_tstamp(ev, field_name): """Parse a timestamp string in format "YYYY-MM-DD HH:MM" :returns: datetime """ try: return datetime.strptime(ev[field_name], '%Y-%m-%d %H:%M') except Exception, e: log.error("Unable to parse the '%s' field in the event named '%s': %s" \ % (field_name, ev['title'], e)) raise def parse_timedelta(ev): """Parse a timedelta string in format [<num><multiplier> ]* e.g. 2h 30m :returns: timedelta """ chunks = ev['event-duration'].split() tdargs = {} for c in chunks: try: m = TIME_MULTIPLIERS[c[-1]] val = int(c[:-1]) tdargs[m] = val except KeyError: log.error("""Unknown time multiplier '%s' value in the \ 'event-duration' field in the '%s' event. Supported multipliers \ are: '%s'.""" % (c, ev['title'], ' '.join(TIME_MULTIPLIERS))) raise RuntimeError("Unknown time multiplier '%s'" % c) except ValueError: log.error("""Unable to parse '%s' value in the 'event-duration' \ field in the '%s' event.""" % (c, ev['title'])) raise ValueError("Unable to parse '%s'" % c) return timedelta(**tdargs) def parse_article(generator, metadata): """Collect articles metadata to be used for building the event calendar :returns: None """ if 'event-start' not in metadata: return dtstart = parse_tstamp(metadata, 'event-start') if 'event-end' in metadata: dtend = parse_tstamp(metadata, 'event-end') elif 'event-duration' in metadata: dtdelta = parse_timedelta(metadata) dtend = dtstart + dtdelta else: msg = "Either 'event-end' or 'event-duration' must be" + \ " speciefied in the event named '%s'" % metadata['title'] log.error(msg) raise ValueError(msg) events.append((dtstart, dtend, metadata)) def generate_ical_file(generator): """Generate an iCalendar file """ global events ics_fname = generator.settings['PLUGIN_EVENTS']['ics_fname'] if not ics_fname: return ics_fname = os.path.join(generator.settings['OUTPUT_PATH'], ics_fname) log.debug("Generating calendar at %s with %d events" % (ics_fname, len(events))) tz = generator.settings.get('TIMEZONE', 'UTC') tz = pytz.timezone(tz) ical = icalendar.Calendar() ical.add('prodid', '-//My calendar product//mxm.dk//') ical.add('version', '2.0') for e in events: dtstart, dtend, metadata = e ie = icalendar.Event( summary=metadata['summary'], dtstart=dtstart, dtend=dtend, dtstamp=metadata['date'], priority=5, uid=metadata['title'] + metadata['summary'], ) if 'event-location' in metadata: ie.add('location', metadata['event-location']) ical.add_component(ie) with open(ics_fname, 'wb') as f: f.write(ical.to_ical()) def generate_events_list(generator): """Populate the event_list variable to be used in jinja templates""" generator.context['events_list'] = sorted(events, reverse=True) def register(): signals.article_generator_context.connect(parse_article) signals.article_generator_finalized.connect(generate_ical_file) signals.article_generator_finalized.connect(generate_events_list)
[ "yilin19920089@sina.com" ]
yilin19920089@sina.com
47353f7dc4988697f5c5dcb7c6f7d9fde3d062e4
1130b0807d4933b9a98726e1abbeb005a449609c
/Algorithms/Dynamic Programming/121. Best time to buy and sell stock.py
704dda3c54282e4030cdbe660e18cee568a9db82
[]
no_license
shreyashg027/Leetcode-Problem
64a819f054a7a798346123a73543a750d62e1381
8ade2a7d44b7a87d51828dbaa42b4eab9ecdd94c
refs/heads/master
2020-03-23T09:19:37.296931
2018-12-08T22:01:52
2018-12-08T22:01:52
141,380,962
0
0
null
null
null
null
UTF-8
Python
false
false
652
py
class Solution: def removechar(self, str): l = [] op = ['+', '-', '*', '/'] new_s = '' flag = 0 for i in str: # if i in op: if i.isdigit() or i == '.' or (i== '-' and not flag) : new_s += i flag = 1 # print(i) elif i in op: l.append(new_s) l.append(i) new_s = '' flag = 0 l.append(new_s) # print(l) l.reverse() print(l) str = ''.join(l) return str test = Solution() ans = test.removechar('-993-7777') print(ans)
[ "shosahal@asu.edu" ]
shosahal@asu.edu
a48890bd444f48bc8314e5f840ce4da4bb1a5bb1
c2849586a8f376cf96fcbdc1c7e5bce6522398ca
/ch28/ex28-5.py
199e45d67884a4e186e1a99aebbe52ea8959076e
[]
no_license
freebz/Learning-Python
0559d7691517b4acb0228d1cc76de3e93915fb27
7f577edb6249f4bbcac4f590908b385192dbf308
refs/heads/master
2020-09-23T01:48:24.009383
2019-12-02T12:26:40
2019-12-02T12:26:40
225,371,155
0
0
null
null
null
null
UTF-8
Python
false
false
265
py
# 버전 이식성: Print 함수 # py -2 person.py # ('Bob Smith', 0) # ('Sue Jones', 100000) from __fure__ import print_function print('{0} {1}'.format(bob.name, bob.pay)) # 포맷 메서드 print('%s %s' % (bob.name, bob.pay)) # 포맷 표현식
[ "freebz@hananet.net" ]
freebz@hananet.net
ef87e592f36bb2ee770d7f2c5b74be92842a2317
14ca58c5e11f06cbb446f635170f9ad73df03db3
/chats/views.py
1f941bd1824bcbdb110b832c8a4937a2eb9c128f
[]
no_license
dimnik97/events_all
143c889684e25ad7edf1e72966708bfa50361428
f5847b6fb63749752476150dec099ef1a8783912
refs/heads/master
2020-03-15T20:57:55.298945
2018-11-22T18:19:37
2018-11-22T18:19:37
132,345,114
0
0
null
null
null
null
UTF-8
Python
false
false
6,382
py
import operator from django.contrib.auth.decorators import login_required from django.contrib.auth.models import User from django.core.paginator import Paginator, PageNotAnInteger, EmptyPage from django.http import HttpResponse from django.shortcuts import render from django.utils.safestring import mark_safe import json from chats.models import ChatMessage, Room, RoomMembers @login_required(login_url='/accounts/signup-or-login/') def home(request): # TODO паджинация chat_type = 'error' request_peer = False if 'room' in request.GET: request_peer = request.GET['room'] chat_type = 'room' elif 'peer' in request.GET: request_peer = request.GET['peer'] chat_type = 'peer' context = { # 'chats': chats, 'is_request': request_peer, 'url_type': chat_type } return render(request, 'chats/index.html', context) def get_dialogs(request): name = '' if 'name' in request.GET: name = request.GET['name'] from django.db.models import Q chats = ChatMessage.objects.filter( Q(room__name__istartswith=name) | Q(peer__last_name__istartswith=name) | Q(peer__first_name__istartswith=name), user=request.user).order_by('-peer__id', '-room__id', '-created').distinct( 'peer__id', 'room__id') chats = sorted(chats, key=operator.attrgetter('created'), reverse=True) page = request.GET.get('page', 1) paginator = Paginator(chats, 10) try: chats = paginator.page(page) except PageNotAnInteger: chats = paginator.page(1) except EmptyPage: chats = paginator.page(paginator.num_pages) context = {'chats': chats} return render(request, 'chats/dialogs_template.html', context) @login_required(login_url='/accounts/signup-or-login/') def room(request): user = request.user room_members = list() peer = { 'status': 200, 'peer': False, 'text': '', 'room': False } context = { 'status': '', 'text': '' } room_id = '' peer_id = '' room_object = '' room_name = '' chat_type = '' if 'room' in request.GET: chat_type = 'room' elif 'peer' in request.GET: chat_type = 'peer' if chat_type == 'room': room_id = request.GET[chat_type] flag = False members = RoomMembers.objects.filter(room_rel_id=request.GET['room']) try: room_object = Room.objects.get(id=room_id) except Room.DoesNotExist: context['status'] = 404 context['text'] = 'Чат не создан, либо у вас нет доступа к данному чату' return render(request, 'chats/room.html', context) for member in members: if member.user_rel == request.user: flag = True if member.joined is False and member.user_rel == request.user: peer['status'] = '404' peer['text'] = 'Сначала присоединитесь к чату' break room_members.append(member.user_rel) if not flag: peer['status'] = '404' peer['text'] = 'У вас нет доступа в этот чат' else: room_name = Room.objects.get(id=room_id).name else: try: peer_id = request.GET[chat_type] peer['peer'] = User.objects.get(id=peer_id) # if peer['peer'].active == 2: # peer['status'] = '403' # peer['text'] = 'Пользователь был удален' # if peer['peer'].active == 3: # peer['status'] = '403' # peer['text'] = 'Пользователь был заблокирован' room_members.append(user) room_members.append(peer['peer']) room_name = peer['peer'].first_name + ' ' + peer['peer'].last_name except User.DoesNotExist: peer['status'] = '404' peer['text'] = 'Пользователя с таким id не существует' context = { 'peer_id_json': mark_safe(json.dumps(peer_id)), 'room_id_json': mark_safe(json.dumps(room_id)), 'room_members': room_members, 'peer': peer, 'user': request.user, 'chat_type': chat_type, 'chat_id': request.GET[chat_type], 'room_name': room_name, 'room': room_object, 'status': 200 } return render(request, 'chats/room.html', context) def get_messages(request): messages = [] chat_type = '' if 'room' in request.GET: chat_type = 'room' messages = ChatMessage.objects\ .filter(user=request.user, room=request.GET[chat_type])\ .order_by('-created') elif 'peer' in request.GET: chat_type = 'peer' messages = ChatMessage.objects\ .filter(user=request.user, peer=request.GET[chat_type])\ .order_by('-created') page = request.GET.get('page', 1) paginator = Paginator(messages, 20) try: messages = paginator.page(page) except PageNotAnInteger: messages = paginator.page(1) except EmptyPage: messages = paginator.page(paginator.num_pages) context = { 'messages': messages, 'chat_type': chat_type, 'chat_id': request.GET[chat_type] } return render(request, 'chats/messages_template.html', context) def create_room(request): result = Room.create_room(request) return HttpResponse(json.dumps(result)) def add_user_to_room(request): result = Room.add_user_to_room(request) return HttpResponse(json.dumps(result)) def join_room(request): result = Room.join_room(request) return HttpResponse(json.dumps(result)) def decline_room(request): result = Room.decline_room(request) return HttpResponse(json.dumps(result)) def remove_user_from_room(request): result = Room.remove_user_from_room(request) return HttpResponse(json.dumps(result)) def delete_message(request): result = ChatMessage.delete_message(request) return HttpResponse(json.dumps(result)) def read_message(request): result = ChatMessage.read_messages(request) return HttpResponse(json.dumps(result))
[ "dmkrestelev@mail.ru" ]
dmkrestelev@mail.ru
c69e3d82ce5b714344fefdd9359e37fb79c491aa
d93fe0484fc3b32c8fd9b33cc66cfd636a148ec4
/AtCoder/PAST1/probC.py
6a32593ddf1f0bb5c53475f5f2dfc7dfbdb53116
[]
no_license
wattaihei/ProgrammingContest
0d34f42f60fa6693e04c933c978527ffaddceda7
c26de8d42790651aaee56df0956e0b206d1cceb4
refs/heads/master
2023-04-22T19:43:43.394907
2021-05-02T13:05:21
2021-05-02T13:05:21
264,400,706
0
0
null
null
null
null
UTF-8
Python
false
false
69
py
A = list(map(int, input().split())) A.sort(reverse=True) print(A[2])
[ "wattaihei.rapyuta@gmail.com" ]
wattaihei.rapyuta@gmail.com
993a2ea993ff155f9a45d73950fd215eca6d15bf
178f260ed8a4bfeda26109f86390fa77fe41dd48
/detect.py
6cbf5711981e29222aba1680b4949e924bb6615a
[]
no_license
blackholeLFL/yolov5_tiev
2dde6aaa787426c3f1e24641eb9ea1bcecb5b028
2d2e19db63850b0ad99edc6bab8e877baf97e7ff
refs/heads/master
2023-01-02T22:58:27.700587
2020-10-23T09:43:38
2020-10-23T09:43:38
306,590,475
0
0
null
null
null
null
UTF-8
Python
false
false
9,422
py
import argparse import os import shutil import time from pathlib import Path import cv2 import torch import torch.backends.cudnn as cudnn from numpy import random from models.experimental import attempt_load from utils.datasets import LoadStreams, LoadImages from utils.general import ( check_img_size, non_max_suppression, apply_classifier, scale_coords, xyxy2xywh, plot_one_box, strip_optimizer, set_logging) from utils.torch_utils import select_device, load_classifier, time_synchronized #import Zcm_transceiver def detect(save_img=False): # transceiver = Zcm_transceiver.ZcmTransceiver() out, source, weights, view_img, save_txt, imgsz = \ opt.output, opt.source, opt.weights, opt.view_img, opt.save_txt, opt.img_size webcam = source.isnumeric() or source.startswith(('rtsp://', 'rtmp://', 'http://')) or source.endswith('.txt') or source == 'basler' # Initialize set_logging() device = select_device(opt.device) if os.path.exists(out): shutil.rmtree(out) # delete output folder os.makedirs(out) # make new output folder half = device.type != 'cpu' # half precision only supported on CUDA # Load model model = attempt_load(weights, map_location=device) # load FP32 model imgsz = check_img_size(imgsz, s=model.stride.max()) # check img_size if half: model.half() # to FP16 # Second-stage classifier classify = False if classify: modelc = load_classifier(name='resnet101', n=2) # initialize modelc.load_state_dict(torch.load('weights/resnet101.pt', map_location=device)['model']) # load weights modelc.to(device).eval() # Set Dataloader vid_path, vid_writer = None, None if webcam: view_img = True cudnn.benchmark = True # set True to speed up constant image size inference if (source == 'basler'): dataset = LoadStreamsBasler(source, img_size=imgsz) else: dataset = LoadStreams(source, img_size=imgsz) else: save_img = True dataset = LoadImages(source, img_size=imgsz) # Get names and colors names = model.module.names if hasattr(model, 'module') else model.names colors = [[random.randint(0, 255) for _ in range(3)] for _ in range(len(names))] # Run inference t0 = time.time() img = torch.zeros((1, 3, imgsz, imgsz), device=device) # init img _ = model(img.half() if half else img) if device.type != 'cpu' else None # run once # count 20 times before change to true LimitCountNum = 20 countLeft = 0 countForward = 0 countRight = 0 lastLeft = True lastForward = True lastRight = True for path, img, im0s, vid_cap in dataset: img = torch.from_numpy(img).to(device) img = img.half() if half else img.float() # uint8 to fp16/32 img /= 255.0 # 0 - 255 to 0.0 - 1.0 if img.ndimension() == 3: img = img.unsqueeze(0) # Inference t1 = time_synchronized() pred = model(img, augment=opt.augment)[0] # Apply NMS pred = non_max_suppression(pred, opt.conf_thres, opt.iou_thres, classes=opt.classes, agnostic=opt.agnostic_nms) t2 = time_synchronized() # Apply Classifier if classify: pred = apply_classifier(pred, modelc, img, im0s) # Process detections for i, det in enumerate(pred): # detections per image if webcam: # batch_size >= 1 p, s, im0 = path[i], '%g: ' % i, im0s[i].copy() else: p, s, im0 = path, '', im0s save_path = str(Path(out) / Path(p).name) txt_path = str(Path(out) / Path(p).stem) + ('_%g' % dataset.frame if dataset.mode == 'video' else '') s += '%gx%g ' % img.shape[2:] # print string gn = torch.tensor(im0.shape)[[1, 0, 1, 0]] # normalization gain whwh if det is not None and len(det): # Rescale boxes from img_size to im0 size det[:, :4] = scale_coords(img.shape[2:], det[:, :4], im0.shape).round() left = True forward = True right = True # Print results for c in det[:, -1].unique(): n = (det[:, -1] == c).sum() # detections per class s += '%g %ss, ' % (n, names[int(c)]) # add to string if c == 2 or c == 11: # 2:'redCircle', 11:'redForward' forward = False elif c == 5: # 5:'redLeft' left = False elif c == 8: # 8:'redRight' right = False if left == False: countLeft = LimitCountNum elif lastLeft == False: countLeft -= 1 left = False if countLeft == 0: left = True if forward == False: countForward = LimitCountNum elif lastForward == False: countForward -= 1 forward = False if countForward == 0: forward = True if right == False: countRight = LimitCountNum elif lastRight == False: countRight -= 1 right = False if countRight == 0: right = True lastLeft = left lastForward = forward lastRight = right direction = 'Left:'+str(left)+' Forward:'+str(forward)+' Right:'+str(right) print(direction) # transceiver(left, forward, right) # Write results for *xyxy, conf, cls in reversed(det): if save_txt: # Write to file xywh = (xyxy2xywh(torch.tensor(xyxy).view(1, 4)) / gn).view(-1).tolist() # normalized xywh with open(txt_path + '.txt', 'a') as f: f.write(('%g ' * 5 + '\n') % (cls, *xywh)) # label format if save_img or view_img: # Add bbox to image label = '%s %.2f' % (names[int(cls)], conf) plot_one_box(xyxy, im0, label=label, color=colors[int(cls)], line_thickness=3, direction=direction) # Print time (inference + NMS) print('%sDone. (%.3fs)' % (s, t2 - t1)) # Stream results if view_img: cv2.imshow(p, im0) if cv2.waitKey(1) == ord('q'): # q to quit raise StopIteration # Save results (image with detections) if save_img: if dataset.mode == 'images': cv2.imwrite(save_path, im0) else: if vid_path != save_path: # new video vid_path = save_path if isinstance(vid_writer, cv2.VideoWriter): vid_writer.release() # release previous video writer fourcc = 'mp4v' # output video codec fps = vid_cap.get(cv2.CAP_PROP_FPS) w = int(vid_cap.get(cv2.CAP_PROP_FRAME_WIDTH)) h = int(vid_cap.get(cv2.CAP_PROP_FRAME_HEIGHT)) vid_writer = cv2.VideoWriter(save_path, cv2.VideoWriter_fourcc(*fourcc), fps, (w, h)) vid_writer.write(im0) if save_txt or save_img: print('Results saved to %s' % Path(out)) print('Done. (%.3fs)' % (time.time() - t0)) if __name__ == '__main__': parser = argparse.ArgumentParser() parser.add_argument('--weights', nargs='+', type=str, default='yolov5s.pt', help='model.pt path(s)') parser.add_argument('--source', type=str, default='inference/images', help='source') # file/folder, 0 for webcam parser.add_argument('--output', type=str, default='inference/output', help='output folder') # output folder parser.add_argument('--img-size', type=int, default=640, help='inference size (pixels)') parser.add_argument('--conf-thres', type=float, default=0.25, help='object confidence threshold') parser.add_argument('--iou-thres', type=float, default=0.45, help='IOU threshold for NMS') parser.add_argument('--device', default='', help='cuda device, i.e. 0 or 0,1,2,3 or cpu') parser.add_argument('--view-img', action='store_true', help='display results') parser.add_argument('--save-txt', action='store_true', help='save results to *.txt') parser.add_argument('--classes', nargs='+', type=int, help='filter by class: --class 0, or --class 0 2 3') parser.add_argument('--agnostic-nms', action='store_true', help='class-agnostic NMS') parser.add_argument('--augment', action='store_true', help='augmented inference') parser.add_argument('--update', action='store_true', help='update all models') opt = parser.parse_args() print(opt) with torch.no_grad(): if opt.update: # update all models (to fix SourceChangeWarning) for opt.weights in ['yolov5s.pt', 'yolov5m.pt', 'yolov5l.pt', 'yolov5x.pt']: detect() strip_optimizer(opt.weights) else: detect()
[ "804503067@qq.com" ]
804503067@qq.com
4507e91fe686ebef1b3328d5d291659ca6a90c0b
e844ce148ff4f2b808b11ffc830ee54062cf617a
/ssh-yeet3r.py
67b6f5c3e23d560f382a1e290a16835d8410b799
[]
no_license
jwstaley/SSH-Y33T3R
2268e671024be311d06e2e077705b47c774ab63b
da8218a0f0287fdf7789579c01946e169e8290d1
refs/heads/main
2023-02-12T10:48:56.017593
2021-01-15T02:52:23
2021-01-15T02:52:23
329,793,337
0
0
null
null
null
null
UTF-8
Python
false
false
6,553
py
from tkinter import * from datetime import date import paramiko, tkinter.messagebox, re, threading class connect: def __init__(self,username="",password="",hostnames=None,commands=None): self.hostnames = hostnames self.username = username self.password = password self.commands = commands if self.hostnames == None: self.hostnames = [] if commands == None: self.commands = [] def send_WOL(self, log, host, mac): self.hostnames = [str(host)] self.commands = ["echo "+self.password+" | sudo -S apt-get install wakeonlan -y",str("wakeonlan "+mac)] return self.ConnectAndEx(log) def apt_update(self,log): self.commands = ["echo "+self.password+" | sudo -S apt-get update -y","echo "+self.password+" | sudo -S apt-get upgrade -y"] return self.ConnectAndEx(log) def ConnectAndEx(self, log): output = "" for hostname in self.hostnames: client = paramiko.SSHClient() client.set_missing_host_key_policy(paramiko.AutoAddPolicy()) try: client.connect(hostname=hostname, username=self.username, password=self.password) except: return("[!] Cannot connect to the SSH Server") for command in self.commands: output+= ("="*10 + hostname+"="*10+"\n") stdin, stdout, stderr = client.exec_command(command) output+= stdout.read().decode() err = stderr.read().decode() if err: output += err + "\n" if(log): day = date.today() filename = str(day.strftime("%Y-%m-%d"))+"-log.txt" output = "="*10+" RUN "+"="*10+"\n"+output output += "\n" with open(filename, 'a+') as file: file.write(output) return output class UI: def __init__(self, win): self.menu(win) self.wol_screen(win) def menu(self, win): menubar = Menu(win) filemenu = Menu(menubar, tearoff=0) filemenu.add_command(label='WOL', command= lambda: [self.clear_grid(win), self.wol_screen(win)]) filemenu.add_command(label='apt-update', command= lambda: [self.clear_grid(win), self.update_screen(win)]) menubar.add_cascade(labe="Commands",menu=filemenu) win.config(menu=menubar) def update_screen(self, win): self.ssh = connect() self.lblHost=Label(text='Host:') self.lblHost.grid(row=1,column=0,padx=5,pady=5) self.txtHost=Entry() self.txtHost.grid(row=1,column=1,padx=5,pady=5) self.btnHost=Button(text=" Add", command= self.add_user) self.btnHost.grid(row=1,column=2,padx=5,pady=5) self.lblUser=Label(text='User:') self.lblUser.grid(row=0,column=0,padx=5,pady=5) self.txtUser=Entry() self.txtUser.grid(row=0,column=1,padx=5,pady=5) self.lblPword=Label(text='Password:') self.lblPword.grid(row=0,column=2,padx=5,pady=5) self.txtPword=Entry(show="*") self.txtPword.grid(row=0,column=3,padx=5,pady=5) self.lblHostListLabel=Label(text="Current Hosts:") self.lblHostListLabel.grid(row=2,column=0,padx=5,pady=5,sticky=E) self.lblHostList=Label(text='') self.lblHostList.grid(row=2,column=1,padx=5,pady=5) self.lblSendUpdate=Button(text=" UPDATE! ",bg="#ff0000",activebackground="#ff6600",command=self.apt_button) self.lblSendUpdate.grid(row=2,column=3,padx=5,pady=5,sticky=S) def wol_screen(self, win): self.lblHost=Label(text='Host:') self.lblHost.grid(row=0,column=0,padx=5,pady=5) self.txtHost=Entry() self.txtHost.grid(row=0,column=1,padx=5,pady=5) self.lblMAC=Label(text='MAC:') self.lblMAC.grid(row=0,column=2,padx=5,pady=5) self.txtMAC=Entry() self.txtMAC.grid(row=0,column=3,padx=5,pady=5) self.lblUser=Label(text='User:') self.lblUser.grid(row=1,column=0,padx=5,pady=5) self.txtUser=Entry() self.txtUser.grid(row=1,column=1,padx=5,pady=5) self.lblPword=Label(text='Password:') self.lblPword.grid(row=1,column=2,padx=5,pady=5) self.txtPword=Entry(show="*") self.txtPword.grid(row=1,column=3,padx=5,pady=5) self.btnWOL=Button(text=" WAKE UP! ",bg="#ff0000",activebackground="#ff6600",command=self.wol_button) self.btnWOL.grid(row=2,column=0,columnspan=4,padx=5,pady=5) def check_ip(self, string): regexstring = "^(?:[0-9]{1,3}\.){3}[0-9]{1,3}$" return re.match(regexstring,string) def add_user(self): newhost = None newhost = self.txtHost.get() out = "" if newhost and self.check_ip(newhost): self.ssh.hostnames.append(newhost) for host in self.ssh.hostnames: out += str(host + "\n") self.lblHostList.configure(text=out) self.txtHost.delete(0, END) def clear_grid(self,win): for widget in win.winfo_children(): widget.grid_remove() self.menu(win) def wol_button(self): host=self.txtHost.get() mac=self.txtMAC.get() user=self.txtUser.get() pwd=self.txtPword.get() if host and mac and user and pwd: log = self.popup_promptsave() ssh = connect(user, pwd) send_wol = threading.Thread(target=ssh.send_WOL,args=[log,host,mac]) send_wol.start() else: tkinter.messagebox.showerror("Missing Field", "Please make sure all required fields are filled out.") def apt_button(self): self.ssh.username=self.txtUser.get() self.ssh.password=self.txtPword.get() if self.ssh.hostnames and self.ssh.username and self.ssh.password: log = self.popup_promptsave() update_commands = threading.Thread(target=self.ssh.apt_update, args=[log]) update_commands.start() else: tkinter.messagebox.showerror("Missing Field", "Please make sure all required fields are filled out.") def popup_promptsave(self): msgbox = tkinter.messagebox.askyesno("View Output?", "Would you like to save output to log? The log will be availbe when the commands completes.") return msgbox def main(): window=Tk() mainwin= UI(window) window.title('SSH Yeet3r') window.mainloop() if __name__ == "__main__": main()
[ "jwstaley17@gmail.com" ]
jwstaley17@gmail.com
4c6f2bf2fe1d8490948d84b4308703c1e9912f84
3e5d7c939ae47f30da2c03e0535407c2d9fd830b
/imdbtag/apis/movie.py
888fee1af51922c2aaf2aad52227b590049644b2
[]
no_license
infogrind/imdbtag
beb99ccf6f466b2eaff5f9ab154a62ed5916cdc1
fdaa0e2517ae374db27eee0331241f2f82761e86
refs/heads/master
2018-11-03T19:45:58.686998
2018-09-04T14:28:18
2018-09-04T14:28:18
7,371,791
1
0
null
null
null
null
UTF-8
Python
false
false
1,103
py
#!/usr/bin/python import re class Movie: def __init__(self, title, year, index, id, kind, rating): self.title = title self.year = year self.index = index self.id = id self.kind = kind self.rating = rating def nice_title(self): # We only add the index if it is II or more. if self.index != '' and self.index != 'I': yearstr = "(" + str(self.year) + "-" + self.index + ")" else: # The file doesn't have an index. yearstr = "(" + str(self.year) + ")" # Replace : with - in title t = re.sub(r"([\w]):\s", r"\1 - ", self.title) # Replace ampersands with and t = re.sub(r"\s*&\s*", r" and ", t) # Replace slash with dash t = re.sub(r"/", r"-", t) # Add year t = t + " " + yearstr # If it is a TV series, add this to the name. if self.kind == 'tv series' and tvlabel: t = t + " (TV Series)" return t # This is the most important line: it calls the main function if this program is # called directly. if __name__ == "__main__": print("Movie class, import this file from your scripts")
[ "infogrind@hotstuff.ch" ]
infogrind@hotstuff.ch
83c4d9acb2b5bad9f3c2fcb9666efa8487459de8
83c391b46c84b02aefbdb077a08038ec07229750
/Circular Array Rotation
1beb0a39dc439a914a4c11901c633ef104663bb1
[ "MIT" ]
permissive
bhavberi/Hackerrank-ProblemSolving
88a5151423ed425b424d8aca8d653e8663d4291f
b5902a4899d36f1743a56160d376e96d5da639c5
refs/heads/master
2023-08-23T14:55:52.196765
2021-11-03T15:59:59
2021-11-03T15:59:59
null
0
0
null
null
null
null
UTF-8
Python
false
false
1,113
#!/bin/python3 import math import os import random import re import sys from collections import deque # # Complete the 'circularArrayRotation' function below. # # The function is expected to return an INTEGER_ARRAY. # The function accepts following parameters: # 1. INTEGER_ARRAY a # 2. INTEGER k # 3. INTEGER_ARRAY queries # def circularArrayRotation(a, k, queries): # Write your code here new = deque(a) # for i in a: # new.append(i) new.rotate(k) res = [] for i in queries: res.append(new[i]) return res if __name__ == '__main__': fptr = open(os.environ['OUTPUT_PATH'], 'w') first_multiple_input = input().rstrip().split() n = int(first_multiple_input[0]) k = int(first_multiple_input[1]) q = int(first_multiple_input[2]) a = list(map(int, input().rstrip().split())) queries = [] for _ in range(q): queries_item = int(input().strip()) queries.append(queries_item) result = circularArrayRotation(a, k, queries) fptr.write('\n'.join(map(str, result))) fptr.write('\n') fptr.close()
[ "noreply@github.com" ]
bhavberi.noreply@github.com
dbf9e6875fa49ed080fb938a4779cee26ebb7abd
1c9c0918637209b31fae10fec8329a864f4ddf2a
/lib/fabio/test/testGEimage.py
b59504e1c386bef104ac73221b7488a5d34e3eb0
[]
no_license
albusdemens/astrarecon_tests
224f2695ba14e4e6c8a2173132c1d30edba24e1b
6b0ee69a2357eb568e2fde1deccfa8b6dd998496
refs/heads/master
2021-01-18T19:43:17.485309
2017-07-21T12:17:54
2017-07-21T12:17:54
100,536,451
0
0
null
null
null
null
UTF-8
Python
false
false
2,873
py
#!/usr/bin/env python # -*- coding: utf-8 -*- # # Project: Fable Input Output # https://github.com/silx-kit/fabio # # Copyright (C) European Synchrotron Radiation Facility, Grenoble, France # # Principal author: Jérôme Kieffer (Jerome.Kieffer@ESRF.eu) # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program 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 General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. # """ # Unit tests # builds on stuff from ImageD11.test.testpeaksearch 28/11/2014 """ from __future__ import print_function, with_statement, division, absolute_import import unittest import sys import os import numpy import gzip import bz2 if __name__ == '__main__': import pkgutil __path__ = pkgutil.extend_path([os.path.dirname(__file__)], "fabio.test") from .utilstest import UtilsTest logger = UtilsTest.get_logger(__file__) fabio = sys.modules["fabio"] from fabio.GEimage import GEimage # filename dim1 dim2 min max mean stddev TESTIMAGES = """GE_aSI_detector_image_1529 2048 2048 1515 16353 1833.0311 56.9124 GE_aSI_detector_image_1529.gz 2048 2048 1515 16353 1833.0311 56.9124 GE_aSI_detector_image_1529.bz2 2048 2048 1515 16353 1833.0311 56.9124""" class TestGE(unittest.TestCase): def setUp(self): """ download images """ self.GE = UtilsTest.getimage("GE_aSI_detector_image_1529.bz2") def test_read(self): for line in TESTIMAGES.split("\n"): vals = line.split() name = vals[0] dim1, dim2 = [int(x) for x in vals[1:3]] mini, maxi, mean, stddev = [float(x) for x in vals[3:]] obj = GEimage() obj.read(os.path.join(os.path.dirname(self.GE), name)) self.assertAlmostEqual(mini, obj.getmin(), 4, "getmin") self.assertAlmostEqual(maxi, obj.getmax(), 4, "getmax") self.assertAlmostEqual(mean, obj.getmean(), 4, "getmean") self.assertAlmostEqual(stddev, obj.getstddev(), 4, "getstddev") self.assertEqual(dim1, obj.dim1, "dim1") self.assertEqual(dim2, obj.dim2, "dim2") def suite(): testsuite = unittest.TestSuite() testsuite.addTest(TestGE("test_read")) return testsuite if __name__ == '__main__': runner = unittest.TextTestRunner() runner.run(suite())
[ "mannaro85@gmail.com" ]
mannaro85@gmail.com
c9776b8ab8c2a7e9a7d9d4de9378bed270633f49
497fb2f351c1f6d2f95bc4c2e86d5f5a6034250d
/src/transit/CreateTransportationNetwork.py
4c681d99d92419a1af2162de8230c06a0ef28855
[]
no_license
camilaferc/rramen
a7f5cd7dc202d7fb25071d4e55d6d3254c83965c
5f4a4a19bf07f34b77a22057c11b58e6a98be9dd
refs/heads/master
2022-12-14T16:13:07.909212
2020-10-21T16:43:23
2020-10-21T16:43:23
219,866,847
1
0
null
2022-12-08T07:03:55
2019-11-05T23:01:17
JavaScript
UTF-8
Python
false
false
29,697
py
''' Created on Oct 20, 2019 @author: camila ''' import bisect import sys import psycopg2 from psycopg2.sql import Identifier, SQL from ..database.PostGISConnection import PostGISConnection from ..database.PostgisDataManager import PostgisDataManager from ..network.MultimodalNetwork import MultimodalNetwork from ..travel_time_function.ConstantFunction import ConstantFunction from ..travel_time_function.TimeTable import TimeTable class CreateTransportationNetwork: def __init__(self, region): self.region = region self.graph = MultimodalNetwork() dataManager = PostgisDataManager() self.mbr = dataManager.getNetworkMBR(region) self.current_node_id = dataManager.getNumNodes(region) + 1 self.calendar = {} self.parent_stops={} self.stops = {} self.routes_id = [] self.links = {} self.route_transfers = {} self.stop_transfers = {} self.edges_timetable = {} self.conn = PostGISConnection() def run(self): self.conn.connect() self.load() self.createTables() self.populateTables() self.conn.close() def createTables(self): self.createTableNodes() self.createTableEdges() self.createTableTimetables() def populateTables(self): self.populateTableNodes() self.populateTableEdgesAndTimetables() def createTableNodes(self): #node_id, lat, lon, node_type, stop_id=None, route_id=None sql = """ CREATE TABLE IF NOT EXISTS {0} ( node_id bigint NOT NULL, lat double precision NOT NULL, long double precision NOT NULL, type integer NOT NULL, stop_id varchar NULL, route_id varchar NULL, CONSTRAINT {1} PRIMARY KEY (node_id) ); """ sql = SQL(sql).format(Identifier("transportation_nodes_"+str(self.region)), Identifier("transportation_nodes_"+str(self.region)+"_pkey")) self.conn.executeCommand(sql) def populateTableNodes(self): print("Creating table nodes...") sql = """INSERT INTO {0}(node_id, lat, long, type, stop_id, route_id) VALUES (%s, %s, %s, %s, %s, %s); """ sql = SQL(sql).format(Identifier("transportation_nodes_"+str(self.region))) try: cursor = self.conn.getCursor() for node_id in self.graph.getNodesIds(): #print(node_id) node = self.graph.getNode(node_id) if 'type' not in node: continue #print(self.region, node_id, node['lat'], node['lon'], node['type'], stop_id, route_id) cursor.execute(sql, (node_id, node['lat'], node['lon'], node['type'], node.get('stop_id'), node.get('route_id'))) self.conn.commit() except IOError as e: print("I/O error({0}): {1}".format(e.errno, e.strerror)) except (Exception, psycopg2.DatabaseError) as error: print(error) except: print("Unexpected error:", sys.exc_info()[0]) def createTableEdges(self): #node_from, node_to, edge_type, modes, travel_time_functions, original_edge_id=None, edge_position=None sql = """ CREATE TABLE IF NOT EXISTS {0} ( source bigint NOT NULL, target bigint NOT NULL, type integer NOT NULL, modes integer[] NOT NULL, cost integer NULL, timetable_id bigint NULL, original_edge_id bigint NULL, edge_position integer NULL, CONSTRAINT {1} PRIMARY KEY (source, target) ); """ sql = SQL(sql).format(Identifier("transportation_edges_"+str(self.region)), Identifier("transportation_edges_"+str(self.region) + "_pkey")) self.conn.executeCommand(sql) def createTableTimetables(self): sql = """ CREATE TABLE IF NOT EXISTS {0} ( id bigint NOT NULL, monday time[] NULL, tuesday time[] NULL, wednesday time[] NULL, thursday time[] NULL, friday time[] NULL, saturday time[] NULL, sunday time[] NULL, CONSTRAINT {1} PRIMARY KEY (id) ); """ sql = SQL(sql).format(Identifier("transportation_timetables_"+str(self.region)), Identifier("transportation_timetables_"+str(self.region) + "_pkey")) self.conn.executeCommand(sql) def populateTableEdgesAndTimetables(self): print("Creating table edges...") sql = """INSERT INTO {0}(source, target, type, modes, cost, timetable_id, original_edge_id, edge_position) VALUES (%s, %s, %s, %s, %s, %s, %s, %s); """ sql = SQL(sql).format(Identifier("transportation_edges_"+str(self.region))) sql_timetable = """INSERT INTO {}(id, monday, tuesday, wednesday, thursday, friday, saturday, sunday) VALUES (%s, %s, %s, %s, %s, %s, %s, %s); """ sql_timetable = SQL(sql_timetable).format(Identifier("transportation_timetables_"+str(self.region))) curr_timetable_id = 0; try: count = 0 records = [] cursor = self.conn.getCursor() for edge_id in self.graph.getEdges(): edge = self.graph.getEdge(edge_id[0], edge_id[1]) travel_time_functions = edge['travel_time_functions'] cost = None timetable_id = None for mode in travel_time_functions: if mode == self.graph.PUBLIC: timetable_id = curr_timetable_id timetable = travel_time_functions[mode].getTable() cursor.execute(sql_timetable, (timetable_id, timetable.get(0), timetable.get(1), timetable.get(2), timetable.get(3), timetable.get(4), timetable.get(5), timetable.get(6))) curr_timetable_id += 1 else: cost = travel_time_functions[mode].getTravelCost() records.append((edge_id[0], edge_id[1], edge['type'], list(edge['modes']), cost, timetable_id, edge.get('original_edge_id'), edge.get('edge_position'))) count += 1 if count % 1000 == 0: #print("Commiting changes...") cursor.executemany(sql, records) self.conn.commit() records = [] cursor.executemany(sql, records) self.conn.commit() cursor.close() except IOError as e: print("I/O error({0}): {1}".format(e.errno, e.strerror)) except (Exception, psycopg2.DatabaseError) as error: print(error) except: print("Unexpected error:", sys.exc_info()[0]) def load(self): print("Loading GTFS data...") self.loadCalendar() self.loadStops() self.loadRoutes() self.loadTrips() del self.calendar del self.routes_id del self.edges_timetable #creating links within stations and to the road network self.loadLinks() self.loadTransferTimes() self.addTransfers() del self.stops del self.parent_stops del self.links del self.route_transfers del self.stop_transfers def loadCalendar(self): print("Loading calendar...") sql = """SELECT service_id, monday, tuesday, wednesday, thursday, friday, saturday, sunday FROM {}; """ sql = SQL(sql).format(Identifier("calendar_"+str(self.region))) try: cursor = self.conn.getCursor() cursor.execute(sql) row = cursor.fetchone() while row is not None: (service_id, monday, tuesday, wednesday, thursday, friday, saturday, sunday) = row self.calendar[service_id] = {0: monday, 1:tuesday, 2:wednesday, 3: thursday, 4:friday, 5:saturday, 6:sunday} row = cursor.fetchone() cursor.close() except IOError as e: print("I/O error({0}): {1}".format(e.errno, e.strerror)) except (Exception, psycopg2.DatabaseError) as error: print(error) except: print("Unexpected error:", sys.exc_info()[0]) def loadStops(self): print("Loading stops...") sql = """SELECT stop_id, stop_lat, stop_lon, stop_type, stop_parent FROM {}; """ sql = SQL(sql).format(Identifier("stops_"+str(self.region))) min_lat = float(self.mbr[1]) min_long = float(self.mbr[0]) max_lat = float(self.mbr[3]) max_long = float(self.mbr[2]) try: cursor = self.conn.getCursor() cursor.execute(sql) row = cursor.fetchone() while row is not None: (stop_id, stop_lat, stop_lon, stop_type, stop_parent) = row if stop_lat >= min_lat and stop_lat <= max_lat and stop_lon >= min_long and stop_lon <= max_long: self.stops[stop_id] = {'lat':stop_lat, 'lon':stop_lon, 'type':stop_type, 'parent':stop_parent} row = cursor.fetchone() cursor.close() except IOError as e: print("I/O error({0}): {1}".format(e.errno, e.strerror)) except (Exception, psycopg2.DatabaseError) as error: print(error) except: print("Unexpected error:", sys.exc_info()[0]) def loadLinks(self): print("Loading links...") sql = """SELECT link_id, edge_id, stop_id, source, target, edge_dist, source_ratio, edge_length, ST_X(point_location), ST_Y(point_location) FROM {0}; """ sql = SQL(sql).format(Identifier("links_"+str(self.region))) try: cursor = self.conn.getCursor() cursor.execute(sql) row = cursor.fetchone() #parents = self.parent_stops.keys() while row is not None: (link_id, edge_id, stop_id, source, target, edge_dist, source_ratio, edge_length, lon, lat) = row #if stop_id in parents: self.links[stop_id] = {'link_id': link_id, 'edge_id': edge_id, 'source':source, 'target':target, 'edge_dist':edge_dist, 'source_ratio':source_ratio, 'edge_length':edge_length, 'lat':lat, 'lon':lon} row = cursor.fetchone() cursor.close() except IOError as e: print("I/O error({0}): {1}".format(e.errno, e.strerror)) except (Exception, psycopg2.DatabaseError) as error: print(error) except: print("Unexpected error:", sys.exc_info()[0]) def loadTransferTimes(self): if self.parent_stops: sql_exists = """SELECT EXISTS ( SELECT 1 FROM information_schema.tables WHERE table_name = %s ); """ #sql_exists = SQL(sql_exists).format(Identifier("transfers_"+str(self.region))) try: cursor = self.conn.getCursor() cursor.execute(sql_exists, ('transfers_'+str(self.region), )) (exists,) = cursor.fetchone() if not exists: print("Table does not exist!") return print("Loading transfer times...") sql = """SELECT from_stop_id, to_stop_id, transfer_type, min_transfer_time, from_route_id, to_route_id, from_trip_id FROM {}; """ sql = SQL(sql).format(Identifier("transfers_"+str(self.region))) cursor.execute(sql) row = cursor.fetchone() while row is not None: (from_stop_id, to_stop_id, transfer_type, min_transfer_time, from_route_id, to_route_id, from_trip_id) = row if not min_transfer_time: min_transfer_time = MultimodalNetwork.MIN_TRANSFER_TIME if from_stop_id != to_stop_id and not from_trip_id: if not from_route_id: if from_stop_id in self.stop_transfers: self.stop_transfers[from_stop_id][to_stop_id] = min_transfer_time else: self.stop_transfers[from_stop_id] = {to_stop_id : min_transfer_time} else: if from_route_id in self.route_transfers: if to_route_id in self.route_transfers[from_route_id]: if from_stop_id in self.route_transfers[from_route_id][to_route_id]: self.route_transfers[from_route_id][to_route_id][from_stop_id][to_stop_id] = min_transfer_time else: self.route_transfers[from_route_id][to_route_id][from_stop_id] = {to_stop_id:min_transfer_time} else: self.route_transfers[from_route_id][to_route_id] = {from_stop_id: {to_stop_id:min_transfer_time}} else: self.route_transfers[from_route_id] = {to_route_id : {from_stop_id: {to_stop_id:min_transfer_time}}} row = cursor.fetchone() cursor.close() except IOError as e: print("I/O error({0}): {1}".format(e.errno, e.strerror)) except (Exception, psycopg2.DatabaseError) as error: print(error) except: print("Unexpected error:", sys.exc_info()[0]) def loadRoutes(self): print("Loading routes...") sql = """SELECT route_id FROM {}; """ sql = SQL(sql).format(Identifier("routes_"+str(self.region))) try: cursor = self.conn.getCursor() cursor.execute(sql) row = cursor.fetchone() while row is not None: (route_id,) = row self.routes_id.append(route_id) row = cursor.fetchone() cursor.close() except IOError as e: print("I/O error({0}): {1}".format(e.errno, e.strerror)) except (Exception, psycopg2.DatabaseError) as error: print(error) except: print("Unexpected error:", sys.exc_info()[0]) def loadTrips(self): print("Loading trips...") sql = """SELECT s.*, t.service_id FROM {0} as s, {1} as t WHERE s.trip_id in (select trip_id from {1} where route_id=%s) and t.trip_id = s.trip_id order by trip_id, stop_sequence ; """ sql = SQL(sql).format(Identifier("stop_times_"+str(self.region)), Identifier("trips_"+str(self.region))) try: cursor = self.conn.getCursor() for route in self.routes_id: #print(route) self.edges_timetable = {} node_mapping = {} cursor.execute(sql, (route, )) row = cursor.fetchone() previous_trip_id = -1 previous_node = -1 previous_departure_time = None while row is not None: (trip_id, arrival_time, departure_time, stop_id, stop_sequence, service_id) = row #print(trip_id) if trip_id != previous_trip_id: previous_node = -1 if stop_id in node_mapping: node_id = node_mapping[stop_id] else: if stop_id not in self.stops: previous_node = -1 row = cursor.fetchone() continue node_id = self.current_node_id node_mapping[stop_id] = node_id stop = self.stops[stop_id] if self.graph.getNode(node_id): print("duplicate node!!", node_id) self.graph.addNode(node_id, stop['lat'], stop['lon'], MultimodalNetwork.TRANSPORTATION, stop_id, route) #print(node_id) if self.stops[stop_id]['parent']: parent = self.stops[stop_id]['parent'] if parent in self.parent_stops: self.parent_stops[parent].append(node_id) else: self.parent_stops[parent] = [node_id] elif self.stops[stop_id]['type'] == 0 and not self.stops[stop_id]['parent']: self.parent_stops[stop_id] = [node_id] #print(stop_id, node_id) self.current_node_id += 1 row = cursor.fetchone() if previous_node != -1: #create edge from previous_node to node_id self.createTransportationEdge(previous_node, node_id, previous_departure_time, arrival_time, service_id) previous_node = node_id previous_trip_id = trip_id previous_departure_time = departure_time self.addTransportationEdges() cursor.close() except IOError as e: print("I/O error({0}): {1}".format(e.errno, e.strerror)) except (Exception, psycopg2.DatabaseError) as error: print(error) except: print("Unexpected error:", sys.exc_info()[0]) def addTransportationEdges(self): for node_from in self.edges_timetable: for node_to in self.edges_timetable[node_from]: timetable = self.edges_timetable[node_from][node_to] self.graph.addEdge(node_from, node_to, MultimodalNetwork.TRANSPORTATION, {MultimodalNetwork.PUBLIC}, {MultimodalNetwork.PUBLIC:TimeTable(timetable)}) #print(self.graph.getEdge(node_from, node_to)) def createTransportationEdge(self, from_node, to_node, departure_time, arrival_time, service_id): #print(str(from_node) + "," + str(to_node)) service = self.calendar[service_id] if from_node in self.edges_timetable: if to_node in self.edges_timetable[from_node]: timetable = self.edges_timetable[from_node][to_node] for day in service: if service[day]: self.addNewDeparture(timetable[day], departure_time, arrival_time) else: timetable = {} for i in range(7): timetable[i] = [] for day in service: if service[day]: self.addNewDeparture(timetable[day], departure_time, arrival_time) self.edges_timetable[from_node][to_node] = timetable else: self.edges_timetable[from_node] = {} timetable = {} for i in range(7): timetable[i] = [] for day in service: if service[day]: self.addNewDeparture(timetable[day], departure_time, arrival_time) self.edges_timetable[from_node][to_node] = timetable def addNewDeparture(self, list_departures, departure_time, arrival_time): if not list_departures: bisect.insort(list_departures, [departure_time, arrival_time]) else: pos = bisect.bisect_left(list_departures, [departure_time, arrival_time]) if pos == len(list_departures) or list_departures[pos] != [departure_time, arrival_time]: bisect.insort(list_departures, [departure_time, arrival_time]) ''' i = 0 while i < len(list_departures): if list_departures[i][0] == departure_time: break elif list_departures[i][0] > departure_time: list_departures.insert(i, [departure_time, arrival_time]) break else: i+=1 if i == len(list_departures): list_departures.append([departure_time, arrival_time]) ''' def addTransfers(self): print("Adding transfers...") for stop in self.links: #print(stop) #connect the super node to the road network stop_id = self.addLinkSuperNodeToRoadNetwork(stop) if stop in self.parent_stops: list_nodes = self.parent_stops[stop] #print(stop, list_nodes) for node_from in list_nodes: self.addLinkToSuperNode(node_from, stop_id) for node_to in list_nodes: if node_from != node_to: transfer_time = self.getTransferTime(node_from, node_to) #transfer_time = 0 self.graph.addEdge(node_from, node_to, MultimodalNetwork.TRANSFER, {MultimodalNetwork.PEDESTRIAN}, {MultimodalNetwork.PEDESTRIAN:ConstantFunction(transfer_time)}) def getTransferTime(self, node_from_id, node_to_id): node_from = self.graph.getNode(node_from_id) node_to = self.graph.getNode(node_to_id) stop_from = node_from['stop_id'] stop_to = node_to['stop_id'] route_from = node_from['route_id'] route_to = node_to['route_id'] transfer_time_stop = MultimodalNetwork.MIN_TRANSFER_TIME if stop_from in self.stop_transfers and stop_to in self.stop_transfers[stop_from]: transfer_time_stop = self.stop_transfers[stop_from][stop_to] if stop_from == stop_to: return MultimodalNetwork.MIN_TRANSFER_TIME if route_from in self.route_transfers: if route_to in self.route_transfers[route_from]: if stop_from in self.route_transfers[route_from][route_to] and stop_to in self.route_transfers[route_from][route_to][stop_from]: return self.route_transfers[route_from][route_to][stop_from][stop_to] else: return transfer_time_stop else: return transfer_time_stop else: return transfer_time_stop def addLinkSuperNodeToRoadNetwork(self, super_stop): #create super stop node if super_stop not in self.stops: return stop_id = self.current_node_id self.current_node_id += 1 stop = self.stops[super_stop] if self.graph.getNode(stop_id): print("2 duplicate node!!", stop_id) self.graph.addNode(stop_id, stop['lat'], stop['lon'], MultimodalNetwork.SUPER_NODE) #print("Adding node:" + str(stop_id)) link = self.links[super_stop] edge_id = link['edge_id'] source = link['source'] target = link['target'] edge_dist = link['edge_dist'] edge_time = round((edge_dist/MultimodalNetwork.PEDESTRIAN_SPEED)*3600) source_ratio = link['source_ratio'] if source_ratio == 0.0: #transfer node is equal to the source self.graph.addEdge(stop_id, source, MultimodalNetwork.TRANSFER, {MultimodalNetwork.PEDESTRIAN}, {MultimodalNetwork.PEDESTRIAN:ConstantFunction(edge_time)}) self.graph.addEdge(source, stop_id, MultimodalNetwork.TRANSFER, {MultimodalNetwork.PEDESTRIAN}, {MultimodalNetwork.PEDESTRIAN:ConstantFunction(edge_time)}) elif source_ratio == 1.0: #transfer node is equal to the target self.graph.addEdge(stop_id, target, MultimodalNetwork.TRANSFER, {MultimodalNetwork.PEDESTRIAN}, {MultimodalNetwork.PEDESTRIAN:ConstantFunction(edge_time)}) self.graph.addEdge(target, stop_id, MultimodalNetwork.TRANSFER, {MultimodalNetwork.PEDESTRIAN}, {MultimodalNetwork.PEDESTRIAN:ConstantFunction(edge_time)}) else: node_id = self.current_node_id self.current_node_id += 1 if self.graph.getNode(node_id): print("3 duplicate node!!", node_id) self.graph.addNode(node_id, link['lat'], link['lon'], MultimodalNetwork.TRANSFER) #splitting edge length = link['edge_length'] time_source = round(((source_ratio*length)/MultimodalNetwork.PEDESTRIAN_SPEED)*3600) time_target = round((((1-source_ratio)*length)/MultimodalNetwork.PEDESTRIAN_SPEED)*3600) self.graph.addEdge(source, node_id, MultimodalNetwork.TRANSFER, {MultimodalNetwork.PEDESTRIAN}, {MultimodalNetwork.PEDESTRIAN:ConstantFunction(time_source)}, edge_id, 1) self.graph.addEdge(node_id, source, MultimodalNetwork.TRANSFER, {MultimodalNetwork.PEDESTRIAN}, {MultimodalNetwork.PEDESTRIAN:ConstantFunction(time_source)}, edge_id, 1) self.graph.addEdge(target, node_id, MultimodalNetwork.TRANSFER, {MultimodalNetwork.PEDESTRIAN}, {MultimodalNetwork.PEDESTRIAN:ConstantFunction(time_target)},edge_id, 2) self.graph.addEdge(node_id, target, MultimodalNetwork.TRANSFER, {MultimodalNetwork.PEDESTRIAN}, {MultimodalNetwork.PEDESTRIAN:ConstantFunction(time_target)}, edge_id, 2) #connecting new node to super node self.graph.addEdge(stop_id, node_id, MultimodalNetwork.TRANSFER, {MultimodalNetwork.PEDESTRIAN}, {MultimodalNetwork.PEDESTRIAN:ConstantFunction(edge_time)}) self.graph.addEdge(node_id, stop_id, MultimodalNetwork.TRANSFER, {MultimodalNetwork.PEDESTRIAN}, {MultimodalNetwork.PEDESTRIAN:ConstantFunction(edge_time)}) return stop_id def addLinkToSuperNode(self, node_id, parent_node_id): self.graph.addEdge(parent_node_id, node_id, MultimodalNetwork.TRANSFER, {MultimodalNetwork.PEDESTRIAN}, {MultimodalNetwork.PEDESTRIAN:ConstantFunction(0)}) self.graph.addEdge(node_id, parent_node_id, MultimodalNetwork.TRANSFER, {MultimodalNetwork.PEDESTRIAN}, {MultimodalNetwork.PEDESTRIAN:ConstantFunction(0)}) ''' def addLinkToRoadNetworkSourceTarget(self, node_id, parent): link = self.links[parent] source = self.osm_mapping[link['source']] target = self.osm_mapping[link['target']] #print(source, node_id, target) source_dist = link['source_dist'] source_time = round((source_dist/self.graph.PEDESTRIAN_SPEED)*3600) target_dist = link['source_dist'] target_time = round((target_dist/self.graph.PEDESTRIAN_SPEED)*3600) #each node is connected to the source and target nodes in the road network self.graph.addEdge(source, node_id, self.graph.TRANSFER, {self.graph.PEDESTRIAN}, {self.graph.PEDESTRIAN:ConstantFunction(source_time)}) self.graph.addEdge(node_id, source, self.graph.TRANSFER, {self.graph.PEDESTRIAN}, {self.graph.PEDESTRIAN:ConstantFunction(source_time)}) self.graph.addEdge(node_id, target, self.graph.TRANSFER, {self.graph.PEDESTRIAN}, {self.graph.PEDESTRIAN:ConstantFunction(target_time)}) self.graph.addEdge(target, node_id, self.graph.TRANSFER, {self.graph.PEDESTRIAN}, {self.graph.PEDESTRIAN:ConstantFunction(target_time)}) '''
[ "camilaferc@gmail.com" ]
camilaferc@gmail.com
4967bb84f04d0bb4b544d1facd97195af25e7504
4481fcf0d6b75a967f1de20e16a58edac8cba664
/src/forgery_detection/lightning/utils.py
5688c1bbf42a187abe73aae1204721c7dabbb375
[]
no_license
Hadryan/forgerydetection
0c2c5f44f458d58c630fce5bb6688e8daf794c7a
6d533c46417400f55aafd3dc263f68d63ae4f9e6
refs/heads/master
2022-10-12T20:12:18.282632
2020-06-09T15:33:28
2020-06-09T15:33:28
null
0
0
null
null
null
null
UTF-8
Python
false
false
3,036
py
from pathlib import Path import click from pytorch_lightning import Trainer from pytorch_lightning.loggers import TestTubeLogger from forgery_detection.lightning.logging.const import CHECKPOINTS from forgery_detection.lightning.logging.const import SystemMode from forgery_detection.lightning.logging.const import VAL_ACC from forgery_detection.lightning.logging.utils import ( backwards_compatible_get_checkpoint, ) from forgery_detection.lightning.logging.utils import get_logger_dir from forgery_detection.lightning.logging.utils import OldModelCheckpoint from forgery_detection.lightning.system import Supervised def _get_logger_info(kwargs: dict): if "logger" in kwargs and kwargs["logger"]: return kwargs["logger"] if "logger/name" in kwargs: return { "name": kwargs["logger/name"], "description": kwargs["logger/description"], } return None def get_model_and_trainer(_logger=None, test_percent_check=1.0, **kwargs): kwargs["mode"] = SystemMode.TEST checkpoint_folder = Path(kwargs["checkpoint_dir"]) model: Supervised = Supervised.load_from_metrics( weights_path=backwards_compatible_get_checkpoint( checkpoint_folder, kwargs["checkpoint_nr"] ), tags_csv=Path(kwargs["checkpoint_dir"]) / "meta_tags.csv", overwrite_hparams=kwargs, ) if _logger is None: logger_info = _get_logger_info(model.hparams) kwargs["log_dir"] = kwargs["checkpoint_dir"] _, _logger = get_logger_and_checkpoint_callback_for_test( kwargs["log_dir"], kwargs["debug"], logger_info=logger_info ) model.logger = _logger trainer = Trainer( gpus=kwargs["gpus"], logger=_logger, default_save_path=kwargs["log_dir"], distributed_backend="ddp" if kwargs["gpus"] and len(kwargs["gpus"]) > 1 else None, weights_summary=None, test_percent_check=test_percent_check, ) return model, trainer def get_logger_and_checkpoint_callback_for_test(log_dir, debug, logger_info=None): """Sets up a logger and a checkpointer. The code is mostly copied from pl.trainer.py. """ if debug: name = "debug" description = "" else: if logger_info: name = "test" description = logger_info["description"] else: # if the user provides a name create its own folder in the default folder name = click.prompt("Name of run", type=str, default="default").replace( " ", "_" ) description = click.prompt("Description of run", type=str, default="") logger = TestTubeLogger(save_dir=log_dir, name=name, description=description) logger_dir = get_logger_dir(logger) checkpoint_callback = OldModelCheckpoint( filepath=logger_dir / CHECKPOINTS, save_best_only=False, monitor=VAL_ACC, mode="max", prefix="", ) return checkpoint_callback, logger
[ "fellnerseb@gmail.com" ]
fellnerseb@gmail.com
3cca5241af3aa143a12f57ef00cf6ba14404d813
b4c28049f1e3bc367d523f84f3816178e9e1d468
/20160508_1.py
f49f81793bebc84d5279fb399791b559662607c8
[ "MIT" ]
permissive
JaeGyu/PythonEx_1
5f602274727722ddc352fcdd7b5f41b73d8aa784
e67053db6ca7431c3dd66351c190c53229e3f141
refs/heads/master
2020-05-22T05:43:59.902893
2017-09-02T06:54:57
2017-09-02T06:54:57
50,916,308
0
0
null
null
null
null
UTF-8
Python
false
false
549
py
#_*_ coding: utf-8 _*_ from multiprocessing import Process, Queue def do_work(start, end, result): sum = 0 for i in range(start, end): sum += i result.put(sum) return if __name__ == "__main__": START, END = 0, 20000000 result = Queue() pr1 = Process(target=do_work, args=(START, END/2, result)) pr2 = Process(target=do_work, args=(END/2, END, result)) pr1.start() pr2.start() pr1.join() pr2.join() result.put('STOP') sum = 0 while True: tmp = result.get() if tmp == 'STOP': break else: sum+=tmp print "Result : ", sum
[ "jpmlyr@gmail.com" ]
jpmlyr@gmail.com
d05dba8c42acde9c067414753a54c7e22f014b8b
d5a5ff1ed1f508c47e9506a552bf44844bcdc071
/labor/business.py
30a68565c63be37f889370060e9f8f8d0cbd6cb1
[]
no_license
sintaxyzcorp/prometeus
5c9dc20e3c2f33ea6b257b850ff9505621302c47
2508603b6692023e0a9e40cb6cd1f08465a33f1c
refs/heads/master
2021-09-01T09:31:36.868784
2017-12-26T07:58:27
2017-12-26T07:58:27
113,787,842
0
1
null
2017-12-18T08:25:31
2017-12-10T22:16:28
JavaScript
UTF-8
Python
false
false
3,230
py
# -*- coding: utf-8 -*- # Django's Libraries from django.shortcuts import get_object_or_404 from django.db.models import Q from django.core.paginator import Paginator from django.core.paginator import EmptyPage from django.core.paginator import PageNotAnInteger # Own's Libraries from .models import IncidentReport class IncidentReportBusiness(object): @classmethod def get(self, _pk): requisition = get_object_or_404(IncidentReport, pk=_pk) return requisition @classmethod def get_No_Pendings(self): quantity = IncidentReport.objects.filter( status__in=["pen", 'inc']).count() return quantity @classmethod def get_FilterByEmployee(self, _value, _profile): if _value: records = IncidentReport.objects \ .filter(employee=_profile) \ .filter( Q(type__name__icontains=_value) | Q(reason__icontains=_value) ).order_by("-created_date") else: records = IncidentReport.objects \ .filter(employee=_profile) \ .order_by("-created_date") return records @classmethod def get_Pending(self, _value, _profile=None): if _value: records = IncidentReport.objects \ .filter( Q(type__name__icontains=_value) | Q(pk__icontains=_value) | Q(reason__icontains=_value) | Q(response__icontains=_value) | Q(employee__user__first_name__icontains=_value) | Q(employee__user__last_name__icontains=_value) ) \ .filter(status__in=["pen", 'inc']) \ .order_by("-created_date") else: records = IncidentReport.objects \ .filter(status__in=["pen", 'inc']) \ .order_by("-created_date") if _profile: records = records.filter(employee=_profile) return records @classmethod def get_All(self, _value, _profile=None): if _value: records = IncidentReport.objects \ .filter( Q(type__name__icontains=_value) | Q(pk__icontains=_value) | Q(reason__icontains=_value) | Q(response__icontains=_value) | Q(employee__user__first_name__icontains=_value) | Q(employee__user__last_name__icontains=_value) ) \ .order_by("-created_date") else: records = IncidentReport.objects \ .order_by("-created_date") if _profile: records = records.filter(employee=_profile) return records @classmethod def get_Paginated(self, _records, _current_page): paginator = Paginator(_records, 10) current_pagina = _current_page try: _records = paginator.page(current_pagina) except PageNotAnInteger: _records = paginator.page(1) except EmptyPage: _records = paginator.page(paginator.num_page) return _records
[ "carloxdev@gmail.com" ]
carloxdev@gmail.com
9018c468ddf935de767a5e40376e006efd8b423d
85919cafc95a0f42f7f0fa2bc11a5ace23454952
/grokking.py
45036b408acc59683abbf790ebdcbe60238da307
[]
no_license
painfull-san/python-train
e990b3c80040c07d3a3cfdf9b26d6cbe1d5c24c8
056633eaaeee9d678a3b93e18a50ef2f1015b682
refs/heads/master
2023-01-02T09:22:19.546740
2020-10-25T13:26:33
2020-10-25T13:26:33
292,258,075
0
0
null
null
null
null
UTF-8
Python
false
false
2,586
py
def findSmallest(arr): smallest = arr[0] smallest_index = 0 for i in range(1, len(arr)): if arr[i] < smallest: smallest = arr[i] smallest_index = i return smallest_index def selectionSort(arr): newArr = [] for _ in range(len(arr)): smallest = findSmallest(arr) newArr.append(arr.pop(smallest)) return newArr # print (selectionSort([5,3,6,2,10])) def quicksort(array): if len(array) < 2: return array else: pivot = array[0] less = [i for i in array[1:] if i <= pivot] greater = [i for i in array[1:] if i > pivot] return quicksort(less) + [pivot] + quicksort(greater) # print(quicksort([10,5,3,2])) from collections import deque ''' graph = {} graph["you"] = ["alice", "bob", "claire"] graph["bob"] = ["anuj", "peggy"] graph["alice"] = ["peggy"] graph["claire"] = ["thom", "johnny"] graph["anuj"] = [] graph["peggy"] = [] graph["thom"] = [] graph["johnny"] = [] print(graph) def width_search(name): search_queue = deque() search_queue += graph[name] searched = [] while search_queue: person = search_queue.popleft() if not person in searched: if person_is_seller(person): print (person + " is a mango seller!") return True else: search_queue += graph[person] searched.append(person) return False def person_is_seller(name): return name[-1] == 'm' width_search("you") ''' #Dijkstra graph = {} graph["start"] = {} graph["start"]["a"] = 6 graph["start"]["b"] = 2 graph["a"] ={} graph["a"]["fin"] = 1 graph["b"] = {} graph["b"]["a"] = 3 graph["b"]["fin"] = 5 graph["fin"] = {} infinity = float("inf") costs = {} costs["a"] = 6 costs["b"] = 2 costs["fin"] = infinity parents = {} parents["a"] = "start" parents["b"] = "start" parents["fin"] = None processed = [] def find_lowest_cost_node(costs): lowest_cost = float("inf") lowest_cost_node = None for node in costs: cost = costs[node] if cost < lowest_cost and node not in processed: lowest_cost = cost lowest_cost_node = node return lowest_cost_node node = find_lowest_cost_node(costs) while node is not None: cost = costs[node] neighbors = graph[node] for n in neighbors.keys(): new_cost = cost + neighbors[n] if costs[n] > new_cost: costs[n] = new_cost parents[n] = node processed.append(node) node = find_lowest_cost_node(costs) print(costs, parents)
[ "painfull@mail.ru" ]
painfull@mail.ru
212ac21c6d4001a82f02eb39e0c6e9fc1a53c868
037b0ba35307e8e1ff8a8ba8dfa30f26af26b5b1
/DataSheetAutomation.py
17679b0875c0e55608bf2530242c504501a784f6
[]
no_license
zylotechranjeet/CustomerDataValidationTool
b4e76dc953481c724e0b0ed8cd064128f5c322b7
e3c21fb0a11ad0d362981708b9946578443c1b52
refs/heads/master
2020-07-11T11:46:48.722168
2019-09-27T11:38:25
2019-09-27T11:38:25
204,531,498
0
0
null
null
null
null
UTF-8
Python
false
false
8,446
py
import xlrd import re workbook = xlrd.open_workbook('/home/rkverma11254/Downloads/CiscoProfileDataGlobal.xlsx') worksheet = workbook.sheet_by_name('Enriched Contacts Data Sheet') inum = worksheet.nrows+1 print('Total Rows: ',worksheet.nrows) # Test Cases for Postal Code Verification: # for row in range(worksheet.nrows): # Postal = str(worksheet.cell_value(row, 13)) # if re.findall("^([0-9A-Za-z..\(\)])+([\s\s\-]?)[-0-9A-Za-z0-9..]+([\s\s\-]?)[0-9A-Za-z0-9..]*$",Postal): # pass # else: # with open("/home/rkverma11254/Music/PostalCode.txt", 'a+') as post: # post.writelines("Row Number: {0} Postal: {1}".format(row, Postal) + "\n") # post.close() #Test Cases for Prefix: # for row in range(worksheet.nrows): # prefix = str(worksheet.cell_value(row,18)) # if re.findall("^(Mr|Ms|MR|MS|MR.|MS.|Mr.|Ms.)$",prefix): # pass # else: # with open("/home/rkverma11254/Music/PrefixInName.txt", 'a') as prefix: # prefix.writelines("Row Number: {0} Prefix: {1}".format(row, prefix) + '\n') # print("Row Number: {0} Prefix: {1}".format(row, prefix)) # prefix.close() #Test Cases for First Name: # for row in range(worksheet.nrows): # First_Name = worksheet.cell_value(row,19) # if re.findall("^([A-Za-z'0-9]?)+([\s]?)([\sA-Za-z'0-9])+([\s\s]?)([a-zA-Z'0-9_]*)$",First_Name): # pass # else: # with open("/home/rkverma11254/Music/FirstName.txt", 'a+') as FN: # FN.writelines("Row Number: {0} FirstName: {1}".format(row, First_Name) + "\n") # FN.close() # Test Cases for Last_Name: # for row in range(worksheet.nrows): # Last_Name = worksheet.cell_value(row,20) # if re.findall("^([A-Za-z'0-9’..ß]?)+([\s]?)([\sA-Za-z'0-9’..ß])+([\s\s]?)([a-zA-Z'0-9’_..ß]*)$",Last_Name): # pass # else: # with open("/home/rkverma11254/Music/LastName.txt", 'a+') as LN: # LN.writelines("Row Number: {0} LastName: {1}".format(row, Last_Name) + "\n") # LN.close() #Test Cases for Job Title: # for row in range(worksheet.nrows): # job_title = worksheet.cell_value(row,22) # if re.findall("^([a-zA-Z])+([\s\/]?[A-Za-z-&]*)+([\s]?)([A-Za-z]*)$",job_title): # pass # else: # with open("/home/rkverma11254/Music/JobTitle.txt",'a+') as JT: # JT.write("Row number: {0} and Job Title: {1}: ".format(row, job_title) + "\n") # JT.close() #Test Cases for Address: for row in range(worksheet.nrows): Add1 = worksheet.cell_value(row,9) if re.findall("^([a-zA-Z0-9.,'ı،\s])+([\'\:\.\-\_\,\s\&\"]?)([a-zA-Z0-9.,'\/\"\"]?)+(([\(\'\:\.\-\_\,\s\&\")]?)([a-zA-Z0-9.,']?))+([\'\:\.\-\_\,\s\&\/\#]?)([A-Za-z\"])+([\'\:\.\-\_\,\s\&\/\#]?)([-A-Za-z.,\"])+([\'\:\.\-\_\,\s\&\/\#]?)([A-Za-z0-9\"])+(([-&\/,.#\sA-Za-z0-9\"].?)*)$",Add1): pass else: with open("/home/rkverma11254/Music/Address1.txt", 'a+') as add: add.writelines("Row Number: {0} Address1: {1}".format(row, Add1) + "\n") add.close() # Test Cases for Website verification: # for row in range(worksheet.nrows): # website = worksheet.cell_value(row,17) # if re.findall("^http[s]?://?[a-zA-Z0-9.]*$|^www.([a-zA-Z0-9.-])*$",website): # pass # else: # with open("/home/rkverma11254/Music/Website.txt", 'a+') as ws: # ws.writelines("Row Number: {0} WebsiteName: {1}".format(row, website) + "\n") # ws.close() #For Getting Invalid Email id: # for row in range(worksheet.nrows): # email = (worksheet.cell_value(row,24)) # if re.findall('(^[a-zA-Z0-9]+[\.\_\-]?)+([a-zA-Z0-9]+[\.\-\_]?)+(\@[a-zA-Z0-9])+([\.\-\_]?)([a-zA-Z0-9])+([\.\-\_]?)[a-zA-Z0-9.]+([\.\-\_]?)[a-zA-Z0-9.]*$',email): # pass # else: # with open("/home/rkverma11254/Music/Email.txt",'a+') as f1: # f1.writelines("Row Number: {0} Email: {1}".format(row,email)+"\n") # #print("Row Number: {0} Email address: {1}".format(row,email)) # f1.close() # # Test Case for Phone no verification: # for row in range(worksheet.nrows): # phoneNo = (worksheet.cell_value(row,16)) # regex = "^\+?\d*\s?\(?\d{2}\)?[-.\s]?\d{2}[-.\s]?\d*$" # if re.findall(regex,phoneNo): # pass # else: # with open("/home/rkverma11254/Music/PhoneNumber.txt", 'a+') as f1: # f1.writelines("Row Number: {0} Phone number: {1}".format(row, phoneNo) + "\n") # #print("Row Number: {0} Company name: {1}".format(row, phoneNo)) # f1.close() # # Test Case for state verification: # for row in range(worksheet.nrows): # state = (worksheet.cell_value(row,14)) # regex ="(^[a-zA-Zı'..’]+[\s]?)+([a-zA-Z0-9..'’]+[\s]?)+([a-zA-Z’..]*)$" # if re.findall(regex,state): # pass # else: # with open("/home/rkverma11254/Music/StateName.txt", 'a+') as f1: # f1.writelines("Row Number: {0} State: {1}".format(row, state) + "\n") # #print("Row Number: {0} State: {1}".format(row, state)) # f1.close() # # Test Case for Country name verification: # for row in range(worksheet.nrows): # country = (worksheet.cell_value(row,6)) # regex = "(^[a-zA-Z,']+[\s]?)+([a-zA-Z0-9']+[\s]?)+([a-zA-Z]*)$" # list =['United States','United Kingdom','Bulgaria','Costa Rica','Brazil','Switzerland','Denmark','Luxembourg','Sweden','Chile','Netherlands','Canada','Costa Rica','Malawi','Hong Kong','Pakistan','China','Belgium','Mexico','Romania','Czech Republic','New Zealand','Sri Lanka','Belgium','Colombia','Bolivia','Colombia','Korea, Republic Of','Russian Federation' # ,'Japan','Indonesia','Uganda','Tanzania, United Republic Of','Cayman Islands','Poland','Finland','France','Germany','Botswana' # ,'Hungary','South Africa','Spain','Ukraine','Vietnam','Australia','Czech Republic','India','Italy','Macedonia','Mexico', # 'New Zealand','Puerto Rico','Portugal','Romania','Thailand','Trinidad And Tobago','Tanzania, United Republic Of','Bosnia And Herzegovina','Cambodia','Taiwan, Republic Of China','United Arab Emirates','Peru','Turkey','Lebanon','Norway','Malaysia','Malta','Iraq','Albania','Singapore','Jamaica','Philippines','Dominican Republic','Panama','Austria','Egypt','Argentina','Ivory Coast','Israel',"Lao People's Democratic Republic",'Kenya','Qatar','Bhutan','Malta','Bahrain','Cyprus','Mauritius','Saudi Arabia','Lithuania','Senegal','Angola','Azerbaijan','Croatia','Estonia','Georgia','Ireland','Israel','Kazakhstan','Kuwait','Latvia','Libyan Arab Jamahiriya','Moldova','Nigeria','Oman','Slovakia','Togo','Brunei Darussalam','Guatemala','Myanmar','Aruba','Bahamas','Gibraltar','Lesotho','Serbia And Montenegro','Ecuador','Greece','Morocco','Central African Republic','Bermuda','Bangladesh','Afghanistan','Iceland','Serbia','Niger','Macau','Barbados','Congo','Algeria','Madagascar','Slovenia','Belarus' # ,'Cameroon','Ghana','Jordan','Rwanda','Uzbekistan','Kyrgyzstan','Venezuela','Tunisia','Papua New Guinea','Honduras','Ethiopia','Belize','French Polynesia','Monaco'] # if re.findall(regex,country) and country in list: # pass # else: # with open("/home/rkverma11254/Music/CountryName.txt", 'a+') as f1: # f1.writelines("Row Number: {0} Country: {1}".format(row, country) + '\n') # print("Row Number: {0} Country: {1}".format(row, country)) # f1.close() # #Test Case for company name verification # for row in range(worksheet.nrows): # company = (worksheet.cell_value(row,8)) # if re.findall("^([a-zA-Z0-9.,'áçéãı +.,-])+([\'\:\.\-\_\,\s\&\+\!\–#\/]?)([a-zA-Z0-9.,'ıáçéã.,-]?)+(([\(\'\:\.\-\_\,\s\&\+\–#)]?)([a-zA-Z0-9.,'áçéãı.,-]?))+([\'\:\.\-\_\,\s\&\+\/]?)([a-zA-Z0-9.,'áçéãı.,-]*)",company): # pass # else: # with open("/home/rkverma11254/Music/CompanyName.txt",'a+') as f1: # f1.writelines("Row Number: {0} Company name: {1}".format(row,company)+"\n") # f1.close() # # Test Cases for City verification: # for row in range(worksheet.nrows): # city = (worksheet.cell_value(row,12)) # if re.findall("(^[a-zA-Zı']+[\s]?)+([a-zA-Z0-9']+[\s]?)+([a-zA-Z]*)$|^[a-zA-Zı']+$",city): # pass # else: # with open("/home/rkverma11254/Music/CityName.txt", 'a+') as f1: # f1.writelines("Row Number: {0} City: {1}".format(row, city) + "\n") # #print("Row Number: {0} City: {1}".format(row, city)) # f1.close()
[ "ranjeet.verma@zylotech.com" ]
ranjeet.verma@zylotech.com
7c57b560286e448ea15599a8d78e1db4912532a4
f28916e0aacf33835d77f6906afd898a2e53f08d
/Game/Draw.py
106bdd6424f0f97cabbb231119cd041e4edb7e77
[]
no_license
biosx32/Game
e69d5a64b785e0afb63d5c74dc30031bc3c62781
b401c43452bce62a58dd11014c4e3088376d84af
refs/heads/master
2020-04-05T00:33:58.477168
2018-11-06T15:08:52
2018-11-06T15:08:52
156,402,017
0
0
null
null
null
null
UTF-8
Python
false
false
1,733
py
import pygame import Init from Game import Get import Game.GmObjects as Gmo # clock = pygame.time.Clock() BACK_COLOR = (0, 0, 0) # Camera = Init.Camera Player = Init.Player images = Init.images game_map = Init.game_map b_count_xy = Init.b_count_xy # window_size = Init.window_size block_size = game_map.b_size_xy # screen: pygame.SurfaceType = pygame.display.set_mode(window_size) lcp = Init.Camera.pos def QuickText(Text): font = pygame.font.SysFont('Calibri', 15, 0, 0) txtRender = font.render(Text, 1, (0xA7,0xA7,0xA7)) return txtRender def DrawGameObjects(): global visible_objs global lcp if Camera.pos.NEQ(lcp, tolerance=0.5): game_map.require_vo_update() lcp = Camera.pos draw_objs = game_map.get_vo_list() draw_objs.extend([Player]) go: Gmo.GameObject for go in draw_objs: image = images[go.tname] dx, dy = (go.pos - Camera.pos) * block_size screen.blit(image, (dx, dy, 0, 0)) go: Gmo.Player if go.tname == "player": a = QuickText("Energy {:1.2f}".format(go.jmp_energy)) b = QuickText("Accel {:1.2f}".format(go.gaccel)) screen.blit(a, (0, 30)) screen.blit(b, (0, 60)) if go.tname == "block": if not hasattr(go, 'label_cache'): go.label_cache = QuickText("{:3d}".format(go.gID)) screen.blit(go.label_cache, ((go.pos - Camera.pos) * Init.b_size_xy).to_tuple()) if go.in_collision: pygame.draw.rect(screen, (0, 255, 0), (dx, dy, *block_size), 2) if go.is_active(): pygame.draw.rect(screen, (0, 255, 255), (dx, dy, *block_size), 2) pass pos_label = QuickText("Player X,Y: {:.2f},{:.2f}".format(*Player.pos)) screen.blit(pos_label, (0,0,0,0)) def graphics_step(): screen.fill(BACK_COLOR) DrawGameObjects() pygame.display.flip() clock.tick(60)
[ "biosx32@gmail.com" ]
biosx32@gmail.com