CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
SiPixelLorentzAngle_cfi.py
Go to the documentation of this file.
1 # The following comments couldn't be translated into the new config version:
2 
3 # bool MTCCtrack= false
4 
5 import FWCore.ParameterSet.Config as cms
6 
7 read = cms.EDAnalyzer("SiPixelLorentzAngle",
8  #what type of tracks should be used:
9  # string src = "generalTracks"
10  src = cms.string('globalMuons'),
11  binsDepth = cms.int32(50),
12  Fitter = cms.string('KFFittingSmoother'),
13  fileNameFit = cms.string('lorentzFit.txt'),
14  #in case of MC set this to true to save the simhits
15  simData = cms.bool(False),
16  TTRHBuilder = cms.string('WithTrackAngle'),
17  ptMin = cms.double(3.0),
18  fileName = cms.string('lorentzangle.root'),
19  Propagator = cms.string('PropagatorWithMaterial'),
20  binsDrift = cms.int32(60)
21 )
22 
23