diff options
author | tlatorre <tlatorre@uchicago.edu> | 2018-11-27 16:15:47 -0600 |
---|---|---|
committer | tlatorre <tlatorre@uchicago.edu> | 2018-11-27 16:15:47 -0600 |
commit | 22090220988bd7d5631481c5b4cbfa2f95c11131 (patch) | |
tree | 6ebf64907c669e539b424f2e17dc547ba7d2e457 /src/likelihood.c | |
parent | 065211a83e858810f36f89d25e507dfe856c8df8 (diff) | |
download | sddm-22090220988bd7d5631481c5b4cbfa2f95c11131.tar.gz sddm-22090220988bd7d5631481c5b4cbfa2f95c11131.tar.bz2 sddm-22090220988bd7d5631481c5b4cbfa2f95c11131.zip |
add separate CHARGE_FRACTION variables for electrons and muons
Diffstat (limited to 'src/likelihood.c')
-rw-r--r-- | src/likelihood.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/likelihood.c b/src/likelihood.c index eb2eb94..40261f9 100644 --- a/src/likelihood.c +++ b/src/likelihood.c @@ -901,7 +901,10 @@ double nll_muon(event *ev, int id, double T0, double *pos, double *dir, double t particle_free(p); mu_noise = DARK_RATE*GTVALID*1e-9; - mu_indirect *= CHARGE_FRACTION/10000.0; + if (id == IDP_E_MINUS || id == IDP_E_PLUS) + mu_indirect *= CHARGE_FRACTION_ELECTRON/10000.0; + else + mu_indirect *= CHARGE_FRACTION_MUON/10000.0; /* Compute the expected number of photons reaching each PMT by adding up * the contributions from the noise hits and the direct, indirect, and |