File indexing completed on 2023-03-17 11:27:46
0001 import FWCore.ParameterSet.Config as cms
0002
0003 process = cms.Process("HcalValid")
0004 process.load("DQMServices.Core.DQM_cfg")
0005
0006
0007 process.load("Configuration.StandardSequences.MagneticField_cff")
0008
0009
0010 process.load("Geometry.CMSCommonData.ecalhcalGeometryXML_cfi")
0011
0012 process.load("Validation.HcalHits.HcalHitValidation_cfi")
0013
0014 process.MessageLogger = cms.Service("MessageLogger",
0015 debugModules = cms.untracked.vstring('*'),
0016 cout = cms.untracked.PSet(
0017 threshold = cms.untracked.string('INFO'),
0018 default = cms.untracked.PSet(
0019 limit = cms.untracked.int32(0)
0020 ),
0021 HcalHitValid = cms.untracked.PSet(
0022 limit = cms.untracked.int32(-1)
0023 )
0024 ),
0025 categories = cms.untracked.vstring('HcalHitValid'),
0026 destinations = cms.untracked.vstring('cout')
0027 )
0028
0029 process.maxEvents = cms.untracked.PSet(
0030 input = cms.untracked.int32(-1)
0031 )
0032 process.source = cms.Source("PoolSource",
0033 debugFlag = cms.untracked.bool(True),
0034 debugVebosity = cms.untracked.uint32(11),
0035 fileNames = cms.untracked.vstring('file:simevent_HF.root')
0036 )
0037
0038 process.p1 = cms.Path(process.hcalHitValid)
0039 process.DQM.collectorHost = ''
0040 process.hcalHitValid.outputFile = 'valid_HF.root'
0041
0042