> > | process.out = cms.OutputModule("AsciiOutputModule",
outputCommands = cms.untracked.vstring(
"keep *_siPixelDigis_*_*",
"keep *_pixelVertices_*_*",
),
verbosity = cms.untracked.uint32(0),
)
# Additional output definition
# Other statements
from CustomConfigs import ProcessName
process = ProcessName (process)
from GlobalTag import GlobalTag
# process.GlobalTag = GlobalTag (process.GlobalTag, 'auto:run2_hlt_relval', '')
process.GlobalTag = GlobalTag (process.GlobalTag, 'auto:run2_data_promptlike', '')
# Path and EndPath definitions
process.raw2digi_step = cms.Path(process.RawToDigi_pixelOnly)
process.reconstruction_step = cms.Path(process.reconstruction_pixelTrackingOnly)
process.output_step = cms.EndPath(process.out)
|