File indexing completed on 2023-03-17 10:39:21
0001 import FWCore.ParameterSet.Config as cms
0002
0003 process = cms.Process("SimAnalyzer")
0004
0005
0006 process.load("Geometry.CMSCommonData.cmsRecoIdealGeometryXML_cfi")
0007
0008
0009
0010 process.load("MagneticField.Engine.volumeBasedMagneticField_cfi")
0011
0012 process.load("Geometry.TrackerNumberingBuilder.trackerNumberingGeometry_cfi")
0013
0014 process.load("Geometry.TrackerGeometryBuilder.trackerGeometry_cfi")
0015
0016 process.source = cms.Source("PoolSource",
0017 fileNames = cms.untracked.vstring('file:LaserEvents.SIM-DIGI.root')
0018 )
0019
0020 process.maxEvents = cms.untracked.PSet(
0021 input = cms.untracked.int32(-1)
0022 )
0023 process.ana = cms.EDAnalyzer("SimAnalyzer",
0024 SearchWindowPhiTEC = cms.untracked.double(0.05),
0025 SearchWindowPhiTIB = cms.untracked.double(0.05),
0026 SearchWindowZTOB = cms.untracked.double(1.0),
0027 ROOTFileCompression = cms.untracked.int32(1),
0028 ROOTFileName = cms.untracked.string('simulation.histos.root'),
0029 SearchWindowPhiTOB = cms.untracked.double(0.05),
0030 SearchWindowZTIB = cms.untracked.double(1.0),
0031 DebugLevel = cms.untracked.int32(3)
0032 )
0033
0034 process.p1 = cms.Path(process.ana)
0035