Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:24:40

0001 import FWCore.ParameterSet.Config as cms
0002 import RecoEcal.EgammaClusterProducers.particleFlowSuperClusterECALMustache_cfi as _mod
0003 
0004 particleFlowSuperClusterECALBox = _mod.particleFlowSuperClusterECALMustache.clone(
0005     # verbosity
0006     verbose = False,
0007     # clustering type: "Box" or "Mustache"
0008     ClusteringType = "Box",
0009     # energy weighting: "Raw", "CalibratedNoPS", "CalibratedTotal"
0010     EnergyWeight = "Raw",
0011 
0012     # this overrides both dphi cuts below if true!
0013     useDynamicDPhiWindow = False,
0014 
0015     # PFClusters collection
0016     PFClusters = "particleFlowClusterECAL",
0017     ESAssociation = "particleFlowClusterECAL",
0018     BeamSpot = "offlineBeamSpot",
0019 
0020     PFBasicClusterCollectionBarrel = "particleFlowBasicClusterECALBarrel",
0021     PFSuperClusterCollectionBarrel = "particleFlowSuperClusterECALBarrel",
0022     PFBasicClusterCollectionEndcap = "particleFlowBasicClusterECALEndcap",
0023     PFSuperClusterCollectionEndcap = "particleFlowSuperClusterECALEndcap",
0024     PFBasicClusterCollectionPreshower = "particleFlowBasicClusterECALPreshower",
0025     PFSuperClusterCollectionEndcapWithPreshower = "particleFlowSuperClusterECALEndcapWithPreshower",
0026 
0027     # are the seed thresholds Et or Energy?
0028     seedThresholdIsET = True,
0029 
0030     # regression setup
0031     useRegression = False, # regressions are mustache only
0032     regressionConfig = dict(),
0033 
0034     # threshold for final SuperCluster Et
0035     thresh_SCEt = 4.0,
0036 
0037     # threshold in ECAL
0038     thresh_PFClusterSeedBarrel = 3.0,
0039     thresh_PFClusterBarrel = 0.5,
0040 
0041     thresh_PFClusterSeedEndcap = 5.0,
0042     thresh_PFClusterEndcap = 0.5,
0043 
0044     # window width in ECAL
0045     phiwidth_SuperClusterBarrel = 0.28,
0046     etawidth_SuperClusterBarrel = 0.04,
0047 
0048     phiwidth_SuperClusterEndcap = 0.28,
0049     etawidth_SuperClusterEndcap = 0.04,
0050 
0051     # threshold in preshower
0052     thresh_PFClusterES = 0.,
0053 
0054     # turn on merging of the seed cluster to its nearest neighbors
0055     # that share a rechit
0056     doSatelliteClusterMerge = False,
0057     satelliteClusterSeedThreshold = 50.0,
0058     satelliteMajorityFraction = 0.5,
0059     dropUnseedable = False,
0060 
0061     # corrections
0062     applyCrackCorrections = False
0063 )