CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
particleFlowSuperClusterECALBox_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
3 
4 particleFlowSuperClusterECALBox = _mod.particleFlowSuperClusterECALMustache.clone(
5  # verbosity
6  verbose = False,
7  # clustering type: "Box" or "Mustache"
8  ClusteringType = "Box",
9  # energy weighting: "Raw", "CalibratedNoPS", "CalibratedTotal"
10  EnergyWeight = "Raw",
11 
12  # this overrides both dphi cuts below if true!
13  useDynamicDPhiWindow = False,
14 
15  # PFClusters collection
16  PFClusters = "particleFlowClusterECAL",
17  ESAssociation = "particleFlowClusterECAL",
18  BeamSpot = "offlineBeamSpot",
19 
20  PFBasicClusterCollectionBarrel = "particleFlowBasicClusterECALBarrel",
21  PFSuperClusterCollectionBarrel = "particleFlowSuperClusterECALBarrel",
22  PFBasicClusterCollectionEndcap = "particleFlowBasicClusterECALEndcap",
23  PFSuperClusterCollectionEndcap = "particleFlowSuperClusterECALEndcap",
24  PFBasicClusterCollectionPreshower = "particleFlowBasicClusterECALPreshower",
25  PFSuperClusterCollectionEndcapWithPreshower = "particleFlowSuperClusterECALEndcapWithPreshower",
26 
27  # use preshower ?
28  use_preshower = True,
29 
30  # are the seed thresholds Et or Energy?
31  seedThresholdIsET = True,
32 
33  # regression setup
34  useRegression = False, # regressions are mustache only
35  regressionConfig = dict(),
36 
37  # threshold for final SuperCluster Et
38  thresh_SCEt = 4.0,
39 
40  # threshold in ECAL
41  thresh_PFClusterSeedBarrel = 3.0,
42  thresh_PFClusterBarrel = 0.5,
43 
44  thresh_PFClusterSeedEndcap = 5.0,
45  thresh_PFClusterEndcap = 0.5,
46 
47  # window width in ECAL
48  phiwidth_SuperClusterBarrel = 0.28,
49  etawidth_SuperClusterBarrel = 0.04,
50 
51  phiwidth_SuperClusterEndcap = 0.28,
52  etawidth_SuperClusterEndcap = 0.04,
53 
54  # threshold in preshower
55  thresh_PFClusterES = 0.,
56 
57  # turn on merging of the seed cluster to its nearest neighbors
58  # that share a rechit
59  doSatelliteClusterMerge = False,
60  satelliteClusterSeedThreshold = 50.0,
61  satelliteMajorityFraction = 0.5,
62  dropUnseedable = False,
63 
64  # corrections
65  applyCrackCorrections = False
66 )