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