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  simTrackHits = cms.InputTag("g4SimHits"),
6  ADCThreshold = cms.uint32(30),
7  storeLocalCoord = cms.bool(True), # if True, local coordinates (row and col)
8  # of each hit are stored in the cluster object
9 )
10