Skip to content

Commit

Permalink
Merge pull request #46285 from sroychow/cosmicspixclusterCut140X
Browse files Browse the repository at this point in the history
[14.0.X]Increase threshold of max number of pixel clusters for cosmic tracking
  • Loading branch information
cmsbuild authored Oct 8, 2024
2 parents 4783bf1 + f97723d commit 51abaed
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@
ClusterCollectionLabel = cms.InputTag("siStripClusters"),
MaxNumberOfStripClusters = cms.uint32(300),
PixelClusterCollectionLabel = cms.InputTag("siPixelClusters"),
MaxNumberOfPixelClusters = cms.uint32(300),
MaxNumberOfPixelClusters = cms.uint32(1000),
requireBOFF = cms.bool(False),
maxSeeds = cms.int32(10000),
)
Expand Down
2 changes: 1 addition & 1 deletion RecoTracker/SpecialSeedGenerators/python/CosmicSeed_cfi.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
DontCountDetsAboveNClusters = cms.uint32(20),
originRadius = cms.double(150.0),
ClusterCollectionLabel = cms.InputTag("siStripClusters"),
MaxNumberOfPixelClusters = cms.uint32(300),
MaxNumberOfPixelClusters = cms.uint32(1000),
PixelClusterCollectionLabel = cms.InputTag("siPixelClusters"),
originHalfLength = cms.double(90.0),
#***top-bottom
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def makeSimpleCosmicSeedLayers(*layers):
MaxNumberOfStripClusters = cms.uint32(300),
ClusterCollectionLabel = cms.InputTag("siStripClusters"),
DontCountDetsAboveNClusters = cms.uint32(20), # if N > 0, ignore in total the dets with more than N clusters
MaxNumberOfPixelClusters = cms.uint32(300),
MaxNumberOfPixelClusters = cms.uint32(1000),
PixelClusterCollectionLabel = cms.InputTag("siPixelClusters")
),
maxTriplets = cms.int32(50000),
Expand Down

0 comments on commit 51abaed

Please sign in to comment.