CMS 3D CMS Logo

globalValidationHeavyIons_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
7 
8 # change track label for rechits
9 hiTracks = 'hiGeneralTracks'
10 PixelTrackingRecHitsValid.src = hiTracks
11 StripTrackingRecHitsValid.tracksInput = hiTracks
12 
13 # change ecal labels for basic clusters and super-clusters
14 egammaBasicClusterAnalyzer.barrelBasicClusterCollection = cms.InputTag("islandBasicClusters","islandBarrelBasicClusters")
15 egammaBasicClusterAnalyzer.endcapBasicClusterCollection = cms.InputTag("islandBasicClusters","islandEndcapBasicClusters")
16 egammaSuperClusterAnalyzer.barrelRecHitCollection = cms.InputTag("ecalRecHit","EcalRecHitsEB")
17 egammaSuperClusterAnalyzer.barrelRawSuperClusterCollection = cms.InputTag("islandSuperClusters","islandBarrelSuperClusters")
18 egammaSuperClusterAnalyzer.barrelCorSuperClusterCollection = cms.InputTag("correctedIslandBarrelSuperClusters")
19 egammaSuperClusterAnalyzer.endcapRecHitCollection = cms.InputTag("ecalRecHit","EcalRecHitsEE")
20 egammaSuperClusterAnalyzer.endcapRawSuperClusterCollection = cms.InputTag("islandSuperClusters","islandEndcapSuperClusters")
21 egammaSuperClusterAnalyzer.endcapCorSuperClusterCollection = cms.InputTag("correctedIslandEndcapSuperClusters")
22 #egammaSuperClusterAnalyzer.endcapPreSuperClusterCollection = cms.InputTag("islandEndcapSuperClustersWithPreshower") #to be implemented: only multi5x5 for now
23 
24 
25 # prevalidation sequence for all EDFilters and EDProducers
26 #
27 globalPrevalidationHI = cms.Sequence(
28  hiTrackPrevalidation
29  * hiRecoMuonPrevalidation
30 )
31 
32 
33 globalValidationHI = cms.Sequence(
34  trackerHitsValidation
35  #+ trackerDigisValidation # simSiDigis not in RAWDEBUG
36  + trackerRecHitsValidation
37  + trackingTruthValid
38  + trackingRecHitsValid
39 
40  + ecalSimHitsValidationSequence
41  #+ ecalDigisValidationSequence # simEcalDigis not in RAWDEBUG
42  + ecalRecHitsValidationSequence
43  + ecalClustersValidationSequence
44 
45  + hcalSimHitStudy
46  #+ hcalDigisValidationSequence # simHcalDigis not in RAWDEBUG
47  + hcalRecHitsValidationSequence
48  + calotowersValidationSequence
49 
50  + hiTrackValidation # validation of 'hiGeneralTracks'
51  + hiJetValidation # validation of pileup jet finders
52  + hiRecoMuonValidation # validation of offline muon reco
53  )
54