Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-03-17 11:10:33

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 process = cms.Process("SLINKTORAW")
0004 process.load("IORawData.SiPixelInputSources.PixelSLinkDataInputSource_cfi")
0005 
0006 process.maxEvents = cms.untracked.PSet(
0007     input = cms.untracked.int32(10000)
0008 )
0009 process.MessageLogger = cms.Service("MessageLogger",
0010     cerr = cms.untracked.PSet(
0011         enable = cms.untracked.bool(False)
0012     ),
0013     cout = cms.untracked.PSet(
0014         enable = cms.untracked.bool(True),
0015         threshold = cms.untracked.string('DEBUG')
0016     )
0017 )
0018 
0019 process.out = cms.OutputModule("PoolOutputModule",
0020     fileName = cms.untracked.string('myfile.root')
0021 )
0022 
0023 process.e = cms.EndPath(process.out)
0024 process.PixelSLinkDataInputSource.fileNames = ['rfio:/castor/cern.ch/cms/store/TAC/PIXEL/FPIX/HC+Z1/SCurve_565.dmp']
0025 
0026