Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011 from RecoLocalMuon.DTRecHit.dt1DRecHits_LinearDriftFromDB_CosmicData_cfi import *
00012
00013
00014 from RecoLocalMuon.DTSegment.dt2DSegments_CombPatternReco2D_LinearDriftFromDB_CosmicData_cfi import *
00015
00016
00017 from RecoLocalMuon.DTSegment.dt4DSegments_CombPatternReco4D_LinearDriftFromDB_CosmicData_cfi import *
00018
00019
00020 import RecoLocalMuon.DTRecHit.dt1DRecHits_NoDrift_CosmicData_cfi
00021 dt1DRecHitsNoDrift = RecoLocalMuon.DTRecHit.dt1DRecHits_NoDrift_CosmicData_cfi.dt1DRecHits.clone()
00022 import RecoLocalMuon.DTSegment.dt4DSegments_CombPatternReco4D_NoDrift_CosmicData_cfi
00023 dt4DSegmentsNoDrift = RecoLocalMuon.DTSegment.dt4DSegments_CombPatternReco4D_NoDrift_CosmicData_cfi.dt4DSegments.clone()
00024
00025
00026 from RecoLocalMuon.DTSegment.dt4DSegments_ApplyT0Correction_cfi import *
00027
00028
00029
00030 from RecoLocalMuon.CSCRecHitD.cscRecHitD_cfi import *
00031
00032 from RecoLocalMuon.CSCSegment.cscSegments_cfi import *
00033
00034
00035 from RecoLocalMuon.RPCRecHit.rpcRecHits_cfi import *
00036
00037
00038
00039
00040 dtlocalreco = cms.Sequence(dt1DRecHits*dt4DSegments)
00041
00042 dtlocalreco_with_2DSegments = cms.Sequence(dt1DRecHits*dt2DSegments*dt4DSegments)
00043
00044 dtlocalrecoT0Seg = cms.Sequence(dt1DRecHits*dt4DSegments*dt4DSegmentsT0Seg)
00045
00046 dtlocalrecoNoDrift = cms.Sequence(dt1DRecHitsNoDrift*dt4DSegmentsNoDrift)
00047
00048 csclocalreco = cms.Sequence(csc2DRecHits*cscSegments)
00049
00050 muonlocalreco_with_2DSegments = cms.Sequence(dtlocalreco_with_2DSegments+csclocalreco+rpcRecHits)
00051
00052 muonlocalreco = cms.Sequence(dtlocalreco+csclocalreco+rpcRecHits)
00053
00054 muonlocalrecoNoDrift = cms.Sequence(dtlocalrecoNoDrift+csclocalreco+rpcRecHits)
00055
00056 muonlocalrecoT0Seg = cms.Sequence(dtlocalrecoT0Seg+csclocalreco+rpcRecHits)
00057
00058 muonLocalRecoGR = cms.Sequence(muonlocalreco+muonlocalrecoNoDrift+muonlocalrecoT0Seg)
00059
00060
00061
00062 DTCombinatorialPatternReco2DAlgo_LinearDriftFromDB_CosmicData.Reco2DAlgoConfig.segmCleanerMode = 2
00063 DTCombinatorialPatternReco2DAlgo_LinearDriftFromDB_CosmicData.Reco2DAlgoConfig.MaxAllowedHits = 30
00064 DTCombinatorialPatternReco4DAlgo_LinearDriftFromDB_CosmicData.Reco4DAlgoConfig.segmCleanerMode = 2
00065