File indexing completed on 2025-02-07 14:23:34
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def SiPixelLorentzAnglePCLHarvesterMCS(*args, **kwargs):
0004 mod = cms.EDProducer('SiPixelLorentzAnglePCLHarvesterMCS',
0005 dqmDir = cms.string('AlCaReco/SiPixelLorentzAngle'),
0006 newmodulelist = cms.vstring(),
0007 fitRange = cms.vdouble(
0008 -1.5,
0009 1.5
0010 ),
0011 fitParameters = cms.vdouble(
0012 1,
0013 0.1,
0014 -1.6,
0015 0,
0016 1.6
0017 ),
0018 fitParametersMuHFit = cms.vdouble(
0019 0.08,
0020 0.08,
0021 0.08,
0022 0.08
0023 ),
0024 minHitsCut = cms.int32(1000),
0025 record = cms.string('SiPixelLorentzAngleRcdMCS'),
0026 mightGet = cms.optional.untracked.vstring
0027 )
0028 for a in args:
0029 mod.update_(a)
0030 mod.update_(kwargs)
0031 return mod