Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-09-26 05:05:47

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def SiPixelLorentzAnglePCLWorker(*args, **kwargs):
0004   mod = cms.EDProducer('SiPixelLorentzAnglePCLWorker',
0005     analysisType = cms.string('GrazingAngle'),
0006     folder = cms.string('AlCaReco/SiPixelLorentzAngle'),
0007     notInPCL = cms.bool(False),
0008     fileName = cms.string('testrun.root'),
0009     newmodulelist = cms.vstring(),
0010     src = cms.InputTag('TrackRefitter'),
0011     ptMin = cms.double(3),
0012     normChi2Max = cms.double(2),
0013     clustSizeYMin = cms.vint32(
0014       4,
0015       3,
0016       3,
0017       2
0018     ),
0019     clustSizeXMax = cms.int32(5),
0020     residualMax = cms.double(0.005),
0021     clustChargeMaxPerLength = cms.double(50000),
0022     binsDepth = cms.int32(50),
0023     binsDrift = cms.int32(100),
0024     mightGet = cms.optional.untracked.vstring
0025   )
0026   for a in args:
0027     mod.update_(a)
0028   mod.update_(kwargs)
0029   return mod