Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 process = cms.PSet()
0004 
0005 process.fwliteInput = cms.PSet(
0006     fileNames   = cms.vstring('file:patTuple.root'), ## mandatory
0007     maxEvents   = cms.int32(100),                            ## optional
0008     outputEvery = cms.uint32(10),                            ## optional
0009 )
0010     
0011 process.fwliteOutput = cms.PSet(
0012     fileName  = cms.string('analyzeFWLiteHistograms.root'),  ## mandatory
0013 )
0014 
0015 process.btagAnalyzer = cms.PSet(
0016     ## input specific for this analyzer
0017  Jets = cms.InputTag("cleanPatJets"),    
0018    bTagAlgo=cms.string('trackCountingHighEffBJetTags'),
0019    bins=cms.uint32(100),
0020    lowerbin=cms.double(0.),
0021    upperbin=cms.double(10.)
0022 )
0023 process.jecAnalyzer = cms.PSet(
0024     ## input specific for this analyzer
0025       Jets = cms.InputTag("cleanPatJets"),
0026   jecLevel=cms.string("L2Relative"),
0027   patJetCorrFactors= cms.string('patJetCorrFactors')
0028 )