CMS 3D CMS Logo

/data/doxygen/doxygen-1.7.3/gen/CMSSW_4_2_8/src/Alignment/CommonAlignmentProducer/python/ALCARECOTkAlMuonIsolated_cff.py

Go to the documentation of this file.
00001 # AlCaReco for track based Alignment using isolated muon tracks
00002 import FWCore.ParameterSet.Config as cms
00003 
00004 import HLTrigger.HLTfilters.hltHighLevel_cfi
00005 ALCARECOTkAlMuonIsolatedHLT = HLTrigger.HLTfilters.hltHighLevel_cfi.hltHighLevel.clone(
00006     andOr = True, ## choose logical OR between Triggerbits
00007     eventSetupPathsKey = 'TkAlMuonIsolated',
00008     throw = False # tolerate triggers stated above, but not available
00009     )
00010 
00011 # DCS partitions
00012 # "EBp","EBm","EEp","EEm","HBHEa","HBHEb","HBHEc","HF","HO","RPC"
00013 # "DT0","DTp","DTm","CSCp","CSCm","CASTOR","TIBTID","TOB","TECp","TECm"
00014 # "BPIX","FPIX","ESp","ESm"
00015 import DPGAnalysis.Skims.skim_detstatus_cfi
00016 ALCARECOTkAlMuonIsolatedDCSFilter = DPGAnalysis.Skims.skim_detstatus_cfi.dcsstatus.clone(
00017     DetectorType = cms.vstring('TIBTID','TOB','TECp','TECm','BPIX','FPIX'),
00018     ApplyFilter  = cms.bool(True),
00019     AndOr        = cms.bool(True),
00020     DebugOn      = cms.untracked.bool(False)
00021 )
00022 
00023 import Alignment.CommonAlignmentProducer.AlignmentTrackSelector_cfi
00024 ALCARECOTkAlMuonIsolated = Alignment.CommonAlignmentProducer.AlignmentTrackSelector_cfi.AlignmentTrackSelector.clone(
00025     filter = True, ##do not store empty events
00026     applyBasicCuts = True,
00027     ptMin = 2.0, ##GeV 
00028     etaMin = -3.5,
00029     etaMax = 3.5,
00030     nHitMin = 0
00031     )
00032 # These unfortunately cannot be put into the clone(..): 
00033 ALCARECOTkAlMuonIsolated.GlobalSelector.applyIsolationtest = True
00034 ALCARECOTkAlMuonIsolated.GlobalSelector.minJetDeltaR = 0.1
00035 ALCARECOTkAlMuonIsolated.GlobalSelector.applyGlobalMuonFilter = True
00036 ALCARECOTkAlMuonIsolated.TwoBodyDecaySelector.applyMassrangeFilter = False
00037 ALCARECOTkAlMuonIsolated.TwoBodyDecaySelector.applyChargeFilter = False
00038 ALCARECOTkAlMuonIsolated.TwoBodyDecaySelector.applyAcoplanarityFilter = False
00039 
00040 seqALCARECOTkAlMuonIsolated = cms.Sequence(ALCARECOTkAlMuonIsolatedHLT+ALCARECOTkAlMuonIsolatedDCSFilter+ALCARECOTkAlMuonIsolated)