Skip to content
Snippets Groups Projects
Commit 0221a91d authored by John Derek Chapman's avatar John Derek Chapman
Browse files

Adding a comment to `LArG4BirksLaw.cc` to preserve our current knowledge.

parent 1a7b4478
No related branches found
No related tags found
No related merge requests found
...@@ -18,6 +18,7 @@ double LArG4BirksLaw::operator () (double dE, double dX, double EField) const { ...@@ -18,6 +18,7 @@ double LArG4BirksLaw::operator () (double dE, double dX, double EField) const {
double dEdX = dE/dX; double dEdX = dE/dX;
const double kOverField = m_BirksLawK/EField; const double kOverField = m_BirksLawK/EField;
// NB For a MIP in LAr 1.51 == dEdX/m_LArDensity, so dEcorr1==dE
double dEcorr1 = dE * (1 + kOverField*1.51) / (1 + kOverField*dEdX/m_LArDensity); // original corrections double dEcorr1 = dE * (1 + kOverField*1.51) / (1 + kOverField*dEdX/m_LArDensity); // original corrections
if (dEdX > 12000.0) dEdX = 12000.0; // The experimental data is available only until dE/dX ~ 12000 MeV/cm if (dEdX > 12000.0) dEdX = 12000.0; // The experimental data is available only until dE/dX ~ 12000 MeV/cm
......
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