CMS 3D CMS Logo

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

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 import HLTrigger.HLTfilters.hltHighLevel_cfi
00004 # AlCaReco for track based Alignment using ZMuMu events
00005 ALCARECOTkAlZMuMuHLT = HLTrigger.HLTfilters.hltHighLevel_cfi.hltHighLevel.clone(
00006     andOr = True, ## choose logical OR between Triggerbits
00007     eventSetupPathsKey = 'TkAlZMuMu',
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 ALCARECOTkAlZMuMuDCSFilter = DPGAnalysis.Skims.skim_detstatus_cfi.dcsstatus.clone(
00017     DetectorType = cms.vstring('TIBTID','TOB','TECp','TECm','BPIX','FPIX',
00018                                'DT0','DTp','DTm','CSCp','CSCm'),
00019     ApplyFilter  = cms.bool(True),
00020     AndOr        = cms.bool(True),
00021     DebugOn      = cms.untracked.bool(False)
00022 )
00023 
00024 import Alignment.CommonAlignmentProducer.TkAlMuonSelectors_cfi
00025 ALCARECOTkAlZMuMuGoodMuons = Alignment.CommonAlignmentProducer.TkAlMuonSelectors_cfi.TkAlGoodIdMuonSelector.clone()
00026 ALCARECOTkAlZMuMuRelCombIsoMuons = Alignment.CommonAlignmentProducer.TkAlMuonSelectors_cfi.TkAlRelCombIsoMuonSelector.clone(
00027     src = 'ALCARECOTkAlZMuMuGoodMuons'
00028 )
00029 
00030 import Alignment.CommonAlignmentProducer.AlignmentTrackSelector_cfi
00031 ALCARECOTkAlZMuMu = Alignment.CommonAlignmentProducer.AlignmentTrackSelector_cfi.AlignmentTrackSelector.clone()
00032 ALCARECOTkAlZMuMu.filter = True ##do not store empty events
00033 
00034 ALCARECOTkAlZMuMu.applyBasicCuts = True
00035 ALCARECOTkAlZMuMu.ptMin = 15.0 ##GeV
00036 ALCARECOTkAlZMuMu.etaMin = -3.5
00037 ALCARECOTkAlZMuMu.etaMax = 3.5
00038 ALCARECOTkAlZMuMu.nHitMin = 0
00039 
00040 ALCARECOTkAlZMuMu.GlobalSelector.muonSource = 'ALCARECOTkAlZMuMuRelCombIsoMuons'
00041 # Isolation is shifted to the muon preselection, and then applied intrinsically if applyGlobalMuonFilter = True
00042 ALCARECOTkAlZMuMu.GlobalSelector.applyIsolationtest = False
00043 ALCARECOTkAlZMuMu.GlobalSelector.applyGlobalMuonFilter = True
00044 
00045 ALCARECOTkAlZMuMu.TwoBodyDecaySelector.applyMassrangeFilter = True
00046 ALCARECOTkAlZMuMu.TwoBodyDecaySelector.minXMass = 65.0 ##GeV
00047 ALCARECOTkAlZMuMu.TwoBodyDecaySelector.maxXMass = 115.0 ##GeV
00048 ALCARECOTkAlZMuMu.TwoBodyDecaySelector.daughterMass = 0.105 ##GeV (Muons)
00049 ALCARECOTkAlZMuMu.TwoBodyDecaySelector.applyChargeFilter = True
00050 ALCARECOTkAlZMuMu.TwoBodyDecaySelector.charge = 0
00051 ALCARECOTkAlZMuMu.TwoBodyDecaySelector.applyAcoplanarityFilter = False
00052 ALCARECOTkAlZMuMu.TwoBodyDecaySelector.numberOfCandidates = 1
00053 
00054 seqALCARECOTkAlZMuMu = cms.Sequence(ALCARECOTkAlZMuMuHLT+ALCARECOTkAlZMuMuDCSFilter+ALCARECOTkAlZMuMuGoodMuons+ALCARECOTkAlZMuMuRelCombIsoMuons+ALCARECOTkAlZMuMu)