test
CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
LaserAlignmentT0Producer_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # LaserAlignmentT0Producer (AlCaRECO producer for the LAS data running on T0)
4 #
5 # VPSet DigiProducersList is a list of all
6 # possible input digi products as defined in:
7 # EventFilter/SiStripRawToDigiModule/plugins/SiStripRawToDigiModule.cc
8 #
9 # The additional DigiType has to be specified to tell the
10 # producer if the corresponding DetSet contains
11 # SiStripDigis (="Processed") or SiStripRawDigis (="Raw").
12 # With this feature we keep the possibility to switch to
13 # another producer if necessary by changing only the .cfg
14 #
15 laserAlignmentT0Producer = cms.EDProducer("LaserAlignmentT0Producer",
16  DigiProducerList = cms.VPSet(cms.PSet(
17  DigiLabel = cms.string('ZeroSuppressed'),
18  DigiType = cms.string('Processed'),
19  DigiProducer = cms.string('siStripDigis')
20  ),
21  cms.PSet(
22  DigiLabel = cms.string('VirginRaw'),
23  DigiType = cms.string('Raw'),
24  DigiProducer = cms.string('siStripDigis')
25  ),
26  cms.PSet(
27  DigiLabel = cms.string('ProcessedRaw'),
28  DigiType = cms.string('Raw'),
29  DigiProducer = cms.string('siStripDigis')
30  ),
31  cms.PSet(
32  DigiLabel = cms.string('ScopeMode'),
33  DigiType = cms.string('Raw'),
34  DigiProducer = cms.string('siStripDigis')
35  ))
36 )
37 
38