CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
SiPixelTrackingRecHitsValid_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 PixelTrackingRecHitsValid = cms.EDAnalyzer("SiPixelTrackingRecHitsValid",
4  src = cms.untracked.string('generalTracks'),
5  runStandalone = cms.bool(False),
6  outputFile = cms.untracked.string(''),
7  #debugNtuple = cms.untracked.string('SiPixelTrackingRecHitsValid_Ntuple.root'),
8  debugNtuple = cms.untracked.string(''),
9  Fitter = cms.string('KFFittingSmoother'),
10  # do we check that the simHit associated with recHit is of the expected particle type ?
11  checkType = cms.bool(True),
12  MTCCtrack = cms.bool(False),
13  TTRHBuilder = cms.string('WithAngleAndTemplate'),
14  # the type of particle that the simHit associated with recHits should be
15  genType = cms.int32(13),
16  associatePixel = cms.bool(True),
17  associateRecoTracks = cms.bool(False),
18  associateStrip = cms.bool(False),
19  pixelSimLinkSrc = cms.InputTag("simSiPixelDigis"),
20  stripSimLinkSrc = cms.InputTag("simSiStripDigis"),
21  ROUList = cms.vstring('g4SimHitsTrackerHitsPixelBarrelLowTof',
22  'g4SimHitsTrackerHitsPixelBarrelHighTof',
23  'g4SimHitsTrackerHitsPixelEndcapLowTof',
24  'g4SimHitsTrackerHitsPixelEndcapHighTof'),
25  Propagator = cms.string('PropagatorWithMaterial')
26  )
27 
28