00001 import FWCore.ParameterSet.Config as cms 00002 00003 from PhysicsTools.RecoAlgos.allElectrons_cfi import * 00004 from PhysicsTools.RecoAlgos.allTracks_cfi import * 00005 from PhysicsTools.RecoAlgos.allSuperClusters_cfi import * 00006 from PhysicsTools.IsolationAlgos.allElectronIsolations_cfi import * 00007 from PhysicsTools.IsolationAlgos.allTrackIsolations_cfi import * 00008 from PhysicsTools.IsolationAlgos.allSuperClusterIsolations_cfi import * 00009 from PhysicsTools.HepMCCandAlgos.allElectronsGenParticlesMatch_cfi import * 00010 from PhysicsTools.HepMCCandAlgos.allTracksGenParticlesLeptonMatch_cfi import * 00011 from PhysicsTools.HepMCCandAlgos.allSuperClustersGenParticlesLeptonMatch_cfi import * 00012 from ElectroWeakAnalysis.ZReco.zToEE_cfi import * 00013 from ElectroWeakAnalysis.ZReco.zToEEOneTrack_cfi import * 00014 from ElectroWeakAnalysis.ZReco.zToEEOneSuperCluster_cfi import * 00015 from ElectroWeakAnalysis.ZReco.zToEEGenParticlesMatch_cfi import * 00016 from ElectroWeakAnalysis.ZReco.zToEEOneTrackGenParticlesMatch_cfi import * 00017 from ElectroWeakAnalysis.ZReco.zToEEOneSuperClusterGenParticlesMatch_cfi import * 00018 electronRecoForZToEE = cms.Sequence(allTracks+allElectrons+allSuperClusters+allElectronIsolations+allTrackIsolations+allSuperClusterIsolations) 00019 zToEEReco = cms.Sequence(zToEE+zToEEOneTrack+zToEEOneSuperCluster) 00020 zToEEAnalysis = cms.Sequence(electronRecoForZToEE+zToEEReco) 00021 zToEEAnalysisSequenceData = cms.Sequence(electronRecoForZToEE+zToEEReco) 00022 electronMCTruthForZToEE = cms.Sequence(allElectronsGenParticlesMatch+zToEEGenParticlesMatch) 00023 electronMCTruthForZToEEOneTrack = cms.Sequence(allElectronsGenParticlesMatch+allTracksGenParticlesLeptonMatch+zToEEOneTrackGenParticlesMatch) 00024 electronMCTruthForZToEEOneSuperCluster = cms.Sequence(allElectronsGenParticlesMatch+allSuperClustersGenParticlesLeptonMatch+zToEEOneSuperClusterGenParticlesMatch) 00025 zToEEAnalysisSequence = cms.Sequence(zToEEAnalysisSequenceData+electronMCTruthForZToEE) 00026 allSuperClusters.particleType = 'e-' 00027