CMS 3D CMS Logo

allConversionSequence_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 #
4 #
5 # Tracker only conversion producer
7 allConversionTask = cms.Task(allConversions)
8 allConversionSequence = cms.Sequence(allConversionTask)
9 
10 allConversionsOldEG = allConversions.clone()
11 allConversionsOldEG.scBarrelProducer = cms.InputTag("correctedHybridSuperClusters")
12 allConversionsOldEG.bcBarrelCollection = cms.InputTag("hybridSuperClusters","hybridBarrelBasicClusters")
13 allConversionsOldEG.scEndcapProducer = cms.InputTag("correctedMulti5x5SuperClustersWithPreshower")
14 allConversionsOldEG.bcEndcapCollection = cms.InputTag("multi5x5SuperClusters","multi5x5EndcapBasicClusters")
15 
16 allConversionOldEGSequence = cms.Sequence(allConversionsOldEG)
17 
allConversions_cfi