CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
SiPixelErrorEstimation_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 PixelErrorEstimation = cms.EDAnalyzer("SiPixelErrorEstimation",
4  # The type of particle that the simHit associated with recHits should be
5  genType = cms.int32(13),
6  # Replace "ctfWithMaterialTracks" with "generalTracks"
7  #untracked string src = "ctfWithMaterialTracks"
8  src = cms.untracked.string('generalTracks'),
9  outputFile = cms.untracked.string('SiPixelErrorEstimation_Ntuple.root'),
10  # Include track hits ?
11  include_trk_hits = cms.bool(True),
12  # Do we check that the simHit associated with recHit is of the expected particle type ?
13  checkType = cms.bool(False)
14 )
15 
16