Skip to content

Commit

Permalink
Update delphes_card_MuonColliderDet.tcl
Browse files Browse the repository at this point in the history
Fixed (apparent) typo in ECal resolution, where exponent of energy appeared to be missing.
  • Loading branch information
shomiller authored May 25, 2021
1 parent db316cd commit 7e6c201
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cards/delphes_card_MuonColliderDet.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -1199,7 +1199,7 @@ module SimpleCalorimeter ECal {
# set ECalResolutionFormula {resolution formula as a function of eta and energy}
set ResolutionFormula {
(abs(eta) <= 0.78 ) * sqrt(energy^2*0.01^2 + energy*0.156^2)+
(abs(eta) > 0.78 && abs(eta) <=0.83 ) * sqrt( energy^0.01^2 + energy*0.175^2 ) +
(abs(eta) > 0.78 && abs(eta) <=0.83 ) * sqrt( energy^2*0.01^2 + energy*0.175^2 ) +
(abs(eta) <= 2.5 && abs(eta) > 0.83) * sqrt( energy^2*0.01^2 + energy*0.151^2 )}
}

Expand Down

0 comments on commit 7e6c201

Please sign in to comment.