Go to the documentation of this file.00001
00002
00003
00004
00005
00006 import FWCore.ParameterSet.Config as cms
00007
00008 TrackSplitMonitor = cms.EDAnalyzer("TrackSplittingMonitor",
00009
00010 OutputMEsInRootFile = cms.bool(False),
00011 OutputFileName = cms.string('MonitorTrackSplit.root'),
00012
00013 FolderName = cms.string('TrackSplitMonitoring'),
00014
00015 splitTrackCollection = cms.InputTag("splittedTracksP5"),
00016 splitMuonCollection = cms.InputTag("splitMuons"),
00017 ifPlotMuons = cms.bool(True),
00018
00019 pixelHitsPerLeg = cms.int32( 1 ),
00020 totalHitsPerLeg = cms.int32( 6 ),
00021 d0Cut = cms.double( 12.0 ),
00022 dzCut = cms.double( 25.0 ),
00023 ptCut = cms.double( 4.0 ),
00024 norchiCut = cms.double( 100.0 ),
00025
00026 ddxyBin = cms.int32(100),
00027 ddxyMin = cms.double(-200.0),
00028 ddxyMax = cms.double(200.0),
00029
00030 ddzBin = cms.int32(100),
00031 ddzMin = cms.double(-400.0),
00032 ddzMax = cms.double(400.0),
00033
00034 dphiBin = cms.int32(100),
00035 dphiMin = cms.double(-0.01),
00036 dphiMax = cms.double(0.01),
00037
00038 dthetaBin = cms.int32(100),
00039 dthetaMin = cms.double(-0.01),
00040 dthetaMax = cms.double(0.01),
00041
00042 dptBin = cms.int32(100),
00043 dptMin = cms.double(-5.0),
00044 dptMax = cms.double(5.0),
00045
00046 dcurvBin = cms.int32(100),
00047 dcurvMin = cms.double(-0.005),
00048 dcurvMax = cms.double(0.005),
00049
00050 normBin = cms.int32(100),
00051 normMin = cms.double(-5.0),
00052 normMax = cms.double(5.0)
00053 )