File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -28,10 +28,10 @@ namespace sbn::crt {
2828
2929 uint64_t ts0_s; // /< Second-only part of timestamp T0.
3030 double ts0_s_corr; // /< [Honestly, not sure at this point, it was there since long time (BB)]
31-
3231 double ts0_ns; // /< Timestamp T0 (from White Rabbit), in UTC absolute time scale in nanoseconds from the Epoch.
3332 double ts0_ns_corr; // /< [Honestly, not sure at this point, it was there since long time (BB)]
34- double ts1_ns; // /< Timestamp T1 ([signal time w.r.t. Trigger time]), in UTC absolute time scale in nanoseconds from the Epoch.
33+
34+ double ts1_ns; // /< Timestamp T1 ([signal time w.r.t. Trigger time]),
3535
3636 int plane; // /< Name of the CRT wall (in the form of numbers).
3737
@@ -49,7 +49,7 @@ namespace sbn::crt {
4949 int64_t ts0 () const { return static_cast <int64_t >(ts0_s) * 1'000'000'000LL + static_cast <int64_t >(ts0_ns); }
5050 // T1 is a relative time not a timestamp, so we don't need second-part.
5151 // nano-second part is enough and we saved entire time there.
52- int64_t ts1 () const { return static_cast <int64_t >(ts1_ns); }
52+ int64_t ts1 () const { return static_cast <int64_t >(ts1_ns); } // /< This is for ICARUS only. Need review from SBND
5353
5454 };
5555
You can’t perform that action at this time.
0 commit comments