-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathScaleOneSample.py
More file actions
270 lines (213 loc) · 8.81 KB
/
ScaleOneSample.py
File metadata and controls
270 lines (213 loc) · 8.81 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
#!/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 ScaleDatacard (datacardname,xsecScale) :
# 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 = []
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)
systematicsName.append (line.split (' ')[0])
# 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]
#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 " --------------------------------------------------------------- "
scaleFactor = {}
if os.path.exists(xsecScale):
handle = open(xsecScale,'r')
exec(handle)
handle.close()
print "scaleFactor = ", scaleFactor
# modify sample rate with scaleFactor (sample dependent)
newSampleRate = []
numSample = 0
for rate in sampleRate:
additionalScale = 1.
if sampleName[numSample] in scaleFactor :
additionalScale = scaleFactor[ sampleName[numSample] ]
numSample+=1
newSampleRate.append(additionalScale*float(rate))
# 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
#histograms[h.GetTitle()] = h
# modify the histograms
outFile = ROOT.TFile.Open(str(thepath)+"/"+str(rootFiles[rootFileBin]+".new.root"),'recreate')
for histoName, histogram in histograms.iteritems():
for sample in reducedsampleName:
#print "histoName = ",histoName
match = re.search("histo_"+str(sample)+"_", histoName) # comment, if "for Rebeca"
#match = re.search("histo_"+str(sample), histoName) # for Rebeca
match2 = bool("histo_"+str(sample) == histoName)
#print " match:match2 = ",match," ",match2," histoName = ",histoName, " sample = ", sample
# NB: it's a problem if there are two samples with similar names
# that differ by an "_"
# for example ggH and ggH_b
# since the matching procedure described above won't work
#
# Solution: 1) modify the code to loop over the nuisances
# 2) don't use this naming convention!
#
if match or match2:
additionalScale = 1.
if sample in scaleFactor :
additionalScale = scaleFactor[ sample ]
globalScale = additionalScale
if globalScale != 1. :
histogram.Sumw2()
histogram.Scale(globalScale)
#print "globalScale = ",globalScale
# 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 (newSampleRate)) :
f.write (str(newSampleRate[it]) + ' ')
f.write ("\n")
# systematics
f.write ("---------------------------------------------------------------------------------------------------- \n")
for it in range (len (systematics)) :
f.write (systematics[it] + '\n')
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="xsecScale", help="cross section scaling file (e.g. from 125 to 125.6 GeV Higgs mass injection)", default='blabla.py')
(options, args) = parser.parse_args()
ScaleDatacard (options.datacardInput,options.xsecScale)