Loading [MathJax]/extensions/tex2jax.js
ATLAS Offline Software
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
TrigEgammaPrecisionElectronHypoTool.py
Go to the documentation of this file.
1 #
2 # Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
3 #
4 from AthenaCommon.SystemOfUnits import GeV
5 from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator
6 from AthenaConfiguration.ComponentFactory import CompFactory
7 from AthenaMonitoringKernel.GenericMonitoringTool import GenericMonitoringTool
8 
9 from ROOT import egammaPID
10 
11 def same( val , tool):
12  return [val]*( len( tool.EtaBins ) - 1 )
13 
14 #
15 # Create the hypo alg with all selectors
16 #
17 def createTrigEgammaPrecisionElectronHypoAlg(flags, name, sequenceOut):
18  acc = ComponentAccumulator()
19  monTool = GenericMonitoringTool(flags, "MonTool_"+name,
20  HistPath = 'PrecisionElectronHypo/'+name)
21 
22  acc_ElectronCBSelectorTools = TrigEgammaPrecisionElectronCBSelectorCfg(flags)
23  acc_ElectronLHSelectorTools = TrigEgammaPrecisionElectronLHSelectorCfg(flags)
24  acc_ElectronDNNSelectorTools = TrigEgammaPrecisionElectronDNNSelectorCfg(flags)
25 
26  acc.merge(acc_ElectronCBSelectorTools)
27  acc.merge(acc_ElectronLHSelectorTools)
28  acc.merge(acc_ElectronDNNSelectorTools)
29 
30  thePrecisionElectronHypo = CompFactory.TrigEgammaPrecisionElectronHypoAlg(name)
31  thePrecisionElectronHypo.Electrons = str(sequenceOut)
32  thePrecisionElectronHypo.RunInView = True
33  thePrecisionElectronHypo.ElectronCBSelectorTools = acc_ElectronCBSelectorTools.getPublicTools()
34  thePrecisionElectronHypo.ElectronLHSelectorTools = acc_ElectronLHSelectorTools.getPublicTools()
35  thePrecisionElectronHypo.ElectronDNNSelectorTools = acc_ElectronDNNSelectorTools.getPublicTools()
36  thePrecisionElectronHypo.CBNames = ["medium", "loose", "mergedtight"] # just like the pidnames
37  thePrecisionElectronHypo.LHNames = ["lhtight", "lhmedium", "lhloose", "lhvloose",
38  "lhtight_nopix", "lhmedium_nopix","lhloose_nopix","lhvloose_nopix",
39  "lhtight_nogsf", "lhmedium_nogsf","lhloose_nogsf","lhvloose_nogsf",
40  "lhtight_nogsf_nopix", "lhmedium_nogsf_nopix","lhloose_nogsf_nopix","lhvloose_nogsf_nopix"] # just like the pidnames
41  thePrecisionElectronHypo.DNNNames = ["dnntight", "dnnmedium", "dnnloose"] # just like the pidnames
42  monTool.defineHistogram('TIME_exec', type='TH1F', path='EXPERT', title="Precision Electron Hypo Algtime; time [ us ] ; Nruns", xbins=80, xmin=0.0, xmax=8000.0)
43  monTool.defineHistogram('TIME_LH_exec', type='TH1F', path='EXPERT', title="Precision Electron Hypo LH Algtime; time [ us ] ; Nruns", xbins=20, xmin=0.0, xmax=2000)
44  monTool.defineHistogram('TIME_DNN_exec', type='TH1F', path='EXPERT', title="Precision Electron Hypo DNN Algtime; time [ us ] ; Nruns", xbins=20, xmin=0.0, xmax=2000)
45 
46  thePrecisionElectronHypo.MonTool=monTool
47 
48  return thePrecisionElectronHypo, acc
49 
50 def TrigEgammaPrecisionElectronHypoAlgCfg(flags, name, inputElectronCollection ):
51  acc = ComponentAccumulator()
52  hypo_tuple = createTrigEgammaPrecisionElectronHypoAlg( flags, name, inputElectronCollection )
53  hypo_alg = hypo_tuple[0]
54  hypo_acc = hypo_tuple[1]
55  acc.addEventAlgo( hypo_alg )
56  acc.merge(hypo_acc)
57  return acc
58 
60 
61 
62  __operation_points = [ 'tight' ,
63  'medium' ,
64  'loose' ,
65  'vloose' ,
66  'lhtight' ,
67  'lhmedium' ,
68  'lhloose' ,
69  'lhvloose' ,
70  'lhtight_nopix' ,
71  'lhmedium_nopix' ,
72  'lhloose_nopix' ,
73  'lhvloose_nopix' ,
74  'lhtight_nogsf' ,
75  'lhmedium_nogsf' ,
76  'lhloose_nogsf' ,
77  'lhvloose_nogsf' ,
78  'lhtight_nogsf_nopix' ,
79  'lhmedium_nogsf_nopix' ,
80  'lhloose_nogsf_nopix' ,
81  'lhvloose_nogsf_nopix' ,
82  'dnntight' ,
83  'dnnmedium',
84  'dnnloose' ,
85  'mergedtight',
86  'nopid',
87  ]
88 
89  __operation_points_lhInfo = [
90  'nopix'
91  ]
92 
93  __operation_points_gsfInfo = [
94  'nogsf'
95  ]
96 
97  # isolation cuts:w
98  __isolationCut = {
99  None: None,
100  'ivarloose': 0.15,
101  'ivarmedium': 0.065,
102  'ivartight': 0.06
103  }
104 
105  # LRT d0 cuts
106  __lrtD0Cut = {
107  '': -1.,
108  None: None,
109  'lrtloose':2.0,
110  'lrtmedium':3.0,
111  'lrttight':5.,
112  'lrtxtight':10.0,
113  'lrtvxtight':20.0
114  }
115 
116 
117  def __init__(self, name, monGroups, cpart, tool=None):
118 
119  from AthenaCommon.Logging import logging
120  self.__log = logging.getLogger('TrigEgammaPrecisionElectronHypoTool')
121  self.__name = name
122  self.__threshold = float(cpart['threshold'])
123  self.__sel = cpart['addInfo'][0] if cpart['addInfo'] else cpart['IDinfo']
124  self.__iso = cpart['isoInfo']
125  self.__d0 = cpart['lrtInfo']
126  self.__gsfInfo = cpart['gsfInfo']
127  self.__lhInfo = cpart['lhInfo']
128  self.__monGroups = monGroups
129 
130  if not tool:
131  from AthenaConfiguration.ComponentFactory import CompFactory
132  tool = CompFactory.TrigEgammaPrecisionElectronHypoTool( name )
133 
134  tool.EtaBins = [0.0, 0.6, 0.8, 1.15, 1.37, 1.52, 1.81, 2.01, 2.37, 2.47]
135  tool.ETthr = same( self.__threshold*GeV, tool )
136  tool.dETACLUSTERthr = 0.1
137  tool.dPHICLUSTERthr = 0.1
138  tool.RelPtConeCut = -999
139  tool.PidName = ""
140  tool.d0Cut = -1
141  tool.AcceptAll = False
142  tool.DoNoPid = False
143  tool.IsoValidation = False
144  self.__tool = tool
145 
146  self.__log.debug( 'Electron_Chain :%s', self.__name )
147  self.__log.debug( 'Electron_Threshold :%s', self.__threshold )
148  self.__log.debug( 'Electron_Pidname :%s', self.pidname() )
149  self.__log.debug( 'Electron_iso :%s', self.__iso )
150  self.__log.debug( 'Electron_d0 :%s', self.__d0 )
151 
152  def chain(self):
153  return self.__name
154 
155  #
156  # Get the pidname
157  #
158  def pidname( self ):
159  # if LLH, we should append the LH extra information if exist
160  pidname = self.__sel
161 
162  extra = ""
163  if 'lh' in self.__sel and self.__gsfInfo and self.__gsfInfo in self.__operation_points_gsfInfo:
164  extra += '_' + self.__gsfInfo
165  if 'lh' in self.__sel and self.__lhInfo and self.__lhInfo in self.__operation_points_lhInfo:
166  extra += '_' + self.__lhInfo
167 
168  return pidname+extra
169 
170  def etthr(self):
171  return self.__threshold
172 
173  def isoInfo(self):
174  return self.__iso
175 
176  def d0Info(self):
177  return self.__d0
178 
179  def gsfInfo(self):
180  return self.__gsfInfo
181 
182  def tool(self):
183  return self.__tool
184 
185  def nocut(self):
186 
187  self.__log.debug( 'Configure nocut' )
188  self.tool().ETthr = same( self.etthr()*GeV, self.tool())
189  self.tool().dETACLUSTERthr = 9999.
190  self.tool().dPHICLUSTERthr = 9999.
191 
192  def noPid(self):
193 
194  self.tool().DoNoPid = True
195  self.__log.debug( 'Configure noPid' )
196  self.tool().ETthr = same( self.etthr()*GeV, self.tool())
197  # No other cuts applied
198  self.tool().dETACLUSTERthr = 9999.
199  self.tool().dPHICLUSTERthr = 9999.
200 
201  #
202  # LRT extra cut
203  #
204  def addLRTCut(self):
205  if not self.d0Info() in self.__lrtD0Cut:
206  self.__log.fatal(f"Bad LRT selection name: {self.d0Info()}")
207  self.__tool.d0Cut = self.__lrtD0Cut[self.d0Info()]
208 
209  def acceptAll(self):
210  self.tool().AcceptAll = True
211  #
212  # Isolation extra cut
213  #
214  def addIsoCut(self,flags):
215  if not self.isoInfo() in self.__isolationCut:
216  self.__log.fatal(f"Bad Iso selection name: {self.isoInfo()}")
217  if flags.Trigger.egamma.isoValidation:
218  self.tool().IsoValidation = flags.Trigger.egamma.isoValidation
219  valIsoCut = {None: None,'ivarloose': 0.15,'ivarmedium': 0.065,'ivartight': 0.06}
220  self.tool().RelPtConeCut = valIsoCut[self.isoInfo()]
221  else:
222  self.tool().RelPtConeCut = self.__isolationCut[self.isoInfo()]
223 
224 
225 
226 
227  def nominal(self):
228  if not self.pidname() in self.__operation_points:
229  self.__log.fatal("Bad selection name: %s" % self.pidname())
230  self.tool().PidName = self.pidname()
231 
232 
233  #
234  # Compile the chain
235  #
236  def compile(self, flags):
237 
238  if 'nocut' == self.pidname():
239  self.nocut()
240  elif 'nopid' == self.pidname():
241  self.noPid()
242  else: # nominal chain using pid selection
243  self.nominal()
244 
245 
246  # secundary cut configurations
247  if self.isoInfo() and self.isoInfo()!="":
248  self.addIsoCut(flags)
249  if self.d0Info() and self.d0Info()!="":
250  self.addLRTCut()
251 
252 
253  if hasattr(self.tool(), "MonTool"):
254 
255  doValidationMonitoring = flags.Trigger.doValidationMonitoring # True to monitor all chains for validation purposes
256  monGroups = self.__monGroups
257 
258  if (any('egammaMon:online' in group for group in monGroups) or doValidationMonitoring):
259  self.addMonitoring(flags)
260 
261 
262  #
263  # Create the monitoring code
264  #
265  def addMonitoring(self, flags):
266 
267  monTool = GenericMonitoringTool(flags, "MonTool_"+self.chain(),HistPath = 'PrecisionElectronHypo/'+self.chain())
268  monTool.defineHistogram('dEta', type='TH1F', path='EXPERT', title="PrecisionElectron Hypo #Delta#eta_{EF L1}; #Delta#eta_{EF L1}", xbins=80, xmin=-0.01, xmax=0.01)
269  monTool.defineHistogram('dPhi', type='TH1F', path='EXPERT', title="PrecisionElectron Hypo #Delta#phi_{EF L1}; #Delta#phi_{EF L1}", xbins=80, xmin=-0.01, xmax=0.01)
270  monTool.defineHistogram('Et_em', type='TH1F', path='EXPERT', title="PrecisionElectron Hypo cluster E_{T}^{EM};E_{T}^{EM} [MeV]", xbins=50, xmin=-2000, xmax=100000)
271  monTool.defineHistogram('Eta', type='TH1F', path='EXPERT', title="PrecisionElectron Hypo entries per Eta;Eta", xbins=100, xmin=-2.5, xmax=2.5)
272  monTool.defineHistogram('Phi', type='TH1F', path='EXPERT', title="PrecisionElectron Hypo entries per Phi;Phi", xbins=128, xmin=-3.2, xmax=3.2)
273  monTool.defineHistogram('EtaBin', type='TH1I', path='EXPERT', title="PrecisionElectron Hypo entries per Eta bin;Eta bin no.", xbins=11, xmin=-0.5, xmax=10.5)
274  monTool.defineHistogram('LikelihoodRatio', type='TH1F', path='EXPERT', title="PrecisionElectron Hypo LH", xbins=100, xmin=-5, xmax=5)
275  monTool.defineHistogram('mu', type='TH1F', path='EXPERT', title="Average interaction per crossing", xbins=100, xmin=0, xmax=100)
276  monTool.defineHistogram('relptvarcone20',type='TH1F',path='EXPERT',title= "PrecisionElectron Hypo; ptvarcone20/pt;", xbins=50, xmin=0, xmax=2)
277  monTool.defineHistogram('relptvarcone30',type='TH1F',path='EXPERT',title= "PrecisionElectron Hypo; ptvarcone30/pt;", xbins=50, xmin=0, xmax=2)
278  monTool.defineHistogram('ptvarcone20',type='TH1F',path='EXPERT',title= "PrecisionElectron Hypo ptvarcone20; ptvarcone20;", xbins=50, xmin=0, xmax=5.0)
279  monTool.defineHistogram('ptvarcone30',type='TH1F',path='EXPERT',title= "PrecisionElectron Hypo ptvarcone30; ptvarcone30;", xbins=50, xmin=0, xmax=5.0)
280 
281 
282  cuts=['Input','#Delta #eta EF-L1', '#Delta #phi EF-L1','eta','E_{T}^{EM}','LH','Isolation']
283  monTool.defineHistogram('CutCounter', type='TH1I', path='EXPERT', title="PrecisionElectron Hypo Cut Counter;Cut Counter", xbins=7, xmin=0, xmax=7, opt="kCumulative",xlabels=cuts)
284 
285 
286 
287  if flags.Trigger.doValidationMonitoring:
288  monTool.defineHistogram('relptcone20',type='TH1F',path='EXPERT',title= "PrecisionElectron Hypo; ptcone20/pt;", xbins=50, xmin=0, xmax=2)
289  monTool.defineHistogram('relptcone30',type='TH1F',path='EXPERT',title= "PrecisionElectron Hypo; ptcone30/pt;", xbins=50, xmin=0, xmax=2)
290  monTool.defineHistogram('ptcone20',type='TH1F',path='EXPERT',title= "PrecisionElectron Hypo ptcone20; ptcone20;", xbins=50, xmin=0, xmax=5.0)
291  monTool.defineHistogram('ptcone30',type='TH1F',path='EXPERT',title= "PrecisionElectron Hypo ptcone30; ptcone30;", xbins=50, xmin=0, xmax=5.0)
292  monTool.defineHistogram('trk_d0', type="TH1F", path='EXPERT', title="PrecisionElectron Hypo Track d0; d0 [mm]", xbins=100, xmin=-1, xmax=1)
293 
294  self.tool().MonTool = monTool
295 
296 
297 def _IncTool(flags, name, monGroups, cpart, tool=None):
298  config = TrigEgammaPrecisionElectronHypoToolConfig(name, monGroups, cpart, tool=tool)
299  config.compile(flags)
300  return config.tool()
301 
302 
303 
305  """ Use menu decoded chain dictionary to configure the tool """
306  cparts = [i for i in d['chainParts'] if ((i['signature']=='Electron') or (i['signature']=='Electron'))]
307  return _IncTool( flags, d['chainName'], d['monGroups'], cparts[0] , tool=tool )
308 
309 
310 
311 
312 #
313 # Electron DNN Selectors
314 #
315 def TrigEgammaPrecisionElectronDNNSelectorCfg(flags, name='TrigEgammaPrecisionElectronDNNSelector', ConfigFilePath=None):
316  acc = ComponentAccumulator()
317  # We should include the DNN here
318  if not ConfigFilePath:
319  ConfigFilePath = flags.Trigger.egamma.dnnVersion
320 
321  import collections.abc
322  SelectorNames = collections.OrderedDict({
323  'dnntight' :'AsgElectronDNNTightSelector',
324  'dnnmedium' :'AsgElectronDNNMediumSelector',
325  'dnnloose' :'AsgElectronDNNLooseSelector',
326  })
327 
328  ElectronToolConfigFile = collections.OrderedDict({
329  'dnntight' :'ElectronDNNMulticlassTight.conf',
330  'dnnmedium' :'ElectronDNNMulticlassMedium.conf',
331  'dnnloose' :'ElectronDNNMulticlassLoose.conf',
332  })
333 
334  for dnnname, name in SelectorNames.items():
335  SelectorTool = CompFactory.AsgElectronSelectorTool(name)
336  SelectorTool.ConfigFile = ConfigFilePath + '/' + ElectronToolConfigFile[dnnname]
337  SelectorTool.skipDeltaPoverP = True
338  acc.addPublicTool(SelectorTool)
339 
340  return acc
341 
342 #
343 # Electron LH Selectors
344 #
345 def TrigEgammaPrecisionElectronLHSelectorCfg(flags, name='TrigEgammaPrecisionElectronLHSelector', ConfigFilePath=None, ConfigFileNoPixPath=None, ConfigFileNoGSFPath=None, ConfigFileNoGSFNoPixPath=None):
346 
347  # Configure the LH selectors
348  acc = ComponentAccumulator()
349 
350  # Must be careful that order matches LHNames at the start of the file!
351  import collections.abc
352  SelectorConfigFiles = collections.OrderedDict({
353  'lhtight' : 'ElectronLikelihoodTightTriggerConfig',
354  'lhmedium' : 'ElectronLikelihoodMediumTriggerConfig',
355  'lhloose' : 'ElectronLikelihoodLooseTriggerConfig',
356  'lhvloose' : 'ElectronLikelihoodVeryLooseTriggerConfig'
357  })
358 
359  VariationConfigInfos = collections.OrderedDict({
360  '_default' : {},
361  '_nopix' : {},
362  '_nogsf' : {},
363  '_nogsf_nopix' : {}
364  })
365 
366  VariationConfigInfos['_default']['postfix'] = ''
367  VariationConfigInfos['_nopix']['postfix'] = '_NoPix'
368  VariationConfigInfos['_nogsf']['postfix'] = ''
369  VariationConfigInfos['_nogsf_nopix']['postfix'] = '_NoPix'
370 
371  VariationConfigInfos['_default']['path'] = ConfigFilePath if ConfigFilePath else flags.Trigger.egamma.electronPidVersion
372  VariationConfigInfos['_nopix']['path'] = ConfigFileNoPixPath if ConfigFileNoPixPath else flags.Trigger.egamma.electronNoPixPidVersion
373  VariationConfigInfos['_nogsf']['path'] = ConfigFileNoGSFPath if ConfigFileNoGSFPath else flags.Trigger.egamma.electronNoGSFPidVersion
374  VariationConfigInfos['_nogsf_nopix']['path'] = ConfigFileNoGSFNoPixPath if ConfigFileNoGSFNoPixPath else flags.Trigger.egamma.electronNoGSFNoPixPidVersion
375 
376  from AthenaCommon.Logging import logging
377  log = logging.getLogger('TrigEgammaPrecisionElectronHypoTool')
378  log.debug( 'TrigEgammaPrecisionElectronLHSelectorCfg, order of LH tools:' )
379 
380  for pidvar, config in VariationConfigInfos.items():
381  for pidname, configfilebase in SelectorConfigFiles.items():
382  fullpidname = pidname if pidvar == '_default' else pidname + pidvar
383  toolname = 'AsgElectronSelector_' + fullpidname
384  configfile = config['path'] + '/' + configfilebase + config['postfix'] + '.conf'
385  skipdeltapcheck = True if 'nogsf' in pidvar else False
386 
387  log.debug( ' --> %s, config file: %s', fullpidname, configfile )
388 
389  SelectorTool = CompFactory.AsgElectronLikelihoodTool(toolname)
390  SelectorTool.ConfigFile = configfile
391  SelectorTool.usePVContainer = False
392  SelectorTool.skipDeltaPoverP = skipdeltapcheck
393  acc.addPublicTool(SelectorTool)
394 
395  return acc
396 
397 
398 #
399 # Electron CB Selectors
400 #
401 
402 def TrigEgammaPrecisionElectronCBSelectorCfg(flags, name='TrigEgammaPrecisionElectronCBSelector', ConfigFilePath=None):
403  acc = ComponentAccumulator()
404  from ElectronPhotonSelectorTools.TrigEGammaPIDdefs import BitDefElectron
405 
406  ElectronLooseHI = (0
407  | 1 << BitDefElectron.ClusterEtaRange_Electron
408  | 1 << BitDefElectron.ClusterHadronicLeakage_Electron
409  | 1 << BitDefElectron.ClusterMiddleEnergy_Electron
410  | 1 << BitDefElectron.ClusterMiddleEratio37_Electron
411  | 1 << BitDefElectron.ClusterMiddleWidth_Electron
412  | 1 << BitDefElectron.ClusterStripsWtot_Electron
413  )
414 
415  ElectronMediumHI = (ElectronLooseHI
416  | 1 << BitDefElectron.ClusterMiddleEratio33_Electron
417  | 1 << BitDefElectron.ClusterBackEnergyFraction_Electron
418  | 1 << BitDefElectron.ClusterStripsEratio_Electron
419  | 1 << BitDefElectron.ClusterStripsDeltaEmax2_Electron
420  | 1 << BitDefElectron.ClusterStripsDeltaE_Electron
421  | 1 << BitDefElectron.ClusterStripsFracm_Electron
422  | 1 << BitDefElectron.ClusterStripsWeta1c_Electron
423  )
424 
425  if not ConfigFilePath:
426  ConfigFilePath = flags.Trigger.egamma.electronHIPidVersion
427 
428  from collections import OrderedDict
429  SelectorNames = OrderedDict({
430  'medium': 'AsgElectronIsEMSelectorHIMedium',
431  'loose': 'AsgElectronIsEMSelectorHILoose',
432  'mergedtight' : 'AsgElectronIsEMSelectorMergedTight',
433  })
434 
435  ElectronToolConfigFile = {
436  'medium': 'ElectronIsEMMediumSelectorCutDefs.conf',
437  'loose': 'ElectronIsEMLooseSelectorCutDefs.conf',
438  'mergedtight' : 'ElectronIsEMMergedTightSelectorCutDefs.conf',
439  }
440 
441  ElectronMaskBits = {
442  'medium': ElectronMediumHI,
443  'loose': ElectronLooseHI,
444  'mergedtight' : egammaPID.ElectronTightHLT,
445  }
446 
447  for sel, name in SelectorNames.items():
448  SelectorTool = CompFactory.AsgElectronIsEMSelector(name)
449  SelectorTool.ConfigFile = ConfigFilePath + '/' + ElectronToolConfigFile[sel]
450  SelectorTool.isEMMask = ElectronMaskBits[sel]
451  acc.addPublicTool(SelectorTool)
452 
453  return acc
python.TrigEgammaPrecisionElectronHypoTool.TrigEgammaPrecisionElectronHypoToolConfig.__operation_points_lhInfo
__operation_points_lhInfo
Definition: TrigEgammaPrecisionElectronHypoTool.py:89
python.TrigEgammaPrecisionElectronHypoTool.TrigEgammaPrecisionElectronHypoToolConfig.__operation_points_gsfInfo
__operation_points_gsfInfo
Definition: TrigEgammaPrecisionElectronHypoTool.py:93
python.TrigEgammaPrecisionElectronHypoTool.TrigEgammaPrecisionElectronHypoToolConfig.__lhInfo
__lhInfo
Definition: TrigEgammaPrecisionElectronHypoTool.py:127
python.TrigEgammaPrecisionElectronHypoTool.TrigEgammaPrecisionElectronHypoToolConfig.__threshold
__threshold
Definition: TrigEgammaPrecisionElectronHypoTool.py:122
python.TrigEgammaPrecisionElectronHypoTool.TrigEgammaPrecisionElectronHypoToolConfig.tool
def tool(self)
Definition: TrigEgammaPrecisionElectronHypoTool.py:182
SystemOfUnits
python.TrigEgammaPrecisionElectronHypoTool.TrigEgammaPrecisionElectronHypoToolConfig.chain
def chain(self)
Definition: TrigEgammaPrecisionElectronHypoTool.py:152
python.TrigEgammaPrecisionElectronHypoTool.TrigEgammaPrecisionElectronHypoToolConfig.__isolationCut
__isolationCut
Definition: TrigEgammaPrecisionElectronHypoTool.py:98
python.TrigEgammaPrecisionElectronHypoTool.same
def same(val, tool)
Definition: TrigEgammaPrecisionElectronHypoTool.py:11
python.JetAnalysisCommon.ComponentAccumulator
ComponentAccumulator
Definition: JetAnalysisCommon.py:302
python.TrigEgammaPrecisionElectronHypoTool.TrigEgammaPrecisionElectronHypoToolConfig.__d0
__d0
Definition: TrigEgammaPrecisionElectronHypoTool.py:125
python.TrigEgammaPrecisionElectronHypoTool.TrigEgammaPrecisionElectronHypoToolConfig.acceptAll
def acceptAll(self)
Definition: TrigEgammaPrecisionElectronHypoTool.py:209
python.TrigEgammaPrecisionElectronHypoTool.createTrigEgammaPrecisionElectronHypoAlg
def createTrigEgammaPrecisionElectronHypoAlg(flags, name, sequenceOut)
Definition: TrigEgammaPrecisionElectronHypoTool.py:17
python.TrigEgammaPrecisionElectronHypoTool.TrigEgammaPrecisionElectronHypoToolConfig.__monGroups
__monGroups
Definition: TrigEgammaPrecisionElectronHypoTool.py:128
python.TrigEgammaPrecisionElectronHypoTool.TrigEgammaPrecisionElectronHypoToolConfig.nocut
def nocut(self)
Definition: TrigEgammaPrecisionElectronHypoTool.py:185
python.TrigEgammaPrecisionElectronHypoTool.TrigEgammaPrecisionElectronHypoToolConfig.__iso
__iso
Definition: TrigEgammaPrecisionElectronHypoTool.py:124
python.TrigEgammaPrecisionElectronHypoTool.TrigEgammaPrecisionElectronHypoToolConfig
Definition: TrigEgammaPrecisionElectronHypoTool.py:59
python.TrigEgammaPrecisionElectronHypoTool.TrigEgammaPrecisionElectronHypoToolConfig.compile
def compile(self, flags)
Definition: TrigEgammaPrecisionElectronHypoTool.py:236
python.TrigEgammaPrecisionElectronHypoTool.TrigEgammaPrecisionElectronHypoAlgCfg
def TrigEgammaPrecisionElectronHypoAlgCfg(flags, name, inputElectronCollection)
Definition: TrigEgammaPrecisionElectronHypoTool.py:50
python.TrigEgammaPrecisionElectronHypoTool.TrigEgammaPrecisionElectronHypoToolConfig.__tool
__tool
Definition: TrigEgammaPrecisionElectronHypoTool.py:144
python.TrigEgammaPrecisionElectronHypoTool.TrigEgammaPrecisionElectronHypoToolConfig.d0Info
def d0Info(self)
Definition: TrigEgammaPrecisionElectronHypoTool.py:176
python.TrigEgammaPrecisionElectronHypoTool.TrigEgammaPrecisionElectronLHSelectorCfg
def TrigEgammaPrecisionElectronLHSelectorCfg(flags, name='TrigEgammaPrecisionElectronLHSelector', ConfigFilePath=None, ConfigFileNoPixPath=None, ConfigFileNoGSFPath=None, ConfigFileNoGSFNoPixPath=None)
Definition: TrigEgammaPrecisionElectronHypoTool.py:345
python.TrigEgammaPrecisionElectronHypoTool.TrigEgammaPrecisionElectronHypoToolConfig.__lrtD0Cut
__lrtD0Cut
Definition: TrigEgammaPrecisionElectronHypoTool.py:106
python.TrigEgammaPrecisionElectronHypoTool.TrigEgammaPrecisionElectronHypoToolConfig.noPid
def noPid(self)
Definition: TrigEgammaPrecisionElectronHypoTool.py:192
python.TrigEgammaPrecisionElectronHypoTool.TrigEgammaPrecisionElectronDNNSelectorCfg
def TrigEgammaPrecisionElectronDNNSelectorCfg(flags, name='TrigEgammaPrecisionElectronDNNSelector', ConfigFilePath=None)
Definition: TrigEgammaPrecisionElectronHypoTool.py:315
python.TrigEgammaPrecisionElectronHypoTool.TrigEgammaPrecisionElectronHypoToolConfig.addIsoCut
def addIsoCut(self, flags)
Definition: TrigEgammaPrecisionElectronHypoTool.py:214
python.TrigEgammaPrecisionElectronHypoTool.TrigEgammaPrecisionElectronHypoToolConfig.__log
__log
Definition: TrigEgammaPrecisionElectronHypoTool.py:120
python.TrigEgammaPrecisionElectronHypoTool.TrigEgammaPrecisionElectronHypoToolConfig.__sel
__sel
Definition: TrigEgammaPrecisionElectronHypoTool.py:123
python.TrigEgammaPrecisionElectronHypoTool.TrigEgammaPrecisionElectronHypoToolConfig.etthr
def etthr(self)
Definition: TrigEgammaPrecisionElectronHypoTool.py:170
python.TrigEgammaPrecisionElectronHypoTool.TrigEgammaPrecisionElectronHypoToolFromDict
def TrigEgammaPrecisionElectronHypoToolFromDict(flags, d, tool=None)
Definition: TrigEgammaPrecisionElectronHypoTool.py:304
python.TrigEgammaPrecisionElectronHypoTool.TrigEgammaPrecisionElectronHypoToolConfig.addLRTCut
def addLRTCut(self)
Definition: TrigEgammaPrecisionElectronHypoTool.py:204
GenericMonitoringTool
Definition: GenericMonitoringTool.py:1
debug
const bool debug
Definition: MakeUncertaintyPlots.cxx:53
python.TrigEgammaPrecisionElectronHypoTool.TrigEgammaPrecisionElectronHypoToolConfig.isoInfo
def isoInfo(self)
Definition: TrigEgammaPrecisionElectronHypoTool.py:173
python.TrigEgammaPrecisionElectronHypoTool.TrigEgammaPrecisionElectronHypoToolConfig.__operation_points
__operation_points
Definition: TrigEgammaPrecisionElectronHypoTool.py:62
python.TrigEgammaPrecisionElectronHypoTool._IncTool
def _IncTool(flags, name, monGroups, cpart, tool=None)
Definition: TrigEgammaPrecisionElectronHypoTool.py:297
python.TrigEgammaPrecisionElectronHypoTool.TrigEgammaPrecisionElectronHypoToolConfig.__init__
def __init__(self, name, monGroups, cpart, tool=None)
Definition: TrigEgammaPrecisionElectronHypoTool.py:117
python.TrigEgammaPrecisionElectronHypoTool.TrigEgammaPrecisionElectronCBSelectorCfg
def TrigEgammaPrecisionElectronCBSelectorCfg(flags, name='TrigEgammaPrecisionElectronCBSelector', ConfigFilePath=None)
Definition: TrigEgammaPrecisionElectronHypoTool.py:402
python.TrigEgammaPrecisionElectronHypoTool.TrigEgammaPrecisionElectronHypoToolConfig.nominal
def nominal(self)
Definition: TrigEgammaPrecisionElectronHypoTool.py:227
str
Definition: BTagTrackIpAccessor.cxx:11
python.TrigEgammaPrecisionElectronHypoTool.TrigEgammaPrecisionElectronHypoToolConfig.pidname
def pidname(self)
Definition: TrigEgammaPrecisionElectronHypoTool.py:158
python.TrigEgammaPrecisionElectronHypoTool.TrigEgammaPrecisionElectronHypoToolConfig.addMonitoring
def addMonitoring(self, flags)
Definition: TrigEgammaPrecisionElectronHypoTool.py:265
python.TrigEgammaPrecisionElectronHypoTool.TrigEgammaPrecisionElectronHypoToolConfig.__name
__name
Definition: TrigEgammaPrecisionElectronHypoTool.py:121
python.TrigEgammaPrecisionElectronHypoTool.TrigEgammaPrecisionElectronHypoToolConfig.__gsfInfo
__gsfInfo
Definition: TrigEgammaPrecisionElectronHypoTool.py:126
python.TrigEgammaPrecisionElectronHypoTool.TrigEgammaPrecisionElectronHypoToolConfig.gsfInfo
def gsfInfo(self)
Definition: TrigEgammaPrecisionElectronHypoTool.py:179
python.LArMinBiasAlgConfig.float
float
Definition: LArMinBiasAlgConfig.py:65