From c99cc0a2dd53f11bcaa785c12b4f81c3a53cdd32 Mon Sep 17 00:00:00 2001
From: Jens Kroeger <kroeger@physi.uni-heidelberg.de>
Date: Wed, 12 Feb 2020 18:14:13 +0100
Subject: [PATCH] AnalysisTimingATLASpix: add time_offset as new parameter

(cherry picked from commit daea797d31af2c92374b182b9f5d5a1c2e5aacfc)
---
 src/modules/EventLoaderATLASpix/EventLoaderATLASpix.cpp | 5 +++++
 src/modules/EventLoaderATLASpix/EventLoaderATLASpix.h   | 1 +
 2 files changed, 6 insertions(+)

diff --git a/src/modules/EventLoaderATLASpix/EventLoaderATLASpix.cpp b/src/modules/EventLoaderATLASpix/EventLoaderATLASpix.cpp
index 26de28968..c5fe22016 100644
--- a/src/modules/EventLoaderATLASpix/EventLoaderATLASpix.cpp
+++ b/src/modules/EventLoaderATLASpix/EventLoaderATLASpix.cpp
@@ -26,6 +26,8 @@ EventLoaderATLASpix::EventLoaderATLASpix(Configuration config, std::shared_ptr<D
     m_highToTCut = m_config.get<int>("high_tot_cut", 40);
     m_buffer_depth = m_config.get<int>("buffer_depth", 1000);
 
+    m_time_offset = m_config.get<double>("time_offset", 0.);
+
     // ts1Range = 0x800 * m_clkdivendM;
     ts2Range = 0x40 * m_clkdivend2M;
 }
@@ -394,6 +396,9 @@ bool EventLoaderATLASpix::read_caribou_data() { // return false when reaching eo
             return true;
         }
 
+        timestamp += m_time_offset;
+        LOG(DEBUG) << "Adding time_offset of " << m_time_offset << " to pixel timestamp. New pixel timestamp: " << timestamp;
+
         // since calibration is not implemented yet, set charge = tot
         Pixel* pixel = new Pixel(m_detector->name(), col, row, tot, tot, timestamp);
 
diff --git a/src/modules/EventLoaderATLASpix/EventLoaderATLASpix.h b/src/modules/EventLoaderATLASpix/EventLoaderATLASpix.h
index 83c10c174..a844bb26c 100644
--- a/src/modules/EventLoaderATLASpix/EventLoaderATLASpix.h
+++ b/src/modules/EventLoaderATLASpix/EventLoaderATLASpix.h
@@ -120,6 +120,7 @@ namespace corryvreckan {
         // int m_clkdivendM;
         int m_clkdivend2M;
         int m_buffer_depth;
+        double m_time_offset;
     };
 } // namespace corryvreckan
 #endif // EventLoaderATLASpix_H
-- 
GitLab