Skip to content

Commit

Permalink
Changed the Pb-206 charge loss to be default 1.0 to not double-count …
Browse files Browse the repository at this point in the history
…it again: problem pointed out by Nishat. -MMS
  • Loading branch information
mszydagis committed Nov 11, 2021
1 parent 229aebd commit 49d50a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/NEST.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
// 0.03)
//#define InfraredNR 7.

#define ChargeLoss 0.77 // LUX Run03 is the default (wall BG model)
#define ChargeLoss 1.000 // 0.77 is LUX Run03 default (wall BG model)

using namespace std;
using namespace NEST;
Expand Down Expand Up @@ -649,7 +649,7 @@ YieldResult NESTcalc::GetYieldIon(
double NexONi =
alpha +
0.00178 *
pow(atomNum, 1.587); // Wq_eV=13.7; ThomasImel=0.05; NexONi=0.05;
pow(atomNum, 1.587);
if (ValidityTests::nearlyEqual(A1, 206.) &&
ValidityTests::nearlyEqual(Z1,
82.)) { // Pb-206 (from Po-210 alpha decay).
Expand Down

0 comments on commit 49d50a8

Please sign in to comment.