CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_6_1_1/src/PhysicsTools/PatExamples/bin/analyzePatBasics_fwlite_cfg.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 process = cms.PSet()
00004 
00005 process.fwliteInput = cms.PSet(
00006     fileNames   = cms.vstring(['file:patTuple.root']),  ## mandatory
00007     maxEvents   = cms.int32(-1),
00008     outputEvery = cms.uint32(10)
00009     )
00010 
00011 process.fwliteOutput = cms.PSet(
00012     fileName  = cms.string('analyzePatBasics_fwlite.root') ## mandatory
00013     )
00014 
00015 process.muonAnalyzer = cms.PSet(
00016     muons = cms.InputTag('cleanPatMuons')
00017 )
00018