6 import FWCore.ParameterSet.Config
as cms
8 TrackSplitMonitor = cms.EDAnalyzer(
"TrackSplittingMonitor",
10 FolderName = cms.string(
'TrackSplitMonitoring'),
12 splitTrackCollection = cms.InputTag(
"splittedTracksP5"),
13 splitMuonCollection = cms.InputTag(
"splitMuons"),
14 ifPlotMuons = cms.bool(
True),
16 pixelHitsPerLeg = cms.int32( 1 ),
17 totalHitsPerLeg = cms.int32( 6 ),
18 d0Cut = cms.double( 12.0 ),
19 dzCut = cms.double( 25.0 ),
20 ptCut = cms.double( 4.0 ),
21 norchiCut = cms.double( 100.0 ),
23 ddxyBin = cms.int32(100),
24 ddxyMin = cms.double(-200.0),
25 ddxyMax = cms.double(200.0),
27 ddzBin = cms.int32(100),
28 ddzMin = cms.double(-400.0),
29 ddzMax = cms.double(400.0),
31 dphiBin = cms.int32(100),
32 dphiMin = cms.double(-0.01),
33 dphiMax = cms.double(0.01),
35 dthetaBin = cms.int32(100),
36 dthetaMin = cms.double(-0.01),
37 dthetaMax = cms.double(0.01),
39 dptBin = cms.int32(100),
40 dptMin = cms.double(-5.0),
41 dptMax = cms.double(5.0),
43 dcurvBin = cms.int32(100),
44 dcurvMin = cms.double(-0.005),
45 dcurvMax = cms.double(0.005),
47 normBin = cms.int32(100),
48 normMin = cms.double(-5.0),
49 normMax = cms.double(5.0)