Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:32:09

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 process = cms.Process("TPGVERIF")
0004 process.source = cms.Source("PoolSource",
0005     fileNames = cms.untracked.vstring('file:TrigPrim.root')
0006 )
0007 
0008 process.maxEvents = cms.untracked.PSet(
0009     input = cms.untracked.int32(-1)
0010 )
0011 
0012 process.tpgcheck = cms.EDAnalyzer("TPGCheck",
0013     Producer = cms.string(''),
0014     Label = cms.string('simEcalTriggerPrimitiveDigis')
0015 )
0016 
0017 process.Timing = cms.Service("Timing")
0018 
0019 process.MessageLogger = cms.Service("MessageLogger")
0020 
0021 process.p = cms.Path(process.tpgcheck)
0022 
0023