2 from array
import array
9 from ParseEtaIntercalInput_detailed
import ReadEtaIntercalibrationHistograms
10 from ParseInsituInput
import ReadInSituHistograms
11 from ParsePileupInput
import ReadPileupHistograms
12 from ParseNonClosureInput
import ReadNonClosureHistograms
13 from ParseHighPtInput
import ReadHighPtHistograms,ReadHighPtHistogramsFromOldFile
14 from ParseFlavourInput
import ReadFlavourHistograms
15 from ParsebJESInput
import ReadBJESHistograms
16 from ParsePunchthroughInput
import ReadPunchthroughHistograms
17 from CopyJERHists
import ReadJERHistograms
20 from itertools
import groupby
22 return [
int(
''.
join(g))
if k
else ''.
join(g)
for k, g
in groupby(s[0], str.isdigit)]
46 freezeFlavourInPt =
False
52 print "USAGE: Expected the following arguments"
53 print " 1. InSitu directory path"
54 print " 2. Eta intercalibration directory path"
55 print " 3. Path or directory for single-particle: currently 2012 recommendation"
56 print " 4. MC nonclosure directory path"
57 print " 5. Pileup directory path"
58 print " 6. Flavour directory path"
59 print " 7. bJES directory path"
60 print " 8. Punchthrough directory path"
63 outBaselineFile =
"JESUncertainty_AllComponents_{0}.root"
64 inSituDir = sys.argv[1]
65 etaIntercalDir = sys.argv[2]
66 highPtDir = sys.argv[3]
67 nonclosureDir = sys.argv[4]
68 pileupDir = sys.argv[5]
69 flavourDir = sys.argv[6]
71 punchthroughDir = sys.argv[8]
72 oldJERFile = sys.argv[9]
75 if not outBaselineFile.endswith(
".root"):
76 print "Output baseline ROOT file doesn't appear to be a root file:",outBaselineFile
78 if not os.path.exists(inSituDir):
79 print "InSitu directory does not exist:",inSituDir
81 if not os.path.exists(etaIntercalDir):
82 print "Eta intercalibration directory does not exist:",etaIntercalDir
84 if not os.path.exists(highPtDir):
85 print "HighPt directory does not exist:",highPtDir
87 if not os.path.exists(nonclosureDir):
88 print "MC nonclosure directory does not exist:",nonclosureDir
90 if not os.path.exists(pileupDir):
91 print "Pileup directory does not exist:",pileupDir
93 if not os.path.exists(flavourDir):
94 print "Flavour directory does not exist:",flavourDir
96 if not os.path.exists(bJESDir):
97 print "bJES directory does not exist:",bJESDir
99 if not os.path.exists(punchthroughDir):
100 print "Punchthrough directory does not exist:",punchthroughDir
102 if not os.path.exists(oldJERFile) :
103 print "You need to specify a file to pick up JER from!",oldJERFile
106 currentDir = gDirectory
110 print "Reading inputs..."
126 print "Merging inputs..."
127 jetDefs = {
"AntiKt4Topo_EMJES" :
"AntiKt4EMTopo",
'AntiKt4PFlow_EMJES' :
'AntiKt4EMPFlow'}
130 for years
in (
"2015_16",
"2017") :
131 systematics[years] = {}
132 for aJetDef
in jetDefs.keys():
134 etaIntercalHistos_timeDep = etaIntercalHistos_2017
if "2017" in years
else etaIntercalHistos_20152016
136 systematics[years][aJetDef] = dict(
137 inSituHistos[aJetDef].
items() +
138 etaIntercalHistos_timeDep[aJetDef].
items() +
139 etaIntercalHistos_general[aJetDef].
items() +
140 highPtHistos[aJetDef].
items() +
141 nonclosureHistos[aJetDef].
items() +
142 pileupHistos[aJetDef].
items() +
143 flavourHistos[aJetDef].
items() +
144 bJESHistos[aJetDef].
items() +
145 punchthroughHistos[aJetDef].
items()
150 for years
in (
"2015_16",
"2017") :
151 outFileName = outBaselineFile.format(years)
152 print "Writing to output file",outFileName,
"..."
153 baselineFile = TFile(outFileName,
"RECREATE")
154 theseHists = systematics[years]
155 for aJetDef,aSyst
in sorted(theseHists.iteritems(),key=natural_sort):
156 for aSystName,aSystHisto
in sorted(aSyst.iteritems(),key=natural_sort):
158 aSystHisto.SetTitle(aSystName+
"_"+jetDefs[aJetDef])
159 aSystHisto.Write(aSystHisto.GetTitle())
162 for aJetDef,aSyst
in sorted(JERHistos.iteritems(),key=natural_sort):
163 for aSystName,aSystHisto
in sorted(aSyst.iteritems(),key=natural_sort):
164 aSystHisto.SetTitle(aSystName+
"_"+jetDefs[aJetDef])
165 aSystHisto.Write(aSystHisto.GetTitle())
169 gDirectory = currentDir