CMS 3D CMS Logo

ValidationUtils.py
Go to the documentation of this file.
1 from __future__ import print_function
2 import FWCore.ParameterSet.Config as cms
3 import copy
4 
5 def CreatePlotEntry(analyzer, discriminatorLabel=None, step=True):
6  """CreatePlotEntry(analyzer, discriminatorLabel)\n
7  Creates a PSet with the informations used by TauDQMHistEffProducer\n
8  where to find the numerator and denominator\n
9  where to put the new plot and how to name it\n
10  which variables control"""
11 
12  producer = analyzer.TauProducer.pythonValue()[1:-1]
13  ext = analyzer.ExtensionName.pythonValue()[1:-1]
14  if discriminatorLabel == None:
15  num = 'RecoTauV/%s%s_Matched/%sMatched_vs_#PAR#TauVisible'%(producer,ext,producer)
16  out = 'RecoTauV/%s%s_Matched/PFJetMatchingEff#PAR#'%(producer,ext)
17  else:
18  num = 'RecoTauV/%s%s_%s/%s_vs_#PAR#TauVisible'%(producer,ext,discriminatorLabel,discriminatorLabel)
19  if discriminatorLabel.find('DiscriminationBy') != -1:
20  hname = discriminatorLabel[(discriminatorLabel.find('DiscriminationBy')+len('DiscriminationBy')):]
21  else:
22  hname = discriminatorLabel[(discriminatorLabel.find('Discrimination')+len('Discrimination')):]
23  out = 'RecoTauV/%s%s_%s/%sEff#PAR#'%(producer,ext,discriminatorLabel,hname)
24 
25  den = 'RecoTauV/%s%s_ReferenceCollection/nRef_Taus_vs_#PAR#TauVisible'%(producer,ext)
26  ret = cms.PSet(
27  numerator = cms.string(num),
28  denominator = cms.string(den),
29  efficiency = cms.string(out),
30  parameter = cms.vstring('pt', 'eta', 'phi', 'pileup'),
31  stepByStep = cms.bool(step)
32  )
33  return ret
34 
35 def NameVariable(analyzer, discriminatorLabel=None):
36  """NameVariable(analyzer, discriminatorLabel)\n
37  returns a string with the name of the pset created by CreatePlotEntry"""
38  #This part is messy, there is no way to directly link the producer and the name of the variable. There are more exception than rules! IF THE DISCRIMINATOR NAME CHANGES YOU HAVE TO CHANHE IT HERE TOO!
39  if analyzer.TauProducer.pythonValue()[1:-1] == 'shrinkingConePFTauProducer':
40  if analyzer.ExtensionName.pythonValue()[1:-1] == 'Tanc':
41  first='ShrinkingConeTanc'
42  elif analyzer.ExtensionName.pythonValue()[1:-1] == 'LeadingPion':
43  first='PFTauHighEfficiencyLeadingPion'
44  elif analyzer.ExtensionName.pythonValue()[1:-1] == "":
45  first='PFTauHighEfficiency'
46  else:
47  #print 'Case not found check the available cases in Validation/RecoTau/python/ValidationUtils.py -- NameVariable'
48  first=analyzer.TauProducer.pythonValue()[1:-1]+analyzer.ExtensionName.pythonValue()[1:-1]
49  elif analyzer.TauProducer.pythonValue()[1:-1] == 'hpsPFTauProducer':
50  first='HPS'
51  elif analyzer.TauProducer.pythonValue()[1:-1] == 'hpsTancTaus':
52  first='HPSTanc'+analyzer.ExtensionName.value()
53  else:
54  #print 'Case not found check the available cases in Validation/RecoTau/python/ValidationUtils.py -- NameVariable'
55  first=analyzer.TauProducer.pythonValue()[1:-1]+analyzer.ExtensionName.pythonValue()[1:-1]
56 
57  if discriminatorLabel == None:
58  last = 'Matching'
59  else:
60  if discriminatorLabel.find('DiscriminationBy') != -1:
61  last = discriminatorLabel[(discriminatorLabel.find('DiscriminationBy')+len('DiscriminationBy')):]
62  if last.find('TaNCfr') != -1:
63  last = last[len('TaNCfr'):]
64  else:
65  last = discriminatorLabel[(discriminatorLabel.find('DiscriminationAgainst')+len('DiscriminationAgainst')):]+"Rejection"
66 
67  return first+"ID"+last+"Efficiencies"
68 
69 def PlotAnalyzer(pset, analyzer):
70  """PlotAnalyzer(pset, analyzer)\n
71  fills a PSet that contains all the performance plots for a anlyzer\n
72  pset is the PSet to fill/add"""
73 
74  setattr(pset,NameVariable(analyzer),CreatePlotEntry(analyzer))
75 
76  for currentDiscriminator in analyzer.discriminators:
77  label = currentDiscriminator.discriminator.pythonValue()[1:-1]
78  step = currentDiscriminator.plotStep.value()
79  setattr(pset,NameVariable(analyzer,label),CreatePlotEntry(analyzer,label,step))
80 
81 class Scanner(object):
82  """Class to scan a sequence and give a list of analyzer used and a list of their names"""
83  def __init__(self):
84  self._analyzerRef = []
85  def enter(self,visitee):
86  self._analyzerRef.append(visitee)
87  def modules(self):
88  return self._analyzerRef
89  def leave(self, visitee):
90  pass
91 
92 def DisableQCuts(sequence):
93  scanner = Scanner()
94  sequence.visit(scanner)
95  disabled = cms.PSet(
96  isolationQualityCuts = cms.PSet(
97  minTrackHits = cms.uint32(0),
98  minTrackVertexWeight = cms.double(-1),
99  minTrackPt = cms.double(0),
100  maxTrackChi2 = cms.double(9999),
101  minTrackPixelHits = cms.uint32(0),
102  minGammaEt = cms.double(0),
103  maxDeltaZ = cms.double(0.2),
104  maxTransverseImpactParameter = cms.double(9999)
105  ),
106  pvFindingAlgo = cms.string('highestWeightForLeadTrack'),
107  primaryVertexSrc = cms.InputTag("offlinePrimaryVertices"),
108  signalQualityCuts = cms.PSet(
109  minTrackHits = cms.uint32(0),
110  minTrackVertexWeight = cms.double(-1),
111  minTrackPt = cms.double(0),
112  maxTrackChi2 = cms.double(9999),
113  minTrackPixelHits = cms.uint32(0),
114  minGammaEt = cms.double(0),
115  maxDeltaZ = cms.double(0.2),
116  maxTransverseImpactParameter = cms.double(9999)
117  )
118  )
119  for module in scanner.modules():
120  if hasattr(module,'qualityCuts'):
121  setattr(module,'qualityCuts',disabled)
122 
123 
124 def SetPlotSequence(sequence):
125  """SetSequence(seqence)\n
126  This Function return a PSet of the sequence given to be used by TauDQMHistEffProducer"""
127  pset = cms.PSet()
128  scanner = Scanner()
129  sequence.visit(scanner)
130  for analyzer in scanner.modules():#The first one is the sequence itself
131  PlotAnalyzer(pset, analyzer)
132  return pset
133 
134 def SpawnPSet(lArgument, subPset):
135  """SpawnPSet(lArgument, subPset) --> cms.PSet\n
136  lArgument is a list containing a list of three strings/values:\n
137  1-name to give to the spawned pset\n
138  2-variable(s) to be changed\n
139  3-value(s) of the variable(s): SAME LENGTH OF 2-!\n
140  Supported types: int string float(converted to double)"""
141  ret = cms.PSet()
142  for spawn in lArgument:
143  if len(spawn) != 3:
144  print("ERROR! SpawnPSet uses argument of three data\n")
145  print(self.__doc__)
146  return None
147  if len(spawn[1]) != len(spawn[2]):
148  print("ERROR! Lists of arguments to replace must have the same length")
149  print(self.__doc__)
150  return None
151  spawnArg = copy.deepcopy(subPset)
152  for par, val in zip(spawn[1],spawn[2]):
153  if isinstance(val, str) :
154  setattr(spawnArg,par,cms.string(val))
155  elif isinstance(val, int) :
156  setattr(spawnArg,par,cms.int32(val))
157  elif isinstance(val, float) :
158  setattr(spawnArg,par,cms.double(val))
159  setattr(ret,spawn[0],spawnArg)
160  return ret
161 
162 def SetpByStep(analyzer, plotPset, useOnly):
163  """SetpByStep(analyzer, plotPset) --> PSet\n
164  This function produces the parameter set stepBystep for the EDAnalyzer TauDQMHistPlotter starting from the PSet produced for TauDQMHistEffProducer and the analyzer to plot"""
165  standardEfficiencyOverlay = cms.PSet(
166  parameter = cms.vstring('pt', 'eta', 'phi', 'pileup'),
167  title = cms.string('TauId step by step efficiencies'),
168  xAxis = cms.string('#PAR#'),
169  yAxis = cms.string('efficiency'),
170  legend = cms.string('efficiency_overlay'),
171  labels = cms.vstring('pt', 'eta')
172  )
173  ret = cms.PSet(
174  standardEfficiencyOverlay,
175  plots = cms.VPSet()
176  )
177  producer = analyzer.TauProducer.pythonValue()[1:-1]
178  ext = analyzer.ExtensionName.pythonValue()[1:-1]
179  keyword = producer + ext + "_"
180  counter = 0
181  tancDisc = ['Matching','DecayModeSelection','LeadingPionPtCut','LeadingTrackFinding','LeadingTrackPtCut','Tanc','TancVLoose','TancLoose','TancMedium','TancRaw','TancTight','AgainstElectron','AgainstMuon']
182  hpsDisc = ['Matching','DecayModeSelection','LooseIsolation','MediumIsolation','TightIsolation']
183  for parName in plotPset.parameterNames_():
184  isToBePlotted = getattr(plotPset,parName).stepByStep.value()
185  if isToBePlotted:
186  effplot = getattr(plotPset,parName).efficiency.pythonValue()[1:-1]
187  discriminator = parName[parName.find('ID')+len('ID'):-len('Efficiencies')]
188  if useOnly == 'tanc':
189  useThis = discriminator in tancDisc
190  elif useOnly == 'hps':
191  useThis = discriminator in hpsDisc
192  else :
193  useThis = True
194  if (effplot.find(keyword) != -1) and useThis:
195  monEl = '#PROCESSDIR#/'+effplot
196  counter = counter + 1
197  drawOpt = 'eff_overlay0%s'%(counter)
198  psetName = effplot[effplot.rfind('/')+1:-8]
199  ret.plots.append(cms.PSet(
200  dqmMonitorElements = cms.vstring(monEl),
201  process = cms.string('test'),
202  drawOptionEntry = cms.string(drawOpt),
203  legendEntry = cms.string(psetName)
204  ))
205  return ret
206 
207 def SpawnDrawJobs(analyzer, plotPset, useOnly=None):
208  """SpwnDrawJobs(analyzer, plotPset) --> cms.PSet\n
209  This function produces the parameter set drawJobs for the EDAnalyzer TauDQMHistPlotter starting from the PSet produced for TauDQMHistEffProducer and the analyzer to plot"""
210  standardEfficiencyParameters = cms.PSet(
211  parameter = cms.vstring('pt', 'eta', 'phi', 'pileup'),
212  xAxis = cms.string('#PAR#'),
213  yAxis = cms.string('efficiency'),
214  legend = cms.string('efficiency'),
215  labels = cms.vstring('pt', 'eta'),
216  drawOptionSet = cms.string('efficiency')
217  )
218  ret = cms.PSet()
219  tancDisc = ['Matching','DecayModeSelection','LeadingPionPtCut','LeadingTrackFinding','LeadingTrackPtCut','Tanc','TancVLoose','TancLoose','TancMedium','TancRaw','TancTight','AgainstElectron','AgainstMuon']
220  hpsDisc = ['Matching','DecayModeSelection','LooseIsolation','MediumIsolation','TightIsolation']
221  producer = analyzer.TauProducer.pythonValue()[1:-1]
222  ext = analyzer.ExtensionName.pythonValue()[1:-1]
223  keyword = producer + ext + "_"
224  for parName in plotPset.parameterNames_():
225  effplot = getattr(plotPset,parName).efficiency.pythonValue()[1:-1]
226  discriminator = parName[parName.find('ID')+len('ID'):-len('Efficiencies')]
227  if useOnly == 'tanc':
228  useThis = discriminator in tancDisc
229  elif useOnly == 'hps':
230  useThis = discriminator in hpsDisc
231  else :
232  useThis = True
233  if (effplot.find(keyword) != -1) and useThis:
234  monEl = '#PROCESSDIR#/'+effplot
235  psetName = effplot[effplot.rfind('/')+1:-5]
236  psetVal = cms.PSet(
237  standardEfficiencyParameters,
238  plots = cms.PSet(
239  dqmMonitorElements = cms.vstring(monEl),
240  processes = cms.vstring('test', 'reference')
241  )
242  )
243  setattr(ret,psetName,psetVal)
244  setattr(ret,'TauIdEffStepByStep',SetpByStep(analyzer, plotPset,useOnly))
245  return ret #control if it's ok
ValidationUtils.DisableQCuts
def DisableQCuts(sequence)
Definition: ValidationUtils.py:92
resolutioncreator_cfi.object
object
Definition: resolutioncreator_cfi.py:4
ValidationUtils.Scanner
Definition: ValidationUtils.py:81
ValidationUtils.Scanner.modules
def modules(self)
Definition: ValidationUtils.py:87
ValidationUtils.SpawnDrawJobs
def SpawnDrawJobs(analyzer, plotPset, useOnly=None)
Definition: ValidationUtils.py:207
ValidationUtils.SpawnPSet
def SpawnPSet(lArgument, subPset)
Definition: ValidationUtils.py:134
ValidationUtils.Scanner.__init__
def __init__(self)
Definition: ValidationUtils.py:83
ValidationUtils.Scanner.enter
def enter(self, visitee)
Definition: ValidationUtils.py:85
print
void print(TMatrixD &m, const char *label=nullptr, bool mathematicaFormat=false)
Definition: Utilities.cc:46
mps_setup.append
append
Definition: mps_setup.py:85
ComparisonHelper::zip
OutputIterator zip(InputIterator1 first1, InputIterator1 last1, InputIterator2 first2, InputIterator2 last2, OutputIterator result, Compare comp)
Definition: L1TStage2CaloLayer1.h:41
ValidationUtils.Scanner.leave
def leave(self, visitee)
Definition: ValidationUtils.py:89
ValidationUtils.CreatePlotEntry
def CreatePlotEntry(analyzer, discriminatorLabel=None, step=True)
Definition: ValidationUtils.py:5
ValidationUtils.SetpByStep
def SetpByStep(analyzer, plotPset, useOnly)
Definition: ValidationUtils.py:162
ValidationUtils.Scanner._analyzerRef
_analyzerRef
Definition: ValidationUtils.py:84
ValidationUtils.NameVariable
def NameVariable(analyzer, discriminatorLabel=None)
Definition: ValidationUtils.py:35
ValidationUtils.PlotAnalyzer
def PlotAnalyzer(pset, analyzer)
Definition: ValidationUtils.py:69
ValidationUtils.SetPlotSequence
def SetPlotSequence(sequence)
Definition: ValidationUtils.py:124