CMS 3D CMS Logo

ALCARECOTkAlLAS_cff.py
Go to the documentation of this file.
1 # AlCaReco for laser alignment system
2 import FWCore.ParameterSet.Config as cms
3 
5 ALCARECOTkAlLASsiStripDigis = EventFilter.SiStripRawToDigi.SiStripDigis_cfi.siStripDigis.clone(
6  ProductLabel = 'hltTrackerCalibrationRaw'
7 )
8 
9 import Alignment.LaserAlignment.LaserAlignmentEventFilter_cfi
10 ALCARECOTkAlLASEventFilter = Alignment.LaserAlignment.LaserAlignmentEventFilter_cfi.LaserAlignmentEventFilter.clone(
11  FedInputTag = 'hltTrackerCalibrationRaw'
12 )
13 
14 import Alignment.LaserAlignment.LaserAlignmentT0Producer_cfi
15 ALCARECOTkAlLAST0Producer = Alignment.LaserAlignment.LaserAlignmentT0Producer_cfi.laserAlignmentT0Producer.clone(
16  DigiProducerList = cms.VPSet(
17  cms.PSet(
18  DigiLabel = cms.string( 'ZeroSuppressed' ),
19  DigiType = cms.string( 'Processed' ),
20  DigiProducer = cms.string( 'ALCARECOTkAlLASsiStripDigis' )
21  )
22  )
23 )
24 
25 seqALCARECOTkAlLAS = cms.Sequence(ALCARECOTkAlLASsiStripDigis+ALCARECOTkAlLASEventFilter+ALCARECOTkAlLAST0Producer)