Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-08-27 22:59:30

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def CTPPSPixelClusterProducer(**kwargs):
0004   mod = cms.EDProducer('CTPPSPixelClusterProducer',
0005     RPixVerbosity = cms.untracked.int32(0),
0006     tag = cms.InputTag('ctppsPixelDigis'),
0007     SeedADCThreshold = cms.int32(2),
0008     ADCThreshold = cms.int32(2),
0009     ElectronADCGain = cms.double(135),
0010     VCaltoElectronGain = cms.int32(50),
0011     VCaltoElectronOffset = cms.int32(-411),
0012     doSingleCalibration = cms.bool(False),
0013     mightGet = cms.optional.untracked.vstring
0014   )
0015   for k,v in kwargs.items():
0016     setattr(mod, k, v)
0017   return mod