Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

adjust energy loss parameterisation (Bethe-Bloch etc) #13

Merged
merged 3 commits into from Jun 24, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/DDVMeasLayer.cc
Expand Up @@ -136,7 +136,7 @@ double computeDEdx( const TMaterial &mat, double mass, double mom2 ){
else del = 0.;
Double_t tmax = 2.*kMe*bg2 / (1. + meM*(2.*TMath::Sqrt(gm2) + meM));
Double_t dedx = kK * Z/A * gm2/bg2 * (0.5*log(2.*kMe*bg2*tmax / (I*I))
- bg2/gm2 - del);
- bg2/gm2 - 0.5*del);

return dedx ;

Expand Down