Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:09:24

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
0004 hcalRecHitsAnalyzer = DQMEDAnalyzer('HcalRecHitsAnalyzer',
0005     TopFolderName             = cms.string('HcalRecHitsD/HcalRecHitTask'),
0006 #    outputFile                = cms.untracked.string('HcalRecHitValidationRelVal.root'),
0007     outputFile                = cms.untracked.string(''),
0008 
0009     HBHERecHitCollectionLabel = cms.untracked.InputTag("hbhereco"),
0010     HFRecHitCollectionLabel   = cms.untracked.InputTag("hfreco"),
0011     HORecHitCollectionLabel   = cms.untracked.InputTag("horeco"),
0012     EBRecHitCollectionLabel   = cms.InputTag("ecalRecHit:EcalRecHitsEB"),                                    
0013     EERecHitCollectionLabel   = cms.InputTag("ecalRecHit:EcalRecHitsEE"),                                    
0014 
0015     eventype                  = cms.untracked.string('multi'),
0016     ecalselector              = cms.untracked.string('yes'),
0017     hcalselector              = cms.untracked.string('all'),
0018     hep17                     = cms.untracked.bool(False)
0019 #    useAllHistos              = cms.untracked.bool(False)                                 
0020 )
0021 
0022 from Configuration.Eras.Modifier_run2_HEPlan1_2017_cff import run2_HEPlan1_2017
0023 run2_HEPlan1_2017.toModify(hcalRecHitsAnalyzer,
0024       hep17 = True
0025 )
0026