Go to the documentation of this file.00001 import math
00002 import FWCore.ParameterSet.Config as cms
00003
00004 from RecoJets.FFTJetProducers.fftjetcommon_cfi import *
00005
00006
00007 fftjet_eflow_smoother = cms.EDProducer(
00008 "FFTJetEFlowSmoother",
00009
00010
00011 kernelEtaScale = cms.double(math.sqrt(1.0/fftjet_phi_to_eta_bw_ratio)),
00012 kernelPhiScale = cms.double(math.sqrt(fftjet_phi_to_eta_bw_ratio)),
00013
00014
00015 fixEfficiency = cms.bool(False),
00016
00017
00018
00019
00020 convolverMinBin = cms.uint32(0),
00021 convolverMaxBin = cms.uint32(fftjet_large_int),
00022
00023
00024 outputLabel = cms.string("FFTJetEFlowSmoother"),
00025
00026
00027 src = cms.InputTag("towerMaker"),
00028
00029
00030
00031
00032 jetType = cms.string("CaloJet"),
00033
00034
00035 doPVCorrection = cms.bool(False),
00036
00037
00038
00039 srcPVs = cms.InputTag("offlinePrimaryVertices"),
00040
00041
00042 etaDependentScaleFactors = cms.vdouble(),
00043
00044
00045
00046
00047 etaDependentMagnutideFactors = cms.vdouble(),
00048
00049
00050
00051 GridConfiguration = fftjet_grid_256_128,
00052
00053
00054
00055 etConversionFactor = cms.double(128.0/(4.0*math.pi/256.0)),
00056
00057
00058 InitialScales = fftjet_patreco_scales_50,
00059
00060
00061 anomalous = fftjet_anomalous_tower_default,
00062
00063
00064 insertCompleteEvent = cms.bool(True),
00065
00066
00067 completeEventScale = cms.double(fftjet_complete_event_scale),
00068
00069
00070 scalePower = cms.double(2.0)
00071 )