Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:13:30

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 process = cms.Process('Analysis')
0004 
0005 process.maxEvents = cms.untracked.PSet(
0006     input = cms.untracked.int32(-1)
0007 )
0008 
0009 process.source = cms.Source("PoolSource",
0010     fileNames = cms.untracked.vstring("file:Exhume.root")
0011 )
0012 
0013 process.analyzer = cms.EDAnalyzer("ExhumeAnalyzer",
0014         GenParticleTag = cms.InputTag("genParticles"),
0015         EBeam = cms.double(4000.)
0016 )
0017 
0018 process.add_(cms.Service("TFileService",
0019         fileName = cms.string("analysisExhume_histos.root")
0020     )
0021 )
0022 
0023 process.analysis = cms.Path(process.analyzer)