CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
FastjetParameters_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # Generic parameters for PU subtraction
4 FastjetParameters = cms.PSet(
5 
6 )
7 FastjetNoPU = cms.PSet(
8  Active_Area_Repeats = cms.int32(0),
9  GhostArea = cms.double(1.0),
10  Ghost_EtaMax = cms.double(0.0),
11  UE_Subtraction = cms.string('no')
12 )
13 FastjetWithPU = cms.PSet(
14  Active_Area_Repeats = cms.int32(5),
15  GhostArea = cms.double(0.01),
16  Ghost_EtaMax = cms.double(6.0),
17  UE_Subtraction = cms.string('yes')
18 )
19