Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:28:29

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 from RecoTracker.PixelLowPtUtilities.clusterShapeHitFilterESProducer_cfi import clusterShapeHitFilterESProducer
0004 ClusterShapeHitFilterESProducer = clusterShapeHitFilterESProducer.clone(ComponentName = 'ClusterShapeHitFilter',
0005                                                                         PixelShapeFile = 'RecoTracker/PixelLowPtUtilities/data/pixelShapePhase0.par',
0006                                                                         PixelShapeFileL1 = 'RecoTracker/PixelLowPtUtilities/data/pixelShapePhase0.par',
0007                                                                         clusterChargeCut = cms.PSet(refToPSet_ = cms.string('SiStripClusterChargeCutNone')),
0008                                                                         isPhase2 = False)
0009 
0010 from Configuration.Eras.Modifier_phase1Pixel_cff import phase1Pixel
0011 phase1Pixel.toModify(ClusterShapeHitFilterESProducer,
0012     PixelShapeFile = 'RecoTracker/PixelLowPtUtilities/data/pixelShapePhase1_noL1.par',
0013     PixelShapeFileL1 = 'RecoTracker/PixelLowPtUtilities/data/pixelShapePhase1_loose.par',
0014 )
0015 
0016 from Configuration.Eras.Modifier_phase2_tracker_cff import phase2_tracker
0017 phase2_tracker.toModify(ClusterShapeHitFilterESProducer,
0018     isPhase2 = True,
0019     PixelShapeFile = 'RecoTracker/PixelLowPtUtilities/data/ITShapePhase2_all.par',
0020     PixelShapeFileL1 = 'RecoTracker/PixelLowPtUtilities/data/ITShapePhase2_all.par',
0021 )