Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2025-03-26 01:51:08

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 from DQMServices.Core.DQM_cfg import *
0004 DQMStore.collateHistograms =cms.untracked.bool(True)
0005 from DQM.TrackingMonitorSource.TrackToTrackComparisonHists_cfi import TrackToTrackComparisonHists
0006 
0007 hltCtfWithMaterialTracksP5_2_ctfWithMaterialTracksP5 = TrackToTrackComparisonHists.clone(
0008     monitoredTrack           = "hltCtfWithMaterialTracksP5",
0009     referenceTrack           = "ctfWithMaterialTracksP5",
0010     monitoredBeamSpot        = "hltOnlineBeamSpot",
0011     referenceBeamSpot        = "offlineBeamSpot",
0012     topDirName               = "HLT/Tracking/ValidationWRTOffline/hltCtfWithMaterialTracksP5",
0013     referencePrimaryVertices = "offlinePrimaryVertices",
0014     monitoredPrimaryVertices = "hltPixelVertices",
0015     isCosmics                = cms.bool(True),
0016     dxyCutForPlateau         = 1e6,
0017     histoPSet                = dict(
0018         Dxy_rangeMin = -60,
0019         Dxy_rangeMax = 60,
0020         Dxy_nbin = 120,
0021         Dz_rangeMin = -250,
0022         Dz_rangeMax =  250,
0023         Dz_nbin = 250,
0024     ) 
0025 )
0026 
0027 hltToOfflineCosmicsTrackValidatorSequence = cms.Sequence(hltCtfWithMaterialTracksP5_2_ctfWithMaterialTracksP5)