CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_10/src/RecoHI/Configuration/python/Reconstruction_HI_cff.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 #--------------------------------------------------------------------------
00004 # HIGH LEVEL RECO
00005 
00006 # Tracking
00007 #from RecoHI.HiTracking.HighPtTracking_PbPb_cff import *  # above 1.5 GeV
00008 from RecoHI.HiTracking.LowPtTracking_PbPb_cff import *    # above 0.9 GeV
00009 
00010 # Egamma
00011 from RecoHI.HiEgammaAlgos.HiEgamma_cff import *
00012 
00013 # Jet Reconstruction
00014 from RecoHI.HiJetAlgos.HiRecoJets_cff import *
00015 
00016 # Muon Reco
00017 from RecoHI.HiMuonAlgos.HiRecoMuon_cff import * 
00018 
00019 # Heavy Ion Event Characterization
00020 from RecoHI.HiCentralityAlgos.HiCentrality_cfi import *
00021 from RecoHI.HiEvtPlaneAlgos.HiEvtPlane_cfi import *
00022 
00023 # HCAL noise producer
00024 from RecoMET.METProducers.hcalnoiseinfoproducer_cfi import *
00025 hcalnoise.trackCollName = 'hiSelectedTracks'
00026 
00027 # Global + High-Level Reco Sequence
00028 globalRecoPbPb = cms.Sequence(heavyIonTracking
00029                               * hiEcalClusters
00030                               * hiRecoJets
00031                               * muonRecoPbPb
00032                               * hiEgammaSequence
00033                               * hiCentrality
00034                               * hiEvtPlane
00035                               * hcalnoise
00036                               )
00037 
00038 #--------------------------------------------------------------------------
00039 # Full sequence (LOCAL RECO + HIGH LEVEL RECO) 
00040 # in Configuration.StandardSequences.ReconstructionHeavyIons_cff
00041 
00042 # Modify zero-suppression sequence here
00043 from RecoLocalTracker.SiStripZeroSuppression.SiStripZeroSuppression_cfi import *
00044 SiStripZeroSuppression.storeCM = cms.bool(True)
00045