CMS 3D CMS Logo

/data/doxygen/doxygen-1.7.3/gen/CMSSW_4_2_8/src/RecoLocalMuon/CSCSegment/python/CSCSegmentAlgorithmTC_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 # following thresholds are optimized using a sample of single muons 
00004 # with flat pT (10 - 50 GeV) and eta (0.8 - 2.4) distributions
00005 #
00006 # The cuts dRPhiFineMax and dPhiFineMax where re-optimized using
00007 # MTCC data.
00008 TC_ME1234 = cms.PSet(
00009     dPhiFineMax = cms.double(0.02),
00010     verboseInfo = cms.untracked.bool(True),
00011     SegmentSorting = cms.int32(1),
00012     chi2Max = cms.double(6000.0),
00013     dPhiMax = cms.double(0.003),
00014     chi2ndfProbMin = cms.double(0.0001),
00015     minLayersApart = cms.int32(2),
00016     dRPhiFineMax = cms.double(6.0),
00017     dRPhiMax = cms.double(1.2)
00018 )
00019 TC_ME1A = cms.PSet(
00020     dPhiFineMax = cms.double(0.013),
00021     verboseInfo = cms.untracked.bool(True),
00022     SegmentSorting = cms.int32(1),
00023     chi2Max = cms.double(6000.0),
00024     dPhiMax = cms.double(0.00198),
00025     chi2ndfProbMin = cms.double(0.0001),
00026     minLayersApart = cms.int32(2),
00027     dRPhiFineMax = cms.double(3.0),
00028     dRPhiMax = cms.double(0.6)
00029 )
00030 CSCSegAlgoTC = cms.PSet(
00031     chamber_types = cms.vstring('ME1/a', 
00032         'ME1/b', 
00033         'ME1/2', 
00034         'ME1/3', 
00035         'ME2/1', 
00036         'ME2/2', 
00037         'ME3/1', 
00038         'ME3/2', 
00039         'ME4/1'),
00040     algo_name = cms.string('CSCSegAlgoTC'),
00041     algo_psets = cms.VPSet(cms.PSet(
00042         TC_ME1234
00043     ), 
00044         cms.PSet(
00045             TC_ME1A
00046         )),
00047     parameters_per_chamber_type = cms.vint32(2, 1, 1, 1, 1, 
00048         1, 1, 1, 1)
00049 )
00050