Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:25:08

0001 # Misc loads for VID framework
0002 from RecoEgamma.ElectronIdentification.egmGsfElectronIDs_cfi import *
0003 from PhysicsTools.SelectorUtils.centralIDRegistry import central_id_registry
0004 
0005 # Load the producer module to build full 5x5 cluster shapes and whatever
0006 # else is needed for IDs
0007 # NOTE: Presently this producer is not needed because all variables
0008 # that it produces are already available as standard electron variables.
0009 # When it is needed again, uncomment the lone below.
0010 #   Do not forget to also add "electronIDValueMapProducer" to the sequence
0011 # defined below!
0012 #
0013 #from RecoEgamma.ElectronIdentification.ElectronIDValueMapProducer_cfi import *
0014 
0015 # Load the producer for MVA IDs. Make sure it is also added to the sequence!
0016 from RecoEgamma.ElectronIdentification.ElectronMVAValueMapProducer_cfi import *
0017 
0018 egmGsfElectronIDTask = cms.Task(
0019     electronMVAValueMapProducer,
0020     egmGsfElectronIDs
0021 )
0022 egmGsfElectronIDSequence = cms.Sequence(egmGsfElectronIDTask)