File indexing completed on 2024-09-12 04:16:35
0001 import FWCore.ParameterSet.Config as cms
0002
0003 hltParticleFlowSuperClusterECAL = cms.EDProducer("PFECALSuperClusterProducer",
0004 BeamSpot = cms.InputTag("hltOnlineBeamSpot"),
0005 ClusteringType = cms.string('Mustache'),
0006 ESAssociation = cms.InputTag("hltParticleFlowClusterECAL"),
0007 EnergyWeight = cms.string('Raw'),
0008 PFBasicClusterCollectionBarrel = cms.string('particleFlowBasicClusterECALBarrel'),
0009 PFBasicClusterCollectionEndcap = cms.string('particleFlowBasicClusterECALEndcap'),
0010 PFBasicClusterCollectionPreshower = cms.string('particleFlowBasicClusterECALPreshower'),
0011 PFClusters = cms.InputTag("hltParticleFlowClusterECAL"),
0012 PFSuperClusterCollectionBarrel = cms.string('particleFlowSuperClusterECALBarrel'),
0013 PFSuperClusterCollectionEndcap = cms.string('particleFlowSuperClusterECALEndcap'),
0014 PFSuperClusterCollectionEndcapWithPreshower = cms.string('particleFlowSuperClusterECALEndcapWithPreshower'),
0015 applyCrackCorrections = cms.bool(False),
0016 barrelRecHits = cms.InputTag("hltEcalRecHit","EcalRecHitsEB"),
0017 doSatelliteClusterMerge = cms.bool(False),
0018 dropUnseedable = cms.bool(False),
0019 endcapRecHits = cms.InputTag("hltEalRecHit","EcalRecHitsEE"),
0020 etawidth_SuperClusterBarrel = cms.double(0.04),
0021 etawidth_SuperClusterEndcap = cms.double(0.04),
0022 isOOTCollection = cms.bool(False),
0023 mightGet = cms.optional.untracked.vstring,
0024 phiwidth_SuperClusterBarrel = cms.double(0.6),
0025 phiwidth_SuperClusterEndcap = cms.double(0.6),
0026 regressionConfig = cms.PSet(
0027 applySigmaIetaIphiBug = cms.bool(False),
0028 eRecHitThreshold = cms.double(1),
0029 ecalRecHitsEB = cms.InputTag("hltEcalRecHit","EcalRecHitsEB"),
0030 ecalRecHitsEE = cms.InputTag("hltEcalRecHit","EcalRecHitsEE"),
0031 hgcalCylinderR = cms.double(2.79999995232),
0032 hgcalRecHits = cms.InputTag(""),
0033 isHLT = cms.bool(False),
0034 isPhaseII = cms.bool(False),
0035 regressionKeyEB = cms.string('pfscecal_EBCorrection_offline_v2'),
0036 regressionKeyEE = cms.string('pfscecal_EECorrection_offline_v2'),
0037 regressionMaxEB = cms.double(2),
0038 regressionMaxEE = cms.double(2),
0039 regressionMinEB = cms.double(0.2),
0040 regressionMinEE = cms.double(0.2),
0041 uncertaintyKeyEB = cms.string('pfscecal_EBUncertainty_offline_v2'),
0042 uncertaintyKeyEE = cms.string('pfscecal_EEUncertainty_offline_v2'),
0043 uncertaintyMaxEB = cms.double(0.5),
0044 uncertaintyMaxEE = cms.double(0.5),
0045 uncertaintyMinEB = cms.double(0.0002),
0046 uncertaintyMinEE = cms.double(0.0002),
0047 vertexCollection = cms.InputTag("hltOfflinePrimaryVertices")
0048 ),
0049 satelliteClusterSeedThreshold = cms.double(50),
0050 satelliteMajorityFraction = cms.double(0.5),
0051 seedThresholdIsET = cms.bool(True),
0052 thresh_PFClusterBarrel = cms.double(0),
0053 thresh_PFClusterES = cms.double(0),
0054 thresh_PFClusterEndcap = cms.double(0),
0055 thresh_PFClusterSeedBarrel = cms.double(1),
0056 thresh_PFClusterSeedEndcap = cms.double(1),
0057 thresh_SCEt = cms.double(4),
0058 useDynamicDPhiWindow = cms.bool(True),
0059 useRegression = cms.bool(True),
0060 verbose = cms.untracked.bool(False)
0061 )