Skip to content
Snippets Groups Projects

update clustering benchmark

Merged Chao Peng requested to merge update_clustering into master
2 files
+ 25
13
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -11,7 +11,7 @@ detector_path = str(os.environ.get("DETECTOR_PATH", "."))
compact_path = os.path.join(detector_path, detector_name)
# get sampling fractions from system environment variable, 1.0 by default
cb_ecal_sf = float(os.environ.get("CB_EMCAL_SAMP_FRAC", 1.0))
cb_ecal_sf = float(os.environ.get("CB_EMCAL_SAMP_FRAC", 0.01324))
cb_hcal_sf = float(os.environ.get("CB_HCAL_SAMP_FRAC", 1.0))
# input and output
@@ -84,6 +84,7 @@ ce_ecal_cl = IslandCluster("ce_ecal_cl",
ce_ecal_clreco = RecoCoG("ce_ecal_clreco",
clusterCollection="CrystalEcalClusters",
samplingFraction=0.998, # this accounts for a small fraction of leakage
logWeightBase=4.6)
@@ -115,6 +116,7 @@ cb_ecal_cl = ImagingCluster("cb_ecal_cl",
adjLayerDiff=2, # id diff for adjacent layer
adjSectorDist=3.*cm) # different sector
cb_ecal_clreco = ImagingClusterReco("cb_ecal_clreco",
samplingFraction=cb_hcal_sf,
inputClusterCollection="EcalBarrelClusters",
outputLayerCollection="EcalBarrelLayers")
Loading