Skip to content
Snippets Groups Projects
Commit a22523b1 authored by Margherita Spalla's avatar Margherita Spalla
Browse files

propagate to new style config

parent f1dc2d59
No related branches found
No related tags found
No related merge requests found
......@@ -20,6 +20,9 @@ def createCaloConfigFlags():
ccf.addFlag("Calo.TopoCluster.doTwoGaussianNoise",True)
ccf.addFlag("Calo.TopoCluster.doTreatEnergyCutAsAbsolute",False)
ccf.addFlag("Calo.TopoCluster.doTopoClusterLocalCalib",True)
ccf.addFlag("Calo.TopoCluster.doTimeCut",False)
ccf.addFlag("Calo.TopoCluster.extendTimeCut",False)
ccf.addFlag("Calo.TopoCluster.useUpperLimitForTimeCut",False)
#### Cluster correction flags:
# If true, then reweight cells to prevent double-counting between clusters.
......
......@@ -288,6 +288,12 @@ def CaloTopoClusterCfg(configFlags,cellsname="AllCalo",clustersname="",doLCCalib
TopoMaker.CellThresholdOnEorAbsEinSigma = 0.0
TopoMaker.NeighborThresholdOnEorAbsEinSigma = 2.0
TopoMaker.SeedThresholdOnEorAbsEinSigma = 4.0
#timing
TopoMaker.SeedCutsInT = configFlags.Calo.TopoCluster.doTimeCut
TopoMaker.CutOOTseed = configFlags.Calo.TopoCluster.extendTimeCut and configFlags.Calo.TopoCluster.doTimeCut
TopoMaker.UseTimeCutUpperLimit = configFlags.Calo.TopoCluster.useUpperLimitForTimeCut
TopoMaker.TimeCutUpperLimit = 20.0
# note E or AbsE
#
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment