CMS 3D CMS Logo

egmPhotonIDs_cff.py
Go to the documentation of this file.
1 # Misc loads for VID framework
3 from PhysicsTools.SelectorUtils.centralIDRegistry import central_id_registry
4 
5 # Load the producer module to build full 5x5 cluster shapes and whatever
6 # else is needed for IDs
8 
9 # Load the producer for MVA IDs. Make sure it is also added to the sequence!
12 
13 # The sequence below is important. The MVA ValueMapProducer
14 # needs to be downstream from the ID ValueMapProducer because it relies
15 # on some of its products
16 egmPhotonIDTask = cms.Task(
17  photonIDValueMapProducer,
18  photonMVAValueMapProducer,
19  egmPhotonIDs,
20  photonRegressionValueMapProducer
21 )
22 egmPhotonIDSequence = cms.Sequence(egmPhotonIDTask)