-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathScaleOneNuisance.py
More file actions
308 lines (246 loc) · 10.7 KB
/
ScaleOneNuisance.py
File metadata and controls
308 lines (246 loc) · 10.7 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
#!/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 ScaleOneNuisance (datacardname,systScale) :
# 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
sampleName = []
reducedsampleName = [] # remove duplicate!
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:
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
sampleRate = line.split (' ')
sampleRate = filter(lambda a: a != 'rate', sampleRate)
sampleRate = filter(lambda a: a != '', sampleRate)
else :
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] == '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 " --------------------------------------------------------------- "
systScaleFactor = {}
if os.path.exists(systScale):
handle = open(systScale,'r')
exec(handle)
handle.close()
print "systScaleFactor = ", systScaleFactor
# remove duplicates in "sampleName"
# used in scaling histograms in case of "matching"
# and in case the same sample name is used in several "bin"
# NB: the order is not preserved, but who cares!
reducedsampleName = list(set(sampleName))
# modify sample rate in root file!
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
histograms = {}
for k in rootFile.GetListOfKeys():
h = k.ReadObj()
# only 1d histograms supported
histoName = h.GetName()
match = re.search("histo_", histoName)
if not match:
continue
histograms[h.GetName()] = h
# modify the histograms
outFile = ROOT.TFile.Open(str(thepath)+"/"+str(rootFiles[rootFileBin]+".new.root"),'recreate')
for histoName, histogram in histograms.iteritems():
# modify nuisance systScaleFactor (check samples that are affected)
numSystType = 0
for systType in systematicsType:
if systType == "shape" or systType == "shapeN2" : # only shape here!
if systematicsName[numSystType] in systScaleFactor :
# change root file histogram
# look for which samples are affected
for sample in reducedsampleName:
#print "histoName = ",histoName
matchUp = bool("histo_"+str(sample)+"_"+systematicsName[numSystType]+"Up" == histoName)
matchDo = bool("histo_"+str(sample)+"_"+systematicsName[numSystType]+"Down" == histoName)
#print "histo_",str(sample),"_",systematicsName[numSystType],"Up == ",histoName
if matchUp or matchDo:
print ">> scaling ", systematicsName[numSystType]
additionalScale = float(systScaleFactor[systematicsName[numSystType]])
# what to do now?
# 1) get the nominal
nominalHist = histograms["histo_"+str(sample)]
# 2) sum the errors
diffToNominalHist = histogram
histogram.Add(nominalHist,-1.) # diff = up - nominal
# 3) scale the errors
histogram.Sumw2()
histogram.Scale(additionalScale) # diff -> diff * alpha
# 4) recreate scaled up/down histogram
histogram.Add(nominalHist,1.) # up = diff * alpha + nominal
numSystType+=1
# save new root file
for n,h in histograms.iteritems():
h.Write()
outFile.Close()
os.system ("mv "+str(thepath)+"/"+str(rootFiles[rootFileBin])+".new.root "+str(thepath)+"/"+str(rootFiles[rootFileBin]))
print "mv "+str(thepath)+"/"+str(rootFiles[rootFileBin])+".new.root "+str(thepath)+"/"+str(rootFiles[rootFileBin])
# 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)
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
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 != "shape" and systType != "shapeN2" and systType != "gmN" :
# shape already taken into account in the root file histogram
# gmN cannot be scaled properly with this method!
if systematicsName[numSystType] in systScaleFactor :
print "systematics : ",systematics[numSystType]
# now scale
tempsystematics = systematics[numSystType].split (' ')
tempsystematics = filter(lambda a: a != '', tempsystematics)
f.write (tempsystematics[0])
f.write (" ")
f.write (tempsystematics[1])
f.write (" ")
for itSampleSyst in range(len(tempsystematics)):
f.write (" ")
if itSampleSyst >=2 and tempsystematics[itSampleSyst] != "-" :
additionalScale = float(systScaleFactor[systematicsName[numSystType]])
currentValue = float(tempsystematics[itSampleSyst]) # 1.10 or 0.90
currentValue = currentValue - 1.00 #0.10 or -0.10
currentValue = currentValue * additionalScale
f.write(" ")
f.write (str(currentValue+1.00))
f.write(" ")
elif itSampleSyst >=2 :
f.write(" ")
f.write(tempsystematics[itSampleSyst])
f.write(" ")
f.write ("\n")
else :
f.write (systematics[numSystType] + '\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")
parser.add_option("-i", "--input", dest="systScale", help="systematic scaling (e.g. Wjets scaled by a factor 1.5)", default='blabla.py')
(options, args) = parser.parse_args()
ScaleOneNuisance (options.datacardInput,options.systScale)