Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 11:56:25

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 # LaserAlignmentT0Producer (AlCaRECO producer for the LAS data running on T0)
0004 #
0005 # VPSet DigiProducersList is a list of all
0006 # possible input digi products as defined in:
0007 # EventFilter/SiStripRawToDigiModule/plugins/SiStripRawToDigiModule.cc
0008 #
0009 # The additional DigiType has to be specified to tell the
0010 # producer if the corresponding DetSet contains 
0011 # SiStripDigis (="Processed") or SiStripRawDigis (="Raw").
0012 # With this feature we keep the possibility to switch to
0013 # another producer if necessary by changing only the .cfg
0014 #
0015 laserAlignmentT0Producer = cms.EDProducer("LaserAlignmentT0Producer",
0016     DigiProducerList = cms.VPSet(cms.PSet(
0017         DigiLabel = cms.string('ZeroSuppressed'),
0018         DigiType = cms.string('Processed'),
0019         DigiProducer = cms.string('siStripDigis')
0020     ), 
0021         cms.PSet(
0022             DigiLabel = cms.string('VirginRaw'),
0023             DigiType = cms.string('Raw'),
0024             DigiProducer = cms.string('siStripDigis')
0025         ), 
0026         cms.PSet(
0027             DigiLabel = cms.string('ProcessedRaw'),
0028             DigiType = cms.string('Raw'),
0029             DigiProducer = cms.string('siStripDigis')
0030         ), 
0031         cms.PSet(
0032             DigiLabel = cms.string('ScopeMode'),
0033             DigiType = cms.string('Raw'),
0034             DigiProducer = cms.string('siStripDigis')
0035         ))
0036 )
0037 
0038