CMS 3D CMS Logo

LaserClusterizer_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # configuration of the Laser Clusterizer
4 #
5 siStripClusters = cms.EDFilter("LaserClusterizer",
6  ClusterMode = cms.string('LaserBeamClusterizer'),
7  DigiProducersList = cms.VPSet(cms.PSet(
8  DigiLabel = cms.string('\0'),
9  DigiProducer = cms.string('LaserAlignment')
10  )),
11  # width of the clusters in sigma's
12  ClusterWidth = cms.double(1.0),
13  BeamFitProducer = cms.string('LaserAlignment')
14 )
15 
16