CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_9_patch3/src/Alignment/CommonAlignmentProducer/python/ALCARECOMuAlStandAloneCosmics_cff.py

Go to the documentation of this file.
00001 # AlCaReco for muon Alignment using stand-alone cosmic ray tracks
00002 import FWCore.ParameterSet.Config as cms
00003 
00004 # HLT
00005 import HLTrigger.HLTfilters.hltHighLevel_cfi
00006 ALCARECOMuAlStandAloneCosmicsHLT = HLTrigger.HLTfilters.hltHighLevel_cfi.hltHighLevel.clone(
00007     andOr = True, ## choose logical OR between Triggerbits
00008     eventSetupPathsKey = 'MuAlStandAloneCosmics',
00009     throw = False # tolerate triggers not available
00010     )
00011 
00012 # DCS partitions
00013 # "EBp","EBm","EEp","EEm","HBHEa","HBHEb","HBHEc","HF","HO","RPC"
00014 # "DT0","DTp","DTm","CSCp","CSCm","CASTOR","TIBTID","TOB","TECp","TECm"
00015 # "BPIX","FPIX","ESp","ESm"
00016 import DPGAnalysis.Skims.skim_detstatus_cfi
00017 ALCARECOMuAlStandAloneCosmicsDCSFilter = DPGAnalysis.Skims.skim_detstatus_cfi.dcsstatus.clone(
00018     DetectorType = cms.vstring('DT0','DTp','DTm','CSCp','CSCm'),
00019     ApplyFilter  = cms.bool(True),
00020     AndOr        = cms.bool(False),
00021     DebugOn      = cms.untracked.bool(False)
00022 )
00023 
00024 import Alignment.CommonAlignmentProducer.AlignmentTrackSelector_cfi
00025 ALCARECOMuAlStandAloneCosmics = Alignment.CommonAlignmentProducer.AlignmentTrackSelector_cfi.AlignmentTrackSelector.clone(
00026     src = "cosmicMuons", #cms.InputTag("cosmicMuons")
00027     filter = True,
00028     ptMin = 10.0,
00029     etaMin = -100.0,
00030     etaMax = 100.0
00031     )
00032 
00033 seqALCARECOMuAlStandAloneCosmics = cms.Sequence(ALCARECOMuAlStandAloneCosmicsHLT + ALCARECOMuAlStandAloneCosmicsDCSFilter + ALCARECOMuAlStandAloneCosmics)
00034