diff --git a/temp_cal.cxx b/temp_cal.cxx
index e1f4a667ee0de2bd56022fbd19646928fc1ffcc8..8b62f943f14eb0e6a1b8d7b0babe5475bc1602cb 100644
--- a/temp_cal.cxx
+++ b/temp_cal.cxx
@@ -77,4 +77,13 @@ void temp_cal() {
 
   std::cout << "slope : " << average_slope << "\n";
   std::cout << "offset : " << average_offset << "\n";
+
+  for (int t = 0; t < 4; t++) {
+    for (int c = 0; c < 3; c++) {
+      std::cout << "t" << t+1 << " : " << slopes[c*4+t] << ", " << offsets[c*4+t] << " \n";
+    }
+  }
+
+
+
 }