Line Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
import FWCore.ParameterSet.Config as cms

# LaserAlignmentT0Producer (AlCaRECO producer for the LAS data running on T0)
#
# VPSet DigiProducersList is a list of all
# possible input digi products as defined in:
# EventFilter/SiStripRawToDigiModule/plugins/SiStripRawToDigiModule.cc
#
# The additional DigiType has to be specified to tell the
# producer if the corresponding DetSet contains 
# SiStripDigis (="Processed") or SiStripRawDigis (="Raw").
# With this feature we keep the possibility to switch to
# another producer if necessary by changing only the .cfg
#
laserAlignmentT0Producer = cms.EDProducer("LaserAlignmentT0Producer",
    DigiProducerList = cms.VPSet(cms.PSet(
        DigiLabel = cms.string('ZeroSuppressed'),
        DigiType = cms.string('Processed'),
        DigiProducer = cms.string('siStripDigis')
    ), 
        cms.PSet(
            DigiLabel = cms.string('VirginRaw'),
            DigiType = cms.string('Raw'),
            DigiProducer = cms.string('siStripDigis')
        ), 
        cms.PSet(
            DigiLabel = cms.string('ProcessedRaw'),
            DigiType = cms.string('Raw'),
            DigiProducer = cms.string('siStripDigis')
        ), 
        cms.PSet(
            DigiLabel = cms.string('ScopeMode'),
            DigiType = cms.string('Raw'),
            DigiProducer = cms.string('siStripDigis')
        ))
)