ATLAS Offline Software
ElectronRingerSelectorMapping.py
Go to the documentation of this file.
1 # Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
2 
3 
11 
12 
13 from ElectronPhotonSelectorTools.ElectronIsEMSelectorMapping import electronPIDmenu
14 
15 # Import from Ringer selector tools dictionary:
16 import ROOT
17 ROOT.gSystem.Load('libRingerSelectorToolsEnumsDict.so')
18 from ROOT import Ringer
19 
20 import RingerSelectorTools.ElectronRingerSelectorDefs as Defs
21 
22 class electronRingerPIDmenu (electronPIDmenu):
23  testMenu = 999
24 
25 
48 
49 ElectronRingerMap = {
50  (Ringer.Requirement.Loose, electronRingerPIDmenu.testMenu): Defs.ElectronRingerSelectorTestLoose,
51  (Ringer.Requirement.Medium, electronRingerPIDmenu.testMenu): Defs.ElectronRingerSelectorTestMedium,
52  (Ringer.Requirement.Tight, electronRingerPIDmenu.testMenu): Defs.ElectronRingerSelectorTestTight,
53  (Ringer.Requirement.NoCut, electronRingerPIDmenu.testMenu): Defs.ElectronRingerSelectorTestNoCut,
54  }
ElectronRingerSelectorMapping.electronRingerPIDmenu
Definition: ElectronRingerSelectorMapping.py:22