CMS 3D CMS Logo

jetCoreClusterSplitter_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 jetCoreClusterSplitter = cms.EDProducer("JetCoreClusterSplitter",
4  pixelClusters = cms.InputTag('siPixelCluster'),
5  vertices = cms.InputTag('offlinePrimaryVertices'),
6  pixelCPE = cms.string( "PixelCPEGeneric" ),
7  verbose = cms.bool(False),
8  ptMin = cms.double(200),
9  cores = cms.InputTag("ak5CaloJets"),
10  chargeFractionMin = cms.double(2.0),
11  deltaRmax = cms.double(0.05),
12  forceXError = cms.double(100), #negative means do not force
13  forceYError = cms.double(150),
14  fractionalWidth = cms.double(0.4),
15  chargePerUnit = cms.double(2000),
16  centralMIPCharge = cms.double(26000),
17 
18 
19  )
20 
21