Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:15:55

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 hltParticleFlowSuperClusterECALL1Seeded = 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('hltParticleFlowBasicClusterECALBarrel'),
0009     PFBasicClusterCollectionEndcap = cms.string('hltParticleFlowBasicClusterECALEndcap'),
0010     PFBasicClusterCollectionPreshower = cms.string('hltParticleFlowBasicClusterECALPreshower'),
0011     PFClusters = cms.InputTag("hltParticleFlowClusterECALL1Seeded"),
0012     PFSuperClusterCollectionBarrel = cms.string('hltParticleFlowSuperClusterECALBarrel'),
0013     PFSuperClusterCollectionEndcap = cms.string('hltParticleFlowSuperClusterECALEndcap'),
0014     PFSuperClusterCollectionEndcapWithPreshower = cms.string('hltParticleFlowSuperClusterECALEndcapWithPreshower'),
0015     applyCrackCorrections = cms.bool(False),
0016     barrelRecHits = cms.InputTag("hltRechitInRegionsECAL","EcalRecHitsEB"),
0017     doSatelliteClusterMerge = cms.bool(False),
0018     dropUnseedable = cms.bool(False),
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     phiwidth_SuperClusterBarrel = cms.double(0.6),
0024     phiwidth_SuperClusterEndcap = cms.double(0.6),
0025     regressionConfig = cms.PSet(
0026         ecalRecHitsEB = cms.InputTag("hltEcalRecHitL1Seeded","EcalRecHitsEB"),
0027         ecalRecHitsEE = cms.InputTag("hltEcalRecHitL1Seeded","EcalRecHitsEE"),
0028         isHLT = cms.bool(True),
0029         regressionKeyEB = cms.string('pfscecal_EBCorrection_online'),
0030         regressionKeyEE = cms.string('pfscecal_EECorrection_online'),
0031         uncertaintyKeyEB = cms.string('pfscecal_EBUncertainty_online'),
0032         uncertaintyKeyEE = cms.string('pfscecal_EEUncertainty_online')
0033     ),
0034     satelliteClusterSeedThreshold = cms.double(50.0),
0035     satelliteMajorityFraction = cms.double(0.5),
0036     seedThresholdIsET = cms.bool(True),
0037     thresh_PFClusterBarrel = cms.double(0.5),
0038     thresh_PFClusterES = cms.double(0.5),
0039     thresh_PFClusterEndcap = cms.double(0.5),
0040     thresh_PFClusterSeedBarrel = cms.double(1.0),
0041     thresh_PFClusterSeedEndcap = cms.double(1.0),
0042     thresh_SCEt = cms.double(10.0),
0043     useDynamicDPhiWindow = cms.bool(True),
0044     useRegression = cms.bool(True),
0045     verbose = cms.untracked.bool(False)
0046 )