CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_14/src/Validation/RecoTrack/python/SiPixelTrackingRecHitsValid_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 PixelTrackingRecHitsValid = cms.EDAnalyzer("SiPixelTrackingRecHitsValid",
00004                                          src = cms.untracked.string('generalTracks'),
00005                                          outputFile = cms.untracked.string(''),
00006                                          #debugNtuple = cms.untracked.string('SiPixelTrackingRecHitsValid_Ntuple.root'),
00007                                          debugNtuple = cms.untracked.string(''),
00008                                          Fitter = cms.string('KFFittingSmoother'),
00009                                          # do we check that the simHit associated with recHit is of the expected particle type ?
00010                                          checkType = cms.bool(True),
00011                                          MTCCtrack = cms.bool(False),
00012                                          TTRHBuilder = cms.string('WithAngleAndTemplate'),
00013                                          # the type of particle that the simHit associated with recHits should be
00014                                          genType = cms.int32(13),
00015                                          associatePixel = cms.bool(True),
00016                                          associateRecoTracks = cms.bool(False),
00017                                          associateStrip = cms.bool(False),
00018                                          ROUList = cms.vstring('g4SimHitsTrackerHitsPixelBarrelLowTof', 
00019                                                                'g4SimHitsTrackerHitsPixelBarrelHighTof', 
00020                                                                'g4SimHitsTrackerHitsPixelEndcapLowTof', 
00021                                                                'g4SimHitsTrackerHitsPixelEndcapHighTof'),
00022                                          Propagator = cms.string('PropagatorWithMaterial')
00023                                          )
00024 
00025