ATLAS Offline Software
Prerec2012/ParseNonClosureInput.py
Go to the documentation of this file.
1 # Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
2 
3 from ROOT import *
4 from array import array
5 import glob
6 import re
7 import math
8 import ProviderHistoHelpers
9 
10 
11 SystematicNameDictionary = {
12  'RelativeNonClosure_AFII_AntiKt4EMTopo' : 'RelativeNonClosure_AFII'
13  }
14 
15 jetDefDict = {
16  '4EM' : 'AntiKt4Topo_EMJES',
17 # '6EM' : 'AntiKt6Topo_EMJES',
18 # '4LC' : 'AntiKt4Topo_LCJES',
19 # '6LC' : 'AntiKt6Topo_LCJES'
20  }
21 
22 def ReadNonClosureHistograms(dirName,freezepT=False):
23  if dirName.endswith(".root") :
24  files = [dirName]
25 
26  elif not dirName.endswith("/") :
27  dirName = dirName + "/"
28  files = sorted(glob.glob(dirName+"*.root"))
29 
30  # Run over each file (one per jet definition)
31  histos = {}
32  for aFileName in files:
33  # Determine the jet definition
34  jetDef = ""
35  for aFileDef,aJetDef in jetDefDict.iteritems():
36  if aFileDef in aFileName:
37  jetDef = aJetDef
38  break
39  if jetDef == "":
40  print "Failed to determine jet definition for file:",aFileName
41  return None
42  histos[jetDef] = {}
43 
44  print "Jet def is",jetDef
45 
46  # Read in the histogram from the file
47  inFile = TFile(aFileName,"READ")
48  for aName,aSystName in SystematicNameDictionary.iteritems():
49  systematicName = aSystName + "_" + jetDef
50  histo = inFile.Get(aName)
51  if histo is None:
52  print "Failed to get histogram:",systematicName
53  return None
54 
55  if freezepT :
56  # Loop over eta bins.
57  for ybin in range(histo.GetNbinsY()+2) :
58  # Loop out in pT.
59  freezeval = 0
60  for xbin in range(histo.GetNbinsX()+2) :
61  inbin = histo.GetBinContent(xbin,ybin)
62  #print "Bin at pT ",histo.GetXaxis().GetBinCenter(xbin)," and [ylow,y,yhigh] = ", binYLow, histo.GetYaxis().GetBinCenter(ybin), binYHigh
63  # Store bin contents as we go out: last one is one we want as frozen value.
64  if inbin > -0.5 :
65  freezeval = inbin
66  else :
67  histo.SetBinContent(xbin,ybin,freezeval)
68 
69 
70  histoSym = ProviderHistoHelpers.SymmetrizeHistoInEta(histo,systematicName)
71  histoSym.SetDirectory(0)
72  histos[jetDef][aSystName] = histoSym
73 
74  # Also add a blank nonclosure histo for Pythia8
75  # Also add a blank Closeby histo for both AFII and Pythia8
77  histos[jetDef]["RelativeNonClosure_MC15"] = ProviderHistoHelpers.MakeProviderHisto("RelativeNonClosure_MC15",ptBins=[15,1000,2500],etaBins=etaBins)
78  histos[jetDef]["RelativeNonClosure_MC15"].SetDirectory(0)
79  histos[jetDef]["CloseBy_Pythia8"] = ProviderHistoHelpers.MakeProviderHisto("CloseBy_MC15",ptBins=[15,1000,2500],etaBins=etaBins)
80  histos[jetDef]["CloseBy_Pythia8"].SetDirectory(0)
81  histos[jetDef]["CloseBy_AFII"] = ProviderHistoHelpers.MakeProviderHisto("CloseBy_AFII",ptBins=[15,1000,2500],etaBins=etaBins)
82  histos[jetDef]["CloseBy_AFII"].SetDirectory(0)
83 
84  # Done reading, close the file
85  inFile.Close()
86 
87  return histos
ParseNonClosureInput.ReadNonClosureHistograms
def ReadNonClosureHistograms(dirName)
Definition: Final2012/ParseNonClosureInput.py:22
max
#define max(a, b)
Definition: cfImp.cxx:41
ProviderHistoHelpers.GetDefaultEtaBins
def GetDefaultEtaBins()
Definition: Final2012/ProviderHistoHelpers.py:18
ProviderHistoHelpers.MakeProviderHisto
def MakeProviderHisto(histoName, ptBins=GetDefaultPtBins(), etaBins=GetDefaultEtaBins())
Definition: Final2012/ProviderHistoHelpers.py:40
plotBeamSpotVxVal.range
range
Definition: plotBeamSpotVxVal.py:195
ProviderHistoHelpers.SymmetrizeHistoInEta
def SymmetrizeHistoInEta(histo, histoName)
Definition: Final2012/ProviderHistoHelpers.py:127
DerivationFramework::TriggerMatchingUtils::sorted
std::vector< typename T::value_type > sorted(T begin, T end)
Helper function to create a sorted vector from an unsorted one.
min
#define min(a, b)
Definition: cfImp.cxx:40
RCU::SetDirectory
bool SetDirectory(TObject *object, TDirectory *directory)
effects: set the directory this object is associated with returns: whether the object type actively k...
Definition: RootUtils.cxx:28