CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_4_1_8_patch13/src/Alignment/CommonAlignmentProducer/python/ALCARECOTkAlLAS_cff.py

Go to the documentation of this file.
00001 # AlCaReco for laser Alignment system
00002 import FWCore.ParameterSet.Config as cms
00003 
00004 # Need to add this module to get the 'ScalersRawToDigi' product
00005 # for the DCS bit filter
00006 from EventFilter.ScalersRawToDigi.ScalersRawToDigi_cfi import ScalersRawToDigi
00007 
00008 # DCS partitions
00009 # "EBp","EBm","EEp","EEm","HBHEa","HBHEb","HBHEc","HF","HO","RPC"
00010 # "DT0","DTp","DTm","CSCp","CSCm","CASTOR","TIBTID","TOB","TECp","TECm"
00011 # "BPIX","FPIX","ESp","ESm"
00012 import DPGAnalysis.Skims.skim_detstatus_cfi
00013 ALCARECOTkAlLASDCSFilter = DPGAnalysis.Skims.skim_detstatus_cfi.dcsstatus.clone(
00014     DetectorType = cms.vstring('TIBTID','TOB','TECp','TECm'),
00015     ApplyFilter  = cms.bool(True),
00016     AndOr        = cms.bool(True),
00017     DebugOn      = cms.untracked.bool(False)
00018 )
00019 
00020 import EventFilter.SiStripRawToDigi.SiStripDigis_cfi
00021 ALCARECOTkAlLASsiStripDigis = EventFilter.SiStripRawToDigi.SiStripDigis_cfi.siStripDigis.clone(
00022   ProductLabel = 'source'
00023 )
00024 
00025 import Alignment.LaserAlignment.LaserAlignmentEventFilter_cfi
00026 ALCARECOTkAlLASEventFilter = Alignment.LaserAlignment.LaserAlignmentEventFilter_cfi.LaserAlignmentEventFilter.clone()
00027 
00028 import Alignment.LaserAlignment.LaserAlignmentT0Producer_cfi
00029 ALCARECOTkAlLAST0Producer = Alignment.LaserAlignment.LaserAlignmentT0Producer_cfi.laserAlignmentT0Producer.clone(
00030   DigiProducerList = cms.VPSet(
00031     cms.PSet(
00032        DigiLabel = cms.string( 'ZeroSuppressed' ),
00033        DigiType = cms.string( 'Processed' ),
00034        DigiProducer = cms.string( 'ALCARECOTkAlLASsiStripDigis' )
00035     )
00036   )
00037 )
00038 
00039 seqALCARECOTkAlLAS = cms.Sequence(ScalersRawToDigi+ALCARECOTkAlLASDCSFilter+ALCARECOTkAlLASsiStripDigis+ALCARECOTkAlLASEventFilter+ALCARECOTkAlLAST0Producer)
00040