Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 11:59:35

0001 # The following comments couldn't be translated into the new config version:
0002 
0003 #   bool MTCCtrack= false
0004 
0005 import FWCore.ParameterSet.Config as cms
0006 
0007 read = cms.EDAnalyzer("SiPixelLorentzAngle",
0008     #what type of tracks should be used: 
0009     #       string src = "generalTracks"
0010     src = cms.string('globalMuons'),
0011     binsDepth = cms.int32(50),
0012     Fitter = cms.string('KFFittingSmoother'),
0013     fileNameFit = cms.string('lorentzFit.txt'),
0014     #in case of MC set this to true to save the simhits
0015     simData = cms.bool(False),
0016     TTRHBuilder = cms.string('WithTrackAngle'),
0017     ptMin = cms.double(3.0),
0018     fileName = cms.string('lorentzangle.root'),
0019     Propagator = cms.string('PropagatorWithMaterial'),
0020     binsDrift = cms.int32(60)
0021 )
0022 
0023