Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-03-17 10:54:58

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 process = cms.Process("Demo")
0004 
0005 process.load("FWCore.MessageService.MessageLogger_cfi")
0006 
0007 process.maxEvents = cms.untracked.PSet( input = cms.untracked.int32(-1) )
0008 
0009 process.source = cms.Source("PoolSource",
0010     # replace 'myfile.root' with the source file you want to use
0011     fileNames = cms.untracked.vstring(
0012         'file:myfile.root'
0013     )
0014 )
0015 
0016 process.demo = cms.EDAnalyzer('HcalTasks'
0017 )
0018 
0019 
0020 process.p = cms.Path(process.demo)