Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:22:10

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 # First register all the clustering algorithms, then specify preferred ones at end.
0004 
0005 # official clustering algorithm
0006 TTClusterAlgorithm_official_Phase2TrackerDigi_ = cms.ESProducer("TTClusterAlgorithm_official_Phase2TrackerDigi_",
0007     WidthCut = cms.int32(4)
0008 )
0009 
0010 # Neighbor clustering algorithm
0011 TTClusterAlgorithm_neighbor_Phase2TrackerDigi_ = cms.ESProducer("TTClusterAlgorithm_neighbor_Phase2TrackerDigi_")
0012 
0013 # Set the preferred hit matching algorithms.
0014 # We prefer the a algorithm for now in order not to break anything.
0015 # Override with process.TTClusterAlgorithm_PSimHit_ = ..., etc. in your
0016 # configuration.
0017 TTClusterAlgorithm_Phase2TrackerDigi_ = cms.ESPrefer("TTClusterAlgorithm_official_Phase2TrackerDigi_")
0018