From 860c721de6bc93848a25b39f7d92a74e22f11df8 Mon Sep 17 00:00:00 2001 From: Matthieu Schaller <schaller@strw.leidenuniv.nl> Date: Sun, 11 Nov 2018 16:22:24 +0100 Subject: [PATCH] Added a new fake time-bin for particles not yet created/added to the calculation. --- src/timeline.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/timeline.h b/src/timeline.h index 38727def50..09161b3ec6 100644 --- a/src/timeline.h +++ b/src/timeline.h @@ -40,6 +40,9 @@ typedef char timebin_t; /*! Fictious time-bin to hold inhibited particles */ #define time_bin_inhibited (num_time_bins + 2) +/*! Fictious time-bin to hold particles not yet created */ +#define time_bin_not_created (num_time_bins + 3) + /*! Fictitious time-bin for particles not awaken */ #define time_bin_not_awake (0) -- GitLab