TrackdNdxDelphesBased Fix - #92
Conversation
| if (betagamma < 0.5 || betagamma > 20000.0) { | ||
| warning() << "beta*gamma value outside of \"good\" range of delphes parametrisation (0.5-20000), dN/dx will be " | ||
| if (betagamma < 0.5) { | ||
| warning() << "beta*gamma value below \"good\" range of delphes parametrisation (0.5-10000), dN/dx will be " |
There was a problem hiding this comment.
The comment doesn't match, it is below 0.5
There was a problem hiding this comment.
Sorry, I don't see the mismatch?
Could you clarify?
There was a problem hiding this comment.
I meant that it is always below 0.5 so it doesn't make sense to say it's below 0.5-10000
|
Then once it is fixed in Delphes what do you plan to do? Go back to the current version? |
Well, the approximation of setting to the max value of |
|
The fix looks good! |
BEGINRELEASENOTES
TrackdNdxDelphesBasedENDRELEASENOTES
I recently noticed that the delphes accepted range for$\beta\gamma$ was lowered (whether intentionally or not, see delphes/delphes#199) to $10000$ .
Thus, in the
run_digi_reco.pyscript in FCC-Config forIDEA, the 10 GeV electrons would silently be out of the range and producenclusters=0.This PR aligns the upper limit of accepted$\beta\gamma$ in $\beta\gamma$ to the max value as an approximation. This way 10 GeV electrons will still produce clusters.
TrackdNdxDelphesBasedwith the range fromdelphes/TrkUtil.Also, the logic is slighty changed, so that if the value is above the range, it will set
Cheers,
Andreas