diff options
Diffstat (limited to 'src/daq.cu')
-rw-r--r-- | src/daq.cu | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -57,7 +57,7 @@ extern "C" { if (triangle_id > -1) { int solid_id = solid_map[triangle_id]; int state = photon_states[id]; - float time = photon_times[id];// + curand_normal(&rng) * time_rms; + float time = photon_times[id] + curand_normal(&rng) * time_rms; unsigned int time_int = float_to_sortable_int(time); if (solid_id < nsolids && state == detection_state) atomicMin(earliest_time_int + solid_id, time_int); |