Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:24:56

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     fileNames = cms.untracked.vstring(
0011         'file:reco2012C.root'
0012 #        'file:reco2012_New.root'
0013     )
0014 )
0015 
0016 # process.TFileService = cms.Service("TFileService",fileName=cms.string('vHisto.root'))
0017 
0018 
0019 process.demo = cms.EDAnalyzer('TestEgammaTowerIsolation')
0020 process.mypath = cms.Path(process.demo)
0021 process.schedule = cms.Schedule(process.mypath)
0022