2 from array
import array
6 import ProviderHistoHelpers
10 return [key.GetName()
for key
in gDirectory.GetListOfKeys()]
11 TFile.GetKeyNames = GetKeyNames
14 'AntiKt4EMTopo' :
'AntiKt4Topo_EMJES',
15 'AntiKt4EMPFlow' :
'AntiKt4PFlow_EMJES',
18 SystematicNameList = [
'PunchThrough_MC16',
'PunchThrough_AFII']
21 if not dirName.endswith(
"/"):
22 dirName = dirName +
"/"
25 rootFileList =
sorted(glob.glob(dirName+
"*.root"))
27 if len(rootFileList) != 1:
28 print "Found a number of root files not equal to 1 in dir:",dirName
29 print "Assume separate files for",
30 for i
in jetDefDict.keys() :
print i,
32 for aJetDef
in jetDefDict.keys() :
33 for file
in rootFileList :
35 if aJetDef
not in fileDict.keys() :
36 fileDict[aJetDef] = file
38 print "Oh no! More than one file corresponding to this jet definition:",aJetDef
41 print "Found only one root file: assume contents can be used for all jet collections."
42 for aJetDef
in jetDefDict.keys() :
43 fileDict[aJetDef] = rootFileList[0]
46 for aJetDef,aJetDefProv
in jetDefDict.iteritems():
47 rootFile = TFile(fileDict[aJetDef],
"READ")
48 histos[aJetDefProv] = {}
50 for histName
in rootFile.GetKeyNames():
51 if aJetDef
not in histName:
continue
52 for aKey
in SystematicNameList:
54 gethistName = aKey+
"_"+aJetDef
55 histo = rootFile.Get(gethistName)
57 print "Failed to get histogram:",histName
59 histo.SetName(aKey+
"_"+aJetDefProv)
72 nPTBins = histo.GetXaxis().GetNbins()
73 for bin
in range(1,nPTBins+2) :
74 binEdge = histo.GetXaxis().GetBinLowEdge(bin)
75 pTBinArray.append(binEdge)
76 pTBinArray =
array(
'd',pTBinArray)
85 nEtaBins = histo.GetZaxis().GetNbins()
86 for bin
in range(1,nEtaBins+2) :
87 binEdge = histo.GetZaxis().GetBinLowEdge(bin)
88 etaBinArray.append(binEdge)
89 etaBinArray =
array(
'd',etaBinArray)
91 nSegmentsBinArray = []
98 nNSegBins = histo.GetYaxis().GetNbins()
99 for bin
in range(1,nNSegBins+2) :
100 binEdge = histo.GetYaxis().GetBinLowEdge(bin)
101 nSegmentsBinArray.append(binEdge)
103 nSegmentsBinArray =
array(
'd',nSegmentsBinArray)
105 outhisto = TH3D(aKey+
"_"+aJetDefProv,aKey+
"_"+aJetDefProv,nPTBins,pTBinArray,nNSegBins,nSegmentsBinArray,nEtaBins,etaBinArray)
106 outhisto.SetDirectory(0)
110 for xbin
in range(histo.GetNbinsX()+2) :
111 for ybin
in range(histo.GetNbinsY()+2) :
112 for zbin
in range(histo.GetNbinsZ()+2) :
128 if histo.GetXaxis().GetBinCenter(xbin) < 50
or \
129 histo.GetZaxis().GetBinCenter(zbin) > 2.7
or \
130 histo.GetYaxis().GetBinCenter(ybin) < 20 :
131 histo.SetBinContent(xbin,ybin,zbin,0.0)
132 outhisto.SetBinContent(xbin,ybin,zbin,0.0)
134 outhisto.SetBinContent(xbin,ybin,zbin,histo.GetBinContent(xbin,ybin,zbin))
137 histos[aJetDefProv][aKey] = outhisto
141 outhisto = TH3D(aKey+
"_"+aJetDefProv,aKey+
"_"+aJetDefProv,2,15.0,4500.0,2,0.0,1000.0,2,-4.5,4.5)
142 outhisto.SetDirectory(0)
143 histos[aJetDefProv][aKey] = outhisto
147 print "Done punchthrough.\n"