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.StripSubClusterShapeFilter_cfi import StripSubClusterShapeFilterParams
0004 StripSubClusterShapeTrajectoryFilter = cms.PSet(
0005     StripSubClusterShapeFilterParams,
0006     ComponentType = cms.string('StripSubClusterShapeTrajectoryFilter'),
0007 )
0008 
0009 StripSubClusterShapeTrajectoryFilterTIB12 = cms.PSet(
0010     StripSubClusterShapeTrajectoryFilter,
0011     layerMask = cms.PSet(
0012         TIB = cms.vuint32(1,2),
0013         TOB = cms.bool(False),
0014         TID = cms.bool(False),
0015         TEC = cms.bool(False),
0016     ),
0017 )
0018 
0019 StripSubClusterShapeTrajectoryFilterTIX12 = cms.PSet(
0020     StripSubClusterShapeTrajectoryFilter,
0021     layerMask = cms.PSet(
0022         TIB = cms.vuint32(1,2),
0023         TOB = cms.bool(False),
0024         TID = cms.vuint32(1,2),
0025         TEC = cms.bool(False),
0026     ),
0027 )