Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008 import math
00009 import FWCore.ParameterSet.Config as cms
00010
00011 fftjet_pileup_analyzer = cms.EDAnalyzer(
00012 "FFTJetPileupAnalyzer",
00013
00014
00015 histoLabel = cms.InputTag("pileupprocessor", "FFTJetPileupPFStudy"),
00016
00017
00018 summaryLabel = cms.InputTag("pileupestimator", "FFTJetPileupEstimatePFUncalib"),
00019
00020
00021 pileupLabel = cms.string("addPileupInfo"),
00022
00023
00024 fastJetRhoLabel = cms.InputTag(""),
00025 fastJetSigmaLabel = cms.InputTag(""),
00026
00027
00028 gridLabel = cms.InputTag("fftjetpatreco", "FFTJetPatternRecognition"),
00029
00030
00031 srcPVs = cms.InputTag("offlinePrimaryVertices"),
00032
00033
00034 vertexNdofCut = cms.double(4.0),
00035
00036
00037 ntupleName = cms.string("FFTJetPileupAnalyzer"),
00038 ntupleTitle = cms.string("FFTJetPileupAnalyzer ntuple"),
00039
00040
00041 collectHistos = cms.bool(False),
00042 collectPileup = cms.bool(True),
00043 collectOOTPileup = cms.bool(False),
00044 collectFastJetRho = cms.bool(False),
00045 collectSummaries = cms.bool(True),
00046 collectGrids = cms.bool(False),
00047 collectGridDensity = cms.bool(False),
00048 collectVertexInfo = cms.bool(False),
00049 verbosePileupInfo = cms.bool(False),
00050
00051
00052
00053
00054 crazyEnergyCut = cms.double(2000.0)
00055 )