diff --git a/RecoLocalTracker/SiPixelRecHits/python/PixelCPEESProducers_cff.py b/RecoLocalTracker/SiPixelRecHits/python/PixelCPEESProducers_cff.py index ea9fab563d164..e3879f4d9d34c 100644 --- a/RecoLocalTracker/SiPixelRecHits/python/PixelCPEESProducers_cff.py +++ b/RecoLocalTracker/SiPixelRecHits/python/PixelCPEESProducers_cff.py @@ -10,7 +10,7 @@ # 2. Pixel Generic CPE # from RecoLocalTracker.SiPixelRecHits.PixelCPEGeneric_cfi import * -from RecoLocalTracker.SiPixelRecHits.PixelCPEFast_cfi import * +from RecoLocalTracker.SiPixelRecHits.PixelCPEFastESProducer_cfi import * # # 3. ESProducer for the Magnetic-field dependent template records # diff --git a/RecoLocalTracker/SiPixelRecHits/python/PixelCPEFast_cfi.py b/RecoLocalTracker/SiPixelRecHits/python/PixelCPEFast_cfi.py deleted file mode 100644 index 3e8957530722c..0000000000000 --- a/RecoLocalTracker/SiPixelRecHits/python/PixelCPEFast_cfi.py +++ /dev/null @@ -1,38 +0,0 @@ -import FWCore.ParameterSet.Config as cms - -PixelCPEFastESProducer = cms.ESProducer("PixelCPEFastESProducer", - - ComponentName = cms.string('PixelCPEFast'), - Alpha2Order = cms.bool(True), - - # Edge cluster errors in microns (determined by looking at residual RMS) - EdgeClusterErrorX = cms.double( 50.0 ), - EdgeClusterErrorY = cms.double( 85.0 ), - - # for CPEBase - useLAWidthFromDB = cms.bool(True), - useLAAlignmentOffsets = cms.bool(False), - - # for CPEBase, used only for testing - lAOffset = cms.double(0), - lAWidthBPix = cms.double(0), - lAWidthFPix = cms.double(0), - - # only for Templates, compute the Lorentz shifts - DoLorentz = cms.bool(False), - - # Can use errors predicted by the template code - # If UseErrorsFromTemplates is False, must also set - # TruncatePixelCharge and LoadTemplatesFromDB to be False - UseErrorsFromTemplates = cms.bool(True), - LoadTemplatesFromDB = cms.bool(True), - - # When set True this gives a slight improvement in resolution at no cost - TruncatePixelCharge = cms.bool(True), - - # petar, for clusterProbability() from TTRHs - ClusterProbComputationFlag = cms.int32(0), - - #MagneticFieldRecord: e.g. "" or "ParabolicMF" - MagneticFieldRecord = cms.ESInputTag(""), -)