CMS 3D CMS Logo

RecoAnalyzer_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # configuration of the RecoAnalyzer
4 #
5 # makes some plots of the reconstruction
6 RecoAnalyzer = cms.EDAnalyzer("RecoAnalyzer",
7  SearchWindowPhiTEC = cms.untracked.double(0.05),
8  # list of digi producers
9  DigiProducersList = cms.VPSet(cms.PSet(
10  DigiLabel = cms.string('\0'),
11  DigiProducer = cms.string('siStripDigis')
12  )),
13  SearchWindowPhiTIB = cms.untracked.double(0.05),
14  ROOTFileName = cms.untracked.string('RecoAnalyzer.histos.root'),
15  SearchWindowZTOB = cms.untracked.double(1.0),
16  ROOTFileCompression = cms.untracked.int32(1),
17  ClusterProducer = cms.string('siStripClusters'),
18  SearchWindowZTIB = cms.untracked.double(1.0),
19  RecHitProducer = cms.string('siStripMatchedRecHits'),
20  SearchWindowPhiTOB = cms.untracked.double(0.05)
21 )
22 
23