CMS 3D CMS Logo

TTCluster_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 TTClustersFromPhase2TrackerDigis = cms.EDProducer("TTClusterBuilder_Phase2TrackerDigi_",
4  rawHits = cms.VInputTag(cms.InputTag("mix","Tracker")),
5  ADCThreshold = cms.uint32(30),
6  storeLocalCoord = cms.bool(True), # if True, local coordinates (row and col)
7  # of each hit are stored in the cluster object
8 )
9 
10 from Configuration.ProcessModifiers.premix_stage2_cff import premix_stage2
11 premix_stage2.toModify(TTClustersFromPhase2TrackerDigis, rawHits = ["mixData:Tracker"])