Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 # AlCaReco for laser alignment system
0002 import FWCore.ParameterSet.Config as cms
0003 
0004 import EventFilter.SiStripRawToDigi.SiStripDigis_cfi
0005 ALCARECOTkAlLASsiStripDigis = EventFilter.SiStripRawToDigi.SiStripDigis_cfi.siStripDigis.clone(
0006   ProductLabel = 'hltTrackerCalibrationRaw'
0007 )
0008 
0009 import Alignment.LaserAlignment.LaserAlignmentEventFilter_cfi
0010 ALCARECOTkAlLASEventFilter = Alignment.LaserAlignment.LaserAlignmentEventFilter_cfi.LaserAlignmentEventFilter.clone(
0011   FedInputTag = 'hltTrackerCalibrationRaw'
0012 )
0013 
0014 import Alignment.LaserAlignment.LaserAlignmentT0Producer_cfi
0015 ALCARECOTkAlLAST0Producer = Alignment.LaserAlignment.LaserAlignmentT0Producer_cfi.laserAlignmentT0Producer.clone(
0016   DigiProducerList = cms.VPSet(
0017     cms.PSet(
0018        DigiLabel = cms.string( 'ZeroSuppressed' ),
0019        DigiType = cms.string( 'Processed' ),
0020        DigiProducer = cms.string( 'ALCARECOTkAlLASsiStripDigis' )
0021     )
0022   )
0023 )
0024 
0025 seqALCARECOTkAlLAS = cms.Sequence(ALCARECOTkAlLASsiStripDigis+ALCARECOTkAlLASEventFilter+ALCARECOTkAlLAST0Producer)