CMS 3D CMS Logo

rivetAnalyzer_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 rivetAnalyzer = cms.EDAnalyzer('RivetAnalyzer',
4  AnalysisNames = cms.vstring('CMS_2010_S8808686', 'MC_DIPHOTON', 'MC_JETS', 'MC_GENERIC'),
5  HepMCCollection = cms.InputTag('generator:unsmeared'),
6  GenEventInfoCollection = cms.InputTag('generator'),
7  genLumiInfo = cms.InputTag("generator"),
8  # Info: useLHEWeights will create BIG yoda files with Rivet 3.
9  # Default plotting fails with too many histos, use -m/M options
10  useLHEweights = cms.bool(False),
11  weightCap = cms.double(0.),
12  NLOSmearing = cms.double(0.),
13  skipMultiWeights = cms.bool(False),
14  setIgnoreBeams = cms.bool(False),
15  selectMultiWeights = cms.string(''),
16  deselectMultiWeights = cms.string(''),
17  setNominalWeightName = cms.string(''),
18  LHECollection = cms.InputTag('externalLHEProducer'),
19  CrossSection = cms.double(-1),
20  DoFinalize = cms.bool(True),
21  OutputFile = cms.string('out.yoda')
22 )