Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:09:12

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 from DQM.TrackingMonitorSource.trackTypeMonitor_cfi import trackTypeMonitor
0004 TrackTypeMonitor = trackTypeMonitor.clone(
0005     trackInputTag      = 'selectedTracks',
0006     offlineBeamSpot    = 'offlineBeamSpot',
0007     trackQuality       = 'highPurity',
0008     vertexTag          = 'selectedPrimaryVertices',
0009     TrackEtaPar        = dict(Xbins = 60,Xmin = -3.0,Xmax = 3.0),
0010     TrackPtPar         = dict(Xbins = 100,Xmin = 0.0,Xmax = 100.0),
0011     TrackPPar          = dict(Xbins = 100,Xmin = 0.0,Xmax = 100.0),
0012     TrackPhiPar        = dict(Xbins = 100,Xmin = -4.0,Xmax = 4.0),
0013     TrackPterrPar      = dict(Xbins = 100,Xmin = 0.0,Xmax = 100.0),
0014     TrackqOverpPar     = dict(Xbins = 100,Xmin = -10.0,Xmax = 10.0),
0015     TrackdzPar         = dict(Xbins = 100,Xmin = -100.0,Xmax = 100.0),
0016     TrackChi2bynDOFPar = dict(Xbins = 100,Xmin = 0.0,Xmax = 10.0),
0017     nTracksPar         = dict(Xbins = 100,Xmin = -0.5,Xmax = 99.5)
0018 )