-
Notifications
You must be signed in to change notification settings - Fork 8
/
info.py
50 lines (45 loc) · 959 Bytes
/
info.py
1
## file namesfileNames = [ 'GGH_HPT', 'QCD_HT200to300', 'QCD_HT300to500', 'QCD_HT500to700', 'QCD_HT700to1000', 'QCD_HT1000to1500', 'QCD_HT1500to2000', 'QCD_HT2000toInf' ]weight = [ 1, 1, 0.259, 0.0515, 0.01666, 0.00905, 0.003594, 0.001401 ]weightDict = dict(zip(fileNames, weight))## vars for training and cutting datatrainVars = [ 'FatJet_pt', 'FatJet_eta', 'FatJet_mass', 'FatJet_btagCSVV2', 'FatJet_btagDeepB', 'FatJet_msoftdrop', 'FatJet_btagDDBvL', 'FatJet_deepTagMD_H4qvsQCD' ]cutVars = [ 'FatJet_btagDDBvL', 'FatJet_btagDeepB', 'FatJet_mass', 'FatJet_msoftdrop', 'FatJet_pt' ]allVars = list(set(trainVars + cutVars))## making cuts, in order of cutVars. should I make this a dict instead? is## it safer?cutValues = [0.8, 0.4184, 90, 90, 240]cutDict = dict(zip(cutVars, cutValues))