CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_10/src/Alignment/LaserAlignment/python/RecoAnalyzer_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 # configuration of the RecoAnalyzer
00004 #
00005 # makes some plots of the reconstruction
00006 RecoAnalyzer = cms.EDAnalyzer("RecoAnalyzer",
00007     SearchWindowPhiTEC = cms.untracked.double(0.05),
00008     # list of digi producers
00009     DigiProducersList = cms.VPSet(cms.PSet(
00010         DigiLabel = cms.string('\0'),
00011         DigiProducer = cms.string('siStripDigis')
00012     )),
00013     SearchWindowPhiTIB = cms.untracked.double(0.05),
00014     ROOTFileName = cms.untracked.string('RecoAnalyzer.histos.root'),
00015     SearchWindowZTOB = cms.untracked.double(1.0),
00016     ROOTFileCompression = cms.untracked.int32(1),
00017     ClusterProducer = cms.string('siStripClusters'),
00018     SearchWindowZTIB = cms.untracked.double(1.0),
00019     RecHitProducer = cms.string('siStripMatchedRecHits'),
00020     SearchWindowPhiTOB = cms.untracked.double(0.05)
00021 )
00022 
00023