Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:10:39

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 process = cms.Process('ESDIGI2RAW')
0004 
0005 process.load('Configuration/StandardSequences/Services_cff')
0006 process.load('FWCore/MessageService/MessageLogger_cfi')
0007 process.load('EventFilter/ESDigiToRaw/esDigiToRaw_cfi')
0008 process.esDigiToRaw.debugMode = True
0009 
0010 process.maxEvents = cms.untracked.PSet(
0011     input = cms.untracked.int32(10)
0012     )
0013 
0014 # Input source
0015 process.source = cms.Source("PoolSource",
0016                             fileNames = cms.untracked.vstring('file:/home/cmkuo/CMSSW/tmp/CMSSW_3_1_0_pre2/src/2C187380-6203-DE11-9794-001617C3B76E.root')
0017                             )
0018 
0019 # Output definition
0020 process.output = cms.OutputModule("PoolOutputModule",
0021                                   fileName = cms.untracked.string('digi2raw.root'),
0022                                   )
0023 
0024 process.digi2raw = cms.Path(process.esDigiToRaw)
0025 process.out_step = cms.EndPath(process.output)
0026 
0027 process.schedule = cms.Schedule(process.digi2raw, process.out_step)
0028