CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_14/src/Validation/RecoHI/python/globalValidationHeavyIons_cff.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 from Validation.Configuration.globalValidation_cff import *
00004 from Validation.RecoHI.TrackValidationHeavyIons_cff import *
00005 from Validation.RecoHI.JetValidationHeavyIons_cff import *
00006 from Validation.RecoHI.muonValidationHeavyIons_cff import *
00007 
00008 # change track label for rechits
00009 hiTracks = 'hiSelectedTracks'
00010 PixelTrackingRecHitsValid.src = hiTracks
00011 StripTrackingRecHitsValid.trajectoryInput = hiTracks
00012 
00013 # change ecal labels for basic clusters and super-clusters
00014 egammaBasicClusterAnalyzer.barrelBasicClusterCollection = cms.InputTag("islandBasicClusters","islandBarrelBasicClusters")
00015 egammaBasicClusterAnalyzer.endcapBasicClusterCollection = cms.InputTag("islandBasicClusters","islandEndcapBasicClusters")
00016 egammaSuperClusterAnalyzer.barrelRecHitCollection = cms.InputTag("ecalRecHit","EcalRecHitsEB")
00017 egammaSuperClusterAnalyzer.barrelRawSuperClusterCollection = cms.InputTag("islandSuperClusters","islandBarrelSuperClusters")
00018 egammaSuperClusterAnalyzer.barrelCorSuperClusterCollection = cms.InputTag("correctedIslandBarrelSuperClusters")
00019 egammaSuperClusterAnalyzer.endcapRecHitCollection = cms.InputTag("ecalRecHit","EcalRecHitsEE")
00020 egammaSuperClusterAnalyzer.endcapRawSuperClusterCollection = cms.InputTag("islandSuperClusters","islandEndcapSuperClusters")
00021 egammaSuperClusterAnalyzer.endcapCorSuperClusterCollection = cms.InputTag("correctedIslandEndcapSuperClusters")
00022 #egammaSuperClusterAnalyzer.endcapPreSuperClusterCollection = cms.InputTag("islandEndcapSuperClustersWithPreshower") #to be implemented: only multi5x5 for now
00023 
00024 
00025 # prevalidation sequence for all EDFilters and EDProducers
00026 globalPrevalidationHI = cms.Sequence(
00027     hiTrackPrevalidation
00028   * hiRecoMuonPrevalidation
00029 
00030 )
00031 
00032 
00033 globalValidationHI = cms.Sequence(
00034     trackerHitsValidation      
00035     #+ trackerDigisValidation   # simSiDigis not in RAWDEBUG
00036     + trackerRecHitsValidation 
00037     + trackingTruthValid        
00038     + trackingRecHitsValid        
00039 
00040     + ecalSimHitsValidationSequence 
00041     #+ ecalDigisValidationSequence  # simEcalDigis not in RAWDEBUG
00042     + ecalRecHitsValidationSequence 
00043     + ecalClustersValidationSequence
00044 
00045     + hcalSimHitStudy
00046     #+ hcalDigisValidationSequence  # simHcalDigis not in RAWDEBUG
00047     + hcalRecHitsValidationSequence
00048     + calotowersValidationSequence
00049     
00050     + hiTrackValidation         # Validation of 'hiSelectedTracks'
00051     + hiJetValidation           # Validation of pileup jet finders
00052     + hiRecoMuonValidation      # Validation of offline muon reco
00053    
00054     )
00055