File indexing completed on 2024-04-06 12:09:05
0001 import FWCore.ParameterSet.Config as cms
0002
0003 from DQM.TrackingMonitor.TrackingMonitor_cfi import *
0004 TrackerHeavyIonTrackMon = TrackMon.clone(
0005
0006 TrackProducer = "hiGeneralTracks",
0007 SeedProducer = "hiPixelTrackSeeds",
0008 TCProducer = "hiPrimTrackCandidates",
0009 beamSpot = "offlineBeamSpot",
0010 primaryVertex = 'hiSelectedVertex',
0011
0012 doHIPlots = True,
0013
0014 AlgoName = 'HeavyIonTk',
0015 Quality = '',
0016 FolderName = 'Tracking/GlobalParameters',
0017 BSFolderName = 'Tracking/BeamSpotParameters',
0018
0019 MeasurementState = 'ImpactPoint',
0020
0021 doTrackerSpecific = True,
0022 doAllPlots = True,
0023 doBeamSpotPlots = True,
0024 doSeedParameterHistos = True,
0025
0026 doLumiAnalysis = True,
0027
0028
0029 TkSizeBin = 600,
0030 TkSizeMax = 1799.5,
0031 TkSizeMin = -0.5,
0032
0033
0034 Chi2NDFBin = 160,
0035 Chi2NDFMax = 79.5,
0036 Chi2NDFMin = -0.5
0037 )