File indexing completed on 2024-04-06 12:25:26
0001
0002
0003
0004
0005
0006
0007
0008 import math
0009 import FWCore.ParameterSet.Config as cms
0010
0011 fftjetPileupAnalyzer = cms.EDAnalyzer(
0012 "FFTJetPileupAnalyzer",
0013
0014
0015 histoLabel = cms.InputTag("pileupprocessor", "FFTJetPileupPFStudy"),
0016
0017
0018 summaryLabel = cms.InputTag("pileupestimator", "FFTJetPileupEstimatePFUncalib"),
0019
0020
0021 pileupLabel = cms.string("addPileupInfo"),
0022
0023
0024 fastJetRhoLabel = cms.InputTag(""),
0025 fastJetSigmaLabel = cms.InputTag(""),
0026
0027
0028 gridLabel = cms.InputTag("fftjetpatreco", "FFTJetPatternRecognition"),
0029
0030
0031 srcPVs = cms.InputTag("offlinePrimaryVertices"),
0032
0033
0034 vertexNdofCut = cms.double(4.0),
0035
0036
0037 ntupleName = cms.string("FFTJetPileupAnalyzer"),
0038 ntupleTitle = cms.string("FFTJetPileupAnalyzer ntuple"),
0039
0040
0041 collectHistos = cms.bool(False),
0042 collectPileup = cms.bool(True),
0043 collectOOTPileup = cms.bool(False),
0044 collectNumInteractions = cms.bool(True),
0045 collectFastJetRho = cms.bool(False),
0046 collectSummaries = cms.bool(True),
0047 collectGrids = cms.bool(False),
0048 collectGridDensity = cms.bool(False),
0049 collectVertexInfo = cms.bool(False),
0050 verbosePileupInfo = cms.bool(False),
0051
0052
0053
0054
0055 crazyEnergyCut = cms.double(2500.0)
0056 )