Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:08:35

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 process = cms.Process("test")
0004 process.source = cms.Source("FragmentInput")
0005 
0006 process.out = cms.OutputModule("EventStreamFileWriter",
0007     streamLabel = cms.string('A'),
0008     max_queue_depth = cms.untracked.int32(5),
0009     maxSize = cms.int32(1000),
0010     compression_level = cms.untracked.int32(1),
0011     use_compression = cms.untracked.bool(False),
0012     max_event_size = cms.untracked.int32(25000000),
0013     SelectHLTOutput = cms.untracked.string('consumer')
0014 )
0015 
0016 process.e1 = cms.EndPath(process.out)
0017