CMS 3D CMS Logo

customizePixelTracksForProfiling.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
4  process.out = cms.OutputModule("AsciiOutputModule",
5  outputCommands = cms.untracked.vstring(
6  "keep *_pixelTracks_*_*",
7  ),
8  verbosity = cms.untracked.uint32(0),
9  )
10 
11  process.outPath = cms.EndPath(process.out)
12 
13  process.schedule = cms.Schedule(process.raw2digi_step, process.reconstruction_step, process.outPath)
14 
15  return process