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  UseExternalWeight = cms.bool(False),
7  useGENweights = cms.bool(False),
8  GENweightNumber = cms.int32(0),
9  GenEventInfoCollection = cms.InputTag('generator'),
10  useLHEweights = cms.bool(False),
11  LHEweightNumber = cms.int32(0),
12  LHECollection = cms.InputTag('source'),
13  CrossSection = cms.double(1000),
14  DoFinalize = cms.bool(True),
15  ProduceDQMOutput = cms.bool(False),
16  OutputFile = cms.string('out.aida')
17 )