Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:32:31

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 process = cms.Process("RecHitsValidationRelVal")
0004 process.load("Configuration.StandardSequences.Reconstruction_cff")
0005 process.load("Configuration.StandardSequences.GeometryRecoDB_cff")
0006 
0007 
0008 process.load("DQMServices.Core.DQM_cfg")
0009 process.DQM.collectorHost = ''
0010 
0011 process.maxEvents = cms.untracked.PSet(
0012     input = cms.untracked.int32(-1)
0013 )
0014 
0015 process.source = cms.Source("PoolSource",
0016     debugFlag = cms.untracked.bool(True),
0017     debugVebosity = cms.untracked.uint32(10),
0018     fileNames = cms.untracked.vstring(
0019       )
0020 )
0021 
0022 from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
0023 process.hcalRecoAnalyzer = DQMEDAnalyzer('HcalRecHitsValidation',
0024     eventype = cms.untracked.string('multi'),
0025     outputFile = cms.untracked.string('HcalRecHitsValidationALL_RelVal.root'),
0026     ecalselector = cms.untracked.string('yes'),
0027     mc = cms.untracked.string('no'),
0028     hcalselector = cms.untracked.string('all')
0029 )
0030 
0031 
0032 process.p = cms.Path(process.hcalRecoAnalyzer)
0033