CMS 3D CMS Logo

TrackParameterAnalyzer_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 simpleTrackAnalysis = cms.EDAnalyzer("TrackParameterAnalyzer",
4  simG4 = cms.InputTag("g4SimHits"),
5  outputFile = cms.untracked.string('simpleTrackParameterAnalyzer.root'),
6  recoTrackProducer = cms.untracked.string('generalTracks'),
7  verbose = cms.untracked.bool(True)
8 )
9 
10 
11