File indexing completed on 2024-08-21 04:46:34
0001 import FWCore.ParameterSet.Config as cms
0002
0003 hltParticleFlowSuperClusterHGCalFromTICLL1Seeded = cms.EDProducer("PFECALSuperClusterProducer",
0004 BeamSpot = cms.InputTag("hltOnlineBeamSpot"),
0005 ClusteringType = cms.string('Mustache'),
0006 ESAssociation = cms.InputTag("hltParticleFlowClusterECALL1Seeded"),
0007 EnergyWeight = cms.string('Raw'),
0008 PFBasicClusterCollectionBarrel = cms.string('particleFlowBasicClusterECALBarrel'),
0009 PFBasicClusterCollectionEndcap = cms.string(''),
0010 PFBasicClusterCollectionPreshower = cms.string('particleFlowBasicClusterECALPreshower'),
0011 PFClusters = cms.InputTag("hltParticleFlowClusterHGCalFromTICLL1Seeded"),
0012 PFSuperClusterCollectionBarrel = cms.string('particleFlowSuperClusterECALBarrel'),
0013 PFSuperClusterCollectionEndcap = cms.string(''),
0014 PFSuperClusterCollectionEndcapWithPreshower = cms.string(''),
0015 applyCrackCorrections = cms.bool(False),
0016 barrelRecHits = cms.InputTag("hltRechitInRegionsECAL","EcalRecHitsEB"),
0017 doSatelliteClusterMerge = cms.bool(False),
0018 dropUnseedable = cms.bool(True),
0019 endcapRecHits = cms.InputTag("hltRechitInRegionsECAL","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("hltEcalRecHitL1Seeded","EcalRecHitsEB"),
0030 ecalRecHitsEE = cms.InputTag("hltEcalRecHitL1Seeded","EcalRecHitsEE"),
0031 hgcalRecHits = cms.InputTag("hltParticleFlowRecHitHGCL1Seeded"),
0032 isHLT = cms.bool(True),
0033 isPhaseII = cms.bool(True),
0034 regressionKeyEB = cms.string('pfscecal_EBCorrection_offline_v2'),
0035 regressionKeyEE = cms.string('superclus_hgcal_mean_online'),
0036 uncertaintyKeyEB = cms.string('pfscecal_EBUncertainty_offline_v2'),
0037 uncertaintyKeyEE = cms.string('superclus_hgcal_sigma_online'),
0038 vertexCollection = cms.InputTag("")
0039 ),
0040 satelliteClusterSeedThreshold = cms.double(50),
0041 satelliteMajorityFraction = cms.double(0.5),
0042 seedThresholdIsET = cms.bool(True),
0043 thresh_PFClusterBarrel = cms.double(0),
0044 thresh_PFClusterES = cms.double(0),
0045 thresh_PFClusterEndcap = cms.double(0.15),
0046 thresh_PFClusterSeedBarrel = cms.double(1),
0047 thresh_PFClusterSeedEndcap = cms.double(1),
0048 thresh_SCEt = cms.double(10.0),
0049 useDynamicDPhiWindow = cms.bool(True),
0050 useRegression = cms.bool(True),
0051 verbose = cms.untracked.bool(False)
0052 )