File indexing completed on 2024-04-06 12:31:55
0001 import FWCore.ParameterSet.Config as cms
0002
0003 from Configuration.StandardSequences.SimulationRandomNumberGeneratorSeeds_cff import *
0004 from IOMC.EventVertexGenerators.VtxSmearedGauss_cfi import *
0005 from Configuration.StandardSequences.Simulation_cff import *
0006 from SimGeneral.MixingModule.mixNoPU_cfi import *
0007 from Configuration.StandardSequences.Reconstruction_cff import *
0008 from Configuration.StandardSequences.FrontierConditions_GlobalTag_cff import *
0009 GlobalTag.globaltag = 'MC_31X_V3::All'
0010
0011 from DQMServices.Core.DQM_cfg import *
0012 MessageLogger = cms.Service("MessageLogger")
0013
0014 source = cms.Source("PoolSource",
0015 debugFlag = cms.untracked.bool(True),
0016 debugVebosity = cms.untracked.uint32(10),
0017 fileNames = cms.untracked.vstring('file:/afs/cern.ch/cms/data/CMSSW/Validation/HcalHits/data/1_4_x/mc_pi+100_etaphi44.root')
0018 )
0019
0020 from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
0021 hcalDigiAnalyzer = DQMEDAnalyzer('HcalDigiTester',
0022 digiLabel = cms.InputTag("simHcalDigis"),
0023 subpedvalue = cms.untracked.bool(True),
0024 outputFile = cms.untracked.string('HcalDigisValidationHF.root'),
0025 hcalselector = cms.untracked.string('HF')
0026 )
0027
0028 hcalRecoAnalyzer = DQMEDAnalyzer('HcalRecHitsValidation',
0029 outputFile = cms.untracked.string('HcalRecHitsValidationHB.root'),
0030 eventype = cms.untracked.string('single'),
0031 mc = cms.untracked.string('yes'),
0032 sign = cms.untracked.string('*'),
0033 hcalselector = cms.untracked.string('HF'),
0034 ecalselector = cms.untracked.string('no')
0035 )
0036
0037 hcalTowerAnalyzer = DQMEDAnalyzer('CaloTowersValidation',
0038 outputFile = cms.untracked.string('CaloTowersValidationHB.root'),
0039 CaloTowerCollectionLabel = cms.untracked.string('towerMaker'),
0040 hcalselector = cms.untracked.string('HB')
0041 )
0042
0043
0044 DQM.collectorHost = ''
0045
0046
0047 VtxSmeared.SigmaX = 0.00001
0048 VtxSmeared.SigmaY = 0.00001
0049 VtxSmeared.SigmaZ = 0.00001
0050
0051 hbheprereco.digiLabel = 'simHcalDigis'
0052 horeco.digiLabel = 'simHcalDigis'
0053 hfreco.digiLabel = 'simHcalDigis'