CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_4_4_5_patch3/src/L1Trigger/HardwareValidation/python/L1HardwareValidation_cff.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 # L1 Emulator-Hardware comparison sequences -- Global Run
00004 #
00005 # J. Brooke, N. Leonardo
00006 #
00007 # V.M. Ghete 2010-09 - moved to standard emulator sequence ValL1Emulator_cff
00008 
00009 # import standard emulator sequence
00010 from L1Trigger.Configuration.ValL1Emulator_cff import *
00011 
00012 import L1Trigger.HardwareValidation.MuonCandProducerMon_cfi
00013 muonDtMon = L1Trigger.HardwareValidation.MuonCandProducerMon_cfi.muonCandMon.clone()
00014 muonDtMon.DTinput = 'dttfDigis'
00015 
00016 import L1Trigger.HardwareValidation.MuonCandProducerMon_cfi
00017 muonCscMon = L1Trigger.HardwareValidation.MuonCandProducerMon_cfi.muonCandMon.clone()
00018 muonCscMon.CSCinput = 'csctfDigis'
00019 
00020 
00021 # the comparator module
00022 from L1Trigger.HardwareValidation.L1Comparator_cfi import *
00023 #l1compare.COMPARE_COLLS = [1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1]
00024 # ETP,HTP,RCT,GCT, DTP,DTF,CTP,CTF,RPC, LTC,GMT,GT
00025 
00026 # subsystem sequences
00027 deEcal = cms.Sequence(valEcalTriggerPrimitiveDigis)
00028 deHcal = cms.Sequence(valHcalTriggerPrimitiveDigis)
00029 deRct = cms.Sequence(valRctDigis)
00030 deGct = cms.Sequence(valGctDigis)
00031 deDt = cms.Sequence(valDtTriggerPrimitiveDigis)
00032 deDttf = cms.Sequence(valCsctfTrackDigis*valDttfDigis*muonDtMon)
00033 deCsc = cms.Sequence(valCscTriggerPrimitiveDigis)
00034 deCsctf = cms.Sequence(valCsctfTrackDigis*valCsctfDigis*muonCscMon)
00035 deRpc = cms.Sequence(valRpcTriggerDigis)
00036 deGmt = cms.Sequence(valGmtDigis)
00037 deGt = cms.Sequence(valGtDigis)
00038 
00039 # the sequence
00040 L1HardwareValidation = cms.Sequence(
00041                                 deEcal+
00042                                 deHcal+
00043                                 deRct+
00044                                 deGct+
00045                                 deDt+
00046                                 deDttf+
00047                                 deCsc+
00048                                 deCsctf+
00049                                 deRpc+
00050                                 deGmt+
00051                                 deGt*
00052                                 l1compare)
00053