CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_2_9/src/RecoHI/Configuration/python/Reconstruction_hiSignal_cff.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 from RecoHI.Configuration.Reconstruction_HI_cff import *
00004 
00005 # Make sure the intermediate digi+reco products of the input even are dropped.
00006 # Add this in your PoolSource.inputCommands
00007 
00008 dropAllExceptFinalProducts = cms.PSet()
00009 
00010 # Clone the final product producers, whose originals will be kept from the previous mixed event.
00011 
00012 #Tracks
00013 hiSignalGlobalPrimTracks = hiGlobalPrimTracks.clone()
00014 hiSignalSelectedTracks = hiSelectedTracks.clone()
00015 hiSelectedTracks.src = cms.InputTag("hiSignalGlobalPrimTracks")
00016 heavyIonTracking = cms.Sequence(hiPixelVertices
00017                                 * hiPrimSeeds
00018                                 * hiPrimTrackCandidates
00019                                 * hiSignalGlobalPrimTracks
00020                                 * hiSelectedTracks
00021                                 )
00022 
00023 #Ecal
00024 hiSignalCorrectedIslandBarrelSuperClusters = correctedIslandBarrelSuperClusters.clone()
00025 hiSignalCorrectedIslandEndcapSuperClusters = correctedIslandEndcapSuperClusters.clone()
00026 
00027 islandClusteringSequence = cms.Sequence(islandBasicClusters
00028                                         *islandSuperClusters
00029                                         *hiSignalCorrectedIslandBarrelSuperClusters
00030                                         *hiSignalCorrectedIslandEndcapSuperClusters
00031                                         )
00032 
00033 #Jets
00034 hiSignalIterativeConePu5CaloJets = iterativeConePu5CaloJets.clone()
00035 runjets = cms.Sequence(caloTowersRec*caloTowers*hiSignalIterativeConePu5CaloJets)
00036 
00037 #Muons
00038 hiSignalGlobalMuons = globalMuons.clone()
00039 hiSignalGlobalMuons.TrackerCollectionLabel = 'hiSignalGlobalPrimTracks'
00040 muontracking = cms.Sequence(standAloneMuonSeeds*standAloneMuons*hiSignalGlobalMuons)
00041 
00042 
00043 #Use same sequences as Reconstruction_HI_cff
00044