From 436e93b880748fde772b6951c55bfe19a0c5328a Mon Sep 17 00:00:00 2001 From: Stan Seibert Date: Thu, 29 Dec 2011 13:15:06 -0500 Subject: Reduce number of scattering passes by default in likelihood calculation --- chroma/sim.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chroma/sim.py b/chroma/sim.py index 06771c7..c7b2026 100644 --- a/chroma/sim.py +++ b/chroma/sim.py @@ -128,7 +128,7 @@ class Simulation(object): return self.gpu_pdf.get_pdfs() @profile_if_possible - def eval_pdf(self, event_channels, iterable, min_twidth, trange, min_qwidth, qrange, min_bin_content=100, nreps=1, ndaq=1, nscatter=4, time_only=True): + def eval_pdf(self, event_channels, iterable, min_twidth, trange, min_qwidth, qrange, min_bin_content=100, nreps=1, ndaq=1, nscatter=1, time_only=True): """Returns tuple: 1D array of channel hit counts, 1D array of PDF probability densities.""" ndaq_per_rep = 64 -- cgit