Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 11:56:25

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 # configuration of the RecoAnalyzer
0004 #
0005 # makes some plots of the reconstruction
0006 RecoAnalyzer = cms.EDAnalyzer("RecoAnalyzer",
0007     SearchWindowPhiTEC = cms.untracked.double(0.05),
0008     # list of digi producers
0009     DigiProducersList = cms.VPSet(cms.PSet(
0010         DigiLabel = cms.string('\0'),
0011         DigiProducer = cms.string('siStripDigis')
0012     )),
0013     SearchWindowPhiTIB = cms.untracked.double(0.05),
0014     ROOTFileName = cms.untracked.string('RecoAnalyzer.histos.root'),
0015     SearchWindowZTOB = cms.untracked.double(1.0),
0016     ROOTFileCompression = cms.untracked.int32(1),
0017     ClusterProducer = cms.string('siStripClusters'),
0018     SearchWindowZTIB = cms.untracked.double(1.0),
0019     RecHitProducer = cms.string('siStripMatchedRecHits'),
0020     SearchWindowPhiTOB = cms.untracked.double(0.05)
0021 )
0022 
0023