Skip to content
Snippets Groups Projects
Commit 333c8b55 authored by Wouter Deconinck's avatar Wouter Deconinck
Browse files

fix: correct ci_ecal_digi sqrt(E) term and add threshold

parent e8fe3282
No related branches found
No related tags found
1 merge request!175fix: correct ci_ecal_digi sqrt(E) term and add threshold
......@@ -494,7 +494,7 @@ ce_ecal_clmerger = ClusterMerger(
)
algorithms.append(ce_ecal_clmerger)
# Endcap ScFi Ecal
# Endcap ScFi Ecal (homogeneous approximation)
ci_ecal_daq = calo_daq["ecal_pos_endcap"]
ci_ecal_digi = CalHitDigi(
......@@ -502,7 +502,8 @@ ci_ecal_digi = CalHitDigi(
inputHitCollection="EcalEndcapPHits",
outputHitCollection="EcalEndcapPRawHits",
scaleResponse=ci_ecal_sf,
energyResolutions=[0.1, 0.0015, 0.0],
energyResolutions=[0.00316, 0.0015, 0.0],
threshold=5.0 * MeV,
**ci_ecal_daq,
)
algorithms.append(ci_ecal_digi)
......
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