CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
analyzePatBasics_fwlite_cfg.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 process = cms.PSet()
4 
5 process.fwliteInput = cms.PSet(
6  fileNames = cms.vstring(['file:patTuple.root']), ## mandatory
7  maxEvents = cms.int32(-1),
8  outputEvery = cms.uint32(10)
9  )
10 
11 process.fwliteOutput = cms.PSet(
12  fileName = cms.string('analyzePatBasics_fwlite.root') ## mandatory
13  )
14 
15 process.muonAnalyzer = cms.PSet(
16  muons = cms.InputTag('cleanPatMuons')
17 )
18