File indexing completed on 2023-03-17 13:03:17
0001 import FWCore.ParameterSet.Config as cms
0002 from Configuration.StandardSequences.Eras import eras
0003
0004 process = cms.Process('HcalGeometryTest',eras.Run3)
0005
0006
0007 process.load('Configuration.StandardSequences.Services_cff')
0008 process.load('FWCore.MessageService.MessageLogger_cfi')
0009
0010
0011
0012
0013 process.load('Configuration.StandardSequences.GeometryRecoDB_cff')
0014 process.load('Configuration.StandardSequences.GeometrySimDB_cff')
0015 process.load('Configuration.StandardSequences.FrontierConditions_GlobalTag_cff')
0016 from Configuration.AlCa.GlobalTag import GlobalTag
0017 process.GlobalTag = GlobalTag(process.GlobalTag, 'auto:phase1_2022_realistic', '')
0018
0019
0020 process.source = cms.Source("EmptySource")
0021 process.maxEvents = cms.untracked.PSet(
0022 input = cms.untracked.int32(1)
0023 )
0024
0025 process.hga = cms.EDAnalyzer("HcalGeometryDetIdAnalyzer",
0026 UseOldLoader = cms.bool(False)
0027 )
0028
0029 process.Timing = cms.Service("Timing")
0030 process.SimpleMemoryCheck = cms.Service("SimpleMemoryCheck")
0031
0032 process.p1 = cms.Path(process.hga)