-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathTransformShapeToCutBased.py
More file actions
330 lines (249 loc) · 11.5 KB
/
TransformShapeToCutBased.py
File metadata and controls
330 lines (249 loc) · 11.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
#!/usr/bin/python
######################################
# workaround to disable pyroot parser!
import sys
tmpargv = sys.argv
sys.argv = [ '-b','-n' ]
import ROOT
from ROOT import TFile, TH1F, TCanvas, gStyle, TLine
sys.argv = tmpargv
from optparse import OptionParser
######################################
import re
import os
import subprocess
import operator
from commands import getstatusoutput
from operator import itemgetter
import fnmatch
import math
######################################
# ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ----
def TransformShapeToCutBased (datacardname) :
# open the datacard file
currentFolder = getstatusoutput ('pwd')[1]
datacardname = currentFolder + '/' + datacardname
print 'Opening original input datacard: ', datacardname
lines = open (datacardname, 'r').read().split ('\n')
nametag = datacardname.split ('/')[-1].replace ('.txt', '')
thepath = datacardname.replace (nametag + '.txt', '')
print "nametag = ",nametag
print "thepath = ",thepath
# read datacard and separate bin, sample, rate, ...
systime = 0
header = []
binName = []
longListBin = [] # the bin list just before systematics
completeSampleNameLine = []
sampleName = []
reducedsampleName = [] # remove duplicate!
completeSampleRateLine = []
sampleRate = []
observation = []
systematics = []
systematicsName = []
systematicsType = []
longListRateIndex = []
rootFiles = {}
firstTimeBin = True
firstTimeProcess = True
for line in lines:
if '---' in line : continue
if systime == 0 :
tempLine = line.split (' ')
tempLine = filter(lambda a: a != '', tempLine)
#print " line.split (' ')[0] = ", line.split (' ')[0], "\n"
if len(tempLine) == 0 : continue #skip if empty
if tempLine[0] == 'bin' and firstTimeBin:
binName = line.split (' ')
binName = filter(lambda a: a != 'bin', binName)
binName = filter(lambda a: a != '', binName)
firstTimeBin = False
elif tempLine[0] == 'bin':
longListBin.append(line)
elif tempLine[0] == 'observation' :
observation.append(line)
elif tempLine[0] == 'process' and firstTimeProcess:
completeSampleNameLine.append(line)
sampleName = line.split (' ')
sampleName = filter(lambda a: a != 'process', sampleName)
sampleName = filter(lambda a: a != '', sampleName)
firstTimeProcess = False
elif tempLine[0] == 'process':
longListRateIndex.append(line)
elif tempLine[0] == 'rate' :
systime = 1
completeSampleRateLine.append(line)
sampleRate = line.split (' ')
sampleRate = filter(lambda a: a != 'rate', sampleRate)
sampleRate = filter(lambda a: a != '', sampleRate)
else :
if ".root" not in line :
header.append (line)
# 0 1 2 3
#shapes * hwwof_1j_shape_7TeV hwwof_1j.input_7TeV.root histo_$PROCESS histo_$PROCESS_$SYSTEMATIC
if tempLine[0] == 'shapeN2' or tempLine[0] == 'shapes' :
tempRootList = line.split (' ')
tempRootList = filter(lambda a: a != '', tempRootList)
if tempRootList[1] == '*' :
rootFiles[tempRootList[2]] = tempRootList[3]
else:
systematics.append (line)
tempsystematicsName = line.split (' ')
tempsystematicsName = filter(lambda a: a != '', tempsystematicsName)
if (len (tempsystematicsName) >= 1) :
systematicsName.append (tempsystematicsName[0])
systematicsType.append (tempsystematicsName[1]) # gmN, lnN, shape ...
# clean empty systematics
systematics = [elem for elem in systematics if len (elem.split ()) > 0]
systematicsName = [elem for elem in systematicsName if len (elem.split ()) > 0]
systematicsType = [elem for elem in systematicsType if len (elem.split ()) > 0]
#print "header = ", header, "\n\n"
#print "binName = ", binName, "\n\n"
#print "sampleName = ", sampleName, "\n\n"
#print "sampleRate = ", sampleRate, "\n\n"
#print "systematics = ", systematics, "\n\n"
#print "systematicsName = ", systematicsName, "\n\n"
#print "systematicsType = ", systematicsType, "\n\n"
#print " --------------------------------------------------------------- "
# remove duplicates in "sampleName"
# NB: the order is not preserved, but who cares!
reducedsampleName = list(set(sampleName))
# look for shape nuisances
# if found calculate the effect on each sample and translate into a number 0.95/1.10 -> 5% down, 10% up
numSystType = 0
for systType in systematicsType:
if systType == "shape" or systType == "shapeN2" : # only shape here!
print "systematics : ",systematics[numSystType]
tempsystematics = systematics[numSystType].split (' ')
tempsystematics = filter(lambda a: a != '', tempsystematics)
# tempsystematics[0] -> the name
# tempsystematics[1] -> the type: "shape" or "shapeN2"
for itSampleSyst in range(len(tempsystematics)):
if itSampleSyst >=2 and tempsystematics[itSampleSyst] != "-" :
# possible global scale of the nuisance (sign may be important for correlation?)
tempScale = float(tempsystematics[itSampleSyst])
nameSamepleWithThisNuisance = sampleName[itSampleSyst-2]
# get root file and calculate the uncertainty
histograms = {}
for rootFileBin in rootFiles:
#print "rootFile[", rootFileBin, "] = ",rootFiles[rootFileBin]
# check if root file is present (the name must end with .root)
matchfile = re.search(".root", rootFiles[rootFileBin])
if not matchfile:
continue
rootFile = ROOT.TFile.Open(str(thepath)+"/"+str(rootFiles[rootFileBin]))
# get the histograms
foundAll = 0
for k in rootFile.GetListOfKeys():
h = k.ReadObj()
# only 1d histograms supported
histoName = h.GetName()
# histo_SAMPLENAME_NUISANCENAME
# histo_WJet_CMS_8TeV_hww_WJet_of_2jtche05_stat_bin1
match = bool("histo_"+str(nameSamepleWithThisNuisance)+"_"+tempsystematics[0]+"Up" == histoName)
if match:
histograms["Up"] = h
foundAll+=1
match = bool("histo_"+str(nameSamepleWithThisNuisance)+"_"+tempsystematics[0]+"Down" == histoName)
if match:
histograms["Down"] = h
foundAll+=1
match = bool("histo_"+str(nameSamepleWithThisNuisance) == histoName)
if match:
histograms["Nominal"] = h
foundAll+=1
#print " foundAll = ", foundAll
if foundAll != 3 :
print " ERROR: syst = ", tempsystematics[0]
#integralUp = 1.00
#integralDown = 1.00
#integralNominal = 1.00
else :
integralUp = histograms["Up"].Integral()
integralDown = histograms["Down"].Integral()
integralNominal = histograms["Nominal"].Integral()
if integralNominal == 0:
integralNominal = 1.0
integralUp = 1.00
integralDown = 1.00
rootFile.Close()
# calculate nuisance
#tempsystematics[itSampleSyst] = str( round ( ( (1.00 - (integralNominal-integralDown) / integralNominal ) * tempScale ) , 3 )) + "/" + str( round( (1.00 + (integralUp - integralNominal) / integralNominal ) * tempScale , 3) )
if (integralNominal-integralDown) != 0 :
tempsystematics[itSampleSyst] = str( round ( ( (1.00 / (1.00 + (integralNominal-integralDown) / integralNominal) ) * tempScale ) , 3 )) + "/" + str( round( (1.00 + (integralUp - integralNominal) / integralNominal ) * tempScale , 3) )
else :
tempsystematics[itSampleSyst] = str( round ( ( (1.00 - (integralNominal-integralDown) / integralNominal ) * tempScale ) , 3 )) + "/" + str( round( (1.00 + (integralUp - integralNominal) / integralNominal ) * tempScale , 3) )
print " now:: ",tempsystematics[0]," :: ",nameSamepleWithThisNuisance," = ",tempsystematics[itSampleSyst]
# correct nuisance
tempNewNuisance = ""
# tempsystematics[0] -> the name
# tempsystematics[1] -> the type: "shape" or "shapeN2"
for itSampleSyst in range(len(tempsystematics)):
tempNewNuisance = tempNewNuisance + tempsystematics[itSampleSyst]
tempNewNuisance = tempNewNuisance + " "
systematics[numSystType] = tempNewNuisance
numSystType = numSystType + 1
print " write new datacard "
# write new datacard
filename = str(thepath) + '/' + str(nametag) + '.txt'
f = open(filename, 'w')
# header
for line in header: f.write (line + '\n')
f.write ("---------------------------------------------------------------------------------------------------- \n")
# bin name
f.write ("bin ")
for it in range (len (binName)) :
f.write (binName[it] + ' ')
f.write ("\n")
# observation
for it in range (len (observation)) :
f.write (observation[it] + '\n')
f.write ("---------------------------------------------------------------------------------------------------- \n")
# long list of bin
for it in range (len (longListBin)) :
f.write (longListBin[it] + '\n')
# process names (a.k.a. samples)
for it in range (len (completeSampleNameLine)) :
f.write (completeSampleNameLine[it] + '\n')
#f.write ("process ")
#for it in range (len (sampleName)) :
#f.write (sampleName[it] + ' ')
#f.write ("\n")
# long list of rate indexes
for it in range (len (longListRateIndex)) :
f.write (longListRateIndex[it] + '\n')
# rate
for it in range (len (completeSampleRateLine)) :
f.write (completeSampleRateLine[it] + '\n')
#f.write ("rate ")
#for it in range (len (sampleRate)) :
#f.write (str(sampleRate[it]) + ' ')
#f.write ("\n")
# systematics
f.write ("---------------------------------------------------------------------------------------------------- \n")
numSystType = 0
for systType in systematicsType:
if systType == "shapeN2" or systType == "shape" :
#print "systematics : ",systematics[numSystType]
tempsystematics = systematics[numSystType].split (' ')
tempsystematics = filter(lambda a: a != '', tempsystematics)
f.write (tempsystematics[0].ljust(48-6))
f.write ("lnN".ljust(15))
for itSampleSyst in range(len(tempsystematics)):
if itSampleSyst >=2 :
f.write(tempsystematics[itSampleSyst].ljust(15))
f.write ("\n")
else :
f.write (systematics[numSystType] + '\n')
numSystType+=1
f.close ()
######################################
if __name__ == '__main__':
#if len (sys.argv) < 2 :
#print 'input datacard folder missing\n'
#exit (1)
parser = OptionParser()
parser.add_option("-d", "--datacard", dest="datacardInput", help="datacard name", metavar="DATACARD")
(options, args) = parser.parse_args()
TransformShapeToCutBased (options.datacardInput)