Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003
00004 MonitorTrackResiduals = cms.EDAnalyzer("MonitorTrackResiduals",
00005 OutputMEsInRootFile = cms.bool(False),
00006
00007 Mod_On = cms.bool(True),
00008 trajectoryInput = cms.string('TrackRefitter'),
00009 OutputFileName = cms.string('test_monitortracks.root'),
00010
00011 TH1ResModules = cms.PSet(
00012 xmin = cms.double(-0.05),
00013 Nbinx = cms.int32(100),
00014 xmax = cms.double(0.05)
00015 ),
00016 TH1NormResModules = cms.PSet(
00017 xmin = cms.double(-5.0),
00018 Nbinx = cms.int32(100),
00019 xmax = cms.double(5.0)
00020 ),
00021
00022
00023 Tracks = cms.InputTag("TrackRefitter"),
00024
00025 ResetAfterRun = cms.bool(True)
00026 )
00027
00028